:root {
  --teal: #3d585d;
  --blush: #f3e9e3;
  --header-bg: #ececec;
  --white: #ffffff;
  --text: #333333;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Lato', 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Aboreto', serif;
  color: var(--teal);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--teal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand img.logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.brand-text {
  min-width: 0;
}

.brand-text h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: 1px;
  line-height: 1.1;
}

.brand-text .tagline {
  font-family: 'Alex Brush', cursive;
  font-size: 30px;
  color: var(--teal);
  margin: 4px 0 0;
}

nav.main-nav {
  display: flex;
  gap: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--teal);
}

nav.main-nav a:hover {
  text-decoration: underline;
}

/* Hero / sections */
section {
  padding: 60px 24px;
}

.hero {
  background: var(--blush);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-text h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 16px;
}

.hero-photo img {
  border-radius: 4px;
  width: 100%;
}

.btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  padding: 14px 28px;
  border-radius: 4px;
  margin-top: 16px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn:hover {
  opacity: 0.9;
}

.center {
  text-align: center;
}

/* Highlights strip */
.highlights {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 24px;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.highlights::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(243, 233, 227, 0.55);
}

.highlights-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.highlight-item svg {
  width: 84px;
  height: 84px;
  color: var(--teal);
  margin-bottom: 14px;
}

.highlights-grid p {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

/* Package cards */
.packages {
  background: var(--blush);
  padding-top: 60px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.package-card {
  background: var(--white);
  border-radius: 4px;
  text-align: center;
  overflow: hidden;
  padding-bottom: 32px;
}

.package-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 20px;
}

.package-card h3 {
  font-size: 22px;
  margin-top: 0;
  padding: 0 24px;
}

.package-card p {
  padding: 0 24px;
}

.package-card .btn {
  margin-top: 20px;
}

/* Reviews */
.reviews {
  text-align: center;
  background: var(--blush);
  padding-top: 0;
}

.reviews::before {
  content: "";
  display: block;
  max-width: 1100px;
  margin: 0 auto 40px;
  border-top: 1px solid var(--teal);
}

/* Pricing page */
.pricing-block {
  padding: 40px 0;
  border-bottom: 1px solid #e5e5e5;
}

.pricing-block h2.script {
  font-family: 'Alex Brush', cursive;
  font-size: 40px;
  margin-bottom: 24px;
}

.pricing-block h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--teal);
  margin-bottom: 8px;
}

.pricing-block ul {
  margin: 0 0 24px;
  padding-left: 20px;
}

.cost {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--teal);
}

/* Contact page */
.contact-info {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-info p.email,
.contact-info p.phone {
  font-size: 18px;
  margin: 8px 0;
}

.honeybook-embed {
  max-width: 900px;
  margin: 40px auto 0;
}

.honeybook-embed iframe {
  width: 100%;
  min-height: 900px;
  border: none;
}

/* FAQ */
.faqs-section {
  background: var(--blush);
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.faq-item h3 {
  font-size: 18px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--teal);
}

/* Footer */
footer {
  background: var(--header-bg);
  border-top: 1px solid var(--teal);
  padding: 40px 24px;
  text-align: center;
  font-size: 14px;
}

footer .footer-links {
  margin: 12px 0;
}

footer .footer-links a {
  margin: 0 10px;
}

footer .socials {
  margin-top: 12px;
}

footer .footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

footer .footer-logo {
  width: 220px;
}

footer .footer-badges img.theknot {
  width: 50px;
  height: 50px;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand img.logo {
    width: 80px;
    height: 80px;
  }
  .brand-text h1 {
    font-size: 26px;
  }
  .brand-text .tagline {
    font-size: 20px;
    white-space: nowrap;
  }
}

@media (min-width: 901px) {
  .package-card img {
    height: 390px;
  }
  .brand-text h1 {
    font-size: 46px;
    white-space: nowrap;
  }
  .brand-text .tagline {
    font-size: 38px;
  }
}
