/* ==========================================================
   Lowendal Thérapie — refined editorial styling
   Built on &Fold sensibility: quiet, considered, warm.
   ========================================================== */

/* ---------- 1. Tokens ------------------------------------- */
:root {
  /* palette — warm cream + cocoa, taupe accents */
  --bg:           #F6F4F1;        /* off-white page bg (was warm cream #ece4d6) */
  --bg-soft:      #e7e1db;
  --bg-card:      #E8E3DC;        /* warm soft linen — system card surface */
  --bg-deep:      #251a10;
  --bg-deep-soft: #33251a;
  --ink:          #1c1812;
  --ink-soft:     #56493d;
  --ink-muted:    #8b7d6e;
  --accent:       #9c8e7d;
  --accent-dark:  #7a6c5b;
  --accent-deep:  #564a3d;
  --cream-on-deep: #ece4d6;
  --line:         #d4c9b5;
  --line-dark:    #4a3d30;
  --signal:       #b85c3a;          /* warm clay — used very sparingly */

  /* shadows */
  --shadow-pill: 0 1px 2px rgba(28, 24, 18, .04), 0 8px 24px rgba(28, 24, 18, .06);
  --shadow-soft: 0 2px 4px rgba(28, 24, 18, .03), 0 20px 40px -10px rgba(28, 24, 18, .08);
  --shadow-lift: 0 4px 8px rgba(28, 24, 18, .04), 0 30px 60px -15px rgba(28, 24, 18, .12);

  /* type */
  --serif: "LT Superior Serif", "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* layout */
  --max-w: 1704px;                 /* widened to match &Fold proportions on huge screens */
  --max-w-wide: 1440px;
  --r-pill: 999px;
  --r-tag:  8px;            /* rounded rectangle for badges and labels */
  --r-card: 28px;
  --r-soft: 14px;

  /* motion */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --t-fast: .25s;
  --t-base: .5s;
  --t-slow: .9s;
}

/* ---------- 2. Reset & base ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 800px 600px at 12% -10%, rgba(184, 92, 58, .04), transparent 60%),
    radial-gradient(ellipse 600px 800px at 110% 30%, rgba(122, 108, 91, .05), transparent 60%);
}

/* subtle paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .1  0 0 0 0 .08  0 0 0 0 .05  0 0 0 .08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

::selection { background: var(--accent-deep); color: var(--bg); }

img, svg { max-width: 100%; display: block; }
img { color: transparent; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-soft), opacity var(--t-fast) var(--ease-soft);
}
a:hover { color: var(--accent-dark); }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ---------- 3. Typography --------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.8rem, 6.2vw, 5.4rem); font-weight: 400; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.6rem); font-weight: 400; margin-bottom: 1.4rem; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.55rem); font-weight: 500; margin-bottom: 0.7rem; letter-spacing: -0.015em; }
h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.7rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }

.display-italic {  font-weight: 400; }
.display-italic em { font-weight: 500; }

em { font-style: normal; font-weight: 500; color: var(--ink); }

p { margin-bottom: 1.05rem; color: var(--ink-soft); font-weight: 400; }
strong, b { color: var(--ink); font-weight: 500; }
small { font-size: 0.85rem; color: var(--ink-muted); }

ul { padding-left: 0; margin-bottom: 1rem; color: var(--ink-soft); list-style: none; }
li { margin-bottom: 0.5rem; }

blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  
  font-weight: 300;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.015em;
}

/* ---------- 4. Layout ------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); position: relative; z-index: 2; }
.container-wide { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); position: relative; z-index: 2; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); position: relative; z-index: 2; }

main { position: relative; z-index: 2; }

/* ---------- 5. Header / nav ------------------------------- */
.header {
  position: fixed;
  top: 1.2rem;
  left: 0; right: 0;
  z-index: 100;
  pointer-events: none;
  transition: top var(--t-base) var(--ease-soft);
}
.header.scrolled { top: 0.8rem; }

.nav {
  pointer-events: auto;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.4rem 0.6rem;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-pill);
  transition: padding var(--t-base) var(--ease-soft), background var(--t-base) var(--ease-soft);
}
.header.scrolled .nav { padding: 0.32rem 0.6rem; background: rgba(255, 255, 255, .96); }
.nav > .brand { justify-self: start; }
.nav > .nav-links { justify-self: center; }
.nav > .nav-cta-wrap { justify-self: end; }
.nav-cta-wrap { display: inline-flex; align-items: center; }

.brand {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-logo {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: breathe 6s ease-in-out infinite;
}
.brand-logo img { width: 100%; height: 100%; }
.brand-text { display: inline-flex; align-items: baseline; gap: 0.18rem; }
.brand-name { font-weight: 400; }
.brand-role { font-size: 0.65rem; color: var(--ink-muted); margin-left: 0.15rem; vertical-align: super; }

@keyframes breathe {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: .85; }
  50%      { transform: scale(1.08) rotate(45deg); opacity: 1; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.nav-links li { display: inline-flex; align-items: center; margin: 0; }
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--ink);
  border-radius: var(--r-pill);
  transition: background var(--t-fast) var(--ease-soft), color var(--t-fast) var(--ease-soft), font-weight var(--t-fast);
  position: relative;
}
.nav-link:hover { background: rgba(122, 108, 91, .12); color: var(--ink); }
.nav-link.active { font-weight: 600; color: var(--ink); }
.nav-link.cta {
  background: var(--ink);
  color: var(--bg);
  padding: 0.5rem 1rem;
  margin-left: 0.4rem;
  line-height: 1;
}
.nav-link.cta:hover { background: var(--bg-deep); color: var(--bg); }
.nav-link.cta.active { font-weight: 600; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--r-pill);
  flex-direction: column; justify-content: center; align-items: center;
  gap: 4px;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink); border-radius: 1px;
  transition: transform .3s var(--ease-soft);
}

/* ---------- 6. Buttons ------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.4rem 0.85rem 1.5rem;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease-soft), background var(--t-fast) var(--ease-soft), color var(--t-fast) var(--ease-soft), box-shadow var(--t-fast) var(--ease-soft);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after {
  content: "→";
  font-size: 1rem;
  display: inline-block;
  transition: transform var(--t-fast) var(--ease-soft);
}
.btn:hover::after { transform: translateX(3px); }
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--bg-deep); color: var(--bg); box-shadow: var(--shadow-soft); }

.btn-soft {
  background: rgba(28, 24, 18, .06);
  color: var(--ink);
  border: 1px solid rgba(28, 24, 18, .08);
}
.btn-soft:hover {
  background: rgba(28, 24, 18, .1);
  border-color: rgba(28, 24, 18, .14);
  color: var(--ink);
}

.btn-ghost {
  padding: 0.65rem 0;
  background: transparent;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.btn-ghost::after { margin-left: .35rem; }
.btn-ghost:hover { border-color: var(--ink); transform: none; }

.section-deep .btn-soft { background: rgba(236, 228, 214, .1); color: var(--cream-on-deep); border-color: rgba(236, 228, 214, .15); }
.section-deep .btn-soft:hover { background: rgba(236, 228, 214, .18); border-color: rgba(236, 228, 214, .3); color: var(--cream-on-deep); }

/* ---------- 7. Eyebrow labels (tag-style) ------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(28, 24, 18, .06);
  border-radius: var(--r-tag);
  margin-bottom: 1.4rem;
}
.eyebrow.dark { color: rgba(236, 228, 214, .75); background: rgba(236, 228, 214, .1); border: 1px solid rgba(236, 228, 214, .14); }
.eyebrow.center { justify-content: center; }

/* ---------- 8. Sections ----------------------------------- */
.section { position: relative; padding: clamp(5rem, 11vw, 9rem) 0; }
.section-soft { background: var(--bg-soft); }
.section-deep { background: var(--bg-deep); color: var(--cream-on-deep); }
.section-deep h1, .section-deep h2, .section-deep h3, .section-deep h4 { color: var(--cream-on-deep); }
.section-deep p, .section-deep li { color: rgba(236, 228, 214, .82); }
.section-deep strong { color: var(--cream-on-deep); }

.section-title { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-title .eyebrow { justify-content: center; }
.section-title .subtitle {
  font-family: var(--serif); 
  font-size: 1.1rem; color: var(--ink-muted);
  margin-top: 0.8rem;
}
.section-deep .section-title .subtitle { color: rgba(236, 228, 214, .65); }

/* ---------- 9. Hero (centered, image below) --------------- */
/* Hero is structured as: centered text block on top, contained image below
   with rounded corners. As the user scrolls, the image expands toward
   full-bleed via the --p (progress) custom property set by JS. */

.hero-v2 {
  position: relative;
  padding: clamp(5.5rem, 9vw, 8rem) 0 0;
  text-align: center;
  --p: 0;
}

.hero-headline {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 3;
}

.hero-tags {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

/* Scattered tag layout (desktop) — tags rotate and sit around the headline */
.hero-scatter {
  position: relative;
  max-width: 980px;
  margin: 0 auto 1.5rem;
  padding: 1.2rem 0;
}
.hero-scatter h1 {
  position: relative;
  z-index: 1;
}
.hero-scatter .pill-tag {
  position: absolute;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(28, 24, 18, .08), 0 1px 2px rgba(28, 24, 18, .06);
}
.pill-pos-1 { top: 0.2rem;  left: 8%;  transform: rotate(-4deg); }
.pill-pos-2 { top: 42%;     right: 4%; transform: rotate(3deg); }
.pill-pos-3 { bottom: -0.3rem; left: 32%; transform: rotate(-2deg); }

.pill-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.8rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--r-tag);
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(28, 24, 18, .05);
}
.pill-tag--warm   { background: #f1d59a; color: #4a3618; }
.pill-tag--clay   { background: #cf7a55; color: #fff8ef; }
.pill-tag--cream  { background: #ffffff; color: var(--ink); border: 1px solid rgba(28, 24, 18, .06); }
.pill-tag--glass  { background: rgba(28, 24, 18, .35); color: #fff; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, .18); }

/* Mobile: stack tags above headline, no rotation */
@media (max-width: 759px) {
  .hero-scatter { padding: 0; max-width: 100%; }
  .hero-scatter .pill-tag {
    position: static;
    display: inline-flex;
    margin: 0 0.2rem 0.6rem;
    transform: none !important;
    box-shadow: 0 1px 2px rgba(28, 24, 18, .05);
  }
  .hero-scatter::before {
    content: "";
    display: block;
    margin-bottom: 0.5rem;
  }
}

.hero-headline h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.06;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto 1.5rem;
}
.hero-headline h1 em {  font-weight: 300; }

.hero-cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* =========================================================
   Hero stage — UNIFIED parallax sequence
   =========================================================
   Behavior in 3 phases driven by --p (scroll progress 0 → 1)
   and --activePanel (which methodology panel is centered).

   Phase 1 — image card (--p ≈ 0):
     - Image sits below headline as a wide rounded card.
     - max-width ≈ 1440px, height ≈ 78vh, radius 28px.

   Phase 2 — expansion (--p 0 → 1, first 1 viewport of scroll):
     - Sticky image grows toward viewport with 12px gaps on
       all sides. Radius eases from 28px → 20px.

   Phase 3 — sticky parallax (after expand, N panels × 1vh each):
     - Image stays pinned at top: 12px, height: calc(100vh - 24px).
     - Methodology panels scroll vertically over it.
     - Each panel fades in/out as it crosses viewport center.
     - Background image crossfades to the active panel's image.
========================================================= */

.hero-stage {
  position: relative;
  --p: 0;
}

/* Sticky image surface — top: 12px gives the requested 12px gap when
   fully expanded. Horizontal padding gives 12px gaps on left/right.
   Height is calc(100vh - 24px) so 12px gaps on both top and bottom. */
.hero-image-pin {
  position: sticky;
  top: 12px;
  width: 100%;
  height: calc(100vh - 24px);
  padding: 0 12px;
  box-sizing: border-box;
  display: flex;
  /* Top-align so the card hugs the headline at scrollY=0.
     Once expanded (--p=1), the frame fills the pin so this no longer matters. */
  align-items: flex-start;
  justify-content: center;
  z-index: 0;
}

.hero-image-frame {
  position: relative;
  /* Width: always 100% of the pin's content box, which is already
     100vw - 24px thanks to the pin's horizontal padding. So at every
     scroll position we have the requested 12px L/R gap. */
  width: 100%;
  /* Height interpolates between card (400px) and pin-fill
     (calc(100vh - 24px)). At p=0 it's a wide cinematic card, at
     p=1 it fills the pin → 12px gap top and bottom. */
  height: calc(400px * (1 - var(--p)) + (100vh - 24px) * var(--p));
  /* max-width clamps the card phase to ~1480px. At p=1 it opens up
     so the frame fills the pin (which is 100vw - 24px wide). */
  max-width: calc(1480px + (10000px * var(--p)));
  /* &Fold-style radius transition:
     - Start (card phase): 280px → very deep capsule-like left/right edges
     - End (full expanded): 24px → refined, clean rounded corners
     The frame has overflow:hidden so all inner bgs/overlay inherit the mask. */
  border-radius: calc(280px - 256px * var(--p));
  overflow: hidden;
  background: linear-gradient(135deg, #6f5c4a 0%, #8a7560 35%, #b89a7e 70%, #d8c0a3 100%);
  box-shadow: 0 10px 40px -10px rgba(28, 24, 18, calc(.18 - .18 * var(--p)));
  transition: box-shadow .3s var(--ease-soft);
}

/* Crossfading bg layers — one per methodology panel.
   bg index 0 is also the card image, so the user sees no flash. */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity;
}
.hero-bg.hero-bg--active { opacity: 1; }

/* Dark gradient — fades in proportional to --p so the card phase
   stays clean and the expanded phase has legibility for text. */
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(28, 24, 18, .22) 0%,
    rgba(28, 24, 18, .40) 55%,
    rgba(28, 24, 18, .58) 100%);
  opacity: var(--p);
  pointer-events: none;
  z-index: 1;
}

/* Panels block — pulled back over the sticky pin with negative margin
   so they appear to scroll over the same image surface. The leading
   spacer gives the expand phase a full viewport of scroll runway. */
.hero-panels {
  position: relative;
  z-index: 2;
  margin-top: calc(-100vh + 24px);
  pointer-events: none;
}
/* Spacer = expand phase (1 viewport of scroll where --p goes 0 → 1) */
.hero-panels::before {
  content: "";
  display: block;
  height: 100vh;
}
.hero-panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: #fff;
  text-align: center;
  --panel-opacity: 1;
}
.hero-panel-inner {
  max-width: 900px;
  opacity: var(--panel-opacity);
  /* &Fold-style blur-to-focus: inverse of opacity (blur when far from center) */
  filter: blur(calc((1 - var(--panel-opacity)) * 10px));
  transition: opacity .4s cubic-bezier(.4, 0, .2, 1), filter .4s cubic-bezier(.4, 0, .2, 1);
}
.hero-panel .method-statement {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .55);
  margin: 0;
}
.hero-panel .method-label { margin-bottom: 2rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, calc(.75 * (1 - var(--p) * 2)));
  font-weight: 600;
  z-index: 3;
  pointer-events: none;
}
.hero-scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, calc(.5 * (1 - var(--p) * 2)));
  margin: 0.6rem auto 0;
  animation: scroll-bar 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-bar {
  0%, 100% { transform: scaleY(.3); opacity: .4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ---------- 9b-legacy. Method sections (full-bleed) -------------- */
.method-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.method-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(28, 24, 18, .15) 0%,
    rgba(28, 24, 18, .25) 50%,
    rgba(28, 24, 18, .4) 100%);
  z-index: 1;
}
.method-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}
.method-label {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  background: rgba(28, 24, 18, .42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--r-tag);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.method-statement {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .35);
}
.method-statement em { font-style: normal; }

/* ---------- 9c. Presence section (portrait + pillar cards) ---- */
.presence-section {
  padding: 0;                       /* gradient + padding moved into .presence-panel */
}

/* Framed gradient panel — matches the hero expanded state and the signal
   frame: 12px gutter on all 4 sides, 24px rounded corners. Holds the
   heading, portrait, rows, and CTA all on the same gradient backdrop. */
.presence-panel {
  background: linear-gradient(180deg, #9E9388 0%, #F6F4F1 100%);
  margin: 12px;
  border-radius: 24px;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 0;
}

/* Wider inset gutters inside the panel so the image card sits with the
   24–48px breathing room called out in the &Fold reference. */
.presence-panel .container { padding: 0 clamp(24px, 4vw, 48px); }

/* Heading colors — scoped only to this section */
.presence-section .section-title.presence-title h2 {
  color: #ffffff;
}
.presence-section .section-title.presence-title h2 em {
  color: #ffffff;
}
.presence-section .eyebrow {
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.presence-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: clamp(20px, 2.4vw, 28px);
  overflow: hidden;
  margin-bottom: 12px;            /* tightened: 12px gap to first .presence-row */
  background: var(--bg-card);
  box-shadow: 0 20px 50px -20px rgba(28, 24, 18, .18);
}

/* 3a — Section heading sits at the container's left edge (same gutter as the
   portrait below). Base .section-title centers via margin:0 auto + text-align:center;
   this override left-aligns the block. */
.presence-section .section-title.presence-title {
  text-align: left;
  max-width: 720px;
  margin: 0 0 3rem;
}
.presence-section .section-title.presence-title .eyebrow { justify-content: flex-start; }
/* Soft bottom-fade gradient — creates text legibility without a hard outline.
   Matches &Fold card treatment: image bleeds into a soft warm scrim. */
.presence-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg,
    rgba(28, 24, 18, 0) 0%,
    rgba(28, 24, 18, .25) 55%,
    rgba(28, 24, 18, .55) 100%);
  pointer-events: none;
  z-index: 1;
}
.presence-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 1.4s var(--ease-soft);
}
.presence-portrait:hover img { transform: scale(1.03); }

/* Name overlay — frosted glass card: warm-white translucent, blurred,
   soft highlight border, rounded. Elegant and calm, no hard stroke. */
.presence-portrait-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 0.85rem 1.3rem;
  color: #fff;
  background: rgba(248, 240, 226, .16);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 0;                      /* 3b — visible stroke removed */
  border-radius: var(--r-soft);
  box-shadow: 0 8px 30px -8px rgba(28, 24, 18, .35);
  z-index: 2;
}
.presence-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .3);
}
.presence-role {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: .85;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
}

/* Pillar cards — stair shape → horizontal alignment on scroll */
.presence-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: end;
}
.pillar-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, color-mix(in srgb, var(--bg) 85%, var(--bg-card)) 100%);
  border: 1px solid rgba(212, 201, 181, .55);
  border-radius: clamp(20px, 2.4vw, 28px);
  padding: 2.2rem 2rem 2.4rem;
  position: relative;
  opacity: 0;
  transition:
    transform .9s var(--ease-out),
    opacity .9s var(--ease-out),
    box-shadow .4s var(--ease-soft),
    margin .9s var(--ease-out);
}
.pillar-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(28, 24, 18, .06);
  border-radius: var(--r-tag);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.pillar-card h3 {
  font-family: var(--serif);
  
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  margin-bottom: 0.9rem;
  color: var(--ink);
  line-height: 1.15;
}
.pillar-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* Stair: cards offset progressively when section enters viewport */
.reveal-stair .pillar-card {
  transform: translateY(80px);
}
.reveal-stair .pillar-card:nth-child(1) { margin-top: 0;    transform: translateY(80px); }
.reveal-stair .pillar-card:nth-child(2) { margin-top: 3.5rem; transform: translateY(80px); }
.reveal-stair .pillar-card:nth-child(3) { margin-top: 7rem;   transform: translateY(80px); }

/* Align state — when .in is added by IntersectionObserver, all cards level */
.reveal-stair.in .pillar-card {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stair.in .pillar-card:nth-child(1) { margin-top: 0; transition-delay: 0s; }
.reveal-stair.in .pillar-card:nth-child(2) { margin-top: 0; transition-delay: .15s; }
.reveal-stair.in .pillar-card:nth-child(3) { margin-top: 0; transition-delay: .3s; }

.pillar-card:hover {
  box-shadow: 0 20px 50px -20px rgba(28, 24, 18, .18);
}
.reveal-stair.in .pillar-card:hover {
  transform: translateY(-4px);
}

/* ---------- 9c-rows. Presence info rows (static, non-clickable) -------
   Replaces the old .presence-pillars cards. Full-width informational rows:
   no hover lift, no pointer, no hard stroke — intentionally static. The
   .pillar-* / .reveal-stair rules above are now inert (no markup uses them). */
.presence-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;                       /* tightened: exact 12px between rows */
}
.presence-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);   /* desc column wider, fills to right edge */
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;             /* vertically centered inside the 112px row */
  height: 112px;                   /* exact row height per spec */
  padding: 0 1.6rem;               /* tight horizontal padding; vertical handled by height */
  border-radius: var(--r-soft);
  background: #FFFFFF !important;  /* hardcoded pure white — token-agnostic, intentional scope */
  /* deliberately no transition / :hover / cursor change — static & informational */
}
.presence-row-head {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.presence-row-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 0.32rem 0.7rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(28, 24, 18, .055);
  border-radius: var(--r-tag);
}
.presence-row-title {
  font-family: var(--sans);     /* Asta Sans (slotted via --sans, Inter fallback) */
  font-size: 1.5rem;            /* 24px */
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.presence-row-desc {
  font-family: var(--sans);     /* Asta Sans (slotted via --sans, Inter fallback) */
  font-size: 1rem;              /* 16px */
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: left;
  max-width: none;              /* 3c — push to the right edge of the row */
  margin: 0;
}
@media (max-width: 760px) {
  .presence-row {
    grid-template-columns: 1fr;   /* stack: tag+title above description */
    gap: 0.9rem;
    height: auto;                 /* let stacked layout breathe */
    padding: 1.2rem 1.3rem;
  }
}

/* ---------- 9d. Testimonials v2 (dynamic blurred bg + snap carousel) ---- */
.testimonials-v2 {
  position: relative;
  padding: clamp(5rem, 9vw, 7rem) 0;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

/* Stack of blurred bgs — one per testimonial portrait. JS toggles --active. */
.testimonials-bg-stack {
  position: absolute;
  inset: -60px;
  z-index: -2;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* Blur reduced ~50% (was 40px → now 20px) for a softer, less muddy bg */
  filter: blur(20px) saturate(1.15);
  transform: scale(1.18);
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity;
}
.testimonials-bg.testimonials-bg--active { opacity: 1; }
.testimonials-bg-overlay {
  position: absolute;
  inset: 0;
  /* Light, atmospheric scrim (~78% lighter than before) — readability is
     carried by the opaque card itself, not by darkening the whole bg */
  background: linear-gradient(180deg, rgba(28, 20, 12, .14) 0%, rgba(28, 20, 12, .18) 100%);
  z-index: 1;
  pointer-events: none;
}

.testimonials-v2-header {
  text-align: left;
  margin: 0 auto 3.5rem;
  max-width: var(--max-w);                    /* match the carousel card edge (1704) */
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.testimonials-v2-header .pill-tag--glass { margin-bottom: 0.8rem; }
.testimonials-v2-header h2 {
  font-family: var(--serif);
  font-weight: 500;        /* heavier for better legibility on dark bg */
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .45), 0 2px 18px rgba(0, 0, 0, .5);
}
.testimonials-v2-header h2 em {
  color: #fff;             /* bright white — was lowercase em inheriting --ink */
  font-weight: 500;
}
.testimonials-v2-header-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  padding-bottom: 0.4rem;
}
.testimonials-v2-header-meta {
  font-family: var(--serif);
  color: rgba(255, 255, 255, .9);
  font-size: 1rem;
  padding-bottom: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .45);
}

/* Controls row: arrows on the right, sit beside the meta line */
.testimonials-controls {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
.testimonials-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0;
}
.testimonials-arrow:hover { background: rgba(255, 255, 255, .22); border-color: rgba(255, 255, 255, .4); }
.testimonials-arrow:active { transform: scale(.94); }
.testimonials-arrow svg { width: 18px; height: 18px; display: block; }


/* Snap-scroll carousel — JS auto-advances every 4s with a pause between */
.testimonials-track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Wide-desktop stage: card is fixed 1704px, so center it inside the wrap */
  padding: 0 calc((100vw - 1704px) / 2);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.testimonials-track-wrap::-webkit-scrollbar { display: none; }
.testimonials-track {
  display: flex;
  gap: 12px;                                    /* tightened: 12px between cards */
  width: max-content;
}

.testimonial-card {
  /* Wide-desktop dimensions per spec: 1704px card, 24px padding, 804px image col + 1fr body */
  flex: 0 0 1704px;
  min-height: 672px;                            /* image 624 + padding 24*2 = 672 */
  scroll-snap-align: center;
  background: #FFFFFF;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: clamp(22px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, .5);
  color: var(--ink);
  display: grid;
  grid-template-columns: 804px 1fr;
  gap: 28px;
  padding: 24px;
}

/* Fixed 804x624 editorial panel on wide desktop */
.testimonial-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  align-self: center;
  width: 804px;
  height: 624px;
  aspect-ratio: auto;
}

/* Below the wide-desktop threshold, revert to the previous fluid sizing
   so the carousel never horizontally overflows on laptops / tablets.
   The mobile (<=759px) block further down handles the stacked layout. */
@media (max-width: 1760px) {
  .testimonials-track-wrap {
    padding: 0 calc((100vw - clamp(900px, 84vw, 1280px)) / 2);
  }
  .testimonial-card {
    flex: 0 0 clamp(900px, 84vw, 1280px);
    min-height: 0;
    height: clamp(480px, 42vw, 640px);
    grid-template-columns: clamp(340px, 30vw, 460px) 1fr;
  }
  .testimonial-image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}
.testimonial-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-body {
  padding: 18px 28px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.testimonial-says {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink-muted);
}
.testimonial-quote {
  flex: 1;
  font-family: var(--serif);
  font-weight: 400;
  /* &Fold-scale editorial quote: ~40px desktop, scales down responsively */
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

/* Meta: tag stacked ABOVE name (both left-aligned) */
.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: auto;
}
.testimonial-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  background: rgba(28, 24, 18, .08);
  border-radius: var(--r-tag);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.testimonial-name {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
}

@media (max-width: 759px) {
  .testimonials-v2-header { flex-direction: column; align-items: flex-start; }
  .testimonials-track-wrap { padding: 0 calc((100vw - 88vw) / 2); }
  .testimonial-card {
    flex: 0 0 88vw;
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;   /* stack: full-width 4:3 image banner, then quote */
    padding: 14px;
    gap: 16px;
  }
  .testimonial-body { padding: 6px 8px; gap: 0.8rem; }
  .testimonial-quote { font-size: 1.2rem; line-height: 1.35; }
}

/* ---------- 10. Marquee ----------------------------------- */
.marquee {
  position: relative;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
}
.marquee-track {
  display: inline-flex; align-items: center;
  white-space: nowrap;
  animation: marquee 44s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--serif);
   font-weight: 300;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  color: var(--ink);
  letter-spacing: -0.015em;
  display: inline-flex; align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
}
.marquee-item::after {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- 11. Split sections ---------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split.reverse .split-image { order: 2; }
.split-image {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  position: relative;
  box-shadow: var(--shadow-soft);
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-soft);
}
.split:hover .split-image img { transform: scale(1.04); }
.split-text { padding: 1rem 0; }
.split-text h2 { margin-bottom: 1.5rem; }
.split-text ul { margin: 1rem 0 1.4rem; }
.split-text ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.65rem;
}
.split-text ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 14px; height: 1px;
  background: var(--accent);
}

/* ---------- 12. Specialties grid -------------------------- */
.specialties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.specialty {
  background: var(--bg-card);
  border-radius: var(--r-card);
  overflow: hidden;
  padding: 2rem 2rem 2.2rem;
  display: flex; flex-direction: column;
  transition: transform var(--t-base) var(--ease-soft), box-shadow var(--t-base) var(--ease-soft);
  border: 1px solid rgba(212, 201, 181, .5);
}
.specialty:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.specialty h3 {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 400; 
  margin-bottom: 1.2rem;
  color: var(--ink);
}
.specialty-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-soft);
  overflow: hidden;
  margin-bottom: 1.4rem;
  /* Gradient fallback ensures the card never looks empty */
  background:
    linear-gradient(135deg, #cfc4ad 0%, #a89572 50%, #7a6c5b 100%);
}
.specialty-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-soft), filter 1.4s var(--ease-soft);
  filter: saturate(.85);
}
.specialty:hover .specialty-image img { transform: scale(1.06); filter: saturate(1); }
.specialty p { flex: 1; font-size: 0.95rem; margin-bottom: 1.4rem; color: var(--ink-soft); }
.specialty .btn { align-self: flex-start; }

/* ---------- 13. Testimonials ------------------------------ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--bg-deep-soft);
  border: 1px solid rgba(236, 228, 214, .08);
  border-radius: var(--r-card);
  padding: 2.8rem 2rem 2.2rem;
  position: relative;
  transition: transform var(--t-base) var(--ease-soft);
}
.testimonial:hover { transform: translateY(-3px); }
.testimonial::before {
  content: "“";
  position: absolute;
  top: 1rem; left: 1.6rem;
  font-family: var(--serif);
  font-size: 4.5rem;
  color: var(--accent);
  opacity: .35;
  line-height: 1;
}
.testimonial p {
  font-family: var(--serif);
  font-size: 1.04rem;  font-weight: 300;
  line-height: 1.55;
  color: rgba(236, 228, 214, .9);
  margin-top: 0.5rem; margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ---------- 14. Checklist --------------------------------- */
.checklist { list-style: none; padding: 0; margin: 2rem 0; }
.checklist li {
  padding: 1.1rem 0 1.1rem 2.2rem;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem; color: var(--ink);
  line-height: 1.55;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.5rem;
  width: 10px; height: 10px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path fill='%237a6c5b' d='M50 0 L51.5 46.3 L62.7 37.3 L53.7 48.5 L100 50 L53.7 51.5 L62.7 62.7 L51.5 53.7 L50 100 L48.5 53.7 L37.3 62.7 L46.3 51.5 L0 50 L46.3 48.5 L37.3 37.3 L48.5 46.3 Z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---------- 14b. Signal section (image card + editorial content card) ---- */
/* Two-column premium layout, copy-led. Self-contained — no shared class edits.
   Image left / content card right on desktop; stacks (image first) on mobile. */
.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;   /* text column slightly larger (copy-led) */
  align-items: stretch;               /* cards share the same height */
  gap: clamp(1.5rem, 4vw, 3rem);
}

.signal-media {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: linear-gradient(135deg, #cfc4ad 0%, #a89572 50%, #7a6c5b 100%);
  box-shadow: var(--shadow-soft);
  min-height: clamp(320px, 42vw, 560px);
}
.signal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9);
  transition: transform 1.6s var(--ease-soft), filter 1.6s var(--ease-soft);
}
.signal-grid:hover .signal-media img { transform: scale(1.04); filter: saturate(1); }
/* Soft warm bottom scrim — depth without a hard edge */
.signal-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(28, 24, 18, 0) 0%, rgba(28, 24, 18, .14) 100%);
  pointer-events: none;
}

.signal-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 201, 181, .5);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-soft);
  padding: clamp(2rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signal-card .eyebrow { align-self: flex-start; }
.signal-card h2 { margin-bottom: 0; }
.signal-card .signal-lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  color: var(--ink-muted);
  margin-top: 1rem;
  margin-bottom: 1.8rem;
}
.signal-card p {
  text-align: left;
  max-width: 54ch;       /* readable measure */
}
.signal-card p:last-child { margin-bottom: 0; }

@media (max-width: 960px) {
  .signal-grid {
    grid-template-columns: 1fr;   /* stack: image first, then content card */
    gap: 1.25rem;
  }
  .signal-media { min-height: clamp(240px, 56vw, 380px); }
  .signal-card { padding: clamp(1.6rem, 6vw, 2.25rem); }
  .signal-card .signal-lead { margin-bottom: 1.4rem; }
}

/* ---------- 14b-frame. Signal section — full-bleed framed image card
   Sits as a 12px-gutter framed panel (matching the hero expanded state + the
   presence panel) with text overlaid: eyebrow + h2 anchored top, lead + body
   anchored bottom (flex space-between). The old .signal-grid / .signal-media
   / .signal-card rules above are now inert (no markup references them — same
   precedent as .marquee / .pillar-*). */
.signal-section { padding: 0; }    /* override .section's default vertical padding — the 12px frame margin handles spacing */
.signal-frame {
  position: relative;
  margin: 12px;                    /* 12px gutter on all 4 sides — matches hero expanded + presence panel */
  border-radius: 24px;             /* matches hero expanded radius */
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #6f5c4a 0%, #8a7560 35%, #b89a7e 70%, #d8c0a3 100%);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}
.signal-frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;     /* focal point pushed to the right so the left half stays readable */
  display: block;
  z-index: 0;
  transition: transform 2s var(--ease-soft);
}
.signal-frame:hover .signal-frame-img { transform: scale(1.025); }

/* Scrim concentrated on the left side where the text column lives now
   (text fills full frame height top→bottom), with extra darkening top-
   and bottom-left where the eyebrow/h2 and body paragraphs sit. */
.signal-frame-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, .58) 0%,
      rgba(0, 0, 0, .42) 28%,
      rgba(0, 0, 0, .22) 52%,
      rgba(0, 0, 0, 0) 78%),
    linear-gradient(180deg,
      rgba(0, 0, 0, .25) 0%,
      rgba(0, 0, 0, 0) 25%,
      rgba(0, 0, 0, 0) 75%,
      rgba(0, 0, 0, .25) 100%);
  pointer-events: none;
}
.signal-frame-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;  /* eyebrow+h2 at top, lead+body at bottom */
  padding: clamp(2rem, 5vw, 4.5rem);
  max-width: min(640px, 60%);
  color: #fff;
}
.signal-frame-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.signal-frame-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.signal-frame-eyebrow {
  background: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 1.2rem;
}
.signal-frame-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .45);
  margin: 0 0 1.2rem;
}
.signal-frame-lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, .94);
  text-shadow: 0 1px 14px rgba(0, 0, 0, .5);
  margin: 0 0 1.4rem;
}
.signal-frame-text p {
  font-family: var(--sans);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, .88);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5);
  margin: 0 0 0.85rem;
}
.signal-frame-text p:last-child { margin-bottom: 0; }
.signal-frame-text strong { color: #fff; font-weight: 600; }

@media (max-width: 960px) {
  .signal-frame {
    aspect-ratio: 4 / 5;          /* portrait card on tablet/mobile */
  }
  .signal-frame-text {
    max-width: 100%;
    padding: clamp(1.5rem, 6vw, 2.2rem);
  }
  .signal-frame-scrim {
    /* Text spans top↔bottom — darken both ends, image visible in the middle */
    background:
      linear-gradient(180deg,
        rgba(0, 0, 0, .6) 0%,
        rgba(0, 0, 0, .15) 35%,
        rgba(0, 0, 0, .15) 65%,
        rgba(0, 0, 0, .6) 100%);
  }
}
@media (max-width: 560px) {
  .signal-frame { aspect-ratio: 3 / 4; }
}

/* ---------- 14c. Self-check (guided reflection) -----------------------
   Two-column: editorial intro (left) + interactive card (right). Reuses
   the .signal-grid layout idiom and the cream-card token language. The
   old .checklist rules above are now inert (no markup references them). */
.selfcheck-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: center;
}
.selfcheck-intro .eyebrow { align-self: flex-start; }
.selfcheck-intro h2 { margin-bottom: 0; }
.selfcheck-lead {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 1.1rem;
  margin-bottom: 0;
  max-width: 46ch;
  text-align: left;
}

.selfcheck-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 201, 181, .5);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.8rem, 3.5vw, 2.75rem);
}

/* Progress */
.selfcheck-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.selfcheck-bar {
  flex: 1;
  height: 4px;
  background: rgba(28, 24, 18, .08);
  border-radius: 999px;
  overflow: hidden;
}
.selfcheck-bar-fill {
  display: block;
  height: 100%;
  width: 25%;
  background: var(--accent-dark);
  border-radius: 999px;
  transition: width .5s var(--ease-out);
}
.selfcheck-step {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}

/* Question + options (these ARE interactive — pointer/hover is correct here) */
.selfcheck-q {
  font-family: var(--sans);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  text-align: left;
  margin: 0 0 1.5rem;
  min-height: 2.7em;            /* prevents layout jump between questions */
  transition: opacity .28s var(--ease-out);
}
.selfcheck-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: opacity .28s var(--ease-out);
}
.sc-hidden { opacity: 0; }
.selfcheck-option {
  width: 100%;
  text-align: left;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.9rem 1.15rem;
  background: rgba(255, 255, 255, .5);
  border: 1px solid var(--line);
  border-radius: var(--r-soft);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease-soft),
              border-color var(--t-fast) var(--ease-soft),
              transform var(--t-fast) var(--ease-soft);
}
.selfcheck-option:hover {
  background: rgba(255, 255, 255, .8);
  border-color: var(--accent);
}
.selfcheck-option:active { transform: scale(.99); }
.selfcheck-option.is-selected {
  background: rgba(156, 142, 125, .14);
  border-color: var(--accent-dark);
  color: var(--ink);
}

.selfcheck-foot {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.selfcheck-back {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 0.2rem 0;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease-soft);
}
.selfcheck-back:hover { color: var(--ink); }
.selfcheck-disclaimer {
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0;
  text-align: left;
}

/* Result */
.selfcheck-result .eyebrow { align-self: flex-start; margin-bottom: 1.1rem; }
.selfcheck-result-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 1rem;
}
.selfcheck-result-desc {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  text-align: left;
  margin: 0 0 1.8rem;
  max-width: 52ch;
}
.selfcheck-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

@media (max-width: 960px) {
  .selfcheck-grid {
    grid-template-columns: 1fr;   /* stack: intro first, then card */
    gap: 1.75rem;
  }
  .selfcheck-card { padding: clamp(1.5rem, 6vw, 2rem); }
  .selfcheck-lead { max-width: none; }
}

/* ---------- 15. Quote block ------------------------------- */
.quote-block { padding: clamp(4rem, 8vw, 7rem) 0; text-align: center; }
.quote-block.on-soft { background: var(--bg-soft); }
.quote-block .eyebrow { justify-content: center; }
.quote-block blockquote { max-width: 760px; margin: 0 auto; }

/* ---------- 16. FAQ accordion ----------------------------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 400; 
  color: var(--ink);
  cursor: pointer;
  transition: color var(--t-fast) var(--ease-soft);
}
.faq-q:hover { color: var(--accent-deep); }
.faq-q-icon {
  width: 18px; height: 18px;
  position: relative;
  flex-shrink: 0;
  opacity: .7;
}
.faq-q-icon::before, .faq-q-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .4s var(--ease-out);
}
.faq-q-icon::before { left: 0; right: 0; top: 50%; height: 1.2px; transform: translateY(-50%); }
.faq-q-icon::after  { top: 0; bottom: 0; left: 50%; width: 1.2px; transform: translateX(-50%); }
.faq-item.open .faq-q-icon::after { transform: translateX(-50%) rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease-out);
}
.faq-a-inner { padding: 0 0 1.6rem; color: var(--ink-soft); }
.faq-a-inner p { margin-bottom: 0.7rem; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner ol { padding-left: 1.4rem; margin: 0.5rem 0 0.8rem; }
.faq-a-inner ol li { padding-left: 0.3rem; }

/* ---------- 16b. FAQ cards (scoped: .faq-cards only) ------------------
   White/cream rounded accordion cards on the warm beige bg. Every rule is
   prefixed .faq-cards so the generic section-16 .faq* base (used by other
   pages) is untouched. JS initFaq() is reused unchanged. */
.faq-head {
  text-align: left;               /* text still left-flush inside the block */
  max-width: 820px;
  margin: 0 auto 2.2rem;          /* block centered horizontally on the page */
}
.faq-head .eyebrow { align-self: flex-start; }
.faq-head h2 { margin-bottom: 0; }

.faq-cards {
  max-width: 820px;
  margin: 0 auto;                 /* block centered horizontally on the page */
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq-cards .faq-item {
  border: 0;                      /* kill the divider-line style */
  background: #faf7f0;            /* warm white card on the beige section */
  border-radius: var(--r-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-cards .faq-item:first-child { border-top: 0; }   /* neutralize base rule */
.faq-cards .faq-q {
  font-family: var(--sans);       /* Asta Sans (slotted via --sans) */
  font-size: 1rem;                /* 16px */
  font-weight: 700;               /* bold */
  line-height: 1.4;
  color: var(--ink);
  text-align: left;
  padding: 1.1rem 1.35rem;
  gap: 1.25rem;
}
.faq-cards .faq-q:hover { color: var(--ink); }
.faq-cards .faq-q-icon {
  width: 16px;
  height: 16px;
  opacity: .8;
  color: var(--ink-soft);
}
.faq-cards .faq-a-inner {
  font-family: var(--sans);       /* Asta Sans (slotted via --sans) */
  font-size: 1rem;                /* 16px */
  font-weight: 400;               /* regular */
  line-height: 1.6;
  color: var(--ink-soft);
  padding: 0 1.35rem 1.25rem;
  text-align: left;
}
.faq-cards .faq-a-inner ol { padding-left: 1.3rem; margin: 0.2rem 0 0; }
.faq-cards .faq-a-inner ol li { padding-left: 0.3rem; margin-bottom: 0.45rem; }
.faq-cards .faq-a-inner ol li:last-child { margin-bottom: 0; }
.faq-cards .faq-a-inner p { margin-bottom: 0.6rem; }
.faq-cards .faq-a-inner p:last-child { margin-bottom: 0; }

@media (max-width: 760px) {
  .faq-head, .faq-cards { max-width: none; }   /* full-width, comfortable padding kept */
}

/* ---------- 16c. Offering grid (Inclus dans chaque séance) ------------
   4 white/cream cards on the warm beige bg. Title top-left, icon top-right,
   description bottom-left, generous padding, soft rounded corners. Every
   selector is prefixed .offering so no other section is affected.
   The previous build shipped this markup with NO CSS — that's why the
   section was rendering as an empty scroll gap. */
.offering {
  padding: clamp(5rem, 11vw, 9rem) 0;
}
.offering-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.offering-head {
  text-align: left;
  max-width: 820px;
  margin: 0 0 3rem;
}
.offering-head .eyebrow {
  align-self: flex-start;
  margin-bottom: 14px;            /* tighter than the global 1.4rem; spec asks 12–16px */
}
.offering-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.offering-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;                             /* ~20px, reads close to &Fold at the new wider container */
}
.offering-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;           /* head row at top, description floats to bottom */
  height: 440px;                            /* exact desktop height per spec */
  background: #E8E3DC;                      /* warm soft linen — system card surface */
  border-radius: 18px;                      /* 16–20px range per spec, mid */
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--t-base) var(--ease-soft), box-shadow var(--t-base) var(--ease-soft);
}
.offering-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.offering-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.offering-card h3 {
  font-family: var(--serif);                /* LT Superior Serif → Fraunces fallback */
  font-size: clamp(1.75rem, 2.1vw, 2rem);   /* ~28–32px */
  font-weight: 400;                         /* regular */
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.offering-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--signal);                     /* warm clay */
}
.offering-icon svg {
  width: 48px;
  height: 48px;
  display: block;
}
.offering-card p {
  font-family: var(--sans);                 /* Asta Sans (slotted via --sans) */
  font-size: 1rem;                          /* 16px */
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 1023px) {
  .offering-grid { grid-template-columns: repeat(2, 1fr); }
  .offering-card { height: 380px; padding: 28px; }
}
@media (max-width: 767px) {
  .offering-grid { grid-template-columns: 1fr; gap: 1rem; }
  .offering-card { height: auto; min-height: 280px; padding: 26px; }
  .offering-card h3 { font-size: 1.5rem; }
  .offering-icon, .offering-icon svg { width: 40px; height: 40px; }
}

/* ---------- 17. Footer ------------------------------------ */
.footer {
  background: var(--bg-deep);
  color: rgba(236, 228, 214, .8);
  padding: 5rem 0 2rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(236, 228, 214, .12);
}
.footer h4 {
  color: rgba(236, 228, 214, .55);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.8rem; font-weight: 400;
  color: var(--cream-on-deep);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.footer p { color: rgba(236, 228, 214, .75); font-size: 0.92rem; line-height: 1.6; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.55rem; }
.footer a {
  color: rgba(236, 228, 214, .82);
  font-size: 0.92rem;
  position: relative;
  display: inline-block;
}
.footer a:hover { color: var(--cream-on-deep); }
.footer a:not(.nav-link)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width var(--t-fast) var(--ease-soft);
}
.footer a:hover::after { width: 100%; }
.footer-contact-line {
  font-family: var(--serif);
  font-size: 1.1rem !important;
  color: var(--cream-on-deep) !important;
  margin-bottom: 0.4rem !important;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(236, 228, 214, .45);
  letter-spacing: 0.04em;
}
.footer-bottom-mark { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-bottom-mark svg { width: 12px; height: 12px; opacity: .6; }

/* ---------- 18. Reveal animations ------------------------- */
/* &Fold-inspired blur-to-focus reveal: enters from below softly blurred,
   becomes sharp at the active position. */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); filter: blur(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out), filter .8s var(--ease-out);
}
.reveal-stagger.in > *           { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .4s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .56s; }

/* Explicit blur-to-focus class — slightly stronger blur for hero-type reveals */
.reveal-blur {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(12px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out);
}
.reveal-blur.in { opacity: 1; transform: translateY(0); filter: blur(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, .reveal-blur { opacity: 1; transform: none; filter: none; }
  .hero-slide, .brand-logo, .hero-scroll::after, .marquee-track { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* ---------- 19. Generic page header ----------------------- */
.page-hero {
  padding: clamp(8rem, 14vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
}
.page-hero h1 {
  
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.page-hero .lead {
  font-family: var(--serif); 
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--ink-muted);
  max-width: 640px; margin: 0 auto;
}
.page-hero .eyebrow { justify-content: center; }

/* ---------- 20. Blog / posts ------------------------------ */
.posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.post-card {
  display: block;
  background: var(--bg-card);
  border-radius: var(--r-card);
  padding: 2rem;
  border: 1px solid rgba(212, 201, 181, .5);
  transition: transform var(--t-base) var(--ease-soft), box-shadow var(--t-base) var(--ease-soft);
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); color: var(--ink); }
.post-card .tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-block;
  margin-bottom: 1rem;
}
.post-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;  font-weight: 400;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.post-card p { font-size: 0.95rem; margin-bottom: 1.2rem; }
.post-card .read-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.post-card .read-more::after {
  content: "→";
  transition: transform var(--t-fast) var(--ease-soft);
}
.post-card:hover .read-more::after { transform: translateX(3px); }

/* ---------- 21. Article body ------------------------------ */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.75;
}
.article-body h2, .article-body h3 { margin-top: 2.5rem; margin-bottom: 1rem; }
.article-body h2 {  font-weight: 300; }
.article-body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--accent);
  font-size: 1.2rem;
}

/* ---------- 22. Contact ----------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-info h3 {
  font-family: var(--serif);  font-weight: 300;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.contact-info dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.8rem 2rem;
  margin: 1.5rem 0;
}
.contact-info dt {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 0.15rem;
}
.contact-info dd { color: var(--ink); }
.fee-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 201, 181, .5);
  border-radius: var(--r-card);
  padding: 2rem;
  margin-top: 2rem;
}
.fee-card .fee-amount {
  font-family: var(--serif);
  font-size: 2.6rem; font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.fee-card .fee-unit { font-size: 0.92rem; color: var(--ink-muted); margin-left: 0.3rem; }

.contact-form .field { margin-bottom: 1.3rem; }
.contact-form label {
  display: block;
  font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, .4);
  border: 1px solid var(--line);
  border-radius: var(--r-soft);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color var(--t-fast) var(--ease-soft), background var(--t-fast) var(--ease-soft);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
  background: rgba(255, 255, 255, .7);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ---------- 23. Responsive -------------------------------- */
@media (max-width: 960px) {
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.6rem 0.55rem 1.2rem;
  }
  .nav > .brand { order: 1; }
  .nav > .nav-cta-wrap { order: 2; margin-left: auto; }
  .nav > .nav-toggle { order: 3; }
  .nav > .nav-cta-wrap .nav-link.cta { padding: 0.5rem 0.95rem; font-size: 0.85rem; margin-left: 0; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 4.5rem; left: 1rem; right: 1rem;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: var(--r-card);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, .9);
    gap: 0;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease-soft), transform .25s var(--ease-soft);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { padding: 0.85rem 1rem; }

  /* New hero responsive */
  .hero-v2 { padding-top: 5.5rem; }
  .hero-headline h1 { max-width: 14ch; }
  .hero-image-frame { width: calc(100% - (2rem * (1 - var(--p)))) !important; }
  .hero-image-pin { height: 90vh; }

  .method-statement { font-size: clamp(1.9rem, 6vw, 3rem); }

  .split { grid-template-columns: 1fr; }
  .split.reverse .split-image { order: 0; }
  .split-image { aspect-ratio: 1/1; max-width: 480px; }

  .specialties { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Presence pillars: stack on mobile, drop the stair offsets */
  .presence-pillars { grid-template-columns: 1fr; gap: 1rem; }
  .reveal-stair .pillar-card,
  .reveal-stair .pillar-card:nth-child(1),
  .reveal-stair .pillar-card:nth-child(2),
  .reveal-stair .pillar-card:nth-child(3) { margin-top: 0; transform: translateY(40px); }
  .reveal-stair.in .pillar-card { transform: translateY(0); }

  /* Presence portrait: shorter aspect on mobile */
  .presence-portrait { aspect-ratio: 4/5; }
  .presence-portrait-overlay {
    bottom: 1rem; left: 1rem;
    gap: 0.25rem;
    padding: 0.7rem 1rem;
  }
  .presence-name { font-size: 1rem; }
  .presence-role { font-size: 0.62rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.7rem; text-align: center; }
}

@media (max-width: 560px) {
  .container, .container-wide, .container-narrow { padding: 0 1.25rem; }
  .hero-frame { inset: 0.5rem; }
  .hero-cta-wrap { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; }
  .marquee-item { font-size: 1.4rem; gap: 1.5rem; padding-right: 1.5rem; }
}

/* ---------- 24. Compatibility / legacy class names ------- */
/* .lead — used in page-hero and as standalone intro paragraph */
.lead {
  font-family: var(--serif);
  
  font-weight: 300;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--ink-muted);
  line-height: 1.5;
}
.subtitle {
  font-family: var(--serif);
  
  font-size: 1.1rem;
  color: var(--ink-muted);
  margin-top: 0.8rem;
}

/* .form-group is alias for .field on contact.html */
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, .4);
  border: 1px solid var(--line);
  border-radius: var(--r-soft);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color var(--t-fast) var(--ease-soft), background var(--t-fast) var(--ease-soft);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-dark);
  background: rgba(255, 255, 255, .7);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* .contact-label — small caps label inside contact-info */
.contact-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.3rem;
  margin-top: 0.5rem;
}
.contact-info h3 {
  font-family: var(--serif);
  
  font-weight: 300;
  font-size: 1.4rem;
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}
.contact-info h3:first-of-type { margin-top: 1.5rem; }
.contact-info p { margin-bottom: 0.4rem; }
.contact-info a { color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: border-color var(--t-fast) var(--ease-soft); }
.contact-info a:hover { border-color: var(--ink); color: var(--ink); }

/* .tarif-block / .tarif-price / .duration — pricing card */
.tarif-block {
  background: var(--bg-card);
  border: 1px solid rgba(212, 201, 181, .5);
  border-radius: var(--r-card);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.tarif-block .duration {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}
.tarif-price {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 1rem;
}

/* article-content / article-section / article-eyebrow — for blog or longform pages */
.article-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.75;
}
.article-content h2 {
  font-family: var(--serif);
  
  font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  color: var(--ink);
}
.article-content h3 {
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
}
.article-content p { font-size: 1.04rem; line-height: 1.75; }
.article-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--accent);
  font-size: 1.2rem;
  background: rgba(156, 142, 125, .06);
  border-radius: 0 var(--r-soft) var(--r-soft) 0;
}
.article-section {
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.article-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(28, 24, 18, .06);
  border-radius: var(--r-tag);
  margin-bottom: 1rem;
}

/* Legacy FAQ class names (some pages may use these) */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 400; 
  color: var(--ink);
  cursor: pointer;
  border: none; background: none;
  border-top: 1px solid var(--line);
}
.faq-list .faq-item:last-child .faq-question { border-bottom: 1px solid var(--line); }
.faq-toggle {
  width: 18px; height: 18px;
  position: relative; flex-shrink: 0; opacity: .7;
}
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute; background: currentColor;
  transition: transform .4s var(--ease-out);
}
.faq-toggle::before { left: 0; right: 0; top: 50%; height: 1.2px; transform: translateY(-50%); }
.faq-toggle::after  { top: 0; bottom: 0; left: 50%; width: 1.2px; transform: translateX(-50%); }
.faq-item.open .faq-toggle::after { transform: translateX(-50%) rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease-out);
}
.faq-answer-inner { padding: 0 0 1.6rem; color: var(--ink-soft); }
.faq-answer-inner p { margin-bottom: 0.7rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* podcast-specific pieces */
.podcast-episode {
  background: var(--bg-card);
  border: 1px solid rgba(212, 201, 181, .5);
  border-radius: var(--r-card);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: transform var(--t-base) var(--ease-soft), box-shadow var(--t-base) var(--ease-soft);
}
.podcast-episode:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.podcast-episode h3 {
  font-family: var(--serif);
  
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.podcast-episode .ep-meta {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
