/*
 * ════════════════════════════════════════════════════════
 *  THE HEALER IS WITHIN — Brand Design Tokens v3.1 FINAL
 *  thehealeriswithin.me
 *
 *  SOURCE OF TRUTH: this file governs all styling.
 *  All page CSS must import or reference these variables.
 *  Do not hardcode hex values anywhere else.
 *
 *  Last updated: 2025
 * ════════════════════════════════════════════════════════
 *
 *  CORRECTION LOG (v3 → v3.1):
 *  - Hero background changed from #1E110A (Oud) to #FAF7F2 (Raw Ivory)
 *    Reason: visual reference (screenshot) shows a warm light hero.
 *    Oud dark background is reserved for ONE section per page only
 *    (testimonials or CTA banner — never the hero).
 *  - Linen upgraded from #EDE4D4 to #EAE0CE (v3 final locked value)
 *  - Display heading weight: 400 for both impact headings and sub-headings
 *    (slim Playfair Display — the site now runs Playfair Display alone,
 *    not Cormorant Garamond, and reads as more premium at regular weight)
 * ════════════════════════════════════════════════════════
 */

/* Font loading moved to a <link rel="stylesheet"> in each page's <head>
   (before this file) — @import here would block CSS parsing until the
   Google Fonts request resolves. */

/* ── GLOBAL RESET ────────────────────────────────────
   Applied to every page that imports this stylesheet.
   ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
button, input, select, textarea {
  font-family: inherit;
}
body {
  font-family: var(--font-body);
  background: var(--color-ivory);
  color: var(--color-oud);
  -webkit-font-smoothing: antialiased;
  padding-top: 72px; /* space for fixed nav */
}
a { text-decoration: none; color: inherit; }
/* Keeps anchor/hash targets (and their heading) clear of the fixed
   72px nav on jump — without this, scrollIntoView/hash navigation
   lands the target flush under the nav bar. 96px = nav height + margin,
   matching the .faq-section-title precedent this centralizes. */
html { scroll-behavior: smooth; scroll-padding-top: 96px; }

:root {

  /* ── COLOUR PALETTE ──────────────────────────────────
   *  Proportion rule: 70% Ivory/Linen · 20% Oud/Cognac · 10% Accents
   * ─────────────────────────────────────────────────── */

  /* Primary surfaces (70%) */
  --color-ivory:        #FAF7F2;   /* Raw Ivory — primary bg, hero bg, most content areas */
  --color-linen:        #EAE0CE;   /* Linen — secondary surface, alternating sections, cards, pkg bg */

  /* Text & structure (20%) */
  --color-oud:          #2A1B12;   /* Espresso — headlines, primary CTA bg, one dark section per page */
  --color-cognac:       #7A6A5D;   /* Muted Brown — body text, ghost button border/text, mid-tone */
  --color-muted:        #9B7B60;   /* Warm muted — captions, durations, subtitles, meta text */

  /* Accents (10% total — use sparingly) */
  --color-gold:         #C9A84C;   /* Gold Leaf — eyebrows, dividers, bullet markers, badges, accent borders */
                                   /* RULE: max 5% per page · never as bg fill · text/lines/icons only */
  --color-clay:         #D9642E;   /* Terracotta — action CTAs (secondary btn), hover states */
                                   /* RULE: action moments only · never decorative */

  /* On-dark text (for Oud background sections) */
  --color-on-dark:      #FAF7F2;   /* Always use Raw Ivory on Oud — never pure white #ffffff */

  /* ── HERO RULE (corrected v3.1) ──────────────────────
   *  Hero background = --color-ivory (#FAF7F2)
   *  Hero headline   = --color-oud   (#2A1B12)
   *  ONE dark section per page uses --color-oud as background
   *  (testimonials or CTA — not the hero)
   * ─────────────────────────────────────────────────── */
  --color-hero-bg:      var(--color-ivory);
  --color-hero-text:    var(--color-oud);

  /* ── TYPOGRAPHY ──────────────────────────────────────
   *  Display:  Playfair Display — for all headings & quotes
   *  Body:     Playfair Display — for paragraphs, bios, body copy
   *  UI:       Karla — for nav, buttons, forms, eyebrows, footer chrome
   *            (kept off Playfair Display deliberately: a display serif
   *            reads worse than a humanist sans in small UI controls)
   *
   *  WEIGHT RULE (slim, v4):
   *  Impact headings (h1, section titles): font-weight 400 — slim Playfair Display
   *  Sub-headings, card titles: font-weight 400
   *  Italic accents/quotes: font-weight 300 italic
   *  Body: Playfair Display 400 · UI: Karla 400 regular / 500 medium
   * ─────────────────────────────────────────────────── */
  --font-display:       'Playfair Display', Georgia, serif;
  --font-body:          'Playfair Display', Georgia, serif;
  --font-brand:         'Playfair Display', Georgia, serif;

  --fw-display-impact:  400;   /* h1, major section headings — slim Playfair Display */
  --fw-display-regular: 400;   /* card titles, sub-headings */
  --fw-display-light:   300;   /* italic pull quotes, decorative numbers */
  --fw-body-regular:    400;   /* body text */
  --fw-body-medium:     500;   /* buttons, eyebrows, labels */

  /* ── EYEBROW STYLE ───────────────────────────────────
   *  Always: Karla 500 · uppercase · 0.14em tracking · --color-gold
   * ─────────────────────────────────────────────────── */
  --eyebrow-font:       'Karla', sans-serif;
  --eyebrow-size:       0.75rem;
  --eyebrow-weight:     500;
  --eyebrow-tracking:   0.14em;
  --eyebrow-color:      #C9A84C;

  /* ── BUTTONS ─────────────────────────────────────────
   *  All buttons: Karla 500 · uppercase · 0.1em tracking
   *  Border radius: 30px (pill shape)
   * ─────────────────────────────────────────────────── */
  --btn-radius:         30px;
  --btn-font:           'Karla', sans-serif;
  --btn-size:           0.72rem;
  --btn-weight:         500;
  --btn-tracking:       0.04em;

  /* Primary   */ --btn-primary-bg:      var(--color-clay);
                 --btn-primary-text:    #FAF7F2;
                 --btn-primary-hover:   #B85527;
  /* Secondary */ --btn-secondary-bg:   var(--color-oud);
                 --btn-secondary-text:  #FAF7F2;
                 --btn-secondary-hover: #1C1109;
  /* Ghost     */ --btn-ghost-border:   var(--color-cognac);
                 --btn-ghost-text:      var(--color-cognac);
                 --btn-ghost-hover-bg:  var(--color-cognac);
                 --btn-ghost-hover-text:#FAF7F2;
  /* Gold outline */ --btn-gold-border: #C9A84C;
                 --btn-gold-text:       #C9A84C;
                 --btn-gold-hover-bg:   #C9A84C;
                 --btn-gold-hover-text: var(--color-oud);

  /* ── LAYOUT ──────────────────────────────────────────*/
  --max-width:          1140px;
  --section-padding:    110px;
  --container-padding:  80px;    /* left/right on desktop */
  --container-mobile:   24px;    /* left/right on mobile  */

  /* ── CARDS ───────────────────────────────────────────*/
  --card-radius:        12px;
  --card-border:        0.5px solid #EAE0CE;
  --card-shadow:        0 2px 20px rgba(42,27,18,0.06);
  --card-bg:            #FAF7F2;

  /* ── BORDERS & DIVIDERS ──────────────────────────────*/
  --border-default:     0.5px solid #EAE0CE;  /* all card/section borders */
  --border-strong:      1.5px solid #C9A84C;  /* gold accent borders */
  --divider-gold-width: 60px;                 /* centred section divider line */
  --divider-gold-color: #C9A84C;

  /* ── HOVER INTERACTION ───────────────────────────────
   *  Nav links: Gold Leaf 1px underline slide-in
   *  Cards: background shifts to #F4EDE0
   *  Buttons: see individual btn vars above
   * ─────────────────────────────────────────────────── */
  --hover-card-bg:      #F4EDE0;
  --hover-nav-underline: #C9A84C;
  --hover-nav-height:   1px;

  /* ── TRANSITIONS ─────────────────────────────────────*/
  --transition:         all 0.3s ease;
}


/* ════════════════════════════════════════════════════════
   BASE TYPOGRAPHY
   Default element styles so all pages render correctly
   without requiring utility class names on every element.
   ════════════════════════════════════════════════════════ */

h1 {
  font-family: var(--font-brand);
  font-weight: var(--fw-display-impact);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--color-oud);
  margin-bottom: 20px;
}

h2 {
  font-family: var(--font-brand);
  font-weight: var(--fw-display-impact);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: var(--color-oud);
  margin-bottom: 16px;
}

h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-display-regular);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.2;
  color: var(--color-oud);
  margin-bottom: 12px;
}

h4 {
  font-family: var(--font-body);
  font-weight: var(--fw-body-medium);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--color-oud);
  margin-bottom: 8px;
}

p {
  font-family: var(--font-body);
  font-weight: var(--fw-body-regular);
  font-size: 1rem;
  color: var(--color-cognac);
  line-height: 1.88;
  text-align: justify;
  text-justify: inter-word;
}


/* ════════════════════════════════════════════════════════
   GLOBAL REUSABLE UTILITY CLASSES
   (import this file in every page — these classes are ready to use)
   ════════════════════════════════════════════════════════ */

/* Eyebrow label */
.eyebrow {
  font-family: var(--eyebrow-font);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
  color: var(--eyebrow-color);
  display: block;
  margin-bottom: 14px;
}

/* Gold centred divider */
.gold-divider {
  width: var(--divider-gold-width);
  height: 1px;
  background: var(--divider-gold-color);
  margin: 0 auto 36px;
}

/* Impact heading (h1 / major section h2) */
.heading-impact {
  font-family: var(--font-brand);
  font-weight: var(--fw-display-impact);
  color: var(--color-oud);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* Regular heading (card titles, sub-sections) */
.heading-regular {
  font-family: var(--font-brand);
  font-weight: var(--fw-display-regular);
  color: var(--color-oud);
  line-height: 1.15;
}

/* Italic pull quote */
.heading-quote {
  font-family: var(--font-display);
  font-weight: var(--fw-display-light);
  font-style: italic;
  color: var(--color-oud);
  line-height: 1.35;
}

/* Body text */
.body-text {
  font-family: var(--font-body);
  font-weight: var(--fw-body-regular);
  font-size: 1rem;
  color: var(--color-cognac);
  line-height: 1.88;
  text-align: justify;
  text-justify: inter-word;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--btn-font);
  font-size: var(--btn-size);
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  border-radius: var(--btn-radius);
  padding: 14px 34px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary   { background: var(--btn-primary-bg);   color: var(--btn-primary-text); }
.btn-primary:hover { background: var(--btn-primary-hover); transform: translateY(-1px); }
.btn-secondary { background: var(--btn-secondary-bg); color: var(--btn-secondary-text); }
.btn-secondary:hover { background: var(--btn-secondary-hover); transform: translateY(-1px); }
.btn-ghost     { background: transparent; color: var(--btn-ghost-text); border: 0.5px solid var(--btn-ghost-border); }
.btn-ghost:hover { background: var(--btn-ghost-hover-bg); color: var(--btn-ghost-hover-text); }
.btn-gold      { background: transparent; color: var(--btn-gold-text); border: 0.5px solid var(--btn-gold-border); }
.btn-gold:hover { background: var(--btn-gold-hover-bg); color: var(--btn-gold-hover-text); }
.btn-gold-solid      { background: var(--color-gold); color: var(--color-oud); border: none; }
.btn-gold-solid:hover { background: #b8953d; color: var(--color-oud); transform: translateY(-1px); }

/* Soft CTA pill — small bordered pill for secondary links (FAQ callouts, "book a call" prompts) */
.link-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 999px;
  font-family: 'Karla', sans-serif;
  font-size: 0.76rem;
  color: var(--color-oud);
  background: rgba(201,168,76,0.07);
  text-decoration: none;
  transition: background 0.16s, border-color 0.16s;
}
.link-pill:hover {
  background: rgba(201,168,76,0.14);
  border-color: rgba(201,168,76,0.7);
}

/* Layout helpers */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.section { padding: var(--section-padding) 0; }
.section-header.center { text-align: center; max-width: 580px; margin: 0 auto 64px; }
.text-center { text-align: center; }

/* Dark section (ONE per page — use on testimonials or CTA) */
.section-dark { background: var(--color-oud); }
.section-dark .eyebrow  { color: var(--color-gold); }
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--color-on-dark); }
.section-dark p  { color: rgba(250,247,242,0.55); }

/* ── SUPPLEMENTARY RADIUS SCALE ──────────────────────────
   No canonical equivalent in the main token block above —
   distinct sizes still used by cards/badges across pages.
   ────────────────────────────────────────────────────────*/
:root {
  --radius-xl:    16px;
  --radius-md:    8px;
  --radius-sm:    6px;
}

/* ════════════════════════════════════════════════════════
   NAVIGATION  (used on every page via nav.js injection)
   ════════════════════════════════════════════════════════ */

.nav {
  background: var(--color-oud);           /* solid by default (light-bg pages) */
  border-bottom: 0.5px solid rgba(250,247,242,0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  overflow: visible;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

/*
 * Dark-hero pages (index.html): data-nav="transparent" on <body>.
 * At top: subtle gradient so logo/links are readable WITHOUT filling the nav.
 * On scroll: transitions to full frosted glass.
 */
/* Transparent hero pages: body starts at y=0 so hero bleeds behind nav */
body[data-nav="transparent"] {
  padding-top: 0;
}
/* Nav is fully see-through at page top — hero photo shows through */
body[data-nav="transparent"] .nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
/* On scroll: solid dark nav, matches footer exactly */
body[data-nav="transparent"] .nav.scrolled {
  background: var(--color-oud);
  border-bottom-color: rgba(250,247,242,0.08);
}
/* Hero fills full viewport height when nav is transparent */
body[data-nav="transparent"] .hero-fullbleed {
  min-height: 100vh;
}
/* Hero content top padding accounts for nav height + breathing room */
body[data-nav="transparent"] .hero-fullbleed-content {
  padding-top: 160px;
  padding-bottom: 40px;
}

/* All other pages: solid dark nav, matches footer exactly */
body:not([data-nav="transparent"]) .nav.scrolled {
  background: var(--color-oud);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 72px;
  flex-shrink: 0;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-gold);
  line-height: 1.15;
  text-shadow: 0 1px 14px rgba(42,27,18,0.55);
  position: relative;
  display: inline-block;
}
.nav-logo-tld {
  position: absolute;
  left: 100%;
  bottom: 0.1em;
  font-size: 0.6em;
  font-weight: 400;
  color: var(--color-gold);
  opacity: 0.55;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-logo-tag {
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-on-dark);
  opacity: 0.88;
  text-shadow: 0 1px 8px rgba(42,27,18,0.5);
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li { list-style: none; }
.nav-links a {
  font-family: 'Karla', sans-serif;
  font-size: 0.82rem;
  color: rgba(250,247,242,0.6);
  font-weight: 400;
  position: relative;
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.22s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--color-on-dark); }
.nav-cta {
  font-family: var(--btn-font);
  font-size: var(--btn-size);
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  color: var(--color-on-dark);
  background: var(--color-clay);
  border-radius: var(--btn-radius);
  padding: 14px 34px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.nav-cta:hover {
  background: #B85527;
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  transform-origin: center;
  height: 1.5px;
  background: var(--color-on-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--color-oud);
  padding: 12px var(--container-padding) 20px;
  border-top: 0.5px solid rgba(250,247,242,0.07);
}
.nav-mobile a {
  font-family: 'Karla', sans-serif;
  font-size: 0.88rem;
  color: rgba(250,247,242,0.6);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(250,247,242,0.06);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--color-on-dark); }
.nav-mobile a.mobile-book-btn {
  background: var(--color-clay);
  color: var(--color-on-dark);
  text-align: center;
  border-radius: var(--btn-radius);
  margin-top: 14px;
  padding: 14px 34px;
  border-bottom: none;
  font-family: var(--btn-font);
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-tracking);
  font-size: var(--btn-size);
  text-transform: uppercase;
}
.nav-mobile a.mobile-book-btn:hover {
  background: #B85527;
}
.nav-mobile.open { display: flex; }
/* Full-screen overlay behind the mobile nav — tap to close */
#nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.3);
}
#nav-overlay.active { display: block; }
/* Hamburger → X animation when menu is open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1024px) {
  .nav-inner { padding: 0 var(--container-padding); }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 var(--container-mobile); }
  .nav-mobile { padding-left: var(--container-mobile); padding-right: var(--container-mobile); }
}

/* ── IMAGE PROTECTION ─────────────────────────────────────
   Prevent image dragging (text selection stays enabled sitewide)
   ─────────────────────────────────────────────────── */
img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
/* But keep links and buttons clickable */
a, button, .btn, input, textarea, select, label { pointer-events: auto; }

/* ── ACCESSIBILITY ───────────────────────────────────────
   Skip navigation — visible only on keyboard focus
   ─────────────────────────────────────────────────── */
#skip-nav {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 2000;
  background: var(--color-gold);
  color: var(--color-oud);
  font-family: 'Karla', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  transition: top 0.2s ease;
}
#skip-nav:focus {
  top: 16px;
  outline: 2px solid var(--color-oud);
  outline-offset: 2px;
}

/* ── COOKIE CONSENT BANNER ──────────────────────────────
   Fixed bottom bar — injected by nav.js
   ─────────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--color-oud);
  border-top: 0.5px solid rgba(201,168,76,0.25);
  padding: 16px 32px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 -4px 32px rgba(42,27,18,0.35);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
#cookie-banner-text {
  font-family: 'Karla', sans-serif;
  font-size: 0.82rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}
#cookie-banner-text strong { color: var(--color-on-dark); font-weight: 500; }
#cookie-banner-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  font-family: 'Karla', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.cookie-btn-accept {
  background: var(--color-gold);
  color: var(--color-oud);
}
.cookie-btn-accept:hover { background: #d4b357; }
.cookie-btn-decline {
  background: transparent;
  color: rgba(250,247,242,0.55);
  border: 0.5px solid rgba(250,247,242,0.18);
}
.cookie-btn-decline:hover { color: var(--color-on-dark); border-color: rgba(250,247,242,0.55); }
@media (max-width: 600px) {
  #cookie-banner { padding: 16px 20px; }
  #cookie-banner-inner { flex-direction: column; align-items: flex-start; }
}

/* ── COOKIE PREFERENCE MODAL ─────────────────────────────
   Full preference centre, opened from banner or footer link
   ─────────────────────────────────────────────────── */
#cookie-modal {
  position: fixed; inset: 0; z-index: 1200;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#cookie-modal.open { opacity: 1; visibility: visible; }
#cookie-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(42,27,18,0.6);
  backdrop-filter: blur(4px);
}
#cookie-modal-box {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--color-ivory);
  border-top: var(--border-strong);
  border-radius: 18px 18px 0 0;
  max-width: 620px;
  margin: 0 auto;
  padding: 0;
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  max-height: 90vh;
  overflow-y: auto;
}
#cookie-modal.open #cookie-modal-box { transform: translateY(0); }
#cookie-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px 0;
}
#cookie-modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: var(--fw-display-impact);
  color: var(--color-oud);
}
#cookie-modal-close {
  background: var(--color-linen); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  font-size: 0.75rem; color: var(--color-cognac);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
#cookie-modal-close:hover { background: var(--hover-card-bg); }
#cookie-modal-body { padding: 16px 28px 20px; }
#cookie-modal-intro {
  font-size: 0.84rem; color: var(--color-cognac); line-height: 1.65;
  margin-bottom: 20px;
}
#cookie-modal-intro a { color: var(--color-cognac); text-decoration: underline; }
.cookie-pref-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 0;
  border-top: var(--border-default);
}
.cookie-pref-info { flex: 1; }
.cookie-pref-name {
  font-size: 0.88rem; font-weight: 500; color: var(--color-oud);
  margin-bottom: 4px; display: flex; align-items: center; gap: 8px;
}
.cookie-always-on {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: #4caf7a;
  background: rgba(76,175,122,0.1); padding: 2px 8px; border-radius: 20px;
}
.cookie-pref-desc { font-size: 0.78rem; color: var(--color-muted); line-height: 1.55; }
/* Toggle switch */
.cookie-toggle {
  width: 46px; height: 26px; border-radius: 13px;
  background: var(--color-linen); border: none; cursor: pointer;
  position: relative; flex-shrink: 0; padding: 0;
  transition: background 0.25s;
}
.cookie-toggle.on { background: var(--color-gold); }
.cookie-toggle-locked { background: #4caf7a !important; cursor: default; }
.cookie-toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; transition: left 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.cookie-toggle.on .cookie-toggle-thumb,
.cookie-toggle-locked .cookie-toggle-thumb { left: 23px; }
#cookie-modal-footer {
  display: flex; gap: 10px; justify-content: flex-end;
  padding: 16px 28px 28px;
  border-top: var(--border-default);
}

/* ── SCROLL-TO-TOP BUTTON ──────────────────────────────
   Injected by nav.js — appears after 320px scroll
   ─────────────────────────────────────────────────── */
#scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-oud);
  border: 0.5px solid rgba(201,168,76,0.4);
  color: var(--color-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s;
  box-shadow: 0 4px 20px rgba(42,27,18,0.22);
}
#scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scroll-top-btn:hover {
  background: #2A1609;
  border-color: var(--color-gold);
}
#scroll-top-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 600px) {
  #scroll-top-btn { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* ════════════════════════════════════════════════════════
   FOOTER  (used on every page via nav.js injection)
   ════════════════════════════════════════════════════════ */

.footer {
  background: var(--color-oud);
  border-top: 0.5px solid rgba(250,247,242,0.06);
}
.footer > .container {
  padding-top: 72px;
  padding-bottom: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-name {
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-gold);
  margin-bottom: 5px;
}
.footer-brand-tld {
  font-size: 0.75em;
  font-weight: 400;
  opacity: 0.55;
  letter-spacing: 0.01em;
}
.footer-brand-tag {
  font-family: 'Karla', sans-serif;
  font-size: 0.56rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.88;
  margin-bottom: 18px;
}
.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.84;
  color: rgba(250,247,242,0.55);
}
.footer-col h4 {
  font-family: 'Karla', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  font-family: 'Karla', sans-serif;
  font-size: 0.84rem;
  color: rgba(250,247,242,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(250,247,242,0.82); }
.footer-social-link { display: inline-flex; align-items: center; gap: 9px; }
.footer-social-link svg { width: 15px; height: 15px; flex-shrink: 0; }
.footer-bottom {
  border-top: 0.5px solid rgba(250,247,242,0.06);
  padding: 22px 0;
  font-family: 'Karla', sans-serif;
  font-size: 0.76rem;
  color: rgba(250,247,242,0.55);
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   PAGE HERO  (sub-page banner — shop, services, blog etc)
   ════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--color-ivory);
  padding: 20px 0 48px;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1  { margin-bottom: 16px; }
.page-hero > .container > p,
.page-hero p   { max-width: 560px; color: var(--color-cognac); }

/* Reduce top gap on sections that immediately follow the page hero */
.page-hero + section,
.page-hero + .section { padding-top: 48px; }

/* ════════════════════════════════════════════════════════
   BUTTON VARIANTS  (missing from original set)
   ════════════════════════════════════════════════════════ */
/* Outline — alias for ghost (used in services/shop) */
.btn-outline { background: transparent; color: var(--btn-ghost-text); border: 0.5px solid var(--btn-ghost-border); }
.btn-outline:hover { background: var(--btn-ghost-hover-bg); color: var(--btn-ghost-hover-text); }

/* Sage — ivory surface button; readable on both light and dark backgrounds */
.btn-sage { background: var(--color-ivory); color: var(--color-oud); border: 0.5px solid rgba(42,27,18,0.18); }
.btn-sage:hover { background: var(--color-linen); transform: translateY(-1px); }

/* Size modifiers */
.btn-sm { padding: 10px 22px; font-size: 0.68rem; }
.btn-lg { padding: 17px 40px; font-size: 0.78rem; }

/* Hero buttons — for use on dark/image backgrounds only */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  font-family: var(--btn-font);
  font-size: var(--btn-size);
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  background: var(--color-clay);      /* terracotta — matches every other primary CTA sitewide */
  color: var(--color-on-dark);
  border: none;
}
.btn-hero-primary:hover {
  background: #B85527;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--btn-font);
  font-size: var(--btn-size);
  font-weight: var(--btn-weight);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
  color: rgba(250,247,242,0.85);
  border: 0.5px solid rgba(250,247,242,0.45);
}
.btn-hero-ghost:hover {
  background: rgba(250,247,242,0.12);
  border-color: rgba(250,247,242,0.75);
  color: var(--color-on-dark);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════
   SERVICES  — Package cards & comparison table
   ════════════════════════════════════════════════════════ */
.pkg-card {
  background: var(--color-ivory);
  border: var(--border-default);
  border-radius: var(--card-radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-card.featured {
  background: #FFFCF3;
  border-color: var(--color-gold);
  border-width: 1.5px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.18);
}
.pkg-card.best {
  background: var(--color-ivory);
  border: 1.5px solid var(--color-gold);
}
.pkg-name {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  font-weight: var(--fw-display-impact);
  color: var(--color-oud);
}
.pkg-card.best .pkg-name { color: var(--color-oud); }

.pkg-price {
  font-family: var(--font-brand);
  font-size: 2rem;
  font-weight: var(--fw-display-regular);
  color: var(--color-oud);
  line-height: 1;
}
.pkg-price span { font-family: var(--font-body); font-size: 0.85rem; color: var(--color-muted); }

.pkg-duration { font-size: 0.8rem; color: var(--color-muted); }

.pkg-desc { font-size: 0.9rem; color: var(--color-cognac); line-height: 1.7; flex: 1; text-align: left; }

.pkg-divider { height: 0.5px; background: var(--color-linen); margin: 4px 0; }
.pkg-card.featured .pkg-divider { background: rgba(201,168,76,0.2); }

.pkg-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.badge-earth { background: var(--color-linen); color: var(--color-cognac); }
.badge-gold  { background: rgba(201,168,76,0.12); color: var(--color-gold); border: 0.5px solid rgba(201,168,76,0.35); }

/* Comparison table */
.compare-scroll { overflow-x: auto; margin-top: 48px; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-family: 'Karla', sans-serif;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: var(--border-default);
}
.compare-table thead tr { background: var(--color-oud); }
.compare-table th {
  padding: 18px 16px;
  font-family: var(--font-brand);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--color-on-dark);
  text-align: center;
  border-right: 0.5px solid rgba(250,247,242,0.08);
}
.compare-table th.feat-col  { text-align: left; width: 28%; color: rgba(250,247,242,0.55); font-weight: 400; letter-spacing: 0.04em; }
.compare-table th.col-popular { background: rgba(201,168,76,0.18); color: var(--color-gold); }
.compare-table th.col-best    { background: rgba(201,168,76,0.25); color: var(--color-gold); }
.compare-table td {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--color-cognac);
  border-bottom: 0.5px solid var(--color-linen);
  border-right: 0.5px solid var(--color-linen);
  text-align: center;
  vertical-align: middle;
}
.compare-table td:last-child, .compare-table th:last-child { border-right: none; }
.compare-table td.feat-col { font-size: 0.83rem; font-weight: 500; color: var(--color-oud); text-align: left; }
.compare-table td.col-popular { background: rgba(201,168,76,0.04); }
.compare-table td.col-best    { background: rgba(201,168,76,0.07); }
.compare-table tr.price-row td { font-family: var(--font-brand); font-size: 2rem; font-weight: 400; color: var(--color-oud); padding-top: 20px; }
.compare-table tr.price-row td.feat-col { font-family: var(--font-body); font-size: 0.83rem; font-weight: 500; }
.compare-table tr.price-row td.col-popular,
.compare-table tr.price-row td.col-best { color: var(--color-gold); }
.compare-table tr.price-sub td { font-size: 0.74rem; color: var(--color-muted); padding-top: 2px; padding-bottom: 16px; }
.compare-table tr.group-header td {
  background: var(--color-linen);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-cognac);
  padding: 9px 16px;
  text-align: left;
  border-right: none;
}
.compare-table tr.cta-row td { padding: 18px 16px; border-bottom: none; }
.compare-table .check { color: var(--color-cognac); font-size: 1rem; }
.compare-table .dash { color: var(--color-linen); font-size: 1rem; }
.compare-table .note { font-size: 0.76rem; color: var(--color-muted); font-style: italic; }

/* Tablet: shrink cells so all 6 columns fit without scrolling */
@media (min-width: 769px) and (max-width: 1024px) {
  .compare-scroll { overflow-x: visible; }
  .compare-table { min-width: 0; width: 100%; }
  .compare-table th,
  .compare-table td { padding: 10px 7px; font-size: 0.72rem; }
  .compare-table th.feat-col { width: 22%; }
  .compare-table td.feat-col { font-size: 0.76rem; }
  .compare-table tr.price-row td { font-size: 1rem; }
  .compare-table tr.cta-row td { padding: 12px 7px; }
}

/* ════════════════════════════════════════════════════════
   SHOP  — Product cards
   ════════════════════════════════════════════════════════ */
.shop-card {
  background: var(--color-ivory);
  border: var(--border-default);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.shop-card:hover { box-shadow: var(--card-shadow); transform: translateY(-3px); }
.shop-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.shop-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.shop-name {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  font-weight: var(--fw-display-impact);
  color: var(--color-oud);
  line-height: 1.2;
}
.shop-desc { font-size: 0.84rem; color: var(--color-muted); line-height: 1.65; flex: 1; text-align: left; }
.shop-price {
  font-family: var(--font-brand);
  font-size: 1.6rem;
  font-weight: var(--fw-display-impact);
  color: var(--color-oud);
  line-height: 1;
}

.price-symbol {
  font-family: var(--font-body);
  font-size: 0.45em;
  font-weight: 400;
  vertical-align: super;
  margin-right: 2px;
  color: var(--color-muted);
  letter-spacing: 0;
}

/* Uniform price typography — used on index.html + services.html + shop.html */
.pkg-ov-price,
.pkg-price,
.shop-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: nowrap;
}

.pkg-ov-price .price-currency,
.pkg-price .price-currency,
.shop-price .price-currency,
.compare-table tr.price-row td .price-currency {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--color-oud);
  flex-shrink: 0;
}

.pkg-ov-price .price-amount,
.pkg-price .price-amount,
.shop-price .price-amount,
.compare-table tr.price-row td .price-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
}

/* Package overview card — shared component, used on index.html + services.html.
   Page CSS files only add grid column counts and the small spacing deltas
   their layout needs (card density differs: 3-col teaser vs 5-col comparison). */
.pkg-ov-card {
  background: var(--color-ivory);
  border: 1px solid var(--color-linen);
  border-radius: 16px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.28s cubic-bezier(0.22,1,0.36,1),
              border-color 0.2s;
}
.pkg-ov-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(42,27,18,0.14);
  border-color: rgba(122,106,93,0.3);
  z-index: 2;
}
.pkg-ov-rim-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 4px 14px;
  border-radius: 20px;
  line-height: 1;
}
.pkg-ov-rim-badge.badge-clay { background: var(--color-cognac); color: #fff; }
.pkg-ov-rim-badge.badge-gold { background: var(--color-gold); color: var(--color-oud); }
.pkg-ov-featured {
  border-color: var(--color-gold) !important;
  background: #FFFCF3;
  box-shadow: 0 8px 32px rgba(201,168,76,0.18);
}
.pkg-ov-featured:hover {
  border-color: var(--color-gold) !important;
  box-shadow: 0 24px 64px rgba(201,168,76,0.26);
}
.pkg-ov-premium {
  background: var(--color-ivory);
  border: 1.5px solid var(--color-gold) !important;
  box-shadow: 0 6px 28px rgba(201,168,76,0.14);
}
.pkg-ov-premium:hover {
  border-color: var(--color-gold) !important;
  box-shadow: 0 24px 64px rgba(201,168,76,0.22);
}
.pkg-ov-premium .pkg-ov-cta { background: var(--color-clay); color: var(--color-on-dark); }
.pkg-ov-premium .pkg-ov-cta:hover { background: #B85527; transform: translateY(-1px); }
.pkg-ov-premium .pkg-ov-divider { background: rgba(201,168,76,0.3); }
.pkg-ov-name {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: var(--fw-display-impact);
  color: var(--color-oud);
  line-height: 1.1;
  margin-bottom: 4px;
}
.pkg-ov-meta {
  font-size: 0.72rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.pkg-ov-price { color: var(--color-oud); line-height: 1; margin-bottom: 2px; }
.pkg-ov-featured .pkg-ov-price { color: var(--color-cognac); }
.pkg-ov-price-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--color-muted);
  margin-top: 3px;
}
.pkg-ov-divider { height: 1px; background: var(--color-linen); }
.pkg-ov-desc {
  font-size: 0.82rem;
  color: var(--color-cognac);
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: left;
}
.pkg-ov-features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.pkg-ov-features li {
  font-family: 'Karla', sans-serif;
  font-size: 0.71rem;
  color: var(--color-cognac);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.pkg-ov-features li::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  min-width: 13px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,5 4,7 8,3' fill='none' stroke='%237a6a5d' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 9px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}
.pkg-ov-actions { display: flex; flex-direction: column; margin-top: auto; }
.pkg-ov-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  background: var(--color-clay);
  color: var(--color-on-dark);
  border-radius: var(--btn-radius);
  font-family: var(--btn-font);
  font-size: var(--btn-size);
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.pkg-ov-cta:hover { background: #B85527; transform: translateY(-1px); }
.pkg-ov-featured .pkg-ov-cta { background: var(--color-clay); color: var(--color-on-dark); }
.pkg-ov-featured .pkg-ov-cta:hover { background: #B85527; }

/* ════════════════════════════════════════════════════════
   JOURNAL / BLOG  — Post cards
   ════════════════════════════════════════════════════════ */
.blog-card {
  background: var(--color-ivory);
  border: var(--border-default);
  border-radius: var(--card-radius);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--card-shadow); transform: translateY(-3px); }
.blog-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.blog-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.blog-meta  { font-size: 0.74rem; color: var(--color-muted); letter-spacing: 0.04em; }
.blog-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--fw-display-impact);
  color: var(--color-oud);
  line-height: 1.3;
}
.blog-excerpt { font-size: 0.84rem; color: var(--color-muted); line-height: 1.65; }
.blog-read-more { font-size: 0.8rem; color: var(--color-cognac); font-weight: 500; margin-top: 4px; }

/* ════════════════════════════════════════════════════════
   FAQ  — Accordion (uses .faq-trigger / .faq-body — see below)
   ════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   CONTACT  — Form fields
   ════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: 'Karla', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-oud);
  margin-bottom: 7px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--color-ivory);
  border: 0.5px solid var(--color-linen);
  border-radius: var(--radius-md);
  font-family: 'Karla', sans-serif;
  font-size: 0.9rem;
  color: var(--color-oud);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-muted); opacity: 1; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-cognac);
  box-shadow: 0 0 0 3px rgba(122,106,93,0.07);
}
.form-textarea { resize: vertical; min-height: 100px; line-height: 1.7; }

/* ── FORM VALIDATION ────────────────────────────────────── */
.form-input.input-error,
.form-select.input-error,
.form-textarea.input-error {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.09);
}
.field-error {
  display: block;
  font-family: 'Karla', sans-serif;
  font-size: 0.76rem;
  color: #c0392b;
  margin-top: 5px;
  padding-left: 2px;
}

/* ── MICROSOFT FORMS EMBED CROP ──────────────────────────
   Clips the Microsoft-owned footer ("Never give out your
   password... Report abuse... Terms of use") that renders
   inside the embedded iframe itself. Cross-origin content —
   cannot be removed via CSS/JS, only cropped. The iframe is
   sized taller than this wrapper (see resize script in each
   page) so overflow:hidden cuts the footer off cleanly. ── */
.ms-form-crop {
  overflow: hidden;
  width: 100%;
}
.form-input.input-valid,
.form-textarea.input-valid {
  border-color: var(--color-cognac);
}
/* Submitting state */
.btn-submitting {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
/* Form alert banner */
#form-alert {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #7f1d1d;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'Karla', sans-serif;
  font-size: 0.88rem;
  margin-top: 12px;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B7B60' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ════════════════════════════════════════════════════════
   NAV — Hover submenu system
   ════════════════════════════════════════════════════════ */
.nav-links li { position: relative; }
.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-oud);
  border: 0.5px solid rgba(250,247,242,0.1);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(-6px);
  box-shadow: 0 12px 40px rgba(42,27,18,0.28);
  z-index: 200;
}
.nav-submenu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 6px;
  background: var(--color-oud);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.nav-links li:hover .nav-submenu,
.nav-links li:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-submenu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.8rem;
  color: rgba(250,247,242,0.6);
  white-space: nowrap;
  border-bottom: none !important;
  transition: background 0.15s, color 0.15s;
}
.nav-submenu a::after { display: none !important; }
.nav-submenu a:hover { background: rgba(250,247,242,0.06); color: var(--color-on-dark); }
/* Chevron arrow on parent link */
.nav-has-sub > a { padding-right: 14px; }
.nav-has-sub > a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid rgba(250,247,242,0.35);
  transition: border-top-color 0.2s;
}
.nav-has-sub:hover > a::before { border-top-color: var(--color-gold); }

/* ════════════════════════════════════════════════════════
   NAV LOGO — with optional brand mark image
   ════════════════════════════════════════════════════════ */
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 5px rgba(42,27,18,0.22));
}
.nav-logo-text { display: flex; flex-direction: column; gap: 5px; }

/* ════════════════════════════════════════════════════════
   HERO — Full-bleed background image variant
   ════════════════════════════════════════════════════════ */
.hero-fullbleed {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-fullbleed-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-fullbleed-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-fullbleed-overlay {
  position: absolute;
  inset: 0;
  /* Layer 1: top nav fade */
  /* Layer 2: strong left column backing so white text is always legible
     — fades to transparent by ~65% so the right half stays photo-vivid */
  background:
    linear-gradient(to bottom, rgba(42,27,18,0.45) 0%, rgba(42,27,18,0) 10%),
    linear-gradient(100deg, rgba(42,27,18,0.78) 0%, rgba(42,27,18,0.62) 30%, rgba(42,27,18,0.22) 60%, rgba(42,27,18,0.00) 100%);
  z-index: 1;
}
.hero-fullbleed-content {
  position: relative;
  z-index: 2;
  /* Match nav-inner: same max-width + auto margin so left edge
     aligns perfectly with the nav logo on all screen sizes */
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--container-padding);
}
/* Inner text column — keeps copy from spanning full container width */
.hero-text-col {
  max-width: 580px;
}
.hero-fullbleed-content .eyebrow { color: var(--color-gold); }
.hero-fullbleed-content .hero-title { color: var(--color-on-dark); }
.hero-fullbleed-content .hero-title em { color: rgba(250,247,242,0.6); }
.hero-fullbleed-content .hero-script-line { color: var(--color-gold); }
.hero-fullbleed-content .hero-subtitle { color: rgba(250,247,242,0.88); }
.hero-fullbleed-content .hero-trust-item { color: rgba(250,247,242,0.45); }
.hero-fullbleed-content .hero-trust-sep { background: rgba(250,247,242,0.15); }
.hero-brand-mark {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 2;
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.20;
}
/* Prominent logo mark above hero headline — brand identity anchor */
.hero-logo-brand {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(201,168,76,0.55));
  animation: heroLogoEntrance 1.1s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes heroLogoEntrance {
  from { opacity: 0; transform: translateY(-12px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 768px) {
  .hero-fullbleed-content { padding: 60px var(--container-mobile) 60px; }
  .hero-text-col { max-width: 100%; }
  body[data-nav="transparent"] .hero-fullbleed-content { padding-top: 110px; }
  .hero-brand-mark { width: 56px; height: 56px; right: 24px; bottom: 24px; }
}

/* ════════════════════════════════════════════════════════
   GLOBAL MOBILE & TABLET RESPONSIVE
   Covers all shared components (nav already handled above)
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
    --container-padding: 48px;
  }
}
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --container-padding: 24px;
    --container-mobile: 20px;
  }
  .container { padding: 0 var(--container-mobile); }
  .section { padding: var(--section-padding) 0; }
  /* Section headers */
  .section-header.center { margin-bottom: 40px; }
  /* Buttons — keep font size, increase min-height for 44px touch target */
  .btn { padding: 14px 26px; font-size: 0.72rem; min-height: 44px; }
  .btn-sm { padding: 10px 18px; min-height: 40px; }
  /* Page hero (non-index pages) */
  .page-hero { padding: 48px 0 36px; }
  .page-hero h1 { font-size: clamp(2rem, 7vw, 3rem); }
  /* Cards */
  .shop-card, .blog-card { min-height: unset; }
  /* Shop image heights */
  .shop-img { height: 160px; }
  .blog-img { height: 160px; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  .footer-col { gap: 10px; }
  /* Testimonial cards */
  .testimonial-card { padding: 28px 24px; }
  /* Process steps */
  .process-step { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr !important; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  /* Section header on small phones */
  .section-header h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  /* Marquee strip text */
  .marquee-item { font-size: 0.72rem; }
  /* Why cards */
  .why-card { padding: 28px 20px; }
  /* Package card CTAs */
  .pkg-ov-cta { width: 100%; justify-content: center; }
}

/* Footer brand mark image */
.footer-brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(42,27,18,0.2));
}

/* ════════════════════════════════════════════════════════
   HERO IMAGE — Ken Burns zoom + subtle drift
   Applied to the container so object-fit:cover on the img
   stays intact and the effect is visible at every size.
   ════════════════════════════════════════════════════════ */
.hero-fullbleed-bg {
  animation: kenBurns 24s ease-in-out infinite alternate;
  transform-origin: center 40%;
}
@keyframes kenBurns {
  0%   { transform: scale(1.00) translate(0px, 0px); }
  100% { transform: scale(1.09) translate(-10px, -6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-fullbleed-bg { animation: none; }
}

/* ════════════════════════════════════════════════════════
   GOLD DIVIDER — animated draw on scroll
   Uses its own class (.divider-drawn) — NOT .anim-in —
   so it doesn't conflict with the global transform:none rule.
   ════════════════════════════════════════════════════════ */
.gold-divider {
  transform-origin: center center;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
              opacity 0.4s ease 0.1s;
}
.gold-divider.divider-drawn {
  transform: scaleX(1);
  opacity: 1;
}

/* ════════════════════════════════════════════════════════
   CARD HOVER LIFTS — why cards, process steps, testimonials
   ════════════════════════════════════════════════════════ */
.why-card,
.process-step,
.testimonial-card,
.contact-info-card,
.instagram-card,
.availability-block {
  transition: background 0.2s, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-card:hover,
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(42,27,18,0.10);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(42,27,18,0.22);
  border-color: rgba(201,168,76,0.35);
}

/* ════════════════════════════════════════════════════════
   BUTTON RIPPLE — on click
   ════════════════════════════════════════════════════════ */
.btn {
  position: relative;
  overflow: hidden;
}
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  pointer-events: none;
  animation: ripple 0.6s ease-out forwards;
}
@keyframes ripple {
  from { transform: scale(0); opacity: 1; }
  to   { transform: scale(4.5); opacity: 0; }
}

/* ── SCROLL PROGRESS BAR ────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--color-gold), var(--color-clay));
  z-index: 2000;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════
   PACKAGE ROW HOVER — slide-in left accent
   ════════════════════════════════════════════════════════ */
.pkg-row {
  transition: background 0.18s, box-shadow 0.22s;
  position: relative;
}
.pkg-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--color-gold);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.pkg-row:hover::before { transform: scaleY(1); }
.pkg-row.pkg-featured::before { transform: scaleY(1); background: var(--color-gold); }

/* ════════════════════════════════════════════════════════
   NAV LOGO — entrance on page load
   ════════════════════════════════════════════════════════ */
.nav-logo {
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.75s ease 0.2s, transform 0.75s cubic-bezier(0.22,1,0.36,1) 0.2s;
}
.nav-logo.nav-logo-ready {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════
   PAGE & SCROLL ANIMATIONS
   Respects prefers-reduced-motion automatically.
   JS adds .anim-ready (invisible) then .anim-in (visible).
   ════════════════════════════════════════════════════════ */

/* Base animate state — invisible until JS triggers */
.anim-ready {
  opacity: 0;
}
.anim-ready.fade-up    { transform: translateY(28px); }
.anim-ready.fade-down  { transform: translateY(-20px); }
.anim-ready.fade-left  { transform: translateX(24px); }
.anim-ready.fade-right { transform: translateX(-24px); }
.anim-ready.scale-up   { transform: scale(0.96); }

/* Animated-in state */
.anim-in {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Stagger delays for child items */
.anim-stagger > *:nth-child(1) { transition-delay: 0s; }
.anim-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.anim-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.anim-stagger > *:nth-child(4) { transition-delay: 0.24s; }
.anim-stagger > *:nth-child(5) { transition-delay: 0.32s; }

/* Hero load sequence — assigned via JS data-hero-seq attribute */
[data-hero-seq] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-hero-seq].hero-visible {
  opacity: 1;
  transform: none;
}

/* Page fade-in on load (body) */
body.page-loading { opacity: 0; }
body.page-ready   {
  opacity: 1;
  transition: opacity 0.35s ease;
}

/* Reduced motion: skip all animations */
@media (prefers-reduced-motion: reduce) {
  .anim-ready, .anim-in,
  [data-hero-seq], [data-hero-seq].hero-visible,
  body.page-loading, body.page-ready {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/*
 * ════════════════════════════════════════════════════════
 *  GOLDEN RULES — never break these
 * ════════════════════════════════════════════════════════
 *
 *  1. Gold Leaf (#C9A84C) max 5% of any page.
 *     Never as a background fill. Text, lines, icons, fine borders only.
 *
 *  2. Terracotta (#D9642E) for action moments only.
 *     Primary CTA buttons, hover states. Never decorative.
 *
 *  3. ONE dark Oud section per page.
 *     Use .section-dark class. Never on the hero.
 *
 *  4. Hero background is ALWAYS Raw Ivory (#FAF7F2).
 *     Hero headline is ALWAYS Oud (#2A1B12).
 *
 *  5. Impact headings use font-weight 400 — slim Playfair Display.
 *
 *  7. Whitespace is a design element. Never fill every inch.
 *
 *  8. Never use pure black (#000000). Always use Oud #2A1B12.
 *
 *  9. No more than 2 accent colours per section.
 *     If Gold is present, minimise Clay — and vice versa.
 * ════════════════════════════════════════════════════════
 */

/* ══════════════════════════════════════════════════════
   TRUST STRIP — payment logos bar injected by nav.js
   ══════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--color-ivory);
  border-top: var(--border-default);
  padding: 14px 0;
}
.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.trust-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-cognac);
  background: var(--color-linen);
  border: var(--border-default);
  border-radius: 6px;
  padding: 5px 10px;
  white-space: nowrap;
}
.trust-badge svg { flex-shrink: 0; color: var(--color-muted); }
.trust-note {
  font-size: 0.68rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .trust-inner { gap: 8px 14px; }
  .trust-note { width: 100%; text-align: center; }
}

/* ══════════════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════════════ */
.faq-section { background: var(--color-ivory); padding: 96px 0; }
.faq-list { max-width: 780px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--color-linen);
}
.faq-item:first-child { border-top: 1px solid var(--color-linen); }
.faq-trigger,
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: var(--fw-display-impact);
  color: var(--color-oud);
  transition: color 0.2s;
}
.faq-trigger:hover,
.faq-question:hover { color: var(--color-cognac); }
.faq-trigger[aria-expanded="true"],
.faq-item.open .faq-question { color: var(--color-cognac); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-linen);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.faq-trigger[aria-expanded="true"] .faq-icon {
  background: var(--color-cognac);
  border-color: var(--color-cognac);
  transform: rotate(45deg);
}
.faq-icon svg { width: 12px; height: 12px; stroke: var(--color-oud); fill: none; stroke-width: 2; stroke-linecap: round; transition: stroke 0.2s; }
.faq-trigger[aria-expanded="true"] .faq-icon svg { stroke: #fff; }
.faq-body,
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-body-inner,
.faq-answer {
  padding: 0 0 28px;
  font-size: 1rem;
  color: var(--color-cognac);
  line-height: 1.8;
  max-width: 680px;
}
.faq-item.open .faq-body,
.faq-item.open .faq-answer { max-height: 600px; }

/* ══════════════════════════════════════════════════════
   SKELETON / SHIMMER LOADING
   ══════════════════════════════════════════════════════ */
@keyframes shimmerSkeleton {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
.skeleton-block {
  background: linear-gradient(90deg, #ede9e2 25%, #f5f2ec 50%, #ede9e2 75%);
  background-size: 600px 100%;
  animation: shimmerSkeleton 1.4s ease-in-out infinite;
  border-radius: 8px;
}
/* Section skeleton wrapper — covers a section while it loads, fade out once section is visible */
.section-skeleton {
  position: relative;
  min-height: 180px;
}
.section-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #ede9e2 25%, #f5f2ec 50%, #ede9e2 75%);
  background-size: 600px 100%;
  animation: shimmerSkeleton 1.4s ease-in-out infinite;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
}
.section-skeleton.skeleton-done::after { opacity: 0; pointer-events: none; }

/* ══════════════════════════════════════════════════════
   INSTAGRAM FLOATING BUTTON
   Bottom-right, above the scroll-to-top button.
   ══════════════════════════════════════════════════════ */
#instagram-fab {
  position: fixed;
  right: 24px;
  bottom: 96px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s, opacity 0.25s;
  opacity: 0;
  transform: scale(0.7);
  animation: fabEntrance 0.5s 1.8s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes fabEntrance {
  to { opacity: 1; transform: scale(1); }
}
#instagram-fab:hover {
  transform: scale(1.1) !important;
  filter: brightness(1.08);
}
/* While a form field is focused, recede the FAB so it doesn't obscure
   dropdowns/inputs on narrow screens where it overlaps page content. */
body.form-field-focused #instagram-fab {
  opacity: 0.32 !important;
}
body.form-field-focused #instagram-fab:hover {
  opacity: 1 !important;
}
#instagram-fab svg { width: 26px; height: 26px; fill: var(--color-gold); }
#instagram-fab .fab-tooltip {
  position: absolute;
  right: 60px;
  background: var(--color-oud);
  color: var(--color-on-dark);
  font-size: 0.75rem;
  font-family: 'Karla', sans-serif;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
#instagram-fab:hover .fab-tooltip { opacity: 1; }

/* ══════════════════════════════════════════════════════
   EMAIL FLOATING BUTTON
   Bottom-right, stacked above the Instagram FAB — gives
   visitors without Instagram a one-click contact option.
   ══════════════════════════════════════════════════════ */
#email-fab {
  position: fixed;
  right: 24px;
  bottom: 160px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s, opacity 0.25s;
  opacity: 0;
  transform: scale(0.7);
  animation: fabEntrance 0.5s 2s cubic-bezier(0.22,1,0.36,1) forwards;
}
#email-fab:hover {
  transform: scale(1.1) !important;
  filter: brightness(1.08);
}
body.form-field-focused #email-fab {
  opacity: 0.32 !important;
}
body.form-field-focused #email-fab:hover {
  opacity: 1 !important;
}
#email-fab svg { width: 24px; height: 24px; fill: none; stroke: var(--color-gold); }
#email-fab .fab-tooltip {
  position: absolute;
  right: 60px;
  background: var(--color-oud);
  color: var(--color-on-dark);
  font-size: 0.75rem;
  font-family: 'Karla', sans-serif;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
#email-fab:hover .fab-tooltip { opacity: 1; }

/* Homepage only — both FABs stay out of the way while the hero
   (with its own "Book a session" CTA) is in view. See
   initHeroFabFade() in nav.js. */
body.hero-in-view #instagram-fab,
body.hero-in-view #email-fab {
  opacity: 0 !important;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   MOBILE STICKY CTA BAR
   ══════════════════════════════════════════════════════ */
#mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-oud);
  padding: 12px 20px;
  z-index: 8900;
  box-shadow: 0 -4px 24px rgba(42,27,18,0.22);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  safe-area-inset-bottom: env(safe-area-inset-bottom);
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
#mobile-sticky-cta.visible { transform: translateY(0); }
@media (max-width: 768px) {
  #mobile-sticky-cta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  /* Push scroll-top, Instagram FAB, and email FAB up on mobile, above the sticky CTA bar */
  #scroll-top-btn { bottom: 76px; }
  #instagram-fab  { bottom: 140px; }
  #email-fab      { bottom: 196px; }
  /* Smaller footprint + tucked closer to the corner so it intrudes less on content */
  #instagram-fab { width: 46px; height: 46px; right: 16px; }
  #instagram-fab svg { width: 22px; height: 22px; }
  #instagram-fab .fab-tooltip { right: 54px; }
  #email-fab { width: 46px; height: 46px; right: 16px; }
  #email-fab svg { width: 20px; height: 20px; }
  #email-fab .fab-tooltip { right: 54px; }
}
.mobile-sticky-label {
  font-family: 'Karla', sans-serif;
  font-size: 0.82rem;
  color: rgba(250,247,242,0.65);
  flex: 1;
  line-height: 1.35;
}
.mobile-sticky-label strong { color: var(--color-on-dark); font-weight: 500; display: block; }
.mobile-sticky-btn {
  flex-shrink: 0;
  background: var(--color-gold);
  color: var(--color-oud);
  font-family: 'Karla', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 11px 20px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-sticky-btn:hover { background: #b8973d; }
