/* =========================================================================
   Carpe Diem Massage Therapy - Design System
   Author-hand-written, dependency-free CSS. One shared stylesheet.
   Sections:  1. Fonts  2. Tokens  3. Reset/Base  4. Typography
              5. Layout  6. Buttons  7. Header/Nav  8. Footer
              9. Hero  10. Trust badges  11. Cards  12. Pricing
              13. Testimonials  14. FAQ accordion  15. Contact/Map
              16. Breadcrumbs  17. Sections & misc  18. Utilities
              19. Responsive  20. Accessibility / motion
   ========================================================================= */

/* ------------------------------------------------------------------ *
   1. FONTS
   Prototype uses a warm system-serif + clean system-sans pairing so the
   demo renders instantly with zero network requests (great CWV, no FOUT).
   For production, drop self-hosted woff2 files into /assets/fonts/ and
   un-comment the @font-face blocks below, then add the family to the
   front of --font-serif / --font-sans.
   ------------------------------------------------------------------ *

@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-var.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-var.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
}
* ------------------------------------------------------------------ */

/* ------------------------------------------------------------------ *
   2. DESIGN TOKENS
   ------------------------------------------------------------------ */
:root {
  /* Brand palette - Egyptian revival: terracotta red + teal + gold + slate-blue
     + cream/sand + warm ink. Drawn from the hand-painted Carpe Diem murals,
     lotus columns and winged signage. Variable names are kept stable so every
     component re-themes from these lines. */
  --sage:            #b1492b;   /* primary warm (terracotta) */
  --sage-dark:       #8f3a22;   /* terracotta, deep */
  --sage-light:      #d98a5c;   /* terracotta, light */
  --sage-tint:       #f1e6d5;   /* warm parchment tint (soft surfaces) */
  --teal:            #2f6f6a;   /* accent (logo teal) */
  --teal-dark:       #1e4f4a;   /* accent, deep (footer) */

  --gold:            #c69a46;   /* hieroglyph icons, dividers, wings */
  --gold-dark:       #a97f34;
  --slate-blue:      #8ba7bd;   /* mural sky blue (soft accents) */
  --slate-blue-tint: #dde6ec;

  --teal-soft:       #6f8d86;   /* muted sage-teal (benefits band, mockup 2) */
  --clay:            #bd6a48;   /* warm terracotta (CTA strip, footer accents) */

  --cream:           #f7f0e4;   /* page background */
  --sand:            #efe3d0;   /* alt sections */
  --sand-deep:       #e6d6bd;
  --charcoal:        #2b2018;   /* warm near-black ink (body text) */
  --charcoal-soft:   #6d5f50;

  /* Semantic tokens */
  --color-bg:            var(--cream);
  --color-surface:       #fffaf1;
  --color-surface-alt:   var(--sand);
  --color-primary:       var(--sage);
  --color-primary-dark:  var(--sage-dark);
  --color-primary-light: var(--sage-light);
  --color-accent:        var(--teal);
  --color-accent-dark:   var(--teal-dark);
  --color-text:          var(--charcoal);
  --color-text-muted:    var(--charcoal-soft);
  --color-border:        #e0d0b7;
  --color-border-soft:   #ece0cd;
  --color-focus:         #1e4f4a;

  /* Typography - Cinzel (classical Roman/Egyptian display caps) for headings,
     wordmark, nav and labels; warm system serif for reading text. Cinzel is
     loaded via <link> in each page head (self-host to /assets/fonts for prod). */
  --font-display: "Playfair Display", "Georgia", "Times New Roman", serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino,
                "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
                "Helvetica Neue", Arial, sans-serif;
  --font-script: "Dancing Script", "Segoe Script", "Brush Script MT", cursive;

  --fs-xs:   0.8125rem;   /* 13px */
  --fs-sm:   0.9375rem;   /* 15px */
  --fs-base: 1.0625rem;   /* 17px */
  --fs-md:   1.1875rem;   /* 19px */
  --fs-lg:   1.4rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  2.9rem;
  --fs-4xl:  3.5rem;

  --lh-tight: 1.15;
  --lh-snug:  1.3;
  --lh-body:  1.65;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* Structure */
  --container: 1140px;
  --container-narrow: 760px;
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(43, 48, 44, 0.06), 0 1px 2px rgba(43, 48, 44, 0.04);
  --shadow:    0 6px 20px rgba(43, 48, 44, 0.08);
  --shadow-lg: 0 18px 40px rgba(43, 48, 44, 0.14);

  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------------------------------------------ *
   3. RESET / BASE
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
img { background: var(--sage-tint); }

a { color: var(--color-accent-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--color-primary-dark); }

ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.35rem; }

button { font: inherit; cursor: pointer; }

/* ------------------------------------------------------------------ *
   4. TYPOGRAPHY
   ------------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--color-text);
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.1rem, 5vw, var(--fs-4xl)); }
h2 { font-size: clamp(1.7rem, 3.4vw, var(--fs-2xl)); line-height: var(--lh-snug); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); font-weight: 600; }

p { max-width: 68ch; }
.lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: var(--color-text-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--sp-3);
}
.eyebrow .icon { width: 1.05em; height: 1.05em; color: var(--gold-dark); flex: none; }

.section-head { max-width: var(--container-narrow); margin: 0 auto var(--sp-7); text-align: center; }
.section-head p { margin: var(--sp-3) auto 0; }

/* ------------------------------------------------------------------ *
   5. LAYOUT
   ------------------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
.container-narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3rem, 7vw, var(--sp-9)); }
.section--alt { background: var(--color-surface-alt); }
.section--sage { background: var(--sage-tint); }
.section--tight { padding-block: clamp(2rem, 4vw, var(--sp-7)); }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, var(--sp-8));
  align-items: center;
}

/* ------------------------------------------------------------------ *
   6. BUTTONS
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.95em 1.7em;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.15s var(--ease), background-color 0.2s var(--ease),
              box-shadow 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--color-primary-dark); color: #fff; box-shadow: var(--shadow); }

.btn--accent { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--accent:hover { background: var(--color-accent-dark); color: #fff; box-shadow: var(--shadow); }

.btn--ghost { background: transparent; color: var(--color-primary-dark); border-color: var(--color-primary); }
.btn--ghost:hover { background: var(--color-primary); color: #fff; }

.btn--white { background: #fff; color: var(--color-primary-dark); box-shadow: var(--shadow-sm); }
.btn--white:hover { background: var(--sage-tint); color: var(--color-primary-dark); }

.btn--lg { padding: 1.1em 2.1em; font-size: var(--fs-base); }
.btn--block { display: flex; width: 100%; }
.btn .icon { width: 1.15em; height: 1.15em; }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* Booking button slot - pre-wired for future online booking */
.btn--book[aria-disabled="true"] { position: relative; }

/* ------------------------------------------------------------------ *
   7. HEADER / NAV
   ------------------------------------------------------------------ */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--color-primary-dark); color: #fff;
  padding: 0.6rem 1rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 240, 228, 0.94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 0 rgba(198,154,70,0.35);
}
.header-inner {
  display: flex; align-items: center; gap: var(--sp-5);
  min-height: var(--header-h);
  padding-block: var(--sp-2);
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-right: auto; }
.brand img { width: auto; height: clamp(46px, 4.8vw, 58px); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; letter-spacing: 0.06em; color: var(--color-accent-dark); }
.brand-text span { font-family: var(--font-display); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-dark); margin-top: 2px; }

.primary-nav ul { display: flex; align-items: center; gap: var(--sp-5); list-style: none; padding: 0; margin: 0; }
.primary-nav li { margin: 0; }
.primary-nav a {
  font-family: var(--font-display); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--color-text);
  text-decoration: none; padding: 0.4rem 0; position: relative;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--color-accent); transition: width 0.22s var(--ease);
}
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { width: 100%; }
.primary-nav a[aria-current="page"] { color: var(--color-accent-dark); }
.primary-nav .nav-book { display: none; } /* mobile-menu-only CTA; desktop uses header-actions button */

.header-actions { display: flex; align-items: center; gap: var(--sp-3); }
.header-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; color: var(--color-primary-dark); text-decoration: none; white-space: nowrap;
}
.header-call .icon { width: 1.1em; height: 1.1em; }
.header-call small { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-text-muted); }
.header-call span { font-size: var(--fs-sm); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--color-border);
  background: #fff; border-radius: var(--radius-sm); padding: 0; place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--color-text);
  border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------------ *
   8. FOOTER
   ------------------------------------------------------------------ */
.site-footer { background: var(--teal-dark); color: #d5e0dc; padding-block: var(--sp-8) var(--sp-6); margin-top: 0; position: relative; }
.site-footer::before { content: ""; display: block; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg, var(--sage) 0 14px, var(--gold) 14px 28px); opacity: 0.9; }
.site-footer a { color: #d5e0dc; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: var(--sp-6); }
.footer-brand b { display: block; font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.04em; color: #fff; margin-bottom: 0.4rem; }
.footer-brand p { font-size: var(--fs-sm); color: #a7bcb6; max-width: 34ch; }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: var(--fs-sm); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 0.55rem; font-size: var(--fs-sm); }
.footer-list a { text-decoration: none; }
.footer-list a:hover { text-decoration: underline; }
.footer-nap { font-style: normal; font-size: var(--fs-sm); line-height: 1.7; }
.footer-nap b { color: #fff; font-weight: 600; }
.social-row { display: flex; gap: 0.6rem; margin-top: var(--sp-4); }
.social-row a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; }
.social-row a:hover { background: rgba(255,255,255,0.1); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: var(--sp-7); padding-top: var(--sp-5);
  display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between; font-size: var(--fs-xs); color: #9aa39d;
}
.footer-bottom a { text-decoration: none; }

/* ------------------------------------------------------------------ *
   9. HERO
   ------------------------------------------------------------------ */
.hero { position: relative; background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.55; pointer-events: none;
  background:
    radial-gradient(60% 55% at 90% 6%, rgba(198,154,70,0.28), transparent 60%),
    radial-gradient(48% 42% at 4% 94%, rgba(139,167,189,0.22), transparent 60%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, var(--sp-8)); align-items: center; padding-block: clamp(3rem, 6vw, var(--sp-9)); }
.hero h1 { margin-bottom: var(--sp-4); }
.hero .lead { margin-bottom: var(--sp-5); max-width: 46ch; }
.hero-cta { margin-bottom: var(--sp-5); }
.hero-media { position: relative; }
.hero-media img, .hero-media video { display: block; width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -18px; left: -18px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 0.9rem 1.2rem; display: flex; align-items: center; gap: 0.7rem; max-width: 220px;
}
.hero-badge b { display: block; font-family: var(--font-serif); font-size: 1.5rem; color: var(--color-primary-dark); line-height: 1; }
.hero-badge span { font-size: var(--fs-xs); color: var(--color-text-muted); }

/* ------------------------------------------------------------------ *
   10. TRUST BADGES
   ------------------------------------------------------------------ */
.trust-row { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); align-items: center; }
.trust-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); font-weight: 600; color: var(--color-text); }
.trust-badge .icon { width: 1.3em; height: 1.3em; color: var(--color-accent-dark); flex: none; }
.trust-strip { background: var(--color-surface); border-top: 1px solid var(--color-border-soft); border-bottom: 1px solid var(--color-border-soft); }
.trust-strip .trust-row { justify-content: space-between; padding-block: var(--sp-4); }

/* Student schools affiliation band (students-massage page). Each logo shows a
   text fallback that appears automatically if its image file is ever missing:
   the <img> starts hidden and is only revealed once it successfully loads.
   No background/border - the logos sit directly on the page. */
.school-strip { background: transparent; }
.school-strip .container { padding-block: var(--sp-6); text-align: center; }
.school-strip .eyebrow { color: var(--color-text-muted); margin-bottom: var(--sp-4); }
.school-row {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--sp-4) var(--sp-8);
}
.school { display: inline-flex; align-items: center; min-height: 46px; }
.school-logo {
  display: none;                       /* revealed on load - prevents broken-image flash */
  height: 46px; width: auto; max-width: 230px;
  background: none;                    /* opt out of the default img sage-tint background */
  opacity: 0.9; transition: opacity 0.2s var(--ease);
}
.school.has-logo .school-logo { display: block; }
.school.has-logo .school-name { display: none; }   /* logo replaces the text fallback */
.school:hover .school-logo { opacity: 1; }
.school-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-lg); letter-spacing: 0.02em; color: var(--color-text);
}
@media (max-width: 560px) {
  .school-logo { height: 38px; }
  .school { min-height: 38px; }
}

/* ------------------------------------------------------------------ *
   11. CARDS
   ------------------------------------------------------------------ */
.card {
  position: relative;
  background: var(--color-surface); border: 1px solid var(--color-border-soft);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--color-border); }
.card-media { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; }
.card-body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.card-body h3 { margin: 0; }
.card-body h3 a { position: relative; z-index: 1; color: var(--color-text); text-decoration: none; }
.card-body h3 a:hover { color: var(--color-accent-dark); }
.card-body p { color: var(--color-text-muted); font-size: var(--fs-sm); flex: 1; }
.card-link { font-weight: 600; font-size: var(--fs-sm); color: var(--color-accent-dark); text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem; }
/* Stretch the card's Learn-more link over the whole card (image included) */
.card .card-link::after { content: ""; position: absolute; inset: 0; }
.card-link:hover, .card:hover .card-link { gap: 0.6rem; }
/* A second link in the same card: keep it clickable in its own right instead of
   letting its overlay cover the card's primary link. */
.card-links { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 1rem; flex: none !important; margin: 0; }
.card .card-link--inline { position: relative; z-index: 1; }
.card .card-link--inline::after { content: none; }
.card-price { font-weight: 600; font-size: var(--fs-sm); color: var(--color-primary-dark); }

/* Icon feature (no image) */
.feature { display: flex; gap: var(--sp-4); }
.feature .feat-icon { flex: none; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: var(--sage-tint); color: var(--color-primary-dark); }
.feature .feat-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: var(--fs-md); margin-bottom: var(--sp-1); }
.feature p { font-size: var(--fs-sm); color: var(--color-text-muted); margin: 0; }

/* ------------------------------------------------------------------ *
   12. PRICING
   ------------------------------------------------------------------ */
.price-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.price-card__head { padding: var(--sp-5); background: var(--sage-tint); border-bottom: 1px solid var(--color-border); }
.price-card__head h3 { margin-bottom: 0.25rem; }
.price-card__head p { font-size: var(--fs-sm); color: var(--color-text-muted); margin: 0; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table caption { text-align: left; padding: var(--sp-4) var(--sp-5) 0; font-weight: 600; }
.price-table th, .price-table td { padding: 0.85rem var(--sp-5); text-align: left; border-bottom: 1px solid var(--color-border-soft); }
.price-table th { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); font-weight: 700; }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table td .dur { font-weight: 600; }
.price-note { font-size: var(--fs-sm); color: var(--color-text-muted); padding: var(--sp-4) var(--sp-5); }

/* small inline pricing snippet on service pages */
.price-snippet { background: var(--sage-tint); border: 1px solid var(--color-border); border-radius: var(--radius); padding: var(--sp-5); }
.price-snippet h3 { margin-bottom: var(--sp-3); font-size: var(--fs-md); }
.price-snippet ul { list-style: none; padding: 0; margin: 0 0 var(--sp-4); }
.price-snippet li { display: flex; justify-content: space-between; gap: var(--sp-4); padding: 0.45rem 0; border-bottom: 1px dashed var(--color-border); font-size: var(--fs-sm); }
.price-snippet li:last-child { border-bottom: none; }
.price-snippet li b { font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------------ *
   13. TESTIMONIALS (slider)
   ------------------------------------------------------------------ */
.slider { position: relative; max-width: 780px; margin-inline: auto; }
.slider-track { position: relative; }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease); text-align: center;
}
.slide[aria-hidden="false"] { position: relative; opacity: 1; visibility: visible; }
.slide blockquote { margin: 0; }
.slide .quote { font-family: var(--font-serif); font-size: clamp(1.25rem, 2.6vw, 1.7rem); line-height: 1.4; color: var(--color-text); margin-inline: auto; max-width: 40ch; }
.slide .quote::before { content: "\201C"; color: var(--color-primary-light); }
.slide .quote::after  { content: "\201D"; color: var(--color-primary-light); }
.slide cite { display: block; margin-top: var(--sp-4); font-style: normal; font-weight: 600; color: var(--color-primary-dark); }
.slide .stars { color: #c99a2e; letter-spacing: 2px; margin-bottom: var(--sp-4); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: var(--sp-4); margin-top: var(--sp-6); }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--color-border); background: #fff; display: grid; place-items: center; color: var(--color-text); }
.slider-btn:hover { background: var(--sage-tint); border-color: var(--color-primary-light); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dots button { width: 10px; height: 10px; padding: 0; border-radius: 50%; border: none; background: var(--color-border); }
.slider-dots button[aria-current="true"] { background: var(--color-primary); }

/* ------------------------------------------------------------------ *
   14. FAQ ACCORDION
   ------------------------------------------------------------------ */
.accordion { max-width: var(--container-narrow); margin-inline: auto; }
.accordion-item { border-bottom: 1px solid var(--color-border); }
.accordion-item h2, .accordion-item h3 { margin: 0; font: inherit; }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-5) 0; background: none; border: none; text-align: left;
  font-family: var(--font-serif); font-size: var(--fs-md); font-weight: 600; color: var(--color-text);
}
.accordion-trigger:hover { color: var(--color-accent-dark); }
.accordion-trigger .chev { flex: none; width: 22px; height: 22px; transition: transform 0.25s var(--ease); color: var(--color-primary); }
.accordion-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }
.accordion-panel { overflow: hidden; height: 0; transition: height 0.28s var(--ease); }
.accordion-panel__inner { padding-bottom: var(--sp-5); color: var(--color-text-muted); }
.accordion-panel__inner p { max-width: none; }

/* ------------------------------------------------------------------ *
   15. CONTACT / MAP
   ------------------------------------------------------------------ */
.info-card { background: var(--color-surface); border: 1px solid var(--color-border-soft); border-radius: var(--radius); padding: var(--sp-6); box-shadow: var(--shadow-sm); }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-5); }
.info-list li { display: flex; gap: var(--sp-4); }
.info-list .icon { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--sage-tint); color: var(--color-primary-dark); display: grid; place-items: center; }
.info-list .icon svg { width: 22px; height: 22px; }
.info-list b { display: block; margin-bottom: 0.15rem; }
.info-list a { color: var(--color-text); text-decoration: none; }
.info-list a:hover { color: var(--color-accent-dark); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: 0.55rem 0; text-align: left; border-bottom: 1px solid var(--color-border-soft); font-size: var(--fs-sm); }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table .closed { color: var(--color-text-muted); }

/* ------------------------------------------------------------------ *
   16. BREADCRUMBS
   ------------------------------------------------------------------ */
.breadcrumbs { background: var(--color-surface-alt); border-bottom: 1px solid var(--color-border-soft); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0.75rem 0; margin: 0; font-size: var(--fs-sm); }
.breadcrumbs li { display: flex; align-items: center; gap: 0.5rem; margin: 0; color: var(--color-text-muted); }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--color-border); }
.breadcrumbs a { color: var(--color-text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--color-accent-dark); }
.breadcrumbs [aria-current="page"] { color: var(--color-text); font-weight: 600; }

/* ------------------------------------------------------------------ *
   17. SECTIONS & MISC
   ------------------------------------------------------------------ */
.page-hero { background: var(--sage-tint); padding-block: clamp(2.5rem, 5vw, var(--sp-8)); }
.page-hero .lead { margin-top: var(--sp-3); }

.prose > * + * { margin-top: var(--sp-4); }
.prose h2 { margin-top: var(--sp-6); }
.prose h3 { margin-top: var(--sp-5); }
.prose ul, .prose ol { max-width: 68ch; }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow-sm); }

.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
.check-list li { position: relative; padding-left: calc(22px + 0.6rem); margin: 0; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.1em; width: 22px; height: 22px; border-radius: 50%;
  background: var(--sage-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238f3a22' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.check-list--2col, ul.check-list--2col { grid-template-columns: 1fr 1fr; column-gap: var(--sp-5); max-width: none; }
@media (max-width: 620px) { .check-list--2col { grid-template-columns: 1fr; } }

.cta-band { background: var(--color-primary); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, var(--sp-8)); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); margin: var(--sp-3) auto var(--sp-5); max-width: 52ch; }
.cta-band .btn-group { justify-content: center; }

.pill { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.85rem; background: var(--sage-tint); color: var(--color-primary-dark); border-radius: var(--radius-pill); font-size: var(--fs-xs); font-weight: 600; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.notice { background: #fff; border: 1px dashed var(--color-primary-light); border-radius: var(--radius); padding: var(--sp-4) var(--sp-5); font-size: var(--fs-sm); color: var(--color-text-muted); }
.notice b { color: var(--color-text); }

/* ------------------------------------------------------------------ *
   18. UTILITIES
   ------------------------------------------------------------------ */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mb-0 { margin-bottom: 0; }
.mb-5 { margin-bottom: var(--sp-5); }
.max-narrow { max-width: var(--container-narrow); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.no-wrap { white-space: nowrap; }

/* ------------------------------------------------------------------ *
   19. RESPONSIVE
   ------------------------------------------------------------------ */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin-inline: auto; order: -1; }
  .hero-media img, .hero-media video { aspect-ratio: 16 / 11; }
  .split { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }
  /* Solid header on mobile - the hero video sits full-bleed directly behind
     the sticky header here (unlike desktop, where the hero image is a
     contained blob that doesn't reach behind the header), so the semi-
     transparent blurred background was letting the mural artwork show
     through faintly as a stray line across the header. */
  .site-header { background: var(--cream); backdrop-filter: none; }
  .nav-toggle { display: grid; order: 3; }
  .header-call small { display: none; }
  .header-actions .btn--book { display: none; }
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; background: var(--cream);
    max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); z-index: 90;
  }
  .primary-nav.open {
    max-height: 80vh;
    border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow);
  }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: var(--sp-3) var(--sp-5) var(--sp-5); }
  .primary-nav li { border-bottom: 1px solid var(--color-border-soft); }
  .primary-nav a { display: block; padding: var(--sp-4) 0; font-size: var(--fs-md); }
  .primary-nav a::after { display: none; }
  .primary-nav .nav-book { display: block; border-bottom: none; margin-top: var(--sp-4); }
  .primary-nav .nav-book a { padding: 0; }
  .primary-nav .nav-book .btn { width: 100%; padding: 0.85em 1.5em; }
}

@media (max-width: 620px) {
  .container { padding-inline: var(--sp-4); }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .btn-group .btn { width: 100%; }
  .hero-badge { left: 12px; bottom: 12px; }
  .trust-strip .trust-row { justify-content: flex-start; gap: var(--sp-4); }
}

/* ------------------------------------------------------------------ *
   20. ACCESSIBILITY / MOTION
   ------------------------------------------------------------------ */
:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
  border-radius: 3px;
}
.btn:focus-visible { outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .btn:hover, .card:hover { transform: none; }
}

/* print niceties */
@media print {
  .site-header, .site-footer, .nav-toggle, .cta-band, .slider-controls { display: none; }
  body { color: #000; background: #fff; }
}

/* ================================================================== *
   21. EGYPTIAN BRAND - homepage components & ornaments
   Terracotta / teal / gold / slate-blue system drawn from the murals.
   ================================================================== */

/* --- Transparent PNGs (logo, hieroglyph icons) sit on any background --- */
.brand img, .footer-brand img, .pillar-icon img, .svc-ic img,
.tailored-ic img, .benefit img, .creds-arch img, .footer-seize img, .deco img,
img.wing { background: none; }

/* --- Section titles: teal, wing-flanked ornament --- */
.section-head h2 { color: var(--color-accent-dark); }
.title-orn { display: flex; align-items: center; justify-content: center; gap: clamp(0.6rem, 2.2vw, 1.35rem); }
.title-orn h2 { margin: 0; }
.title-orn .wing { flex: none; display: block; width: clamp(38px, 7vw, 68px); height: auto; opacity: 0.95; }
.title-orn .wing--r { transform: scaleX(-1); }
@media (max-width: 520px) { .title-orn .wing { display: none; } }

/* --- Egyptian frieze divider (checker band framed in teal) --- */
.frieze {
  height: 20px; border: 0;
  border-top: 3px solid var(--teal-dark);
  border-bottom: 3px solid var(--teal-dark);
  background: conic-gradient(var(--sage) 0 25%, var(--sand) 0 50%, var(--sage) 0 75%, var(--sand) 0) 0 0 / 20px 20px;
}

/* --- Hero display headline --- */
.hero .display { display: block; font-size: clamp(2.6rem, 7vw, 4.4rem); line-height: 1.02; color: var(--charcoal); }
.hero .h1-sub {
  display: block; margin-top: var(--sp-3);
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.05rem, 2.1vw, 1.45rem); letter-spacing: 0.04em;
  color: var(--color-accent-dark);
}
.hero-media img, .hero-media video { aspect-ratio: 1 / 1; }
.hero-media::after {
  content: ""; position: absolute; inset: 10px; border: 2px solid rgba(198,154,70,0.55);
  border-radius: calc(var(--radius-lg) - 6px); pointer-events: none;
}
.hero-badge b { color: var(--color-primary-dark); }

/* --- Pillars: 4 hieroglyph value props --- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.pillar { text-align: center; padding: var(--sp-2) var(--sp-5); }
.pillar + .pillar { border-left: 1px solid var(--color-border); }
.pillar-icon { height: 64px; margin: 0 auto var(--sp-4); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; }
.pillar-icon svg { width: 56px; height: 56px; }
.pillar-icon img { height: 100%; width: auto; }
.pillar h3 {
  font-size: var(--fs-sm); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-accent-dark); margin-bottom: var(--sp-2);
}
.pillar p { font-size: var(--fs-sm); color: var(--color-text-muted); margin: 0 auto; max-width: 26ch; }

/* --- Service cards, hieroglyph / line-icon style --- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.svc-card {
  position: relative; background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); padding: var(--sp-6) var(--sp-5) var(--sp-5);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--sp-3);
  border-top: 3px solid var(--gold);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-top-color: var(--sage); }
.svc-ic { height: 62px; margin-bottom: var(--sp-1); color: var(--color-accent-dark); display: flex; align-items: center; justify-content: center; }
.svc-ic svg { width: 60px; height: 44px; }
.svc-ic img { height: 100%; width: auto; }
.svc-card h3 { margin: 0; font-size: 1.05rem; letter-spacing: 0.06em; text-transform: uppercase; }
.svc-card h3 a { color: var(--color-text); text-decoration: none; }
.svc-card:hover h3 a { color: var(--color-accent-dark); }
.svc-card p { font-size: var(--fs-sm); color: var(--color-text-muted); margin: 0; flex: 1; }
.svc-card .card-price { font-size: var(--fs-xs); letter-spacing: 0.03em; }
.svc-card .card-link {
  font-family: var(--font-display); font-size: var(--fs-xs); letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--color-primary); font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: auto;
}
.svc-card .card-link:hover { gap: 0.7rem; color: var(--color-primary-dark); }
.svc-card--cta { background: var(--sage-tint); border-top-color: var(--teal); justify-content: center; }
.svc-card--cta p { flex: none; }

/* --- Therapist block --- */
.therapist-photo { position: relative; }
.therapist-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; object-fit: cover; }
.therapist-photo::after {
  content: ""; position: absolute; inset: 12px; border: 2px solid rgba(198,154,70,0.6);
  border-radius: calc(var(--radius) - 6px); pointer-events: none;
}
.therapist h2 { color: var(--color-accent-dark); }
.name-rule { display: flex; align-items: center; gap: 0.75rem; margin: var(--sp-3) 0 var(--sp-4); color: var(--gold-dark); }
.name-rule::before, .name-rule::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--gold)); }
.name-rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.name-rule svg { width: 20px; height: 20px; flex: none; }

/* --- Gallery strip --- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.gallery-grid figure {
  margin: 0; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm); position: relative;
}
.gallery-grid img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-cta { display: flex; justify-content: center; margin-top: var(--sp-6); position: relative; z-index: 2; }
.gallery-cta .btn { box-shadow: var(--shadow); }

/* --- Review cards (placeholder-safe, no fabricated ratings) --- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.review-card {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  padding: var(--sp-6) var(--sp-5); text-align: center; display: flex; flex-direction: column; gap: var(--sp-3);
  border-top: 3px solid var(--gold);
}
.review-card .q-mark { font-family: var(--font-display); font-size: 2.6rem; line-height: 0.6; color: var(--color-primary-light); }
.review-card blockquote { margin: 0; }
.review-card p { font-family: var(--font-serif); font-style: italic; color: var(--color-text); margin: 0 auto; max-width: 34ch; }
.review-card cite { display: block; margin-top: var(--sp-3); font-style: normal; font-family: var(--font-display); font-size: var(--fs-sm); letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-accent-dark); }

/* --- Final CTA: booking steps + book button --- */
.final-cta { background: var(--sage-tint); border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, var(--sp-8)); border: 1px solid var(--color-border); }
.final-cta .section-head { margin-bottom: var(--sp-6); }
.cta-steps { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--sp-5) var(--sp-7); }
.cta-step { display: flex; align-items: center; gap: 0.75rem; text-align: left; }
.cta-step .icon { width: 40px; height: 40px; flex: none; color: var(--gold-dark); }
.cta-step b { display: block; font-family: var(--font-display); font-size: var(--fs-sm); letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-accent-dark); }
.cta-step span { font-size: var(--fs-sm); color: var(--color-text-muted); }
.cta-steps .btn--book-final { align-self: center; }

/* --- BOOK button ankh glyph --- */
.btn .ankh { width: 0.9em; height: 0.9em; }

/* --- Responsive --- */
@media (max-width: 960px) {
  .pillars { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5) 0; }
  .pillar:nth-child(3) { border-left: 0; }
  .pillar { border-top: 1px solid var(--color-border); padding-top: var(--sp-5); }
  .pillar:nth-child(-n+2) { border-top: 0; padding-top: var(--sp-2); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-left: 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .cta-steps { flex-direction: column; align-items: flex-start; }
}

/* ================================================================== *
   22. FULL-WIDTH CINEMATIC HERO (edge-to-edge video background)
   ================================================================== */
.hero--cinematic {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 82vh, 780px);
  overflow: hidden;
  isolation: isolate;
  background: #1a120c;                 /* fallback behind the video */
  padding-block: clamp(3rem, 8vh, 5.5rem);
}
/* The video fills the entire hero, edge to edge */
.hero--cinematic .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0; background: #1a120c;
}
/* Left-weighted scrim + bottom gradient keep the copy legible */
.hero--cinematic::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 1;
  background:
    linear-gradient(90deg, rgba(24,16,11,0.86) 0%, rgba(24,16,11,0.52) 44%, rgba(24,16,11,0.08) 78%),
    linear-gradient(0deg, rgba(24,16,11,0.55) 0%, rgba(24,16,11,0.00) 45%);
}
.hero--cinematic .hero-content { position: relative; z-index: 2; width: 100%; }
.hero--cinematic .hero-copy { max-width: 42rem; }
.hero--cinematic .eyebrow, .hero--cinematic .eyebrow .icon { color: var(--gold); }
.hero--cinematic h1 { margin-bottom: var(--sp-4); }
.hero--cinematic .display { color: var(--cream); text-shadow: 0 2px 22px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.55); }
.hero--cinematic .h1-sub { color: rgba(247,240,228,0.94); text-shadow: 0 2px 14px rgba(0,0,0,0.5); }
.hero--cinematic .lead { color: rgba(247,240,228,0.92); max-width: 46ch; text-shadow: 0 1px 10px rgba(0,0,0,0.45); }
.hero--cinematic .btn--primary { box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.hero--cinematic .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.06); }
.hero--cinematic .btn--ghost:hover { background: #fff; color: var(--charcoal); border-color: #fff; }
.hero--cinematic .trust-badge { color: rgba(247,240,228,0.95); text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.hero--cinematic .trust-badge .icon { color: var(--gold); }

@media (max-width: 860px) {
  .hero--cinematic { min-height: clamp(540px, 80vh, 700px); }
  .hero--cinematic::before {
    background: linear-gradient(180deg, rgba(24,16,11,0.76) 0%, rgba(24,16,11,0.55) 45%, rgba(24,16,11,0.82) 100%);
  }
  .hero--cinematic .hero-copy { max-width: 100%; }
  .hero--cinematic .hero-cta { flex-direction: column; align-items: stretch; }
  .hero--cinematic .hero-cta .btn { width: 100%; }
}
@media (max-width: 430px) {
  .hero--cinematic .display { font-size: clamp(2.3rem, 11vw, 2.9rem); }
}
/* Respect reduced-motion: fall back to the poster still */
@media (prefers-reduced-motion: reduce) {
  .hero--cinematic .hero-bg { visibility: visible; }
}

/* ================================================================== *
   23. ORGANIC / BOHEMIAN REDESIGN LAYER  (mockup 2)
   ------------------------------------------------------------------
   Adds the wavy-dune, arched, botanical "bohemian" styling over the
   Egyptian brand system. Every symbol/graphic is CROPPED from the
   hand-painted artwork (icon-*.png, ben-*.png, deco-*.png) - not
   redrawn as SVG. The section-boundary "dune" waves are the only
   decorative shapes drawn in SVG, because a wave must flex fluidly to
   any screen width (a cropped raster can't). The cinematic video hero
   is unchanged; it just gains an organic cream shoreline at its base.
   ================================================================== */

/* -- Header wordmark + pill book button (mockup 2) ------------------ */
.brand img { height: clamp(50px, 5.4vw, 66px); }
.btn--book { border-radius: var(--radius-pill); }
.header-call { color: var(--teal-dark); }
.header-call span { font-weight: 700; }

/* -- Typography to match mockup 2 ----------------------------------- *
   Feature headlines & section titles = Playfair (--font-display).
   Small labels (eyebrows, nav, buttons, category labels, credentials,
   testimonial names) = clean SANS uppercase, as in the mockup. */
.eyebrow, .primary-nav a, .btn, .tailored-item h3, .creds-arch b,
.review-card--organic cite, .nav-book .btn {
  font-family: var(--font-sans);
}
.eyebrow { font-weight: 600; letter-spacing: 0.2em; }
/* Section titles are UPPERCASE Playfair with letter-spacing */
.title-orn h2 { text-transform: uppercase; letter-spacing: 0.055em; font-weight: 600; }
/* Feature headings stay mixed-case Playfair */
.benefits-lead h2, .cta-strip h2 { font-family: var(--font-display); font-weight: 700; }
.creds-arch b { letter-spacing: 0.14em; font-weight: 600; }

/* -- Wavy dune section dividers ------------------------------------- */
.band { position: relative; }
.wave {
  position: absolute; left: 0; right: 0; width: 100%;
  height: clamp(30px, 5vw, 66px);
  display: block; line-height: 0; pointer-events: none; z-index: 2;
}
.wave svg { width: 100%; height: 100%; display: block; }
.wave--top    { top: 0;    transform: translateY(-99%); }   /* laps over the section above */
.wave--bottom { bottom: 0; transform: translateY(99%); }    /* laps over the section below */
.wave.is-cream { color: var(--cream); }
.wave.is-sand  { color: var(--sand); }
.wave.is-teal  { color: var(--teal-soft); }
.wave.is-clay  { color: var(--clay); }

/* the video hero pours a cream shoreline up over its own base */
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; width: 100%;
  height: clamp(40px, 6vw, 84px); z-index: 3; pointer-events: none;
  color: var(--cream); line-height: 0;
}
.hero-wave svg { width: 100%; height: 100%; display: block; }

/* -- Light split hero (mockup 2) - copy left, video blob bleeds right -- */
.hero--split { position: relative; overflow: hidden; display: flex; align-items: center; min-height: clamp(490px, 58vw, 650px); }
.hero--split .container { position: relative; z-index: 3; width: 100%; }   /* above .hero-waves (z-index 2) so the button never hides behind the dunes */
.hero--split .hero-copy { position: relative; z-index: 2; max-width: 33rem; padding-block: clamp(2.4rem,5vw,3.6rem); }
.hero--split h1 { margin: 0; }
.hero--split .display { display: block; }
.hero--split .display span {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.5rem, 6.2vw, 4.3rem); line-height: 1.0; letter-spacing: -0.01em;
}
.hero--split .display span:first-child { color: var(--sage); }
.hero--split .display span:nth-child(2),
.hero--split .display span:nth-child(3) { color: var(--teal-dark); }
.hero--split .h1-sub {
  display: block; margin-top: var(--sp-4);
  font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-sm);
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--color-accent-dark);
}
.lotus-rule { display: flex; align-items: center; gap: 0.9rem; max-width: 290px; margin: clamp(1.2rem,2.6vw,1.8rem) 0; }
.lotus-rule::before, .lotus-rule::after { content: ""; height: 2px; flex: 1; background: var(--sage-light); }
.lotus-rule img { width: 50px; height: auto; opacity: 0.95; background: none; }
.hero--split .lead { color: var(--color-text-muted); max-width: 36ch; margin-bottom: clamp(1.4rem,3vw,2rem); }
.hero-actions { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 1.8rem); flex-wrap: wrap; }
.hero-actions .btn--primary { border-radius: var(--radius-pill); }
.hero-phone {
  display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 2.2vw, 1.5rem); color: var(--teal-dark);
}
.hero-phone .icon { width: 1.05em; height: 1.05em; color: var(--sage); flex: none; }
.hero-phone:hover { color: var(--sage-dark); }

/* video blob pinned to the viewport right edge, bleeding off it */
.hero-media { position: absolute; top: 0; right: 0; bottom: 0; width: clamp(54%, 63vw, 920px); z-index: 1; }
.hero--split .hero-media::after { content: none; border: 0; }   /* kill old cinematic border */
.hero-blob {
  position: absolute; top: clamp(1rem, 3vw, 2.2rem); bottom: clamp(1.4rem, 3vw, 2.4rem); left: 0; right: -8%;
  overflow: hidden; box-shadow: var(--shadow-lg);
  border-radius: 46% 20% 22% 44% / 55% 26% 24% 45%;
}
.hero-blob video {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; display: block;
  background: #1a120c; border-radius: 0; box-shadow: none; aspect-ratio: auto;
}
.hero-eye { top: 16%; left: clamp(38%, 40vw, 44%); width: clamp(78px, 9vw, 128px); opacity: 0.5; z-index: 1; }
.hero-dune {
  position: absolute; left: 0; right: 0; bottom: -1px; width: 100%;
  height: clamp(48px, 8vw, 100px); z-index: 0; color: var(--slate-blue);
  opacity: 0.5; pointer-events: none; line-height: 0;
}
.hero-dune svg { width: 100%; height: 100%; display: block; }

/* soft dune blobs behind the light organic sections */
.organic-bg {
  background:
    radial-gradient(42% 32% at 6% 88%, rgba(189,106,72,0.10), transparent 70%),
    radial-gradient(46% 36% at 97% 8%, rgba(111,141,134,0.13), transparent 72%),
    var(--cream);
}

/* sections that host corner flourishes clip the bleed */
.has-deco { position: relative; overflow: hidden; }

/* decorative cropped-artwork flourishes tucked into section corners */
.deco { position: absolute; z-index: 0; pointer-events: none; opacity: 0.85; }
.deco--sprig    { width: clamp(64px, 9vw, 128px); }
.deco--eye-rays { width: clamp(90px, 12vw, 172px); opacity: 0.55; }
.deco img { width: 100%; height: auto; display: block; }
@media (max-width: 620px) { .deco--sprig, .deco--eye-rays { display: none; } }

/* -- "Massage Therapy Tailored to You" - floating card, circle icons -- */
.tailored { position: relative; z-index: 4; padding-block: 0 clamp(2.5rem, 5vw, 4.5rem); }
.tailored .container { max-width: 1320px; }   /* wider than the default container */
.tailored-card {
  position: relative; z-index: 4;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: clamp(18px, 3vw, 34px);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.3rem, 2.4vw, 2.1rem) clamp(1.4rem, 3.4vw, 3rem);   /* shorter (less vertical) + roomier sides */
  margin-top: clamp(-1.4rem, -2vw, -0.8rem);   /* float up gently, over the cream shoreline */
}
.tailored-head { text-align: center; margin-bottom: clamp(0.9rem, 2vw, 1.5rem); }
.tailored-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.tailored-item {
  position: relative; display: block; text-align: center; text-decoration: none;
  padding: var(--sp-2) clamp(0.5rem, 1.3vw, 1.25rem);
}
.tailored-item + .tailored-item::before {
  content: ""; position: absolute; left: 0; top: 10%; bottom: 10%; width: 1px; background: var(--color-border);
}
.tailored-ic {
  width: clamp(70px, 6.4vw, 88px); aspect-ratio: 1; margin: 0 auto var(--sp-4);
  border: 1.6px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.tailored-item:hover .tailored-ic {
  border-color: var(--sage); transform: translateY(-3px); box-shadow: 0 8px 18px rgba(43,32,24,0.10);
}
.tailored-ic img { max-width: 60%; max-height: 60%; width: auto; height: auto; }
.tailored-item h3 {
  font-size: var(--fs-sm); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-accent-dark); margin-bottom: var(--sp-2);
}
.tailored-item:hover h3 { color: var(--color-primary-dark); }
.tailored-item p { font-size: var(--fs-sm); color: var(--color-text-muted); margin: 0 auto; max-width: 22ch; }
.tailored-cta { text-align: center; margin-top: clamp(1.4rem, 3vw, 2.2rem); }

/* -- Therapist block - arched photo, script accent, credentials arch -- */
.therapist { padding-block: clamp(2.4rem, 5vw, 4rem); }
.therapist-grid {
  display: grid; grid-template-columns: 0.86fr 1.18fr 0.72fr;
  gap: clamp(1.6rem, 3.5vw, 2.8rem); align-items: center;
}
.arch-photo { position: relative; }
.arch-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 46% 46% 12px 12px / 34% 34% 2.5% 2.5%;
  box-shadow: var(--shadow-lg);
}
.arch-photo::after {
  content: ""; position: absolute; inset: -12px;
  border: 2px solid rgba(189,106,72,0.55);
  border-radius: 44% 44% 16px 16px / 28% 28% 3% 3%;
  pointer-events: none;
}
.therapist-copy .eyebrow { color: var(--clay); }
.therapist-copy h2 { color: var(--color-accent-dark); }
.script-accent {
  font-family: var(--font-script); font-weight: 600;
  font-size: clamp(1.55rem, 3.4vw, 2.15rem); line-height: 1.1;
  color: var(--clay); margin-top: var(--sp-5);
}
.creds-arch {
  text-align: center; align-self: stretch;
  display: flex; flex-direction: column; justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 46% 46% 14px 14px / 22% 22% 3% 3%;
  padding: clamp(1.6rem, 3.4vw, 2.6rem) clamp(1.2rem, 2.6vw, 1.9rem);
}
.creds-arch img { width: clamp(100px, 11vw, 138px); height: auto; margin: 0 auto var(--sp-4); }
.creds-arch b {
  display: block; font-family: var(--font-display); font-weight: 600;
  letter-spacing: 0.1em; color: var(--color-accent-dark);
  font-size: var(--fs-md); line-height: 1.55;
}
.creds-arch span { display: block; margin-top: var(--sp-3); font-size: var(--fs-sm); color: var(--color-text-muted); }

/* -- Benefits band - muted teal, cropped line icons, wavy top -------- */
.benefits {
  background: var(--teal-soft); color: #f3ead9;
  padding-block: clamp(2.8rem, 5.5vw, 4.2rem);
}
.benefits-grid { display: grid; grid-template-columns: 1.55fr repeat(6, 1fr); align-items: center; gap: 0; }
.benefits-lead { padding-right: clamp(1rem, 2.4vw, 2rem); }
.benefits-lead .eyebrow { color: rgba(253,246,233,0.72); margin-bottom: var(--sp-2); }
.benefits-lead h2 {
  color: #fdf6e9; font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem); line-height: 1.2;
}
.benefit { position: relative; text-align: center; padding: 0 clamp(0.4rem, 1vw, 1rem); }
.benefit::before {
  content: ""; position: absolute; left: 0; top: 14%; bottom: 14%; width: 1px; background: rgba(253,246,233,0.28);
}
.benefit img { height: clamp(38px, 4vw, 48px); width: auto; margin: 0 auto var(--sp-3); display: block; }
.benefit span { display: block; font-size: var(--fs-sm); color: #f3ead9; line-height: 1.35; }

/* -- "Our Space" gallery - organic frames + captions ---------------- */
.space-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.space-item { margin: 0; text-align: center; }
.space-item img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 40% 40% 14px 14px / 22% 22% 3% 3%;
  box-shadow: var(--shadow); border: 1px solid var(--color-border-soft);
  transition: transform 0.5s var(--ease);
}
.space-item:hover img { transform: translateY(-5px); }
.space-item figcaption {
  margin-top: var(--sp-3); font-family: var(--font-display); font-weight: 500;
  font-size: var(--fs-sm); letter-spacing: 0.04em; color: var(--color-accent-dark);
}

/* -- Reviews - organic quote cards (no fabricated ratings) ---------- */
.reviews-organic { position: relative; overflow: hidden; }
.review-card--organic {
  text-align: left; border-top: none; border: 1px solid var(--color-border);
  border-radius: 18px; background: var(--color-surface); box-shadow: var(--shadow-sm);
}
.review-card--organic .q-mark { color: var(--clay); align-self: flex-start; }
.review-card--organic p { margin: 0; max-width: none; text-align: left; }
.review-card--organic .stars { color: var(--gold-dark); letter-spacing: 3px; font-size: var(--fs-md); margin-top: var(--sp-3); }
.review-card--organic cite { text-align: left; margin-top: var(--sp-3); color: var(--color-text); }

/* -- Terracotta CTA strip ------------------------------------------- */
.cta-strip { background: var(--clay); color: #fdf3e7; position: relative; overflow: hidden; }
.cta-strip .container {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: clamp(0.9rem, 3vw, 2.4rem); padding-block: clamp(1.5rem, 3vw, 2.2rem);
}
.cta-strip-lead { text-align: center; }
.cta-strip h2 { color: #fdf6ea; font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.45rem, 3vw, 2rem); margin: 0; }
.cta-strip-sub {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.35rem;
  font-family: var(--font-display); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(253,243,231,0.85);
}
.cta-strip .btn--white { border-radius: var(--radius-pill); padding: 1em 2em; }
.cta-strip .cta-phone {
  display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 2.4vw, 1.5rem); color: #fff;
}
.cta-strip .cta-phone .icon { width: 1.1em; height: 1.1em; }
.cta-strip .deco--lotus { width: clamp(46px, 6vw, 72px); opacity: 0.5; left: clamp(1rem, 5vw, 4rem); top: 50%; transform: translateY(-50%); }
@media (max-width: 900px) { .cta-strip .deco--lotus { display: none; } }

/* -- Light footer (mockup 2) - overrides the dark-teal footer -------- */
.site-footer { background: var(--sand); color: var(--charcoal-soft); }
.site-footer::before { display: none; }
.site-footer a { color: var(--color-accent-dark); }
.site-footer a:hover { color: var(--color-primary-dark); }
.footer-grid { grid-template-columns: 1.4fr 0.8fr 0.9fr 1.2fr 0.9fr; }
.footer-brand b { color: var(--color-accent-dark); }
.footer-brand p { color: var(--charcoal-soft); }
.site-footer h4 { color: var(--color-accent-dark); }
.footer-nap { color: var(--charcoal-soft); }
.footer-nap b { color: var(--charcoal); }
.footer-hours { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.footer-hours th, .footer-hours td { text-align: left; padding: 0.18rem 0; font-weight: 400; color: var(--charcoal-soft); }
.footer-hours td { text-align: right; font-variant-numeric: tabular-nums; }
.footer-hours .closed { color: var(--color-text-muted); }
.social-row a { border-color: rgba(43,32,24,0.2); color: var(--color-accent-dark); }
.social-row a:hover { background: rgba(43,32,24,0.06); color: var(--color-primary-dark); }
.footer-bottom { border-top-color: rgba(43,32,24,0.14); color: var(--charcoal-soft); }
.footer-seize { text-align: center; }
.footer-seize img { width: clamp(58px, 6vw, 78px); height: auto; margin: 0 auto var(--sp-3); opacity: 0.9; }
.footer-seize b {
  display: block; font-family: var(--font-display); font-weight: 600;
  letter-spacing: 0.12em; color: var(--clay); font-size: var(--fs-sm); line-height: 1.7;
}

/* grid/flex children must be allowed to shrink below their content
   width, or long words/icons force horizontal overflow on small screens */
.tailored-item, .benefit, .benefits-lead, .space-item, .title-orn h2 { min-width: 0; }
h1, h2, h3, .benefits-lead h2, .cta-strip h2 { overflow-wrap: break-word; }

/* -- Organic redesign responsive ------------------------------------ */
@media (max-width: 760px) {
  /* Mobile hero: the video sits full-bleed BEHIND the copy, veiled by a cream
     gradient (see block below) so the terracotta/teal headline stays legible.
     (The full-bleed + scrim overrides live in the later @media block so they
     win over the section-24 base .hero-media / .hero-blob rules.) */
  .hero--split { flex-direction: column; justify-content: center; align-items: stretch; min-height: clamp(520px, 100vw, 640px); padding-bottom: clamp(72px, 13vw, 104px); }
  .hero--split .container { order: 0; }
  .hero--split .hero-copy {
    max-width: 620px; margin-inline: auto; text-align: center;
    padding-block: clamp(2rem, 6vw, 3.2rem);
  }
  .hero--split .display span {
    font-size: clamp(2.1rem, 8.6vw, 3.4rem);
    text-shadow: 0 1px 14px rgba(247,240,228,0.9), 0 0 2px rgba(247,240,228,0.7);
  }
  .hero--split .lead { margin-inline: auto; text-shadow: 0 0 8px rgba(247,240,228,0.94), 0 1px 3px rgba(247,240,228,0.86); }
  .hero--split .hero-phone { font-size: clamp(1.35rem, 5.2vw, 1.75rem); text-shadow: 0 0 9px rgba(247,240,228,0.96), 0 1px 3px rgba(247,240,228,0.92); }
  .lotus-rule { margin-inline: auto; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.85rem; }
  .hero-actions .btn--primary { width: 100%; max-width: 360px; justify-content: center; }
  .hero--split .hero-eye { display: none; }
  .hero-dune { display: none; }
}
@media (max-width: 460px) {
  .hero--split .hero-copy { max-width: 100%; }
  .hero--split .display span { font-size: clamp(1.85rem, 8.8vw, 2.6rem); }
}
@media (max-width: 960px) {
  .tailored-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6) 0; }
  .tailored-item::before { display: none; }
  .therapist-grid { grid-template-columns: 1fr; }
  .arch-photo { max-width: 380px; margin-inline: auto; }
  .therapist-copy { text-align: center; }
  .therapist-copy .lotus-rule { margin-inline: auto; }
  .creds-arch { max-width: 380px; margin-inline: auto; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6) 0; }
  .benefits-lead { grid-column: 1 / -1; text-align: center; padding: 0 0 var(--sp-4); }
  .benefits-lead h2 { margin-inline: auto; }
  .benefit:nth-child(2)::before { display: none; }  /* first benefit after lead */
  .space-grid { grid-template-columns: repeat(2, 1fr); }
  /* re-assert the footer collapse - the 5-col rule above out-orders the base
     responsive rules in section 19, so restate the collapse here (later wins) */
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .tailored-grid { grid-template-columns: repeat(2, 1fr); }
  .tailored-item::before { display: none !important; }
  .title-orn h2 { font-size: 1.5rem; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit::before { display: none; }
  .benefits-lead h2 { font-size: 1.4rem; }
  .space-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip .container { flex-direction: column; }
  .cta-strip h2 { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; gap: var(--sp-5); }
  .footer-brand { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-3); }
  .footer-brand img { margin-inline: 0; }
  .footer-brand b, .footer-brand p { flex-basis: 100%; margin-inline: 0; }
  .social-row { margin-top: 0; }
  .footer-list { column-count: 2; column-gap: var(--sp-4); }
  .footer-list li { break-inside: avoid; }
}

/* ================================================================== *
   24. MOCKUP-2 EXACT-MATCH REFINEMENTS (design-audit fixes)
   ================================================================== */

/* --- Header: stacked Book/phone, terracotta active nav + phone badge --- */
.header-actions { flex-direction: column; align-items: flex-end; gap: 0.4rem; }
.header-call { color: var(--teal-dark); gap: 0.45rem; }
.header-call-ic { display: grid; place-items: center; width: 1.75em; height: 1.75em; border-radius: 50%; background: var(--sage); color: #fff; flex: none; }
.header-call-ic svg { width: 0.95em; height: 0.95em; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav a[aria-current="page"]::after { width: 0; }
.primary-nav a[aria-current="page"]:hover::after { width: 100%; }
@media (max-width: 860px) { .header-actions { flex-direction: row; } }

/* --- Hero: keyword line hidden (kept for SEO), darker lead, wavy blob --- */
.hero--split .h1-sub { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.hero--split .lead { color: var(--charcoal); }
.lotus-rule::before, .lotus-rule::after { background: var(--sage-light); }
.hero-eye { width: clamp(130px, 16vw, 215px); opacity: 0.72; top: 12%; left: clamp(33%, 36vw, 41%); z-index: 3; }
.hero-dune { opacity: 0.7; height: clamp(56px, 9vw, 116px); }
.hero-blob { clip-path: url(#heroBlob); border-radius: 0; box-shadow: none; }
.hero-media { filter: drop-shadow(0 20px 34px rgba(43,32,24,0.20)); }
@media (max-width: 760px) {
  /* Full-bleed video behind the copy + cream gradient scrim for legibility.
     These override the section-24 base .hero-media/.hero-blob rules above
     (equal specificity, later source wins). */
  .hero-media { position: absolute; inset: 0; width: 100%; max-width: none; margin: 0; filter: none; z-index: 1; }
  .hero-blob { position: absolute; inset: 0; clip-path: none; border-radius: 0; box-shadow: none; }
  .hero-blob video { object-position: 50% 38%; border-radius: 0; }
  /* cream veil: holds coverage behind the copy (headline through phone), then
     eases off toward the base so the mural still shows at the very bottom */
  .hero--split .hero-media::after {
    content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    border-radius: 0;
    background: linear-gradient(to bottom,
      rgba(247,240,228,0.90) 0%,
      rgba(247,240,228,0.86) 46%,
      rgba(247,240,228,0.79) 66%,
      rgba(247,240,228,0.64) 84%,
      rgba(247,240,228,0.34) 100%);
  }
  /* reveal the tagline (kept sr-only elsewhere) as a centred subtitle under the
     headline; this un-clips the section-24 base .hero--split .h1-sub rule */
  .hero--split .h1-sub {
    position: static; width: auto; height: auto; clip: auto; overflow: visible;
    white-space: normal; border: 0; padding: 0;
    margin: clamp(0.9rem, 3vw, 1.3rem) auto 0; max-width: 30ch;
    font-size: clamp(0.82rem, 3.2vw, 1rem); letter-spacing: 0.12em; line-height: 1.35;
    color: var(--teal-dark); text-shadow: 0 1px 10px rgba(247,240,228,0.92);
  }
}

/* --- Section titles teal + a touch smaller; softer tailored card --- */
.title-orn h2 { color: var(--color-accent-dark); font-size: clamp(1.5rem, 2.6vw, 1.95rem); }
.tailored-card { box-shadow: var(--shadow); }
.section-head--tight { margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }

/* --- Therapist: uppercase creds, cleaner arch, short lotus rule --- */
.creds-arch { border-radius: 50% 50% 12px 12px / 30% 30% 3% 3%; }
.creds-arch b { text-transform: uppercase; }
.therapist-rule { max-width: 150px; }

/* --- Benefits: drop dividers, keep heading to 3 short lines --- */
.benefit::before { display: none; }
.benefits-lead h2 { font-size: clamp(1.5rem, 2.3vw, 1.95rem); max-width: 12ch; }

/* --- Our Space: landscape window-arch frames --- */
.space-item img { aspect-ratio: 4 / 3; border-radius: 34% 34% 10px 10px / 26% 26% 4% 4%; }

/* --- Testimonials: compact, terracotta stars, sans body text --- */
.review-card--organic { padding: clamp(1.3rem, 2.4vw, 1.7rem); gap: var(--sp-2); }
.review-card--organic .q-mark { font-size: 1.9rem; line-height: 0.5; margin-bottom: 0; }
.review-card--organic p { font-family: var(--font-sans); font-style: normal; color: var(--color-text-muted); font-size: var(--fs-sm); line-height: 1.55; }
.review-card--organic .stars { color: var(--clay); font-size: var(--fs-sm); letter-spacing: 2px; margin-top: var(--sp-2); }
.review-card--organic cite { font-weight: 700; font-size: var(--fs-sm); letter-spacing: 0.03em; color: var(--color-text); }
.reviews-organic .deco--sprig-top { width: clamp(72px, 8vw, 124px); opacity: 0.85; }

/* --- Footer: wordmark, 7-day hours, radiant lotus, uppercase seize --- */
.footer-wordmark { height: clamp(52px, 5.5vw, 66px); width: auto; margin-bottom: 0.9rem; }
.footer-seize b { text-transform: uppercase; }
.footer-hours th, .footer-hours td { padding: 0.1rem 0; }
.radiant-lotus { position: relative; display: inline-block; margin-top: var(--sp-4); }
.radiant-lotus img { position: relative; z-index: 1; width: clamp(56px, 6vw, 78px); height: auto; }
.radiant-lotus::before {
  content: ""; position: absolute; left: 50%; top: 45%; transform: translate(-50%, -50%);
  width: 168%; aspect-ratio: 1; border-radius: 50%;
  background: repeating-conic-gradient(var(--gold) 0deg 0.5deg, transparent 0.5deg 7deg);
  -webkit-mask: radial-gradient(closest-side, transparent 50%, #000 54%, #000 80%, transparent 84%);
          mask: radial-gradient(closest-side, transparent 50%, #000 54%, #000 80%, transparent 84%);
  opacity: 0.5; z-index: 0; pointer-events: none;
}

/* ================================================================== *
   25. HERO/HEADER ORGANIC WAVES (user feedback - top of site)
   ================================================================== */

/* --- Wonky / curvy header bottom edge (a wavy gold line, not a straight bar) --- */
.site-header { border-bottom: none; box-shadow: none; overflow: visible; }
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: clamp(10px, 1.3vw, 16px);
  pointer-events: none; z-index: 101;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 24' preserveAspectRatio='none'%3E%3Cpath d='M0,13 C230,23 470,4 720,12 C980,21 1200,3 1440,13' fill='none' stroke='%23c69a46' stroke-width='2.5'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* --- Soft organic dunes at the hero base: beige sand + dusty teal + cream shoreline --- */
/* Dusty sage-teal dune (mockup ~rgb(150,172,164)) with a warm beige dune behind it
   (visible bottom-left) and a cream shoreline in front, so the teal has an organic
   bottom and the card never cuts a hard straight line across it. */
.hero-waves { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(96px, 12.5vw, 170px); z-index: 2; pointer-events: none; line-height: 0; }
.hero-waves .hero-wave { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; display: block; }
.hw-sand  { color: #e4cdae; opacity: 0.92; }   /* warm beige-brown, bottom-left */
.hw-slate { color: #96aca4; }                  /* dusty sage-teal dune */
.hw-cream { color: var(--sage-tint); }         /* shoreline that merges directly into the accessibility strip below */

/* soft beige dune tucked into the top-right cream gap, behind the video */
.hero-topdune { position: absolute; top: 0; left: 0; width: 100%; height: clamp(190px, 30vw, 400px); z-index: 0; color: #e6cfb6; opacity: 0.72; pointer-events: none; line-height: 0; }
.hero-topdune path { fill: currentColor; }
/* keep the copy above the dunes so the button/phone stay clear */
.hero--split .hero-copy { z-index: 4; }
/* the top dune + base dune-waves stay on mobile now that the hero keeps the
   desktop split layout - they unify the video bleed into one organic band */
@media (max-width: 760px) { .hero-waves { height: clamp(58px, 12vw, 96px); } }

/* ================================================================== *
   26. MOBILE - slim the teal benefits band (client feedback)
   Placed last so these win over the section-24 base .benefits-lead h2
   rule (equal specificity → later source wins; media queries add none).
   ================================================================== */
@media (max-width: 760px) {
  .benefits { padding-block: clamp(1.7rem, 4.5vw, 2.6rem); }
  .benefits-grid { gap: var(--sp-4) var(--sp-3); }
  .benefits-lead { padding-bottom: var(--sp-3); }
  .benefits-lead h2 { font-size: clamp(1.35rem, 4.6vw, 1.7rem); max-width: 26ch; }
  .benefits-lead p { margin-top: var(--sp-2) !important; margin-inline: auto; font-size: var(--fs-sm); }
  .benefit img { height: clamp(30px, 7vw, 40px); margin-bottom: var(--sp-2); }
  .benefit span { font-size: var(--fs-xs); line-height: 1.3; }
}
@media (max-width: 460px) {
  .benefits { padding-block: clamp(1.4rem, 5vw, 2rem); }
  .benefits-grid { gap: var(--sp-3) var(--sp-2); }
}

/* ================================================================== *
   27. ACCESSIBILITY CALLOUT (homepage strip + Contact/FAQ full block)
   ================================================================== */
.access-strip {
  position: relative;
  z-index: 1;
  background: var(--sage-tint);
  border-bottom: 1px solid var(--color-border);
}
.access-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding-block: var(--sp-4) var(--sp-6);
}
.access-strip-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
}
.access-strip-icon img { width: 22px; height: auto; background: none; }
.access-strip-inner p { margin: 0; font-size: var(--fs-sm); color: var(--color-text); max-width: 66ch; }
.access-strip-inner p strong { color: var(--teal-dark); font-size: var(--fs-base); }
.access-strip-inner a { color: var(--teal-dark); font-weight: 700; white-space: nowrap; }
@media (max-width: 620px) {
  .access-strip-inner { flex-direction: column; text-align: center; gap: var(--sp-2); }
}

.access-block { display: flex; gap: var(--sp-4); align-items: flex-start; }
.access-block > div { flex: 1; min-width: 0; }
.access-block-icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
}
.access-block-icon img { width: 26px; height: auto; background: none; }
@media (max-width: 480px) {
  .access-block { flex-direction: column; }
}
