/* ============================================================
   VINEYARD GLOW — Shared stylesheet for all pages
   ------------------------------------------------------------
   Brand (from logo):   orchid #B58BC4 / deep #875892 / charcoal
   Coastal (from MV photography): warm sand, sea-mist, deep sea

   EDIT THIS FILE ONCE and every page updates.
   ============================================================ */
:root {
  --sand: #F6F1E8;          /* warm beach sand — section background */
  --cream: #FBF9F4;         /* shell white — light background */
  --sea-mist: #E9F0F0;      /* pale coastal blue-green */
  --sea: #29525D;           /* deep Atlantic slate — dark bands */
  --sea-deep: #1E3E47;      /* deeper sea for gradients/footer */
  --white: #FFFFFF;
  --orchid: #B58BC4;        /* logo orchid */
  --orchid-soft: #EDE2F1;
  --orchid-deep: #875892;   /* AA-accessible brand accent */
  --orchid-deepest: #6E4380;
  --ink: #2B2722;           /* primary text — near-black for maximum legibility */
  --ink-soft: #3E3933;      /* secondary text — dark, strong contrast on sand/cream */
  --gold: #B9975B;
  --gold-deep: #8F7038;
  --shadow: 0 20px 60px rgba(41, 82, 93, 0.12);
  --radius: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;               /* regular weight — easy on older eyes */
  background: var(--cream);
  color: var(--ink);
  line-height: 1.75;
  font-size: 1.2rem;              /* large base type for readability */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

img { max-width: 100%; display: block; }
a { color: var(--orchid-deep); }

.container { width: min(1160px, 92%); margin: 0 auto; }

/* ---------- Reading progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 4px; z-index: 1300;
  background: linear-gradient(90deg, var(--orchid), var(--orchid-deep));
  transform: scaleX(0); transform-origin: left center; pointer-events: none;
}

/* ---------- "Keep going" cue ---------- */
.section-next {
  display: block; width: fit-content; margin: 3rem auto 0; text-align: center;
  text-decoration: none; font-size: 0.95rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600; color: var(--orchid-deepest);
}
.section-next .next-arrow {
  display: block; margin: 0.4rem auto 0; width: 14px; height: 14px;
  border-right: 2.5px solid currentColor; border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg); animation: nudge 2.4s ease-in-out infinite;
}
@keyframes nudge { 0%,100% { transform: rotate(45deg) translate(0,0); opacity: 0.5; } 50% { transform: rotate(45deg) translate(4px,4px); opacity: 1; } }
.section-next:hover { color: var(--orchid-deep); }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--white);
  padding: 0.75rem 1.25rem; z-index: 2000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--orchid-deep); outline-offset: 3px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================================================
   HEADER / NAV — three-zone grid keeps everything aligned
============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(rgba(251,249,244,0.9), rgba(251,249,244,0));
  padding: 0;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(251, 249, 244, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(41,82,93,0.12);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;   /* brand | links | CTA */
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand .brand-orchid { width: 42px; height: auto; flex: none; }
.brand .brand-text { display: flex; flex-direction: column; justify-content: center; }
.brand .brand-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: 1.45rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); line-height: 1.15;
}
.brand .brand-sub {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; line-height: 1.4; margin-top: 0.1rem;
}
.nav-links {
  display: flex; justify-content: center; align-items: center;
  gap: clamp(0.8rem, 2vw, 1.9rem); list-style: none;
}
.nav-links a {
  display: inline-block;
  text-decoration: none; color: var(--ink); font-size: 0.98rem;
  letter-spacing: 0.09em; text-transform: uppercase; font-weight: 600;
  line-height: 1; padding: 0.6rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}
.nav-links a:hover { color: var(--orchid-deep); border-color: var(--orchid-deep); }
/* Booking button inside the mobile menu — hidden on desktop, where the header CTA shows instead */
.nav-cta-mobile { display: none; }
/* Current page indicator */
.nav-links a[aria-current="page"] { color: var(--orchid-deepest); border-color: var(--orchid-deep); }

/* ---------- Mobile menu ---------- */
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 0.6rem; border-radius: 10px; color: var(--ink);
}
.nav-toggle svg { width: 30px; height: 30px; display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  text-decoration: none; border-radius: 999px; cursor: pointer;
  font-family: 'Jost', sans-serif; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap; border: 0;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orchid-deep); color: var(--white);
  padding: 1rem 2rem; font-size: 1rem;
  box-shadow: 0 10px 26px rgba(135, 88, 146, 0.35);
}
.btn-primary:hover { background: var(--orchid-deepest); box-shadow: 0 14px 32px rgba(135, 88, 146, 0.45); }
.btn-light {
  background: var(--white); color: var(--sea);
  padding: 1rem 2rem; font-size: 1rem;
  box-shadow: 0 10px 26px rgba(30, 62, 71, 0.25);
}
.btn-light:hover { background: var(--sand); }
.btn-outline {
  background: transparent; color: var(--orchid-deepest);
  border: 2px solid var(--orchid-deep); padding: 0.9rem 1.9rem; font-size: 1rem;
}
.btn-outline:hover { background: var(--orchid-soft); }
.nav-cta { padding: 0.75rem 1.5rem; font-size: 0.9rem; }

/* ---------- Sticky floating CTA ---------- */
.floating-cta {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 1100;
  background: var(--orchid-deep); color: var(--white);
  padding: 1.05rem 1.8rem; font-size: 1rem;
  box-shadow: 0 12px 34px rgba(110, 67, 128, 0.45);
  opacity: 0; transform: translateY(20px); pointer-events: none;
}
.floating-cta.visible {
  opacity: 1; transform: translateY(0); pointer-events: auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.floating-cta .phone-icon { width: 17px; height: 17px; flex: none; }

/* ============================================================
   HERO — full-bleed Aquinnah cliffs at golden hour (home page)
============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  isolation: isolate; overflow: hidden;
  padding: 8rem 0 7rem;
}
.hero-bg {
  position: absolute; inset: -6%; z-index: -2;
  background: url('../assets/hero-cliffs.jpg') center 35% / cover no-repeat;
  will-change: transform;
}
.hero::after {  /* soft veil so text stays readable over the photo */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(30,62,71,0.52) 0%, rgba(30,62,71,0.40) 45%, rgba(251,249,244,0.94) 100%);
}
.hero-inner { width: min(880px, 92%); margin: 0 auto; }
.hero-eyebrow {
  font-size: 1rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--white); font-weight: 600; margin-bottom: 1.4rem;
  text-shadow: 0 2px 14px rgba(30,62,71,0.55);
}
.hero h1 .tm { font-size: 0.35em; vertical-align: super; letter-spacing: 0; }
.hero h1 {
  font-size: clamp(2.1rem, 5.6vw, 4.1rem);
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
  color: var(--white); text-shadow: 0 3px 22px rgba(30,62,71,0.55);
}
.hero .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--white); margin: 1.1rem 0 1.6rem;
  text-shadow: 0 2px 14px rgba(30,62,71,0.6);
}
.hero p.lede {
  max-width: 700px; margin: 0 auto 2.4rem;
  font-size: 1.3rem; font-weight: 500; color: var(--white);
  text-shadow: 0 2px 12px rgba(30,62,71,0.8), 0 1px 4px rgba(30,62,71,0.6);
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Wave divider between hero and next section */
.wave { display: block; width: 100%; height: 70px; margin-top: -1px; }
.wave-hero { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 1; }

/* ============================================================
   PAGE HERO — compact banner for the interior pages
============================================================ */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 12rem 0 5.5rem; text-align: center; color: var(--white);
}
.page-hero-bg {
  position: absolute; inset: -8% 0; z-index: -2;
  background-position: center 40%; background-size: cover; background-repeat: no-repeat;
  will-change: transform;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(30,62,71,0.78) 0%, rgba(30,62,71,0.66) 100%);
}
.page-hero .eyebrow { color: #E6D6EE; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.7rem); color: var(--white);
  text-shadow: 0 3px 22px rgba(30,62,71,0.5); max-width: 900px; margin: 0 auto;
}
.page-hero p.lede {
  max-width: 720px; margin: 1.3rem auto 0; color: var(--white);
  font-size: 1.22rem; font-weight: 500;
  text-shadow: 0 2px 12px rgba(30,62,71,0.7);
}
.page-hero .hero-actions { margin-top: 2.2rem; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { background: var(--sand); padding: 0.9rem 0; font-size: 0.95rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.breadcrumbs li { display: flex; align-items: center; gap: 0.5rem; color: var(--ink-soft); }
.breadcrumbs li + li::before { content: "\203A"; color: var(--gold-deep); }
.breadcrumbs a { color: var(--orchid-deep); text-decoration: none; font-weight: 500; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ============================================================
   SECTIONS (shared)
============================================================ */
section { padding: 6.5rem 0; position: relative; }
.eyebrow {
  font-size: 1rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--orchid-deepest); font-weight: 600; margin-bottom: 1rem;
}
.section-title { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-bottom: 1.4rem; font-weight: 500; }
.divider-flourish { width: 64px; height: 2px; background: var(--gold); margin: 1.6rem 0; }
.center { text-align: center; }
.center .divider-flourish { margin-left: auto; margin-right: auto; }
.prose p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.prose h3 { font-size: 1.9rem; margin: 2.4rem 0 0.8rem; }
.lead-copy { max-width: 760px; margin: 0 auto; }

/* ---------- Mission ---------- */
.mission { background: var(--cream); }
.mission-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; }
.mission p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.mission-visual { position: relative; }
.mission-visual .photo-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.mission-visual .photo-badge {
  position: absolute; left: 50%; bottom: -1.4rem; transform: translateX(-50%);
  background: var(--white); border-radius: 999px; padding: 0.55rem 1.5rem;
  font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--sea-deep); box-shadow: 0 10px 30px rgba(30,62,71,0.18); white-space: nowrap;
}
.mission-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.5rem; color: var(--orchid-deepest);
  border-left: 3px solid var(--gold); padding-left: 1.4rem; margin-top: 1.8rem;
}

/* ---------- Protocol band (parallax beach) ---------- */
.protocol {
  position: relative; isolation: isolate; text-align: center;
  color: var(--white); overflow: hidden; padding: 8rem 0;
}
.protocol-bg {
  position: absolute; inset: -12% 0; z-index: -2;
  background: url('../assets/golden-beach.jpg') center / cover no-repeat;
  will-change: transform;
}
.protocol::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(30,62,71,0.82), rgba(41,82,93,0.78));
}
.protocol .eyebrow { color: #E6D6EE; }
.protocol .section-title { color: var(--white); }
.protocol p { color: var(--white); max-width: 760px; margin: 0 auto 1.2rem; font-size: 1.25rem; font-weight: 500; }
.protocol-words { display: flex; justify-content: center; gap: clamp(1rem, 6vw, 4.5rem); margin-top: 2.6rem; flex-wrap: wrap; }
.protocol-words span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 3.6rem); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white);
}
.protocol-words span em { font-style: normal; color: inherit; }

/* ---------- Services ---------- */
.services { background: var(--sand); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3.2rem; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2.6rem 2.2rem; box-shadow: var(--shadow);
  border-top: 4px solid var(--orchid);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(30,62,71,0.16); }
.service-card .icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--orchid-soft); color: var(--orchid-deepest);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.service-card .icon svg { width: 29px; height: 29px; }
.service-card h3 { font-size: 1.9rem; margin-bottom: 0.6rem; }
.service-card .service-tag {
  font-size: 0.9rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #7A5F2F; font-weight: 600; margin-bottom: 1rem;
}
.service-card p { color: var(--ink-soft); font-size: 1.12rem; flex: 1; }
.badge-natural {
  display: inline-block; margin-top: 1.6rem; align-self: flex-start;
  font-size: 0.88rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orchid-deepest); background: var(--orchid-soft);
  padding: 0.45rem 1rem; border-radius: 999px; font-weight: 600;
}
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.4rem;
  font-size: 0.92rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--orchid-deepest); text-decoration: none; align-self: flex-start;
}
.card-link::after {
  content: ""; width: 9px; height: 9px;
  border-right: 2.5px solid currentColor; border-bottom: 2.5px solid currentColor;
  transform: rotate(-45deg); transition: transform 0.25s ease;
}
.card-link:hover { color: var(--orchid-deep); }
.card-link:hover::after { transform: rotate(-45deg) translate(3px, 3px); }

/* ---------- Fitzpatrick skin type scale ---------- */
.skin-tones { background: var(--sea-mist); }
.fitz-title {
  text-align: center; margin: 3rem 0 1.6rem;
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--sea);
}
.fitzpatrick-scale {
  list-style: none; display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1rem; margin-bottom: 2.6rem;
}
.fitz-card {
  background: var(--white); border-radius: 16px; padding: 1.7rem 0.9rem 1.5rem;
  text-align: center; box-shadow: 0 8px 26px rgba(30,62,71,0.08);
  display: flex; flex-direction: column; align-items: center;
}
.fitz-swatch {
  width: 60px; height: 60px; border-radius: 50%; margin-bottom: 1rem; flex: none;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 5px rgba(41,82,93,0.14);
}
/* Fitzpatrick I–VI, light to deeply pigmented */
.fitz-1 { background: #F2D6BF; }
.fitz-2 { background: #E8BC96; }
.fitz-3 { background: #D19E75; }
.fitz-4 { background: #B5763F; }
.fitz-5 { background: #8E5227; }
.fitz-6 { background: #3D2317; }
.fitz-type {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  color: var(--ink); line-height: 1.2; margin-bottom: 0.35rem;
}
.fitz-desc { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.4; }

/* ---------- Practitioner (Meet Dr. Gear) ---------- */
.practitioner { padding: 5rem 0; }
.practitioner-grid {
  display: grid;
  /* Narrow photo column leaves the bio room to breathe, so the text
     wraps to fewer lines and the whole section fits one screen. */
  grid-template-columns: minmax(230px, 300px) 1fr;
  gap: 3.5rem;
  align-items: center;
}
.practitioner-photo { position: relative; margin: 0; }
.practitioner-photo img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.practitioner-photo figcaption {
  position: absolute; left: 50%; bottom: -1.1rem; transform: translateX(-50%);
  background: var(--white); border-radius: 999px; padding: 0.5rem 1.4rem;
  font-size: 0.9rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--sea-deep); box-shadow: 0 10px 30px rgba(30,62,71,0.18); white-space: nowrap;
}
.practitioner-copy p { color: var(--ink-soft); margin-bottom: 1rem; font-size: 1.12rem; }
.practitioner-copy .section-title { margin-bottom: 1rem; }
.practitioner-copy .divider-flourish { margin: 1.1rem 0; }
.practitioner-copy .check-list { margin-top: 1.4rem; }
.practitioner-copy .check-list li { font-size: 1.05rem; padding: 0.4rem 0 0.4rem 2.3rem; }
.practitioner-copy .check-list li::before { top: 0.72rem; }
.practitioner-copy .check-list li::after { top: 1.01rem; }

/* ---------- Treatment detail blocks ---------- */
.treatment-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.treatment-detail + .treatment-detail { margin-top: 6rem; padding-top: 6rem; border-top: 1px solid rgba(41,82,93,0.14); }
.treatment-detail .detail-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.treatment-detail.reverse .detail-visual { order: -1; }
.spec-row { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1.8rem; }
.spec { min-width: 8rem; }
.spec .spec-label {
  font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}
.spec .spec-value {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--orchid-deep); line-height: 1.2;
}

/* ---------- EMFACE spotlight ---------- */
.emface { background: var(--cream); }
.emface-intro { max-width: 760px; margin: 0 auto; text-align: center; }
.emface-intro .poster-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem); color: var(--sea); margin-bottom: 1.2rem;
}
.emface-intro p { color: var(--ink-soft); }
.emface-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; margin-top: 3rem; }
.treatment-col {
  background: var(--white); border-radius: var(--radius); padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow); border-top: 4px solid var(--sea);
}
.treatment-col h3 { font-size: 1.7rem; margin-bottom: 0.35rem; }
.treatment-col .col-sub {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.25rem; color: #7A5F2F; margin-bottom: 1.3rem;
}
.check-list { list-style: none; }
.check-list li {
  position: relative; padding: 0.5rem 0 0.5rem 2.3rem; color: var(--ink-soft);
  font-size: 1.12rem; border-top: 1px solid var(--sand);
}
.check-list li:first-child { border-top: none; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.85rem;
  width: 1.35rem; height: 1.35rem; border-radius: 50%; background: var(--orchid-soft);
}
.check-list li::after {
  content: ""; position: absolute; left: 0.36rem; top: 1.14rem;
  width: 0.62rem; height: 0.34rem;
  border-left: 2.5px solid var(--orchid-deepest);
  border-bottom: 2.5px solid var(--orchid-deepest);
  transform: rotate(-45deg);
}
.benefit-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.6rem; }
.chip { background: var(--sea-mist); border-radius: 16px; padding: 1.4rem 1.1rem; text-align: center; }
.chip .chip-title {
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 0.95rem; color: var(--sea-deep); margin-bottom: 0.3rem;
}
.chip p { font-size: 1.05rem; color: var(--ink); line-height: 1.5; }
.emface-banner {
  margin-top: 2.8rem; text-align: center;
  border: 1px solid var(--gold); border-radius: 16px; padding: 1.7rem 1.4rem;
}
.emface-banner .banner-line {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.35rem, 3vw, 1.8rem); color: var(--ink); display: block;
}
.emface-banner .banner-cta {
  font-size: 0.95rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: #6E5527; display: block; margin-top: 0.5rem;
}

/* ---------- How-it-works steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3rem; }
.step {
  background: var(--white); border-radius: var(--radius); padding: 2.2rem 2rem;
  box-shadow: var(--shadow); position: relative;
}
.step .step-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem; line-height: 1;
  color: var(--orchid); display: block; margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.55rem; margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- EMFACE experience band (scroll-spin card) ---------- */
.spin-band { position: relative; isolation: isolate; overflow: hidden; padding: 7rem 0; color: var(--white); }
.spin-bg {
  position: absolute; inset: -12% 0; z-index: -2;
  background: url('../assets/emface-band.jpg') center 20% / cover no-repeat;
  will-change: transform;
}
.spin-band::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(10,14,34,0.92) 0%, rgba(10,14,34,0.78) 45%, rgba(10,14,34,0.45) 100%);
}
.spin-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: center; }
.spin-band .eyebrow { color: #E6D6EE; }
.spin-band .section-title { color: var(--white); }
.spin-band p.lead { color: #F3F0F8; font-size: 1.2rem; font-weight: 500; max-width: 34rem; }
.spin-list { list-style: none; margin-top: 1.8rem; display: grid; gap: 0.9rem; }
.spin-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: #F3F0F8; font-size: 1.12rem; font-weight: 500; }
.spin-list li::before { content: '\2726'; color: #D9C2E4; flex: 0 0 auto; margin-top: 0.1rem; }
.spin-hint {
  margin-top: 2rem; font-size: 0.95rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #E0DBEA; font-weight: 600; display: inline-flex; align-items: center; gap: 0.6rem;
}
.spin-hint::before { content: '\2193'; font-size: 1.1rem; }
.spin-stage { perspective: 1400px; display: flex; justify-content: center; }
.spin-card {
  position: relative; width: min(360px, 82vw); aspect-ratio: 4 / 5;
  transform-style: preserve-3d; will-change: transform;
  cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.spin-card:focus-visible { outline: 3px solid #E6D6EE; outline-offset: 6px; border-radius: 22px; }
.spin-flipper {
  position: absolute; inset: 0; transform-style: preserve-3d; will-change: transform;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.spin-flipper.flipped { transform: rotateY(180deg); }
.spin-face {
  position: absolute; inset: 0; border-radius: 22px; overflow: hidden;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  box-shadow: 0 35px 90px rgba(0,0,0,0.45); background: var(--cream);
}
.spin-face img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spin-face.back { transform: rotateY(180deg); }
.spin-face figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1.3rem 1rem;
  background: linear-gradient(to top, rgba(10,14,34,0.85), rgba(10,14,34,0));
  color: var(--white); font-size: 1.05rem; letter-spacing: 0.04em; font-weight: 500;
}

/* ---------- Results gallery ---------- */
.results { background: var(--sand); }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3.2rem; }
.result-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.result-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(30,62,71,0.16); }
.result-card img { width: 100%; }
.result-card .result-info { padding: 1.4rem 1.6rem 1.6rem; }
.result-card .result-name { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.5rem; color: var(--ink); }
.result-card .result-detail { color: var(--ink-soft); font-size: 1.05rem; font-weight: 500; margin-top: 0.2rem; }
.results-note { text-align: center; margin-top: 2.2rem; font-size: 1.05rem; font-weight: 500; color: var(--ink-soft); }

/* ---------- Island experience band (parallax) ---------- */
.island { position: relative; isolation: isolate; overflow: hidden; padding: 8.5rem 0; text-align: center; color: var(--white); }
.island-bg {
  position: absolute; inset: -12% 0; z-index: -2;
  background: url('../assets/beach-walk.jpg') center 30% / cover no-repeat;
  will-change: transform;
}
.island::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(30,62,71,0.72), rgba(30,62,71,0.78));
}
.island blockquote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.7rem, 4vw, 2.7rem); line-height: 1.35;
  max-width: 820px; margin: 0 auto 1.4rem; color: var(--white);
  text-shadow: 0 2px 16px rgba(30,62,71,0.6);
}
.island .attribution {
  font-size: 1.05rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  color: var(--white); text-shadow: 0 1px 10px rgba(30,62,71,0.6);
}

/* ---------- Transformations ---------- */
.transformations { background: var(--cream); }
.transform-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 4rem; align-items: center; }
.transform-grid p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.ba-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.stat-row { display: flex; gap: 2.2rem; margin-top: 2.2rem; flex-wrap: wrap; }
.stat .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; line-height: 1; color: var(--orchid-deep); }
.stat .stat-label {
  font-size: 0.95rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 0.35rem; font-weight: 600;
}
.caption {
  font-size: 1.05rem; color: var(--ink-soft); font-weight: 500; text-align: center; margin-top: 1rem;
  letter-spacing: 0.03em;
}

/* ---------- FAQ ---------- */
.faq { background: var(--sea-mist); }
.faq-list { max-width: 860px; margin: 2.6rem auto 0; }
.faq-group-title {
  max-width: 860px; margin: 3rem auto 1.2rem; font-size: 1.8rem;
  padding-bottom: 0.6rem; border-bottom: 2px solid var(--gold);
}
.faq-item {
  background: var(--white); border-radius: 16px; margin-bottom: 1rem;
  box-shadow: 0 8px 26px rgba(30,62,71,0.08); overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1.45rem; color: var(--ink); line-height: 1.3;
  padding: 1.4rem 3.6rem 1.4rem 1.6rem; position: relative;
}
.faq-question::after {
  content: "+"; position: absolute; right: 1.4rem; top: 50%;
  transform: translateY(-50%);
  font-family: 'Jost', sans-serif; font-weight: 400; font-size: 1.9rem;
  color: var(--orchid-deep); transition: transform 0.3s ease; line-height: 1;
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-answer-inner { padding: 0 1.6rem 1.5rem; color: var(--ink-soft); font-size: 1.12rem; }

/* ---------- Contact ---------- */
.contact { position: relative; isolation: isolate; overflow: hidden; text-align: center; padding: 7.5rem 0; color: var(--ink); }
.contact-bg { position: absolute; inset: 0; z-index: -2; background: url('../assets/oak-bluffs.jpg') center 60% / cover no-repeat; }
.contact::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(251,249,244,0.93), rgba(251,249,244,0.88));
}
.contact .big-phone {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: clamp(2.3rem, 6vw, 3.9rem);
  color: var(--ink); text-decoration: none; display: inline-block;
  margin: 1.2rem 0 2rem; border-bottom: 2px solid var(--gold); transition: color 0.3s;
}
.contact .big-phone:hover { color: var(--orchid-deep); }
.contact p { max-width: 620px; margin: 0 auto 0.8rem; color: var(--ink-soft); }
.contact .visit-note {
  margin-top: 2rem; font-size: 1.05rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600; color: var(--sea-deep);
}

/* ============================================================
   CONSULTATION REQUEST FORM
============================================================ */
.form-section { background: var(--cream); }
.form-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; align-items: start; }
.form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2.8rem 2.6rem; box-shadow: var(--shadow); border-top: 4px solid var(--orchid);
}
.form-card h2 { font-size: 2.1rem; margin-bottom: 0.6rem; }
.form-card .form-intro { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 2rem; }
.field { margin-bottom: 1.5rem; }
.field label {
  display: block; font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: var(--ink); margin-bottom: 0.5rem;
}
.field .req { color: var(--orchid-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: 'Jost', sans-serif; font-size: 1.1rem; color: var(--ink);
  background: var(--cream); border: 2px solid #DDD6CB; border-radius: 12px;
  padding: 0.95rem 1.1rem; transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field textarea { min-height: 8rem; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orchid-deep); box-shadow: 0 0 0 4px rgba(135,88,146,0.14);
}
.field .hint { font-size: 0.95rem; color: var(--ink-soft); margin-top: 0.4rem; }
.field.error input, .field.error select, .field.error textarea { border-color: #B23B3B; }
.field .error-msg { display: none; color: #9E2F2F; font-size: 0.98rem; font-weight: 500; margin-top: 0.4rem; }
.field.error .error-msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.consent {
  display: flex; gap: 0.8rem; align-items: flex-start;
  font-size: 1rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 1.8rem;
}
.consent input { width: 1.4rem; height: 1.4rem; flex: none; margin-top: 0.2rem; accent-color: var(--orchid-deep); }
.form-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.form-actions .btn { padding: 1.05rem 2.4rem; }
.form-note { font-size: 0.98rem; color: var(--ink-soft); margin-top: 1.4rem; }
/* Honeypot — hidden from people, catches spam bots */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status { border-radius: 14px; padding: 1.2rem 1.4rem; margin-bottom: 1.6rem; font-size: 1.08rem; display: none; }
.form-status.show { display: block; }
.form-status.success { background: #E7F2EA; border: 2px solid #4E8C63; color: #1F4C31; }
.form-status.failure { background: #FBEAEA; border: 2px solid #B23B3B; color: #7C2222; }
.form-status strong { display: block; font-size: 1.15rem; margin-bottom: 0.2rem; }

.contact-aside { display: grid; gap: 1.4rem; }
.aside-card {
  background: var(--sea-mist); border-radius: var(--radius); padding: 2rem 1.9rem;
}
.aside-card h3 { font-size: 1.55rem; margin-bottom: 0.8rem; }
.aside-card p, .aside-card li { color: var(--ink-soft); font-size: 1.08rem; }
.aside-card ul { list-style: none; display: grid; gap: 0.6rem; }
.aside-card .aside-phone {
  font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; font-weight: 600;
  color: var(--ink); text-decoration: none; display: inline-block; border-bottom: 2px solid var(--gold);
}
.aside-card .aside-phone:hover { color: var(--orchid-deep); }
.aside-card address { font-style: normal; color: var(--ink-soft); }

/* ---------- Cross-page CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--sea-deep), var(--sea));
  color: var(--white); text-align: center; padding: 5.5rem 0;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(251,249,244,0.94); max-width: 640px; margin: 0 auto 2rem; font-size: 1.15rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
footer { background: var(--sea-deep); color: rgba(251,249,244,0.97); padding: 3.2rem 0; font-size: 1rem; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; }
footer .brand-name {
  color: var(--cream); font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.14em; text-transform: uppercase; font-size: 1.2rem;
}
footer a { color: #DCC9E8; text-decoration: none; font-weight: 500; }
footer a:hover { text-decoration: underline; }
.footer-heading {
  font-size: 0.9rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); font-weight: 600; margin-bottom: 0.8rem;
}
.footer-nav { list-style: none; display: grid; gap: 0.45rem; }
.footer-social {
  display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap;
  margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid rgba(251,249,244,0.18);
}
.footer-social .social-handle { font-weight: 600; letter-spacing: 0.04em; color: var(--cream); }
.footer-social a { display: inline-flex; align-items: center; gap: 0.45rem; color: #DCC9E8; font-weight: 500; }
.footer-social a:hover { color: var(--cream); text-decoration: underline; }
.footer-social svg { width: 22px; height: 22px; fill: currentColor; flex: none; }
.footer-disclaimer { font-size: 0.95rem; margin-top: 1.6rem; color: rgba(251,249,244,0.92); max-width: 900px; }

/* ============================================================
   ANIMATION — content always visible by default; GSAP animates
   in from hidden (gsap.from), so nothing breaks if JS fails.
============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .section-next .next-arrow { animation: none; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1080px) {
  .nav-links { gap: 0.9rem; }
  .nav-links a { font-size: 0.88rem; letter-spacing: 0.06em; }
}
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(251,249,244,0.985);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 24px 50px rgba(30,62,71,0.18);
    padding: 0.6rem 0 1.4rem; max-height: calc(100vh - 76px); overflow-y: auto;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block; padding: 1rem 6%; font-size: 1.05rem;
    border-bottom: 1px solid rgba(41,82,93,0.1);
  }
  .nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--orchid-soft); border-color: rgba(41,82,93,0.1); }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: block; padding: 1.3rem 6% 0.4rem; }
  .nav-cta-mobile a { display: flex; padding: 1rem 1.5rem; border-bottom: 0; color: var(--white); }
  .nav-cta-mobile a:hover { background: var(--orchid-deepest); }
  .mission-grid, .transform-grid, .treatment-detail, .form-layout { grid-template-columns: 1fr; gap: 3rem; }
  /* Photo stacks above the bio, centred, at a comfortable reading width */
  .practitioner-grid { grid-template-columns: 1fr; gap: 2.6rem; justify-items: center; }
  .practitioner-photo { max-width: 280px; }
  .practitioner-copy { max-width: 620px; }
  .fitzpatrick-scale { grid-template-columns: repeat(3, 1fr); }
  .treatment-detail.reverse .detail-visual { order: 0; }
  .services-grid, .steps { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .results-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .emface-columns { grid-template-columns: 1fr; }
  .benefit-chips { grid-template-columns: 1fr 1fr; }
  .spin-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .spin-band p.lead, .spin-list { margin-left: auto; margin-right: auto; }
  .spin-list li { text-align: left; }
  section { padding: 4.5rem 0; }
  .page-hero { padding: 9.5rem 0 4rem; }
  .transform-grid .ba-col { order: -1; }
  .protocol, .island { padding: 6rem 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .fitzpatrick-scale { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .fitz-swatch { width: 50px; height: 50px; }
  body { font-size: 1.1rem; }
  .brand .brand-name { font-size: 1.15rem; }
  .brand .brand-sub { display: none; }
  .nav-inner { min-height: 64px; }
  .nav-links { inset: 64px 0 auto 0; max-height: calc(100vh - 64px); }
  .floating-cta { left: 1rem; right: 1rem; justify-content: center; }
  .stat-row { gap: 1.4rem; }
  .faq-question { font-size: 1.25rem; padding-right: 3.2rem; }
  .benefit-chips { grid-template-columns: 1fr; }
  .form-card { padding: 2rem 1.5rem; }
  .field-row { grid-template-columns: 1fr; }
}
