@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ivory: #FAF8F4;
  --cream: #F3EFE8;
  --blush: #D9B8B0;
  --rose: #C4998E;
  --gold: #B8936A;
  --gold-light: #D4B896;
  --charcoal: #2E2B28;
  --soft-gray: #7A7572;
  --white: #FFFFFF;
  --border: #E8E0D8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--ivory);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

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

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

/* ─── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5%;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-gray);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 1.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--white);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* Two-stop gradient: left is transparent (shows flowers), right darkens for text */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 27, 22, 0.08) 0%,
    rgba(30, 27, 22, 0.18) 38%,
    rgba(30, 27, 22, 0.72) 62%,
    rgba(30, 27, 22, 0.82) 100%
  );
  z-index: 1;
}

/* Text sits in the right half */
.hero-content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: 50%;
  max-width: 580px;
  padding: 120px 6% 80px 4%;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
  display: block;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 1.6rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--blush);
}

.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
  max-width: 400px;
  margin-bottom: 2.8rem;
  line-height: 2.1;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

/* Light outline for use on dark/image backgrounds */
.btn-outline-light {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--white);
}

/* Keep the dark outline button for other sections */
.btn-outline {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: transparent;
  color: var(--charcoal);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Scroll indicator anchored bottom-center */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  animation: float 2.6s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(184,147,106,0.8), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── Responsive: stack on mobile ─────────────────────────── */
@media (max-width: 700px) {
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(30, 27, 22, 0.25) 0%,
      rgba(30, 27, 22, 0.75) 50%,
      rgba(30, 27, 22, 0.88) 100%
    );
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding: 140px 7% 100px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-sub {
    max-width: 100%;
  }
}

/* ─── DIVIDER ─────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0 auto;
  max-width: 200px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--gold-light);
}

.divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── SECTION BASE ────────────────────────────────────────── */
.section {
  padding: 7rem 5%;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--rose);
}

.section-sub {
  font-size: 0.8rem;
  color: var(--soft-gray);
  line-height: 2;
  max-width: 560px;
}

/* ─── INTRO STRIP ─────────────────────────────────────────── */
.intro-strip {
  background: var(--charcoal);
  padding: 3.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.intro-stat {
  text-align: center;
  color: var(--white);
}

.intro-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.intro-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}

.intro-stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* ─── SERVICES ────────────────────────────────────────────── */
.services-section {
  background: var(--cream);
}

.services-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  padding: 3rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.13);
  border-top-color: var(--rose);
  background: linear-gradient(180deg, #fffdf9 0%, var(--white) 100%);
}

.service-icon {
  font-size: 1.2rem;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5ede4, #f0e6d8);
  border-radius: 50%;
  margin-bottom: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--charcoal);
}

.service-price {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.service-card p {
  font-size: 0.78rem;
  color: var(--soft-gray);
  line-height: 2;
  flex: 1;
}

.service-inquire {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(184, 147, 106, 0.4);
  transition: text-decoration-color 0.25s, color 0.25s;
}

.service-inquire:hover {
  color: var(--charcoal);
  text-decoration-color: var(--charcoal);
}

/* ─── EXPERIENCE ──────────────────────────────────────────── */
.experience-section {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 580px;
}

.exp-visual {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.exp-visual-inner {
  text-align: center;
  color: var(--white);
  padding: 3rem;
  position: relative;
  z-index: 2;
}

.exp-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,147,106,0.25) 0%, rgba(196,153,142,0.1) 100%);
}

.exp-visual-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.exp-visual-author {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.exp-content {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exp-content .section-sub {
  margin-bottom: 2.5rem;
}

.exp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.exp-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--soft-gray);
  line-height: 1.8;
}

.exp-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ─── PROCESS ─────────────────────────────────────────────── */
.process-section {
  background: linear-gradient(160deg, #2E2B28 0%, #3D3936 100%);
  text-align: center;
}

.process-section .section-label {
  color: var(--gold-light);
}

.process-section .section-title {
  color: var(--ivory);
}

.process-section .section-title em {
  color: var(--blush);
}

.process-header {
  margin-bottom: 4.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

/* Decorative gold line running through the circle centers */
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(212, 184, 150, 0.35) 20%,
    rgba(212, 184, 150, 0.35) 80%,
    transparent 100%
  );
  z-index: 0;
}

.process-step {
  padding: 2.8rem 2rem 2.5rem;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  cursor: default;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: rgba(184, 147, 106, 0.35);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

.step-num {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  border: none;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 18px rgba(184, 147, 106, 0.35);
}

.process-step:hover .step-num {
  background: var(--rose);
  box-shadow: 0 8px 28px rgba(196, 153, 142, 0.5);
}

.process-step h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--ivory);
  letter-spacing: 0.04em;
}

.process-step p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 2.1;
}

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section {
  background: var(--cream);
  text-align: center;
}

.testimonials-section .section-title {
  color: var(--charcoal);
}

.testimonials-section .section-label {
  color: var(--gold);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1160px;
  margin: 3.5rem auto 0;
}

.testimonial-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold-light);
  text-align: left;
  background: var(--white);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: #111;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-read-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(184,147,106,0.4);
  transition: text-decoration-color 0.25s, color 0.25s;
}

.testimonial-read-more:hover {
  color: var(--charcoal);
  text-decoration-color: var(--charcoal);
}

/* ─── ABOUT SECTION ──────────────────────────────────────── */
.about-section {
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 0.56fr 1.54fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  background: var(--border);
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  right: -1.2rem;
  bottom: -1.2rem;
  border: 1px solid var(--gold-light);
  z-index: 0;
}

.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--charcoal);
  margin-bottom: 1.4rem;
}

.about-text--faith {
  font-style: italic;
  color: var(--soft-gray);
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
}

@media (max-width: 860px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-img-wrap {
    order: 2;
  }

  .about-content {
    order: 1;
  }

  .about-img-wrap::before {
    display: none;
  }

  .about-img {
    aspect-ratio: 4 / 3;
    object-position: center 20%;
    max-height: 360px;
    width: 100%;
  }
}

/* ─── SECTION DIVIDER ─────────────────────────────────────── */
.section-divider {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  height: 1px;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--border);
}

/* ─── CTA BANNER ──────────────────────────────────────────── */
.cta-section {
  background: #E8E0D6;
  text-align: center;
  padding: 7rem 5%;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'BELOVED';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 300;
  color: rgba(0,0,0,0.05);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.15em;
}

.cta-section .section-label {
  color: var(--gold);
}

.cta-section .section-title {
  max-width: 600px;
  margin: 0 auto 1rem;
  color: var(--charcoal);
}

.cta-section .section-title em {
  color: var(--rose);
}

.cta-section .section-sub {
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--soft-gray);
}

.cta-location {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-top: 2rem;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 4rem 5% 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1.2rem;
  /* invert(1) turns cream bg dark (invisible on dark footer) and black text → white */
  filter: invert(1);
  opacity: 0.9;
}

/* Large logo in hero — sits above headline */
.hero-logo {
  display: block;
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: 2rem;
  /* invert so cream bg disappears on dark overlay, text becomes white */
  filter: invert(1);
}

/* Medium logo in page heroes (booking / about) — light bg, no filter needed */
.page-hero-logo {
  display: block;
  height: 64px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 1.6rem;
}

.footer-brand p {
  font-size: 0.75rem;
  line-height: 2;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}

.footer-col ul a:hover {
  color: var(--gold-light);
}

.footer-col .contact-line {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
  line-height: 1.8;
}

.footer-col .contact-line a {
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}

.footer-col .contact-line a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── BOOKING PAGE ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--ivory) 100%);
  padding: 160px 5% 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 0.8rem;
  color: var(--soft-gray);
  max-width: 480px;
  margin: 0 auto;
  line-height: 2;
}

.booking-section {
  padding: 6rem 5%;
  background: var(--ivory);
}

.booking-container {
  max-width: 820px;
  margin: 0 auto;
}

.booking-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.booking-intro p {
  font-size: 0.8rem;
  color: var(--soft-gray);
  line-height: 2;
  margin-top: 1rem;
}

.booking-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.4rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7572' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-divider {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--border);
}

.form-note {
  font-size: 0.72rem;
  color: var(--soft-gray);
  text-align: center;
  margin-top: 1.4rem;
  line-height: 1.8;
}

.form-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 1.1rem;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.submit-btn:hover {
  background: transparent;
  color: var(--gold);
}

.availability-info {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.76rem;
  color: var(--soft-gray);
  line-height: 1.8;
}

.availability-info strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* ─── INSTAGRAM SECTION ──────────────────────────────────── */
.instagram-section {
  background: var(--charcoal);
  padding: 0;
  overflow: hidden;
}

/* Profile bar */
.ig-profile-bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.8rem 4%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 100%;
}

.ig-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 2px;
}

.ig-avatar svg {
  background: var(--charcoal);
  border-radius: 50%;
  padding: 8px;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,0.7);
}

.ig-profile-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.ig-username {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
}

.ig-tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

.ig-follow-btn {
  flex-shrink: 0;
  padding: 0.5rem 1.4rem;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.25s;
}

.ig-follow-btn:hover {
  opacity: 0.85;
}

/* 3×2 photo grid */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}

.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

/* Gradient fallback tiles (shown before photos are added) */
.ig-tile--1 { background: linear-gradient(145deg, #D9B8B0 0%, #C4998E 40%, #B8936A 100%); }
.ig-tile--2 { background: linear-gradient(145deg, #F3EFE8 0%, #D9B8B0 50%, #C4998E 100%); }
.ig-tile--3 { background: linear-gradient(145deg, #3D3936 0%, #7A7572 50%, #B8936A 100%); }
.ig-tile--4 { background: linear-gradient(145deg, #C4998E 0%, #FAF8F4 60%, #D4B896 100%); }
.ig-tile--5 { background: linear-gradient(145deg, #B8936A 0%, #D9B8B0 50%, #F3EFE8 100%); }
.ig-tile--6 { background: linear-gradient(145deg, #2E2B28 0%, #7A7572 40%, #C4998E 100%); }

/* Real photo tiles */
.ig-tile.ig-real {
  background: var(--charcoal);
}

.ig-tile.ig-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ig-tile.ig-real:hover img {
  transform: scale(1.05);
}

/* Overlay appears on hover */
.ig-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: transparent;
  transition: all 0.3s ease;
}

.ig-tile-overlay span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

.ig-tile-overlay svg {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.3s ease;
}

.ig-tile:hover .ig-tile-overlay {
  background: rgba(0,0,0,0.42);
  color: white;
}

.ig-tile:hover .ig-tile-overlay svg,
.ig-tile:hover .ig-tile-overlay span {
  opacity: 1;
  transform: none;
}

/* Footer Instagram link */
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  transition: color 0.25s;
  text-decoration: none;
}

.footer-instagram:hover {
  color: var(--gold-light);
}

@media (max-width: 600px) {
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ig-profile-bar {
    padding: 1.2rem 5%;
  }
  .ig-tagline {
    display: none;
  }
}

/* ─── BOOKING STEPS & CALENDLY ───────────────────────────── */
.step-label {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.step-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  background: var(--ivory);
}

.step-label strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.step-label span {
  font-size: 0.72rem;
  color: var(--soft-gray);
}

.calendly-wrap {
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  margin-bottom: 1rem;
}

/* ─── ABOUT PAGE ──────────────────────────────────────────── */
.about-placeholder {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  text-align: center;
}

.about-placeholder-inner {
  max-width: 480px;
}

.about-placeholder-inner .divider {
  margin: 2rem auto;
}

.about-placeholder-inner p {
  font-size: 0.78rem;
  color: var(--soft-gray);
  line-height: 2;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .experience-section {
    grid-template-columns: 1fr;
  }

  .exp-content {
    padding: 4rem 5%;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 700px) {
  nav {
    padding: 1.2rem 5%;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 300px;
    background: var(--ivory);
    z-index: 200;
    padding: 5rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  .mobile-menu a {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }

  .mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 2.5rem 1.8rem;
  }

  .intro-stat-sep {
    display: none;
  }

  /* Show only first 6 reviews on mobile homepage */
  .testimonials-grid .testimonial-card:nth-child(n+7) {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }
}
