/* ============================================================
   H.E.R. MOBILE LAB & DNA SERVICES — STYLE SYSTEM
   Palette pulled from brand mark: blush pink, rose/magenta,
   rose-gold, warm charcoal.
   ============================================================ */

:root{
  --blush-50:   #fdf3f1;
  --blush-100:  #fbe3e6;
  --blush-200:  #f6cdd6;
  --pink-400:   #ec6fa0;
  --pink-500:   #e0407e;
  --rose-600:   #c21f63;
  --rose-700:   #971b52;
  --burgundy-800:#5c1436;
  --gold-300:   #ecd3a8;
  --gold-500:   #cda468;
  --gold-700:   #a97b45;
  --charcoal-900:#221d1c;
  --charcoal-700:#3a3230;
  --cream:      #fffaf6;
  --white:      #ffffff;

  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-soft: 0 20px 60px -20px rgba(92, 20, 54, 0.25);
  --shadow-lift: 0 30px 80px -25px rgba(92, 20, 54, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1240px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal-900);
  background: var(--blush-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4{ font-family: var(--font-display); margin: 0; font-weight: 700; color: var(--burgundy-800); }
p{ margin: 0; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
section{ position: relative; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-600);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before{
  content: "";
  width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.italic-accent{ font-style: italic; color: var(--pink-500); font-weight: 500; }

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.btn-primary{
  background: linear-gradient(120deg, var(--rose-600), var(--pink-500) 55%, var(--gold-500));
  background-size: 200% 200%;
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover{ transform: translateY(-3px); background-position: 100% 0; box-shadow: var(--shadow-lift); }
.btn-ghost{
  background: transparent;
  color: var(--burgundy-800);
  border: 1.5px solid var(--gold-500);
}
.btn-ghost:hover{ background: var(--gold-300); transform: translateY(-3px); }

/* ---------------- NAV ---------------- */
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 18px 0;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}
.nav.scrolled{
  background: rgba(253, 243, 241, 0.85);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 30px -18px rgba(92,20,54,0.3);
  padding: 10px 0;
}
.nav .container{ display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand{ display: flex; align-items: center; gap: 14px; }
.brand-mark{
  width: 56px; height: 56px;
  border-radius: 50%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 35% 30%, var(--blush-100), var(--pink-400) 70%, var(--rose-600));
  box-shadow: 0 6px 18px -6px rgba(194,31,99,0.55), inset 0 0 0 2px rgba(255,255,255,0.5);
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img{
  width: 148%; height: 148%;
  object-fit: cover;
  object-position: 38% 46%;
  transform: scale(1.05);
  mix-blend-mode: multiply;
  opacity: 0.96;
}
.brand-word{ line-height: 1.05; }
.brand-word strong{ display:block; font-family: var(--font-display); font-size: 1.15rem; color: var(--burgundy-800); letter-spacing: 0.02em; }
.brand-word span{ display:block; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-600); font-weight: 600; margin-top: 2px; }

.nav-links{ display: flex; align-items: center; gap: 36px; }
.nav-links a{
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
  color: var(--charcoal-700);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px;
  background: linear-gradient(90deg, var(--gold-500), var(--pink-500));
  transition: width .3s ease;
}
.nav-links a:hover::after{ width: 100%; }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav .btn-primary{ padding: 12px 26px; font-size: 0.72rem; }

.burger{ display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding: 6px; }
.burger span{ width: 26px; height: 2px; background: var(--burgundy-800); border-radius: 2px; }

/* ---------------- HERO ---------------- */
.hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 900px 700px at 82% 12%, rgba(236,211,168,0.55), transparent 60%),
    radial-gradient(ellipse 1000px 800px at 8% 100%, rgba(236,111,160,0.35), transparent 60%),
    linear-gradient(160deg, var(--blush-50) 0%, var(--blush-100) 45%, var(--blush-200) 100%);
  overflow: hidden;
}
.hero .container{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1{
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero-copy h1 em{ color: var(--pink-500); font-style: italic; font-weight: 500; }
.hero-copy p.lead{
  margin-top: 26px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--charcoal-700);
  max-width: 46ch;
}
.tagline-strip{
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--rose-600);
}
.tagline-strip .sep{ color: var(--gold-500); margin: 0 10px; }
.hero-actions{ display:flex; gap: 18px; margin-top: 40px; flex-wrap: wrap; }

.hero-stats{ display:flex; gap: 42px; margin-top: 56px; flex-wrap: wrap; }
.hero-stats div strong{ display:block; font-family: var(--font-display); font-size: 1.9rem; color: var(--burgundy-800); }
.hero-stats div span{ font-size: 0.72rem; letter-spacing:0.08em; text-transform: uppercase; color: var(--charcoal-700); }

/* hero emblem — logo blended, no box */
.hero-emblem{ position: relative; display:flex; align-items:center; justify-content:center; }
.emblem-glow{
  position:absolute; inset: -10%;
  background: radial-gradient(circle, rgba(236,111,160,0.35), transparent 65%);
  filter: blur(30px);
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow{
  0%,100%{ transform: scale(1); opacity: 0.8; }
  50%{ transform: scale(1.08); opacity: 1; }
}
.emblem-frame{
  position: relative;
  width: min(440px, 90%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 14px;
  background: conic-gradient(from 210deg, var(--gold-300), var(--pink-400), var(--rose-600), var(--gold-500), var(--gold-300));
  animation: rotate-ring 22s linear infinite;
  box-shadow: var(--shadow-lift);
}
@keyframes rotate-ring{ to{ transform: rotate(360deg); } }
.emblem-inner{
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--blush-100);
  overflow: hidden;
  position: relative;
}
.emblem-inner img{
  width: 100%; height: 100%;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(circle, black 62%, transparent 92%);
  mask-image: radial-gradient(circle, black 62%, transparent 92%);
}
.emblem-float{
  position:absolute;
  padding: 10px 18px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing:0.04em;
  color: var(--rose-600);
  box-shadow: var(--shadow-soft);
  animation: float-y 5s ease-in-out infinite;
}
.emblem-float.f1{ top: 6%; left: -6%; animation-delay: .3s; }
.emblem-float.f2{ bottom: 10%; right: -8%; animation-delay: 1.4s; }
@keyframes float-y{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* ---------------- TRUST BAR ---------------- */
.trust-bar{
  background: var(--burgundy-800);
  padding: 34px 0;
}
.trust-bar .container{
  display:flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.trust-item{ display:flex; align-items:center; gap: 12px; color: var(--gold-300); }
.trust-item strong{ font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); }
.trust-item span{ font-size: 0.72rem; letter-spacing:0.06em; text-transform: uppercase; color: var(--gold-300); }

/* ---------------- SECTION GENERIC ---------------- */
.section{ padding: clamp(70px, 10vw, 130px) 0; }
.section-head{ max-width: 720px; margin-bottom: 64px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.15; }
.section-head p{ margin-top: 20px; font-size: 1.05rem; line-height: 1.75; color: var(--charcoal-700); }

/* ---------------- ABOUT / PHILOSOPHY ---------------- */
.about{ background: var(--cream); }
.about-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items:center; }
.her-breakdown{ display:flex; flex-direction:column; gap: 22px; }
.her-letter{ display:flex; gap: 18px; align-items:flex-start; }
.her-letter .glyph{
  font-family: var(--font-display); font-size: 2.6rem; color: var(--pink-500);
  width: 56px; flex-shrink:0; line-height:1;
}
.her-letter .txt strong{ display:block; font-family: var(--font-display); font-size: 1.2rem; color: var(--burgundy-800); }
.her-letter .txt p{ margin-top: 6px; color: var(--charcoal-700); font-size: 0.96rem; line-height:1.6; }
.about-panel{
  position: relative;
  background: linear-gradient(150deg, var(--blush-100), var(--blush-200));
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-soft);
}
.about-panel blockquote{
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--burgundy-800);
  font-style: italic;
  margin: 0;
}
.about-panel .quote-attrib{ margin-top: 22px; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--rose-600); font-weight: 700; }

/* ---------------- MEET THE FOUNDER ---------------- */
.founder{ background: linear-gradient(160deg, var(--blush-100), var(--blush-50)); }
.founder-grid{ display:grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items:start; }
.founder-photo{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  position: sticky;
  top: 110px;
}
.founder-photo img{ width: 100%; display:block; }
.credential-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.credential-grid div{ display:flex; gap: 10px; align-items:flex-start; font-size: 0.9rem; color: var(--charcoal-700); line-height:1.5; }
.credential-grid span.dot{ width:7px; height:7px; border-radius:50%; background: var(--gold-500); margin-top:7px; flex-shrink:0; }
.specialty-tags{ margin-top: 16px; display:flex; flex-wrap:wrap; gap: 10px; }
.specialty-tags span{
  font-size: 0.78rem; font-weight: 600; color: var(--rose-600);
  background: var(--cream); border: 1px solid var(--gold-300);
  padding: 7px 14px; border-radius: 999px;
}
@media (max-width: 900px){
  .founder-grid{ grid-template-columns: 1fr; }
  .founder-photo{ position: static; max-width: 380px; margin: 0 auto; }
  .credential-grid{ grid-template-columns: 1fr; }
}

/* ---------------- SERVICES / STATIC CARDS ---------------- */
.services{ background: var(--blush-50); }
.service-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.service-card{
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(205,164,104,0.3);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.service-card-photo{
  height: 170px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.service-card-body{
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-body h3{ font-size: 1.1rem; line-height: 1.3; color: var(--burgundy-800); }
.service-card-body .tag{ margin-top: 8px; font-size: 0.74rem; color: var(--rose-600); font-weight: 600; letter-spacing: 0.03em; }
.quick-facts{
  margin-top: 18px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.quick-facts li{
  font-size: 0.82rem;
  color: var(--charcoal-700);
  display: flex;
  align-items: center;
  gap: 9px;
}
.quick-facts li::before{
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}
.view-details{
  margin-top: auto;
  padding-top: 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose-600);
  cursor: pointer;
  font-family: var(--font-body);
}
.view-details:hover{ color: var(--burgundy-800); }

/* ---------------- SERVICE DETAIL MODAL ---------------- */
.service-modal-backdrop{
  position: fixed; inset: 0;
  background: rgba(34,29,28,0.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  padding: 24px;
}
.service-modal-backdrop.open{ opacity: 1; pointer-events: auto; }
.service-modal{
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lift);
  transform: translateY(20px);
  transition: transform .35s ease;
  position: relative;
}
.service-modal-backdrop.open .service-modal{ transform: translateY(0); }
.modal-close{
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,250,246,0.9);
  border: none;
  font-size: 1.3rem;
  color: var(--burgundy-800);
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-soft);
}
.modal-photo{
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-body{ padding: 32px 34px 34px; }
.modal-body h3{ font-size: 1.4rem; line-height: 1.25; color: var(--burgundy-800); margin-top: 6px; }
.modal-desc{ margin-top: 14px; color: var(--charcoal-700); line-height: 1.75; font-size: 0.95rem; }
.modal-benefits{
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.modal-benefit{ display: flex; gap: 12px; align-items: flex-start; }
.modal-benefit .check{
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold-300);
  color: var(--rose-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.modal-benefit .check svg{ width: 13px; height: 13px; }
.modal-benefit strong{ display: block; font-size: 0.86rem; color: var(--burgundy-800); }
.modal-benefit span{ font-size: 0.8rem; color: var(--charcoal-700); line-height: 1.5; }
.modal-cta{ margin-top: 30px; width: 100%; justify-content: center; }
@media (max-width: 560px){
  .modal-benefits{ grid-template-columns: 1fr; }
  .modal-body{ padding: 28px 22px 28px; }
}

/* ---------------- GALLERY (bento) ---------------- */
.gallery{ background: var(--blush-50); }
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  grid-template-areas:
    "feature feature a b"
    "feature feature c d";
  gap: 22px;
}
.gallery-grid .g-feature{ grid-area: feature; }
.gallery-grid .g-a{ grid-area: a; }
.gallery-grid .g-b{ grid-area: b; }
.gallery-grid .g-c{ grid-area: c; }
.gallery-grid .g-d{ grid-area: d; }

.gallery-card{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .4s ease, box-shadow .4s ease;
  isolation: isolate;
}
.gallery-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.gallery-card img{ position:absolute; inset:0; width: 100%; height: 100%; object-fit: cover; display:block; background: var(--blush-100); }
.gallery-card::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34,29,28,0) 45%, rgba(34,29,28,0.78) 100%);
  z-index: 1;
}
.gallery-caption{ position: relative; z-index: 2; margin-top: auto; padding: 22px 24px; display:flex; flex-direction:column; justify-content:flex-end; height:100%; }
.gallery-caption h4{ font-size: 1.1rem; color: var(--cream); margin-bottom: 6px; }
.gallery-caption p{ font-size: 0.86rem; color: rgba(255,250,246,0.88); line-height: 1.55; }
.g-feature .gallery-caption h4{ font-size: 1.4rem; }

@media (max-width: 900px){
  .gallery-grid{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px repeat(2, 220px);
    grid-template-areas:
      "feature feature"
      "a b"
      "c d";
  }
}
@media (max-width: 560px){
  .gallery-grid{
    grid-template-columns: 1fr;
    grid-template-rows: 240px repeat(4, 200px);
    grid-template-areas: "feature" "a" "b" "c" "d";
  }
}

/* ---------------- HOW IT WORKS ---------------- */
.how{ background: var(--cream); }
.how-steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: step;
}
.step{ position: relative; padding: 34px 26px; border-radius: var(--radius-md); background: var(--blush-50); }
.step::before{
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--gold-500);
  display:block;
  margin-bottom: 18px;
}
.step h4{ font-size: 1.05rem; color: var(--burgundy-800); margin-bottom: 10px; }
.step p{ font-size: 0.9rem; color: var(--charcoal-700); line-height: 1.6; }
.step-connector{
  display:none;
}

/* ---------------- KIT ---------------- */
.kit{ background: var(--cream); }
.kit-layout{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
.kit-copy .checklist{ margin-top: 26px; display:flex; flex-direction:column; gap: 13px; }
.kit-copy .checklist div{ display:flex; gap: 10px; align-items:flex-start; font-size: 0.93rem; color: var(--charcoal-700); }
.kit-copy .checklist span.dot{ width:8px; height:8px; border-radius:50%; background: var(--gold-500); margin-top:7px; flex-shrink:0; }
.kit-photo{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lift); }
.kit-photo img{ width:100%; display:block; }
.kit-strip{ margin-top: 60px; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-soft); position:relative; }
.kit-strip img{ width:100%; display:block; }
.kit-strip .strip-caption{
  position:absolute; left:0; right:0; bottom:0; padding: 26px 32px;
  background: linear-gradient(180deg, rgba(34,29,28,0), rgba(34,29,28,0.78));
  color: var(--cream); font-family: var(--font-display); font-size: 1.08rem;
}
@media (max-width: 900px){
  .kit-layout{ grid-template-columns: 1fr; }
}

/* ---------------- WHY CHOOSE ---------------- */
.why{ background: linear-gradient(160deg, var(--blush-100), var(--blush-50)); }
.why-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card{
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease;
}
.why-card:hover{ transform: translateY(-8px); }
.why-card .icon{ width:48px; height:48px; border-radius:50%; background: var(--gold-300); display:flex; align-items:center; justify-content:center; margin-bottom:18px; color: var(--rose-700); }
.why-card h4{ font-size: 1.02rem; color: var(--burgundy-800); margin-bottom: 8px; }
.why-card p{ font-size: 0.88rem; color: var(--charcoal-700); line-height: 1.6; }

/* ---------------- TEAM ---------------- */
.team{ background: var(--cream); }
.team-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 34px; }
.team-card{ text-align:center; }
.avatar{
  width: 120px; height: 120px; border-radius: 50%;
  margin: 0 auto 22px;
  display:flex; align-items:center; justify-content:center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush-200), var(--blush-100));
  box-shadow: var(--shadow-soft);
  border: 3px solid var(--gold-300);
}
.avatar img{ width: 100%; height: 100%; object-fit: cover; }
.team-card h4{ font-size: 1.08rem; color: var(--burgundy-800); }
.team-card .role{ font-size: 0.78rem; letter-spacing:0.05em; text-transform:uppercase; color: var(--rose-600); font-weight:700; margin-top:4px; }
.team-card p.bio{ margin-top: 12px; font-size: 0.88rem; color: var(--charcoal-700); line-height:1.6; }

/* ---------------- TESTIMONIALS ---------------- */
.testimonials{ background: var(--burgundy-800); color: var(--blush-100); }
.testimonials .section-head h2{ color: var(--cream); }
.testimonials .section-head p{ color: var(--gold-300); }
.testi-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.testi-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(236,211,168,0.25);
  border-radius: var(--radius-md);
  padding: 32px;
}
.testi-card .stars{ color: var(--gold-500); letter-spacing: 3px; margin-bottom: 16px; }
.testi-card p.quote{ font-size: 0.95rem; line-height: 1.7; color: var(--blush-100); font-style: italic; }
.testi-who{ margin-top: 22px; display:flex; align-items:center; gap: 14px; }
.testi-who .mini-avatar{
  width: 42px; height:42px; border-radius:50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-700));
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; color: var(--burgundy-800);
}
.testi-who strong{ display:block; font-size: 0.88rem; color: var(--cream); }
.testi-who span{ font-size: 0.72rem; color: var(--gold-300); }

/* ---------------- LEAVE A REVIEW ---------------- */
.review-cta{ background: var(--blush-50); }
.review-cta-grid{ display:grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items:center; }
.review-qr-panel{
  background: var(--cream);
  border: 1px solid rgba(205,164,104,0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 32px;
  text-align: center;
  justify-self: center;
}
.review-qr-panel img{ width: 220px; height: 220px; border-radius: var(--radius-md); }
.review-qr-panel p{ margin-top: 16px; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 700; color: var(--rose-600); }
@media (max-width: 900px){
  .review-cta-grid{ grid-template-columns: 1fr; }
  .review-cta-copy{ text-align:center; }
  .review-cta-copy .btn{ width:100%; justify-content:center; }
}

/* ---------------- PRICING ---------------- */
.pricing{ background: var(--cream); }
.price-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.price-card{
  background: var(--blush-50);
  border: 1px solid rgba(205,164,104,0.3);
  border-radius: var(--radius-md);
  padding: 34px 32px;
  box-shadow: var(--shadow-soft);
}
.price-card h3{
  font-size: 1.15rem; color: var(--burgundy-800);
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1.5px solid var(--gold-300);
}
.price-row{ display:flex; align-items:baseline; gap: 10px; padding: 9px 0; }
.price-row .name{ font-size: 0.95rem; color: var(--charcoal-900); white-space:nowrap; }
.price-row .name::after{
  content:"";
  flex: 1;
  margin: 0 8px;
  border-bottom: 2px dotted rgba(94,20,54,0.25);
  display: inline-block;
  transform: translateY(-4px);
}
.price-row{ flex-wrap: nowrap; }
.price-row .name{ display:flex; align-items:baseline; flex:1; min-width:0; }
.price-row .amount{ flex-shrink:0; font-weight:700; color: var(--rose-600); font-size: 0.92rem; white-space:nowrap; }
.price-note{ margin-top: 16px; font-size: 0.8rem; line-height: 1.6; color: var(--charcoal-700); font-style: italic; }
.price-cta{
  margin-top: 46px;
  display:flex; justify-content:center; gap: 18px; flex-wrap:wrap;
}
@media (max-width: 900px){
  .price-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .price-row .name{ white-space: normal; }
  .price-cta{ flex-direction:column; align-items:stretch; }
}

/* ---------------- FAQ ---------------- */
.faq{ background: var(--blush-50); }
.faq-list{ max-width: 860px; margin: 0 auto; }
.faq-item{
  border-bottom: 1px solid var(--blush-200);
  padding: 26px 0;
}
.faq-q{
  display:flex; align-items:center; justify-content:space-between;
  cursor:pointer; font-family: var(--font-display); font-size: 1.1rem; color: var(--burgundy-800);
}
.faq-q .plus{ font-size: 1.4rem; color: var(--rose-600); transition: transform .3s ease; }
.faq-item.open .plus{ transform: rotate(135deg); }
.faq-a{
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: 0.92rem; color: var(--charcoal-700); line-height: 1.7;
}
.faq-item.open .faq-a{ max-height: 240px; padding-top: 14px; }

/* ---------------- BOOKING / CONTACT ---------------- */
.booking{
  background:
    radial-gradient(ellipse 800px 500px at 90% 0%, rgba(236,211,168,0.4), transparent 60%),
    linear-gradient(160deg, var(--rose-600), var(--burgundy-800));
  color: var(--cream);
}
.booking .container{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
.booking-copy .eyebrow{ color: var(--gold-300); }
.booking-copy .eyebrow::before{ background: linear-gradient(90deg, var(--gold-300), transparent); }
.booking-copy h2{ color: var(--cream); font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.booking-copy p{ margin-top: 18px; color: var(--blush-100); line-height: 1.75; max-width: 46ch; }
.booking-points{ margin-top: 28px; display:flex; flex-direction:column; gap: 14px; }
.booking-points div{ display:flex; gap: 12px; align-items:flex-start; font-size: 0.92rem; color: var(--blush-100); }
.booking-points span.dot{ width:8px; height:8px; border-radius:50%; background: var(--gold-500); margin-top: 7px; flex-shrink:0; }

.booking-form{
  background: rgba(255,250,246,0.97);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lift);
  color: var(--charcoal-900);
}
.booking-form h3{ font-size: 1.3rem; color: var(--burgundy-800); margin-bottom: 6px; }
.booking-form .sub{ font-size: 0.85rem; color: var(--charcoal-700); margin-bottom: 24px; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field{ display:flex; flex-direction:column; gap: 6px; }
.form-field.full{ grid-column: 1 / -1; }
.form-field label{ font-size: 0.72rem; letter-spacing:0.05em; text-transform:uppercase; font-weight:700; color: var(--rose-600); }
.form-field input, .form-field select, .form-field textarea{
  border: 1.5px solid var(--blush-200);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--white);
  color: var(--charcoal-900);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline: none; border-color: var(--gold-500);
}
.booking-form .btn-primary{ width: 100%; justify-content:center; margin-top: 6px; }
.form-note{ margin-top: 14px; font-size: 0.74rem; color: var(--charcoal-700); text-align:center; }
.form-status{ margin-top: 14px; font-size: 0.85rem; text-align:center; font-weight:600; min-height: 1.2em; }
.form-status.success{ color: #1a7a4c; }
.form-status.error{ color: var(--rose-600); }

/* ---------------- FOOTER ---------------- */
.site-footer{ background: var(--charcoal-900); color: var(--blush-200); padding: 70px 0 30px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; }
.footer-brand{ display:flex; align-items:center; gap: 14px; margin-bottom: 18px; }
.footer-brand .brand-mark{ width:52px; height:52px; }
.footer-brand strong{ font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); display:block; }
.footer-brand span{ font-size: 0.62rem; letter-spacing:0.16em; text-transform:uppercase; color: var(--gold-300); }
.site-footer p.desc{ font-size: 0.88rem; line-height:1.7; color: rgba(251,227,230,0.75); max-width: 34ch; }
.footer-col h5{ font-family: var(--font-body); font-size: 0.78rem; letter-spacing:0.1em; text-transform:uppercase; color: var(--gold-300); margin-bottom: 20px; }
.footer-col ul li{ margin-bottom: 12px; font-size: 0.88rem; color: rgba(251,227,230,0.8); }
.footer-col ul li a:hover{ color: var(--pink-400); }
.footer-social{ display:flex; gap: 12px; margin-top: 18px; }
.footer-social a{
  width: 36px; height:36px; border-radius:50%;
  border: 1px solid rgba(236,211,168,0.4);
  display:flex; align-items:center; justify-content:center;
  font-size: 0.75rem; color: var(--gold-300);
}
.footer-social a:hover{ background: var(--gold-500); color: var(--charcoal-900); }
.footer-bottom{
  margin-top: 60px; padding-top: 26px; border-top: 1px solid rgba(251,227,230,0.15);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap: 12px;
  font-size: 0.78rem; color: rgba(251,227,230,0.6);
}
.placeholder-tag{
  display:inline-block; font-size: 0.62rem; letter-spacing: 0.04em;
  background: rgba(236,111,160,0.18); color: var(--pink-400);
  padding: 2px 8px; border-radius: 6px; margin-left: 6px; vertical-align: middle;
}

/* ---------------- SCROLL REVEAL ---------------- */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-emblem{ order: -1; margin-bottom: 20px; }
  .about-grid{ grid-template-columns: 1fr; }
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
  .how-steps{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .team-grid{ grid-template-columns: repeat(2, 1fr); }
  .testi-grid{ grid-template-columns: 1fr; }
  .booking .container{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .nav-links, .nav-cta .btn-ghost{ display:none; }
  .burger{ display:flex; }
  .service-grid, .why-grid, .team-grid{ grid-template-columns: 1fr; }
  .how-steps{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .hero-stats{ gap: 26px; }
  .footer-grid{ grid-template-columns: 1fr; }
}

/* mobile nav drawer */
.nav-drawer{
  position: fixed; inset: 0 0 0 auto; width: min(320px, 82%); height: 100vh;
  background: var(--cream); z-index: 600; transform: translateX(100%);
  transition: transform .4s ease; padding: 100px 34px 34px; box-shadow: -20px 0 60px rgba(0,0,0,0.25);
}
.nav-drawer.open{ transform: translateX(0); }
.nav-drawer a{ display:block; padding: 14px 0; font-weight:600; border-bottom: 1px solid var(--blush-200); }
.drawer-close{ position:absolute; top: 30px; right: 30px; font-size: 1.6rem; background:none; border:none; color: var(--rose-600); cursor:pointer; }
.drawer-backdrop{
  position: fixed; inset:0; background: rgba(34,29,28,0.4); z-index: 550;
  opacity:0; pointer-events:none; transition: opacity .4s ease;
}
.drawer-backdrop.open{ opacity:1; pointer-events:auto; }
