@charset "UTF-8";
/* ============================================================================
   Dr. Cait Van Damm — site styles
   Design intent: editorial, earnest, hand-set. Print-magazine bones, not a SaaS
   template. Lots of air, hairline rules, real type, restrained color. Newsreader
   (display) + Figtree (text). Photography is treated as photography, not chrome.
   Three considered directions via body[data-theme="calm|bold|warm"].
   ========================================================================== */

/* ---- Tokens (default = CALM) -------------------------------------------- */
:root {
  --cream:      #FAF7F1;
  --cream-2:    #F1EBE0;
  --sand:       #EDE8DF;
  --taupe:      #C4B8A8;
  --stone:      #8C7D6E;   /* palette grey — never as type: 3.26–3.92:1, fails AA */
  --stone-text: #6E6154;   /* same grey darkened for small type: 4.92–6.00:1 AA on all 3 themes */
  --bark:       #3D2B1F;
  --ink:        #211a12;
  --periwinkle: #A8A0DE;
  --indigo:     #3115E5;
  --sage:       #8E998E;

  --bg:          var(--cream);
  --bg-alt:      var(--cream-2);
  --surface:     #FFFDFA;
  --text:        var(--ink);
  --text-soft:   #58503f;
  --line:        #DDD3C2;       /* hairline */
  --line-strong: #C9BCA6;
  --accent:      #6B61C2;       /* periwinkle, darkened for type contrast */
  --accent-soft: var(--periwinkle);
  --primary:     var(--ink);    /* buttons are quiet ink, not loud brand color */
  --primary-ink: #FAF7F1;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw:        1180px;
  --measure:     66ch;
  --radius:      4px;            /* restrained, not bubbly */
  --section-pad: 116px;
  --hero-wt:     430;
}

/* ---- BOLD: indigo, confident, architectural ----------------------------- */
body[data-theme="bold"] {
  --bg:          #FCFBFF;
  --bg-alt:      #ECE9FA;
  --surface:     #FFFFFF;
  --text:        #15102E;
  --text-soft:   #443E66;
  --line:        #D8D3F0;
  --line-strong: #BfB8E8;
  --accent:      var(--indigo);
  --accent-soft: var(--periwinkle);
  --primary:     var(--indigo);
  --primary-ink: #FFFFFF;
  --radius:      2px;
  --hero-wt:     520;
  --section-pad: 124px;
}

/* ---- WARM: clay + sand, soft, handmade ---------------------------------- */
body[data-theme="warm"] {
  --bg:          #F4EDE1;
  --bg-alt:      #EBE0CE;
  --surface:     #FBF6EC;
  --text:        #2C2013;
  --text-soft:   #6A5A45;
  --line:        #DFD0B6;
  --line-strong: #CDB893;
  --accent:      #A65A28;       /* terracotta */
  --accent-soft: #C98A52;
  --primary:     var(--bark);
  --primary-ink: #FBF3E6;
  --radius:      10px;
  --hero-wt:     430;
  --section-pad: 108px;
}

/* ---- Base --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  font-size: 19px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  transition: background .5s ease, color .5s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--accent-soft); color: #1a1208; }
/* visible keyboard focus (accessibility) — not shown for mouse users */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
.btn:focus-visible { outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: var(--hero-wt);
  line-height: 1.08;
  letter-spacing: -.018em;
  margin: 0 0 .45em;
  color: var(--text);
  font-optical-sizing: auto;
  text-wrap: balance;          /* no widowed last words in display type */
}
h1 { font-size: clamp(2.7rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.7rem); font-weight: 460; letter-spacing: -.01em; }
p { margin: 0 0 1.15em; color: var(--text-soft); text-wrap: pretty; }
strong { font-weight: 600; color: var(--text); }
em { font-style: italic; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 880px; }
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--bg-alt); }
.section--hairline { border-top: 1px solid var(--line); }
.lead { font-size: clamp(1.25rem, 1.9vw, 1.55rem); line-height: 1.5; color: var(--text); font-weight: 400; }
.lead--serif { font-family: var(--serif); font-weight: 420; letter-spacing: -.01em; }
.measure { max-width: var(--measure); }
.center { text-align: center; }
.center .measure, .measure.mx { margin-left: auto; margin-right: auto; }
.center .lead { margin-left: auto; margin-right: auto; }   /* center width-capped lead on centered heroes */

/* ---- Editorial eyebrow: small caps + leading rule ----------------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .9em;
  margin: 0 0 1.4rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .65; }
.center .eyebrow { justify-content: center; }

/* ---- Section index number (01 / 02) ------------------------------------- */
.idx { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--accent); letter-spacing: 0; }

/* ---- Links + buttons (text-forward, considered) ------------------------- */
.link-arrow {
  display: inline-flex; align-items: baseline; gap: .45em;
  font-family: var(--sans); font-weight: 500; font-size: 1rem;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px; transition: border-color .25s ease, color .25s ease, gap .25s ease;
}
.link-arrow:hover { color: var(--accent); border-color: var(--accent); gap: .7em; }
.link-arrow .ar { font-family: var(--serif); }

.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 500; font-size: .95rem;
  letter-spacing: .01em;
  padding: .95em 1.7em; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn--primary { background: var(--primary); color: var(--primary-ink); }
.btn--primary:hover { transform: translateY(-1px); background: color-mix(in srgb, var(--primary) 88%, #000); }
.btn:active { transform: translateY(0); transition-duration: .08s; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--text); }
.btn--lg { font-size: 1.02rem; padding: 1.08em 2em; }
.btn-row { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }

/* ---- Screen-reader-only text (structural headings, no visual change) ----- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---- Skip link (keyboard users land here first) -------------------------- */
.skip-link {
  position: fixed; top: 12px; left: 14px; z-index: 200;
  transform: translateY(-250%); transition: transform .2s ease;
  background: var(--text); color: var(--bg);
  font-family: var(--sans); font-size: .88rem; font-weight: 500;
  padding: .7em 1.2em; border-radius: var(--radius); text-decoration: none;
}
.skip-link:focus-visible { transform: none; }

/* ---- Header / nav ------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 90%, transparent); backdrop-filter: saturate(1.2) blur(12px); border-bottom: 1px solid var(--line); transition: box-shadow .3s ease, background .3s ease; }
.site-header.is-scrolled { background: color-mix(in srgb, var(--bg) 96%, transparent); border-bottom-color: var(--line-strong); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 82px; transition: min-height .35s ease; }
.site-header.is-scrolled .nav { min-height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; line-height: 1; text-decoration: none; color: var(--text); }
.brand-mark { width: 32px; height: 19px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--serif); font-size: 1.42rem; font-weight: 480; letter-spacing: -.01em; }
.brand-text > span { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--stone-text); margin-top: 6px; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; font-size: .94rem; font-weight: 450; color: var(--text-soft);
  white-space: nowrap; padding-bottom: 4px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat; background-size: 0% 1px; background-position: 0 100%;
  transition: color .2s ease, background-size .35s cubic-bezier(.2,.6,.2,1);
}
.nav-links a:hover { color: var(--text); background-size: 100% 1px; }
.nav-links a[aria-current="page"] { color: var(--text); background-image: linear-gradient(var(--accent), var(--accent)); background-size: 100% 1px; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--text); margin: 6px 0; transition: .25s; }

/* ---- Hero --------------------------------------------------------------- */
.hero { padding: clamp(56px, 9vw, 120px) 0 clamp(48px, 7vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.hero h1 { margin-bottom: .3em; }
.hero h1 em { color: var(--accent); }
.hero .lead { max-width: 42ch; }
.hero-rule { width: 56px; height: 1px; background: var(--line-strong); margin: 0 0 30px; }
/* small-caps trust line under the hero CTAs — the letters after her name */
.hero-creds { margin: 30px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .6em 1.2em; align-items: center; font-size: .72rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; color: var(--stone-text); }
.hero-creds li { display: inline-flex; align-items: center; gap: 1.2em; }
.hero-creds li + li::before { content: ""; width: 5px; height: 5px; flex: none; transform: rotate(45deg); border: 1px solid var(--accent-soft); }

/* ---- Photography treatment (NOT a gradient chip) ------------------------ */
.figure { margin: 0; }
.figure figcaption { font-family: var(--sans); font-size: .78rem; letter-spacing: .04em; color: var(--stone-text); margin-top: 12px; display: flex; gap: .6em; align-items: baseline; }
.figure figcaption::before { content: "\2191"; color: var(--accent); }
.ph {
  position: relative; display: grid; place-items: center; text-align: center;
  padding: 40px; min-height: 200px; overflow: hidden;
  background-color: color-mix(in srgb, var(--accent-soft) 11%, var(--surface));
  background-image: repeating-linear-gradient(45deg, color-mix(in srgb, var(--text) 4%, transparent) 0 1px, transparent 1px 12px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
/* inner hairline "mat" — even the placeholder reads as a mounted print */
.ph::before { content: ""; position: absolute; inset: 10px; border: 1px solid color-mix(in srgb, var(--line-strong) 72%, transparent); border-radius: 1px; pointer-events: none; }
.ph::after { content: "Photograph"; position: absolute; top: 20px; left: 22px; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: color-mix(in srgb, var(--text) 42%, transparent); }
.ph span { font-family: var(--serif); font-style: italic; font-size: 1.05rem; line-height: 1.4; color: var(--text-soft); max-width: 26ch; background: color-mix(in srgb, var(--surface) 70%, transparent); padding: 6px 10px; }
.ph--portrait { aspect-ratio: 4/5; }
.ph--tall { aspect-ratio: 3/4; }
.ph--wide { aspect-ratio: 16/10; }
.ph--bleed { aspect-ratio: 21/9; min-height: 240px; }
.ph--square { aspect-ratio: 1/1; }
/* real photograph in the same mounted-print frame: no hatch, no label, cover-crop;
   the inner mat hairline sits OVER the image (no blend modes — see press-row lesson) */
.ph--img { padding: 0; background: var(--surface); }
.ph--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ph--img::before { z-index: 1; border-color: rgba(255, 255, 255, .55); }
.ph--img::after { content: none; }

/* ---- Editorial index (the three branches as a numbered list) ------------ */
.index { border-top: 1px solid var(--line); margin-top: 8px; }
.index-row {
  display: grid; grid-template-columns: 4rem 1.1fr 1.3fr auto; gap: clamp(20px, 4vw, 56px);
  align-items: baseline; padding: 40px 4px; border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--text); transition: background .3s ease, padding .3s ease;
}
.index-row:hover { background: color-mix(in srgb, var(--accent-soft) 9%, transparent); }
.index-row .n { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--accent); }
.index-row h3 { margin: 0; }
.index-row p { margin: 0; font-size: 1rem; }
.index-row .go { font-family: var(--serif); font-size: 1.6rem; color: var(--accent); justify-self: end; transition: transform .3s ease; }
.index-row:hover .go { transform: translateX(6px); }
.index-row h3 { transition: color .3s ease; }
.index-row:hover h3 { color: var(--accent); }

/* ---- Generic cards (used sparingly) ------------------------------------- */
.cards { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--surface); padding: 38px 34px; display: flex; flex-direction: column; }
.card h3 { margin-bottom: .4em; }
.card .price { font-family: var(--serif); font-size: 1.7rem; color: var(--text); margin: 0 0 14px; letter-spacing: -.01em; }
.card .price small { font-family: var(--sans); font-size: .85rem; color: var(--text-soft); font-weight: 500; letter-spacing: .02em; }
.card p { flex: 1; font-size: 1rem; }
.card .link-arrow, .card .btn { margin-top: 20px; align-self: flex-start; }
.card .kicker { font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }

/* Free-standing card (pricing, hours) */
.panel { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 40px; }

/* ---- Split feature ------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split--text-led { grid-template-columns: 1.05fr .95fr; }
.split--flip .split-media { order: -1; }

/* ---- Drop cap ----------------------------------------------------------- */
.dropcap::first-letter { font-family: var(--serif); font-size: 4.4em; line-height: .78; float: left; padding: .06em .12em .02em 0; color: var(--accent); font-weight: 460; }

/* ---- Lists -------------------------------------------------------------- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; color: var(--text-soft); padding: 16px 0; border-bottom: 1px solid var(--line); }
.checklist li:first-child { border-top: 1px solid var(--line); }
.checklist li::before { content: "\2014"; color: var(--accent); font-family: var(--serif); }

/* ---- Contact form (Book page) ------------------------------------------- */
.contact { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 48px); }
.contact-form { margin-top: 22px; display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field > span { font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--stone-text); }
.contact-form input, .contact-form textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--text); background: var(--bg);
  border: 1px solid var(--line-strong); border-radius: var(--radius); padding: .7em .85em; width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0; font-size: .92rem; color: var(--text-soft); }
.form-status.is-error { color: #9A2B2B; }
.form-status.is-ok { color: var(--accent); font-weight: 500; }
.taglist { display: flex; flex-wrap: wrap; gap: 0; list-style: none; padding: 0; margin: 22px 0 0; }
.taglist li { font-size: .92rem; color: var(--text-soft); padding: .35em 1em .35em 0; margin-right: 1em; border-right: 1px solid var(--line-strong); line-height: 1.2; }
.taglist li:last-child { border-right: 0; }

/* ---- Credentials list (dated, drawn as a decade-long timeline) ----------- */
.creds { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); position: relative; }
/* the continuous thread of training years */
.creds::before { content: ""; position: absolute; left: 84.5px; top: 10px; bottom: 10px; width: 1px; background: var(--line-strong); }
.creds li { display: grid; grid-template-columns: 64px 14px 1fr; gap: 0 14px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: baseline; color: var(--text-soft); }
.creds .yr { grid-column: 1; font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--accent); text-align: right; }
/* diamond node on the thread (brand shape) */
.creds li::after { content: ""; grid-column: 2; grid-row: 1; align-self: center; justify-self: center; width: 7px; height: 7px; transform: rotate(45deg); border: 1.3px solid var(--accent); background: var(--bg-alt); }
.creds li > span:last-child { grid-column: 3; }
.creds b { color: var(--text); font-weight: 500; }
.creds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(36px, 5vw, 72px); align-items: start; }
@media (max-width: 760px) { .creds-grid { grid-template-columns: 1fr; } .creds-grid .creds + .creds { border-top: 0; } }

/* ---- Pull quote / testimonial ------------------------------------------- */
.quote { padding: 8px 0; }
/* hanging punctuation: the opening quote sits outside the text block */
.quote p { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.45; color: var(--text); margin: 0 0 18px; letter-spacing: -.01em; text-indent: -.42em; }
.quote p::before { content: "\201C"; }
.quote p::after { content: "\201D"; }
.quote cite { font-style: normal; font-family: var(--sans); font-weight: 500; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--stone-text); }
.quotes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px 64px; }
.quotes-grid .quote { border-top: 1px solid var(--line); padding-top: 28px; }
/* a lone final testimonial spans both columns instead of stranding empty space */
.quotes-grid .quote--wide { grid-column: 1 / -1; }

/* ---- Newsletter subscribe (Substack embed) ------------------------------ */
.subscribe { margin-top: 30px; display: flex; justify-content: center; }
.subscribe iframe { width: 100%; max-width: 480px; height: 210px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--surface); }

/* ---- FAQ ---------------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 28px 4px; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 440; letter-spacing: -.01em; display: flex; justify-content: space-between; align-items: baseline; gap: 24px; color: var(--text); transition: color .25s ease; }
.faq summary:hover { color: var(--accent); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "\FF0B"; font-family: var(--sans); font-weight: 300; font-size: 1.3rem; color: var(--accent); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 4px 30px; color: var(--text-soft); max-width: 64ch; }
/* smooth accordion open where the platform supports it (harmless elsewhere) */
@supports (interpolate-size: allow-keywords) {
  .faq details::details-content { block-size: 0; overflow: clip; transition: block-size .4s cubic-bezier(.2,.6,.2,1), content-visibility .4s allow-discrete; interpolate-size: allow-keywords; }
  .faq details[open]::details-content { block-size: auto; }
}

/* ---- Featured in (editorial press line) --------------------------------- */
.featured { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 6px 0; }
.lg { color: var(--text); opacity: .68; text-decoration: none; line-height: 1; display: inline-block;
      padding: 0 clamp(22px, 3.2vw, 46px); border-right: 1px solid var(--line-strong);
      transition: opacity .25s ease, color .25s ease; }
.lg:hover { opacity: 1; color: var(--accent); }
.featured > :last-child { border-right: 0; }
/* recognizable wordmark treatments per outlet */
.lg-elle    { font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: .1em; text-transform: uppercase; transform: scaleY(1.16); transform-origin: center; }
.lg-globe   { font-family: var(--serif); font-weight: 500; font-size: clamp(1.2rem, 2.1vw, 1.65rem); letter-spacing: -.005em; }
.lg-globe i { font-style: italic; font-weight: 420; }
.lg-lunar   { font-family: var(--serif); font-style: italic; font-weight: 430; font-size: clamp(1.2rem, 2vw, 1.6rem); }
.lg-semaine { font-family: var(--serif); font-weight: 440; font-size: clamp(1.05rem, 1.9vw, 1.45rem); letter-spacing: .3em; text-transform: uppercase; }
.featured-note { font-size: .82rem; color: var(--stone-text); margin-top: 26px; }

/* ---- Press logos -------------------------------------------------------- */
/* transparent wordmarks lie bare on the page; logos with their own background
   get a soft, breathing icon frame. */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(30px, 4.5vw, 62px); margin-top: 42px; }
.logos a, .logos > span { display: inline-flex; align-items: center; }
/* quiet, uniform monochrome at rest; true colors surface on hover.
   multiply lets boxed logos (JPG covers, white-on-navy marks) sit on the canvas. */
.logo-img { max-height: 56px; width: auto; max-width: 300px; object-fit: contain; display: block;
            filter: grayscale(1) contrast(1.12); opacity: .78; mix-blend-mode: multiply;
            transition: filter .35s ease, opacity .35s ease; }
/* free-standing square-ish logos — no frame, soft corners; sized per logo */
.logo-img--icon { max-width: 220px; border-radius: 10px; }
.logo-img--icon.is-semaine { max-height: 112px; }  /* 2x */
.logo-img--icon.is-lunar   { max-height: 112px; }  /* 2x */
.logo-img--icon.is-iwhi    { max-height: 84px; }   /* 1.5x */
.logos a:hover .logo-img, .logos a:focus-visible .logo-img { filter: none; opacity: 1; }
@media (max-width: 620px) {
  .logo-img { max-height: 42px; max-width: 200px; }
  .logo-img--icon.is-semaine { max-height: 84px; }
  .logo-img--icon.is-lunar { max-height: 84px; }
  .logo-img--icon.is-iwhi { max-height: 62px; }
}

/* ---- Press inlay (inset panel, itemized) -------------------------------- */
.inlay { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: clamp(30px, 4.5vw, 58px); }
.inlay > .eyebrow { margin-bottom: 1rem; }
.inlay h2 { margin-bottom: .15em; }
.press-list { list-style: none; margin: 30px 0 0; padding: 0; border-top: 1px solid var(--line); }
.press-list li { border-bottom: 1px solid var(--line); }
.press-row { display: grid; grid-template-columns: minmax(150px, .85fr) 1.7fr auto; gap: 10px 30px; align-items: baseline; padding: 22px 6px; text-decoration: none; color: var(--text); transition: background .25s ease; }
a.press-row:hover { background: color-mix(in srgb, var(--accent-soft) 9%, transparent); }
.press-row .po { font-family: var(--serif); font-weight: 500; font-size: 1.18rem; letter-spacing: -.005em; }
.press-row .po.is-elle { text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.press-row .pt { font-family: var(--serif); font-style: italic; color: var(--text-soft); line-height: 1.4; }
.press-row .pk { justify-self: end; font-family: var(--sans); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.press-row--ph { opacity: .68; }
.press-row--ph .pk { color: var(--stone-text); }
@media (max-width: 760px) { .press-row { grid-template-columns: 1fr; gap: 4px; padding: 18px 4px; } .press-row .pk { justify-self: start; margin-top: 4px; } }

/* ---- Detail band (facts) ------------------------------------------------ */
.detail-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.detail-band .item { padding: 34px 30px 34px 0; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); padding-left: 30px; }
.detail-band a.item { text-decoration: none; color: var(--text); transition: background .3s; }
.detail-band a.item:hover { background: color-mix(in srgb, var(--accent-soft) 9%, transparent); }
.detail-band .item b { font-family: var(--serif); font-weight: 460; font-size: 1.5rem; display: block; margin-bottom: 8px; letter-spacing: -.01em; }
.detail-band .item p { font-size: .98rem; margin: 0 0 12px; }
.detail-band .item:last-child { border-right: 0; }

/* ---- Credibility stats (the work, in numbers) ---------------------------- */
.stats-band { padding: 0 0 clamp(60px, 8vw, 104px); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.stat { padding: 32px 28px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-family: var(--serif); font-weight: 420; font-size: clamp(2.3rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.02em; color: var(--text); margin-bottom: 12px; font-variant-numeric: lining-nums; }
.stat b i { font-style: italic; font-size: .62em; color: var(--accent); letter-spacing: 0; }
.stat span { display: block; font-size: .74rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--stone-text); line-height: 1.6; text-wrap: balance; }
@media (max-width: 940px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stat { padding: 26px 20px 22px; }
}

/* ---- Wave motif (calm waves, subtle) ------------------------------------ */
.wave { display: block; width: 100px; height: 20px; margin: 0 0 26px; }
.wave path { fill: none; stroke-width: 1.6; }
.wave .w1 { stroke: var(--accent); }
.wave .w2 { stroke: var(--accent-soft); opacity: .85; }
.wave .w3 { stroke: #ff00ff; opacity: .5; }     /* the one sanctioned magenta */
.center .wave { margin-left: auto; margin-right: auto; }

/* ---- Geometric shape icons (brand law: shapes/lines only, no pictographs) */
.shape-icon { width: 58px; height: 58px; margin: 0 0 24px; display: block; }
.shape-icon [stroke] { vector-effect: non-scaling-stroke; }
.shape-icon path, .shape-icon circle, .shape-icon rect, .shape-icon line { fill: none; stroke: var(--accent); stroke-width: 1.4; }

/* ---- Diamond marker on directory rows ----------------------------------- */
.detail-band .item b { display: flex; align-items: center; gap: 11px; }
.detail-band .item b::before { content: ""; width: 8px; height: 8px; flex: none; transform: rotate(45deg); border: 1.4px solid var(--accent); }

/* ---- Quiet CTA band (no loud filled block) ------------------------------ */
.cta-band { text-align: center; padding: clamp(48px, 7vw, 88px) 0; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.cta-band h2 { margin-bottom: .3em; }

/* ---- Newsletter inline form --------------------------------------------- */
.subscribe { display: flex; gap: 12px; flex-wrap: wrap; max-width: 460px; }
.subscribe input { flex: 1; min-width: 200px; font-family: var(--sans); font-size: 1rem; padding: .9em 1.1em; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--surface); color: var(--text); }
.subscribe input:focus { outline: none; border-color: var(--accent); }

/* ---- Footer (colophon) -------------------------------------------------- */
.site-footer { background: var(--bark); color: #E7DDCF; padding: 88px 0 44px; margin-top: 0; }
body[data-theme="bold"] .site-footer { background: #15102E; }
body[data-theme="warm"] .site-footer { background: #2C2013; }
.site-footer a { color: #E7DDCF; text-decoration: none; opacity: .82; transition: opacity .2s, color .2s; }
.site-footer a:hover { opacity: 1; color: var(--accent-soft); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.site-footer h4, .site-footer .footer-h { color: #fff; font-size: .72rem; font-family: var(--sans); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin: 0 0 20px; opacity: .8; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: .96rem; }
.site-footer .brand-text b { color: #fff; font-size: 1.5rem; }
.site-footer .brand-text > span { color: var(--taupe); }
.footer-hours { font-size: .92rem; color: #C8BBA9; line-height: 1.7; }
/* the beige is tuned for the dark footer — on light cards/panels it's 1.86:1;
   fine print there must use the readable soft ink (WCAG 1.4.3) */
.card .footer-hours, .panel .footer-hours { color: var(--text-soft); }
/* keyboard focus must stay visible on the dark footer */
.site-footer :focus-visible { outline-color: var(--accent-soft); }
/* her sign-off, set large — the last thing a visitor reads */
.footer-signoff { font-family: var(--serif); font-style: italic; font-weight: 420; font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.25; letter-spacing: -.012em; color: #F3EDE2; margin: 0 0 52px; max-width: 22ch; text-wrap: balance; }
.footer-signoff .wave { margin-bottom: 18px; }
.top-link { font-size: .82rem; white-space: nowrap; }
/* expanded footer directory */
.footer-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 48px; padding-bottom: 40px; margin-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-tag { max-width: 44ch; color: #C8BBA9; font-size: .96rem; line-height: 1.6; margin: 0; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 40px; margin-bottom: 44px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: .93rem; }
.footer-links li .ext { font-size: .8em; opacity: .5; margin-left: .25em; white-space: nowrap; }
.footer-meta { display: flex; flex-wrap: wrap; gap: 6px 26px; align-items: center; padding-bottom: 30px; color: #C8BBA9; font-size: .9rem; }
.footer-meta b { color: #fff; font-weight: 600; letter-spacing: .02em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 26px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .82rem; color: #B0A18C; }

/* ---- Theme switcher ----------------------------------------------------- */
.theme-switch { position: fixed; right: 20px; bottom: 20px; z-index: 80; background: var(--surface); border: 1px solid var(--line-strong); border-radius: 999px; box-shadow: 0 14px 40px -18px rgba(40,30,20,.5); padding: 6px; display: flex; gap: 2px; align-items: center; }
.theme-switch b { font-family: var(--sans); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone-text); padding: 0 10px 0 12px; }
.theme-switch button { border: 0; background: transparent; cursor: pointer; font-family: var(--sans); font-size: .82rem; font-weight: 500; color: var(--text-soft); padding: .5em .95em; border-radius: 999px; transition: .25s; }
.theme-switch button[aria-pressed="true"] { background: var(--text); color: var(--bg); }

.stamp { position: fixed; left: 20px; bottom: 22px; z-index: 70; font-size: .66rem; letter-spacing: .04em; color: var(--stone-text); pointer-events: none; }

/* ---- Reveal ------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
/* siblings in a grid arrive a beat apart — one gesture, not a pop-in */
.cards > .reveal:nth-child(2), .detail-band > .reveal:nth-child(2), .quotes-grid > .reveal:nth-child(2), .stats > .reveal:nth-child(2), .index > .reveal:nth-child(2) { transition-delay: .1s; }
.cards > .reveal:nth-child(3), .detail-band > .reveal:nth-child(3), .quotes-grid > .reveal:nth-child(3), .stats > .reveal:nth-child(3), .index > .reveal:nth-child(3) { transition-delay: .2s; }
.cards > .reveal:nth-child(4), .quotes-grid > .reveal:nth-child(4), .stats > .reveal:nth-child(4) { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 940px) {
  .hero-grid, .split, .split--text-led, .split--flip .split-media { grid-template-columns: 1fr; }
  .split--flip .split-media { order: 0; }
  .cards--3 { grid-template-columns: 1fr; }
  .detail-band { grid-template-columns: 1fr; }
  .detail-band .item { border-right: 0; padding-right: 0; }
  .quotes-grid { grid-template-columns: 1fr; gap: 36px; }
  .index-row { grid-template-columns: 3rem 1fr; gap: 8px 20px; }
  .index-row p { grid-column: 2; }
  .index-row .go { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-head { flex-direction: column; align-items: flex-start; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .site-header[data-open="true"] .mobile-menu { display: block; }
}
@media (max-width: 620px) {
  body { font-size: 18px; }
  :root { --section-pad: 78px; }
  .cards--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .featured { gap: 4px 0; }
  .featured a, .featured span { padding: 4px 16px; }
  .theme-switch b { display: none; }
  .container { padding: 0 22px; }
  .brand-text > span { display: none; }   /* tidy mobile header — name only */
  .brand-text b { font-size: 1.28rem; }
}

/* ---- Mobile menu -------------------------------------------------------- */
.mobile-menu { display: none; background: var(--surface); border-bottom: 1px solid var(--line); padding: 8px 0 24px; }
.site-header[data-open="true"] .mobile-menu { animation: menu-in .28s cubic-bezier(.2,.6,.2,1); }
@keyframes menu-in { from { opacity: 0; transform: translateY(-8px); } }
.mobile-menu ul { list-style: none; margin: 0; padding: 0 32px; display: grid; gap: 0; }
.mobile-menu a { display: block; padding: 16px 0; text-decoration: none; color: var(--text); font-family: var(--serif); font-size: 1.2rem; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin: 20px 32px 0; justify-content: center; }
.mobile-menu .btn--primary { color: var(--primary-ink); }

/* ---- Print (a site you can hand someone) --------------------------------- */
@media print {
  .theme-switch, .stamp, .nav-toggle, .nav-cta, .skip-link, .mobile-menu { display: none !important; }
  .site-header { position: static; background: none; }
  body { background: #fff; font-size: 12pt; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .site-footer { background: none; color: var(--ink); }
  .site-footer a, .site-footer h4, .site-footer .footer-h, .site-footer .brand-text b { color: var(--ink); }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; color: var(--stone-text); }
  .brand::after, .logos a::after { content: none !important; }
}
