/* =====================================================================
   QUE — Trauma-informed coaching
   Art direction: "Ciel a l'aube" - a living dawn sky (rose + lavender +
   sky blue) with content floating over it as soft translucent panels.
   The quetzal is the only jewel of saturated colour. Fraunces + Instrument
   Sans. Calm, immersive, reassuring.
   ===================================================================== */

:root {
  /* Warm dawn palette: beige + pale rose */
  --cream:    #f2ebdf;   /* warm beige base */
  --cream-2:  #faf3e8;   /* lifted surface */
  --rose:     #e9c6c5;   /* pale rose */
  --rose-soft:#f3dcda;   /* rose panel */
  --rose-deep:#bd7c84;   /* dusty rose, primary action + links */
  --rose-deeper:#985d68;
  --sky:      #ecd3ca;   /* warm rosy sand (soft accent) */
  --sky-soft: #f1ded4;   /* warm panel */
  --sky-deep: #bd7c84;   /* alias -> dusty rose */
  --sky-deeper:#985d68;  /* alias -> deeper rose */
  --lavender: #e3d1c8;   /* warm taupe bridge */
  --ink:      #3f3a3a;   /* warm soft brown-slate */
  --ink-soft: #6e655f;   /* muted body */
  --ink-faint:#9d918a;   /* captions */
  --line:     rgba(63, 58, 58, 0.14);
  --line-soft:rgba(63, 58, 58, 0.07);

  /* Translucent panels over the moving sky (kept light so motion shows) */
  --panel:      rgba(248, 242, 233, 0.70);
  --panel-rose: rgba(243, 220, 218, 0.52);
  --panel-sky:  rgba(242, 224, 214, 0.55);
  --glass:      rgba(250, 244, 234, 0.55);

  /* Type */
  --display: "Fraunces", Georgia, serif;
  --body:    "Instrument Sans", system-ui, -apple-system, sans-serif;

  --text-eyebrow: 0.78rem;
  --text-small:   0.92rem;
  --text-base:    clamp(1.02rem, 0.97rem + 0.25vw, 1.18rem);
  --text-lede:    clamp(1.18rem, 1.05rem + 0.6vw, 1.5rem);
  --text-h3:      clamp(1.4rem, 1.2rem + 0.9vw, 1.85rem);
  --text-h2:      clamp(2rem, 1.5rem + 2.4vw, 3.5rem);
  --text-hero:    clamp(2.9rem, 1.6rem + 6vw, 6.6rem);

  --space-section: clamp(5rem, 3.5rem + 7vw, 11rem);
  --wrap:    1180px;
  --gutter:  clamp(1.4rem, 0.8rem + 3vw, 4rem);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.33, 0, 0.2, 1);
  --dur: 320ms;

  --radius: 18px;
  --radius-lg: 28px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  /* Fallback warm dawn when WebGL is unavailable */
  background:
    linear-gradient(180deg, #f3ddd2 0%, #efd6cc 45%, #f1e0d2 100%) fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--sky-deep); color: var(--cream-2); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: 0.6rem 1rem; border-radius: 10px; transition: top var(--dur);
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 2px solid var(--sky-deep); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Living sky canvas + grain ---------- */
.sky {
  position: fixed; inset: 0; width: 100vw; height: 100svh;
  z-index: 0; display: block; pointer-events: none;
}
.no-webgl .sky { display: none; }

/* Water flux overlay — a soft ripple that follows the cursor above the whole page */
.ripple-layer {
  position: fixed; inset: 0; width: 100vw; height: 100svh;
  z-index: 3; display: block; pointer-events: none;
  mix-blend-mode: normal;
}
.no-webgl .ripple-layer,
html[data-calm="on"] .ripple-layer { display: none; }
@media (pointer: coarse) { .ripple-layer { display: none; } }
@media (prefers-reduced-motion: reduce) { .ripple-layer { display: none; } }

.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.38; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* Content sits above the sky */
main { position: relative; z-index: 2; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--body); font-size: var(--text-eyebrow);
  text-transform: uppercase; letter-spacing: 0.22em; font-weight: 500;
  color: var(--sky-deep); margin-bottom: 1.1rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--rose-deep); }
.eyebrow--light { color: var(--rose-deep); }
.eyebrow--light::before { background: var(--sky-deep); }

.kicker {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: var(--text-lede); color: var(--sky-deeper); margin-bottom: 1.4rem;
}

.h2 {
  font-family: var(--display); font-weight: 400; font-optical-sizing: auto;
  font-size: var(--text-h2); line-height: 1.06; letter-spacing: -0.015em; color: var(--ink);
}
.h3 {
  font-family: var(--display); font-weight: 500; font-size: var(--text-h3);
  line-height: 1.15; letter-spacing: -0.01em;
}
.lede { font-size: var(--text-lede); line-height: 1.5; color: var(--ink-soft); max-width: 46ch; }
em { font-style: italic; }

/* Typographic rules: no orphans / widows */
p, li, figcaption, .lede, .plan__desc, .footer__tag, .footer__safe, .hero__trust, .sessions__fine { text-wrap: pretty; }
h1, h2, h3, .h2, .h3, .hero__title, .kicker, .manifesto__quote, .interlude__line,
.qa summary, .plan__name, .letter__title, .quetzal__text .h2 { text-wrap: balance; }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 0.92em; --btn-pad-x: 1.5em;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--body); font-size: 0.98rem; font-weight: 500; letter-spacing: 0.01em;
  padding: var(--btn-pad-y) var(--btn-pad-x); border-radius: 100px; border: 1px solid transparent;
  transition: transform var(--dur) var(--ease-out), background-color var(--dur) var(--ease-soft),
              color var(--dur) var(--ease-soft), border-color var(--dur) var(--ease-soft),
              box-shadow var(--dur) var(--ease-soft);
  will-change: transform;
}
.btn--primary { background: var(--sky-deep); color: var(--cream-2); box-shadow: 0 1px 0 rgba(0,0,0,0.04); }
.btn--primary:hover { background: var(--sky-deeper); transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(84, 126, 166, 0.6); }
.btn--ghost { background: rgba(251,248,242,0.5); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--sky-deep); color: var(--sky-deeper); transform: translateY(-2px); }
.btn--soft { background: var(--cream-2); color: var(--ink); border-color: var(--line-soft); }
.btn--soft:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding-block: 1.4rem;
  transition: background-color var(--dur) var(--ease-soft), box-shadow var(--dur) var(--ease-soft), padding var(--dur) var(--ease-soft);
}
.nav.is-stuck {
  background: rgba(245, 241, 234, 0.7);
  
  box-shadow: 0 1px 0 var(--line-soft); padding-block: 0.85rem;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--sky-deeper); }
.brand__mark { color: var(--sky-deep); transition: transform 600ms var(--ease-out); }
.brand:hover .brand__mark { transform: rotate(-8deg); }
.brand__word { font-family: var(--display); font-weight: 500; font-size: 1.5rem; letter-spacing: -0.01em; color: var(--ink); }
.nav__links { display: flex; gap: 2rem; }
.nav__links a { font-size: 0.95rem; color: var(--ink-soft); position: relative; padding-block: 0.2rem; transition: color var(--dur); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: var(--sky-deep);
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { padding-block: 0.6em; padding-inline: 1.2em; }
@media (max-width: 860px) { .nav__links { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-block: 8rem 4rem; overflow: hidden;
}
.hero__grid {
  position: relative; z-index: 3; width: 100%;
  display: grid; grid-template-columns: minmax(230px, 330px) 1fr;
  gap: clamp(2rem, 4vw, 5.5rem); align-items: center;
}
.hero__content { max-width: 660px; }
.hero__pillars {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem; margin-top: clamp(1.6rem, 2.6vh, 2.2rem);
}
.hero__pillars .gcard { min-width: 0; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.2rem; justify-items: start; }
  .hero__portrait { max-width: 248px; }
  .hero__content { max-width: none; }
  .hero__pillars { grid-template-columns: 1fr; }
}
.hero__title {
  font-family: var(--display); font-weight: 300; font-optical-sizing: auto;
  font-size: var(--text-hero); line-height: 0.98; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 1.8rem;
}
.hero__title em { color: var(--sky-deeper); font-weight: 400; }
.hero__lede { max-width: 40ch; margin-bottom: 2.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }
.hero__trust { font-size: var(--text-small); color: var(--ink-faint); letter-spacing: 0.01em; margin-top: clamp(1.1rem, 2.2vh, 1.7rem); }

/* Floating colour orbs (gentle movement) */
.orbs { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(46px); opacity: 0.55;
  mix-blend-mode: multiply; will-change: transform;
}
.orb--1 { width: 38vw; max-width: 460px; aspect-ratio: 1; right: 4%; top: 16%;
  background: radial-gradient(circle, var(--rose), transparent 68%); animation: orbA 19s ease-in-out infinite; }
.orb--2 { width: 30vw; max-width: 360px; aspect-ratio: 1; right: 24%; bottom: 8%;
  background: radial-gradient(circle, var(--sky-soft), transparent 70%); animation: orbB 24s ease-in-out infinite; }
.orb--3 { width: 22vw; max-width: 280px; aspect-ratio: 1; right: 38%; top: 30%;
  background: radial-gradient(circle, var(--lavender), transparent 72%); animation: orbA 28s ease-in-out infinite reverse; }
.orbs--warm .orb--1 { left: 8%; right: auto; top: 10%; background: radial-gradient(circle, var(--rose), transparent 70%); }
.orbs--warm .orb--2 { right: 10%; bottom: 6%; background: radial-gradient(circle, var(--sky), transparent 72%); }
@keyframes orbA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-34px, -42px) scale(1.08); }
  66% { transform: translate(24px, 18px) scale(0.96); }
}
@keyframes orbB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}
@media (max-width: 860px) { .orb--3 { display: none; } }

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 2.2rem; z-index: 3;
  display: flex; align-items: center; gap: 0.8rem; font-size: var(--text-small);
  color: var(--ink-faint); letter-spacing: 0.04em;
}
.hero__scroll-line { width: 64px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; width: 30%; background: var(--sky-deep);
  animation: drift 3.4s var(--ease-soft) infinite;
}
@keyframes drift { 0% { transform: translateX(-110%); } 100% { transform: translateX(330%); } }

/* ---------- Credibility strip ---------- */
.strip { border-block: 1px solid var(--line-soft); background: var(--panel); }
.strip__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1.4rem; padding-block: 1.5rem; font-size: var(--text-small); color: var(--ink-soft); text-align: center;
}
.strip__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--rose-deep); }
@media (max-width: 720px) { .strip__dot { display: none; } }

/* ---------- Sections base (float over sky) ---------- */
.section { position: relative; z-index: 2; padding-block: var(--space-section); background: var(--panel); }

/* Recognition */
.recognition__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 1rem + 5vw, 6rem); align-items: start; }
.recognition__intro .lede { margin-top: 1.6rem; max-width: 50ch; }
.recognition__list { list-style: none; display: grid; gap: 0; align-self: center; }
.recognition__list li { padding: 1.15rem 0 1.15rem 2.2rem; position: relative; border-top: 1px solid var(--line-soft); color: var(--ink-soft); font-size: 1.06rem; }
.recognition__list li:last-child { border-bottom: 1px solid var(--line-soft); }
.recognition__list li::before { content: ""; position: absolute; left: 0; top: 1.5rem; width: 12px; height: 12px; border-radius: 50%; border: 1px solid var(--sky-deep); }
@media (max-width: 820px) { .recognition__grid { grid-template-columns: 1fr; } }

/* Interlude (soft breathing line over moving colour) */
.interlude {
  position: relative; z-index: 2; overflow: hidden; text-align: center;
  padding: clamp(5rem, 3.5rem + 6vw, 9rem) var(--gutter);
  background: var(--panel-rose); 
}
.interlude__line {
  position: relative; z-index: 2; margin-inline: auto; max-width: 22ch;
  font-family: var(--display); font-weight: 300; letter-spacing: -0.01em; line-height: 1.18;
  font-size: clamp(1.7rem, 1rem + 3.2vw, 3.2rem); color: var(--ink);
}
.interlude__line em { color: var(--rose-deep); }

/* Approach */
.approach__head { max-width: 56ch; margin-bottom: clamp(2.5rem, 1rem + 5vw, 5rem); }
.approach__head .lede { margin-top: 1.4rem; }
.approach__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--glass); border: 1px solid rgba(255,255,255,0.5); border-radius: var(--radius-lg);
  padding: 2.2rem 2rem 2.4rem; 
  transition: transform 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -36px rgba(58, 55, 68, 0.34); }
.card__num { font-family: var(--display); font-style: italic; font-size: 1.1rem; color: var(--rose-deep); display: block; margin-bottom: 1.6rem; }
.card h3 { margin-bottom: 0.7rem; }
.card p { color: var(--ink-soft); }
.approach__note { margin-top: 2.6rem; max-width: 60ch; font-size: var(--text-small); color: var(--ink-faint); padding-left: 1.2rem; border-left: 2px solid var(--rose); }
@media (max-width: 820px) { .approach__cards { grid-template-columns: 1fr; } }

/* Manifesto - rose veil */
.manifesto { background: var(--panel-rose); text-align: center; color: var(--ink); }
.manifesto__inner { max-width: 32ch; margin-inline: auto; }
.manifesto__quote { font-family: var(--display); font-weight: 300; font-size: clamp(2rem, 1.2rem + 3.2vw, 3.6rem); line-height: 1.12; letter-spacing: -0.01em; }
.manifesto__quote em { color: var(--rose-deep); }
.manifesto__sign { margin-top: 2rem; font-size: var(--text-small); letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky-deep); }

/* Story */
.story__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 1rem + 5vw, 6rem); align-items: center; }
.story__media { position: relative; }
.story__portrait {
  margin: 0; aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.5); position: relative; overflow: hidden;
  box-shadow: 0 40px 80px -50px rgba(63, 58, 58, 0.5);
}
.story__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; filter: saturate(0.78) contrast(0.96) brightness(1.04); }
.story__portrait::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(155deg, rgba(233,198,197,0.34), rgba(226,209,200,0.22));
  mix-blend-mode: soft-light;
}
.feather { position: absolute; right: -22px; bottom: -18px; color: var(--rose-deep); opacity: 0.8; animation: sway 9s ease-in-out infinite; transform-origin: top center; }
@keyframes sway { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(4deg); } }
.story__text p { color: var(--ink-soft); margin-top: 1.1rem; max-width: 56ch; }
.story__text .h2 { margin-bottom: 0.4rem; }
.story__credit { margin-top: 1.8rem !important; font-size: var(--text-small); color: var(--ink-faint); font-style: italic; }
@media (max-width: 820px) { .story__grid { grid-template-columns: 1fr; } .story__media { max-width: 360px; } }

/* Experience timeline */
.experience__head { max-width: 50ch; margin-bottom: clamp(2.5rem, 1rem + 4vw, 4.5rem); }
.timeline { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.timeline__item { padding: 2rem 1.6rem 2rem 0; position: relative; border-top: 2px solid var(--line); }
.timeline__item::before { content: ""; position: absolute; top: -6px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--sky-deep); }
.timeline__step { font-size: var(--text-eyebrow); text-transform: uppercase; letter-spacing: 0.18em; color: var(--sky-deep); font-weight: 500; display: block; margin-bottom: 1rem; }
.timeline__item h3 { margin-bottom: 0.6rem; }
.timeline__item p { color: var(--ink-soft); font-size: 1rem; padding-right: 0.5rem; }
@media (max-width: 900px) { .timeline { grid-template-columns: repeat(2, 1fr); gap: 0 1.5rem; } }
@media (max-width: 540px) { .timeline { grid-template-columns: 1fr; } }

/* Sessions */
.sessions__head { max-width: 54ch; margin-bottom: clamp(2.5rem, 1rem + 5vw, 5rem); }
.sessions__head .lede { margin-top: 1.4rem; }
.sessions__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; align-items: stretch; }
.plan {
  background: var(--glass); border: 1px solid rgba(255,255,255,0.5); border-radius: var(--radius-lg);
  padding: 2.4rem 2rem; display: flex; flex-direction: column; position: relative;
  
  transition: transform 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 36px 70px -40px rgba(58, 55, 68, 0.36); }
.plan--feature { background: rgba(221, 233, 242, 0.72); border-color: rgba(84, 126, 166, 0.25); box-shadow: 0 30px 60px -42px rgba(84, 126, 166, 0.5); }
.plan__tag { position: absolute; top: -0.8rem; left: 2rem; background: var(--rose-deep); color: var(--cream-2); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; padding: 0.4rem 0.9rem; border-radius: 100px; }
.plan__head { margin-bottom: 1.4rem; }
.plan__name { font-family: var(--display); font-weight: 500; font-size: 1.5rem; margin-bottom: 0.8rem; }
.plan__price { font-family: var(--display); font-size: 2.4rem; font-weight: 400; line-height: 1; display: flex; align-items: baseline; gap: 0.7rem; }
.plan__price span { font-family: var(--body); font-size: 0.9rem; font-weight: 400; letter-spacing: 0.02em; color: var(--ink-faint); }
.plan__desc { color: var(--ink-soft); margin-bottom: 1.4rem; }
.plan__list { list-style: none; display: grid; gap: 0.7rem; margin-bottom: 2rem; }
.plan__list li { position: relative; padding-left: 1.5rem; font-size: 0.98rem; color: var(--ink-soft); }
.plan__list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--sky-deep); }
.plan__cta { margin-top: auto; width: 100%; }
.sessions__fine { margin-top: 2rem; font-size: var(--text-small); color: var(--ink-faint); text-align: center; }
@media (max-width: 1080px) { .sessions__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .sessions__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* Self-check */
.selfcheck { background: var(--panel-sky); border-block: 1px solid var(--line-soft); }
.selfcheck__inner { max-width: 640px; margin-inline: auto; text-align: center; }
.selfcheck__inner .eyebrow { justify-content: center; }
.selfcheck__inner .lede { margin: 1.2rem auto 2.4rem; }
.selfcheck__qs { display: grid; gap: 0.8rem; text-align: left; margin-bottom: 1.8rem; }
.reflect {
  display: flex; gap: 0.9rem; align-items: flex-start; padding: 1.1rem 1.3rem; border-radius: var(--radius);
  background: var(--glass); border: 1px solid rgba(255,255,255,0.5); cursor: pointer;
  transition: border-color var(--dur), background var(--dur); color: var(--ink-soft);
}
.reflect:hover { border-color: var(--sky); }
.reflect:has(input:checked) { border-color: var(--sky-deep); background: rgba(221, 233, 242, 0.7); color: var(--ink); }
.reflect input { margin-top: 0.35rem; accent-color: var(--sky-deep); width: 16px; height: 16px; flex: none; }
.selfcheck__result { font-style: italic; font-family: var(--display); color: var(--sky-deeper); margin-bottom: 2rem; min-height: 1.6em; }

/* FAQ */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 1rem + 4vw, 5rem); }
.faq__head { position: sticky; top: 6rem; align-self: start; }
.faq__head .lede { margin-top: 1.2rem; }
.faq__list { display: grid; }
.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none; cursor: pointer; padding: 1.5rem 2.5rem 1.5rem 0;
  font-family: var(--display); font-size: var(--text-h3); font-weight: 500; line-height: 1.2;
  position: relative; color: var(--ink); transition: color var(--dur);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: ""; position: absolute; right: 0.2rem; top: 1.9rem; width: 14px; height: 14px;
  background: linear-gradient(var(--sky-deep), var(--sky-deep)) center/100% 1.5px no-repeat,
              linear-gradient(var(--sky-deep), var(--sky-deep)) center/1.5px 100% no-repeat;
  transition: transform var(--dur) var(--ease-out);
}
.qa[open] summary::after { transform: rotate(135deg); }
.qa summary:hover { color: var(--sky-deeper); }
.qa p { padding: 0 2.5rem 1.7rem 0; color: var(--ink-soft); max-width: 60ch; animation: fade-in 400ms var(--ease-out); }
@keyframes fade-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (max-width: 820px) { .faq__grid { grid-template-columns: 1fr; } .faq__head { position: static; } }

/* Begin / contact - sky veil */
.begin { background: var(--panel-sky); color: var(--ink); }
.begin .eyebrow { color: var(--sky-deeper); }
.begin .h2 { color: var(--ink); }
.begin__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 1rem + 5vw, 6rem); align-items: start; }
.begin__intro .lede { color: var(--ink-soft); margin-top: 1.4rem; }
.begin__contact { margin-top: 2rem; color: var(--ink-soft); }
.begin__contact a { color: var(--sky-deeper); border-bottom: 1px solid rgba(84, 126, 166, 0.4); }
.begin__contact a:hover { border-color: var(--sky-deep); }
.begin__safe { margin-top: 1.4rem; font-size: var(--text-small); color: var(--ink-faint); }
.begin__form {
  background: var(--cream-2); border: 1px solid rgba(255,255,255,0.6); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 1rem + 2vw, 2.6rem); display: grid; gap: 1.2rem;
  box-shadow: 0 30px 60px -44px rgba(58, 55, 68, 0.4);
}
.field { display: grid; gap: 0.5rem; }
.field label { font-size: var(--text-small); color: var(--ink-soft); }
.field label span { color: var(--rose-deep); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--cream);
  border: 1px solid var(--line); border-radius: 12px; padding: 0.85rem 1rem;
  transition: border-color var(--dur), background var(--dur); width: 100%;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sky-deep); background: #fff; }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--text-small); color: var(--ink-soft); line-height: 1.45; }
.consent input { margin-top: 0.2rem; accent-color: var(--sky-deep); width: 16px; height: 16px; flex: none; }
.begin__submit { margin-top: 0.4rem; }
.begin__formnote { font-size: var(--text-small); color: var(--sky-deeper); min-height: 1.2em; }
@media (max-width: 820px) { .begin__grid { grid-template-columns: 1fr; } }

/* Letter */
.letter { text-align: center; background: var(--panel); }
.letter__inner { max-width: 600px; margin-inline: auto; }
.letter__inner .eyebrow { justify-content: center; }
.letter__title { margin: 0.8rem 0 2rem; font-weight: 400; color: var(--ink); }
.letter__form { display: flex; gap: 0.7rem; max-width: 460px; margin-inline: auto; }
.letter__form input { flex: 1; font: inherit; font-size: 1rem; padding: 0.9rem 1.2rem; border-radius: 100px; border: 1px solid var(--line); background: var(--cream-2); color: var(--ink); }
.letter__form input:focus { outline: none; border-color: var(--sky-deep); }
.letter__fine { margin-top: 1.2rem; font-size: var(--text-small); color: var(--ink-faint); }
@media (max-width: 480px) { .letter__form { flex-direction: column; } }

/* Footer */
.footer { position: relative; z-index: 2; background: rgba(245, 241, 234, 0.86); border-top: 1px solid var(--line-soft); padding-block: clamp(3rem, 2rem + 3vw, 5rem); }
.footer__inner { display: grid; grid-template-columns: 1.3fr 1fr 1.3fr; gap: 2.5rem; align-items: start; }
.footer__word { font-size: 1.7rem; }
.footer__tag { margin-top: 0.8rem; font-size: var(--text-small); color: var(--ink-soft); line-height: 1.6; }
.footer__nav { display: grid; gap: 0.7rem; }
.footer__nav a { font-size: 0.95rem; color: var(--ink-soft); transition: color var(--dur); width: fit-content; }
.footer__nav a:hover { color: var(--sky-deeper); }
.footer__safe { font-size: var(--text-small); color: var(--ink-faint); line-height: 1.6; }
.footer__meta { margin-top: 1.4rem; font-size: var(--text-small); color: var(--ink-faint); }
.footer__meta a:hover { color: var(--sky-deeper); }
@media (max-width: 820px) { .footer__inner { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Reveal motion ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .feather, .hero__scroll-line::after, .orb { animation: none !important; }
  .btn, .card, .plan { transition: none !important; }
}

/* =====================================================================
   Language toggle + Calm-mode control + Booking modal
   ===================================================================== */

.nav__right { display: inline-flex; align-items: center; gap: 1rem; }
.lang {
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.08em; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 100px; padding: 0.35rem 0.72rem;
  transition: color var(--dur), border-color var(--dur), background var(--dur);
}
.lang:hover { color: var(--ink); border-color: var(--rose-deep); background: var(--cream-2); }

/* Calm mode floating control */
.calm {
  position: fixed; right: var(--gutter); bottom: 1.5rem; z-index: 90;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.9rem; border-radius: 100px;
  background: var(--panel); 
  border: 1px solid var(--line); color: var(--ink-soft); font-size: var(--text-small);
  transition: color var(--dur), border-color var(--dur), transform var(--dur);
}
.calm:hover { color: var(--ink); border-color: var(--rose-deep); transform: translateY(-1px); }
.calm.is-on { color: var(--rose-deeper); border-color: var(--rose-deep); }
.calm__mark { display: inline-flex; }
.calm__arc { transition: opacity var(--dur); }
.calm.is-on .calm__arc { opacity: 0; }
.calm__label { white-space: nowrap; }
@media (max-width: 600px) { .calm__label { display: none; } .calm { padding: 0.62rem; } }

/* Booking modal */
.book { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; }
.book[hidden] { display: none; }
.book__scrim {
  position: absolute; inset: 0; background: rgba(63, 58, 58, 0.3);
  
  opacity: 0; transition: opacity 340ms var(--ease-out);
}
.book.is-open .book__scrim { opacity: 1; }
.book__sheet {
  position: relative; width: min(92vw, 520px); max-height: 92svh; overflow-y: auto;
  background: var(--cream-2); border: 1px solid rgba(255,255,255,0.6); border-radius: var(--radius-lg);
  box-shadow: 0 50px 100px -50px rgba(58,55,68,0.5);
  padding: clamp(1.3rem, 1rem + 2vw, 2.2rem);
  transform: translateY(16px) scale(0.985); opacity: 0;
  transition: transform 360ms var(--ease-out), opacity 360ms var(--ease-out);
}
.book.is-open .book__sheet { transform: none; opacity: 1; }
@media (max-width: 540px) {
  .book { place-items: end center; }
  .book__sheet { width: 100vw; max-height: 94svh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; transform: translateY(100%); }
  .book.is-open .book__sheet { transform: none; }
}
.book__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.book__back, .book__close {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 50%;
  background: transparent; border: 1px solid var(--line); color: var(--ink-soft);
  transition: color var(--dur), border-color var(--dur);
}
.book__back[hidden] { visibility: hidden; display: grid; }
.book__back:hover, .book__close:hover { color: var(--ink); border-color: var(--rose-deep); }
.book__rail { display: flex; gap: 0.5rem; align-items: center; }
.book__rail span { width: 8px; height: 8px; border-radius: 100px; background: var(--line); transition: width 320ms var(--ease-out), background 320ms var(--ease-out); }
.book__rail span.is-done { background: var(--rose); }
.book__rail span.is-on { width: 22px; background: var(--rose-deep); }
.book__railLabel { display: none; }
.book__h { font-family: var(--display); font-weight: 500; font-size: clamp(1.4rem, 1.1rem + 1.4vw, 1.9rem); line-height: 1.15; outline: none; margin-bottom: 0.5rem; }
.book__help { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.4rem; }
.book__step { animation: bookIn 360ms var(--ease-out); }
@keyframes bookIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.book__cta { width: 100%; margin-top: 0.4rem; }

.book__offer { background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.4rem; margin-bottom: 1.4rem; }
.book__offerName { font-family: var(--display); font-weight: 500; font-size: 1.3rem; margin-bottom: 0.4rem; }
.book__offerPrice { font-family: var(--display); font-size: 1.8rem; display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.5rem; }
.book__offerPrice em { font-family: var(--body); font-size: 0.85rem; color: var(--ink-faint); font-style: normal; }
.book__offerDesc { color: var(--ink-soft); font-size: 0.96rem; }
.book__tz { font-size: var(--text-small); color: var(--ink-faint); margin-top: 1rem; text-align: center; }
.book__day { font-family: var(--display); font-style: italic; color: var(--rose-deeper); margin-bottom: 1rem; }
.book__form { display: grid; gap: 1rem; }
.book__form input:focus, .book__form textarea:focus { box-shadow: 0 0 0 4px var(--rose-soft); }
.book__err { color: var(--rose-deeper); font-size: var(--text-small); min-height: 1.2em; }

/* Calendar */
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal__title { font-family: var(--display); font-size: 1.2rem; text-transform: capitalize; }
.cal__nav { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--ink-soft); font-size: 1.2rem; line-height: 1; transition: color var(--dur), border-color var(--dur); }
.cal__nav:hover:not(:disabled) { border-color: var(--rose-deep); color: var(--ink); }
.cal__nav:disabled { opacity: 0.3; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal__wdrow { margin-bottom: 6px; }
.cal__wd { text-align: center; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); }
.cal__day { aspect-ratio: 1; border-radius: 12px; border: 1px solid var(--line); background: var(--cream); color: var(--ink); font: inherit; font-size: 0.95rem; cursor: pointer; transition: border-color var(--dur), background 280ms var(--ease-out), transform var(--dur); }
.cal__day:hover:not(.is-off) { border-color: var(--rose-deep); transform: translateY(-1px); }
.cal__day.is-off { color: var(--ink-faint); opacity: 0.38; cursor: default; border-color: transparent; }
.cal__day.is-sel { background: var(--rose-soft); border-color: var(--rose-deep); }

/* Slots */
.slots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.slot { padding: 0.85rem; border-radius: 12px; border: 1px solid var(--line); background: var(--cream); color: var(--ink); font: inherit; cursor: pointer; transition: border-color var(--dur), background var(--dur), transform var(--dur); }
.slot:hover:not(.is-off) { border-color: var(--rose-deep); transform: translateY(-1px); }
.slot.is-off { opacity: 0.32; cursor: default; }
.slot.is-sel { background: var(--rose-soft); border-color: var(--rose-deep); }

/* Payment */
.pay__summary { display: flex; justify-content: space-between; align-items: baseline; padding: 1rem 1.2rem; background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--radius); margin-bottom: 1.2rem; }
.pay__summary strong { font-family: var(--display); font-size: 1.4rem; font-weight: 500; }
.pay__card { display: grid; gap: 0.6rem; margin-bottom: 1.4rem; }
.pay__card > label { font-size: var(--text-small); color: var(--ink-soft); display: flex; align-items: center; gap: 0.5rem; }
.pay__demo { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; background: var(--rose-soft); color: var(--rose-deeper); padding: 0.15rem 0.45rem; border-radius: 100px; }
.pay__row { display: flex; gap: 0.6rem; }
.pay__row input { flex: 1; font: inherit; padding: 0.8rem 0.9rem; border-radius: 10px; border: 1px solid var(--line); background: var(--cream); color: var(--ink); width: 100%; }
.pay__row input:focus { outline: none; border-color: var(--rose-deep); }
.pay__note { text-align: center; font-size: var(--text-small); color: var(--ink-faint); margin-top: 0.8rem; }

/* Confirmation */
.book__step--done { text-align: center; padding-top: 0.5rem; }
.book__orb { width: 88px; height: 88px; margin: 0 auto 1.4rem; border-radius: 50%; background: radial-gradient(circle, var(--rose) 0%, transparent 70%); animation: breath 6s ease-in-out infinite; }
.book__doneWhen { font-family: var(--display); font-style: italic; font-size: 1.2rem; color: var(--rose-deeper); margin-bottom: 1rem; }
@keyframes breath { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.16); opacity: 1; } }

/* Ambient grain breath (off in calm) */
@keyframes grainBreath { 0%, 100% { opacity: 0.32; } 50% { opacity: 0.42; } }
.grain { animation: grainBreath 22s ease-in-out infinite; }

/* Calm mode: maximum stillness */
html[data-calm="on"] .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
html[data-calm="on"] .feather,
html[data-calm="on"] .hero__scroll-line::after,
html[data-calm="on"] .orb,
html[data-calm="on"] .book__orb,
html[data-calm="on"] .grain { animation: none !important; }
html[data-calm="on"] .grain { opacity: 0.32; }
html[data-calm="on"] .btn,
html[data-calm="on"] .card,
html[data-calm="on"] .plan,
html[data-calm="on"] .book__step { transition: none !important; animation: none !important; }

@media (prefers-reduced-motion: reduce) {
  .grain, .book__step, .book__orb { animation: none !important; }
}

/* =====================================================================
   Premium layer: hero glass cards + nervous-system regulation
   ===================================================================== */

/* Floating glass cards in the hero */
.hero__cards {
  position: absolute; z-index: 2; right: clamp(1.5rem, 4vw, 5.5rem); top: 0; bottom: 0;
  display: grid; align-content: center; gap: 1rem; pointer-events: none;
}
.gcard {
  pointer-events: auto; display: grid; grid-template-columns: auto auto;
  grid-template-rows: auto auto; column-gap: 0.8rem; align-items: center;
  padding: 0.95rem 1.4rem; border-radius: var(--radius); min-width: 196px;
  background: var(--glass); border: 1px solid rgba(255,255,255,0.65);
  
  box-shadow: 0 30px 60px -42px rgba(63,58,58,0.5);
  transition: transform 600ms var(--ease-out), box-shadow 600ms var(--ease-out);
}
.gcard__dot { grid-row: 1 / 3; width: 9px; height: 9px; border-radius: 50%; background: var(--rose-deep); box-shadow: 0 0 0 4px var(--rose-soft); }
.gcard__w { font-family: var(--display); font-size: 1.12rem; color: var(--ink); align-self: end; line-height: 1.1; }
.gcard__s { font-size: 0.8rem; color: var(--ink-soft); align-self: start; }
.gcard--2 { margin-right: -1.6rem; }
.gcard--3 { margin-right: 0.8rem; }
.gcard--1 { animation: floatA 9s ease-in-out infinite; }
.gcard--2 { animation: floatA 12s ease-in-out infinite reverse; }
.gcard--3 { animation: floatA 15s ease-in-out infinite; }
.gcard:hover { transform: translateY(-5px); box-shadow: 0 42px 72px -38px rgba(63,58,58,0.55); }
@keyframes floatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@media (max-width: 980px) { .hero__cards { display: none; } }

/* Regulation / safe-space bubble */
.regulate {
  position: relative; z-index: 2; overflow: hidden;
  padding-block: var(--space-section);
  margin-inline: clamp(0px, 2vw, 2.5rem);
  border-radius: clamp(28px, 5vw, 72px);
  background: var(--panel-rose); 
  border: 1px solid rgba(255,255,255,0.45);
}
.regulate__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(58% 58% at 72% 50%, rgba(233,198,197,0.55), transparent 72%);
}
.regulate__inner {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 1rem + 5vw, 6rem); align-items: center;
}
.regulate__text .lede { margin-top: 1.4rem; }
.regulate__path { display: flex; align-items: center; gap: 1rem; margin-top: 2.2rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-faint); }
.regulate__path span { white-space: nowrap; }
.regulate__path span:last-of-type { color: var(--rose-deeper); }
.regulate__path i { flex: 1; height: 1px; min-width: 22px; background: linear-gradient(90deg, var(--line), var(--rose-deep)); }
.regulate__viz { position: relative; display: grid; place-items: center; aspect-ratio: 1; width: 100%; max-width: 440px; margin-inline: auto; }
.regulate__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.breathe { position: relative; display: grid; place-items: center; width: 58%; aspect-ratio: 1; }
.breathe__ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--rose-deep); opacity: 0.4; }
.breathe__core { position: absolute; inset: 16%; border-radius: 50%; background: radial-gradient(circle at 44% 40%, rgba(255,255,255,0.75), var(--rose) 72%); box-shadow: 0 24px 60px -22px rgba(189,124,132,0.6); will-change: transform; }
.breathe__word { position: relative; z-index: 2; font-family: var(--display); font-style: italic; font-size: 1.3rem; color: var(--ink); }
.regulate__cue { position: absolute; bottom: -2.6rem; left: 0; right: 0; text-align: center; font-size: var(--text-small); color: var(--ink-faint); }
@media (max-width: 820px) {
  .regulate__inner { grid-template-columns: 1fr; }
  .regulate__viz { margin-top: 1.5rem; max-width: 320px; }
}

/* Calm + reduced motion: still the new layer */
html[data-calm="on"] .gcard,
html[data-calm="on"] .breathe__core { animation: none !important; }
@media (prefers-reduced-motion: reduce) {
  .gcard { animation: none !important; }
}

/* =====================================================================
   Perf + life pass: blur only where cheap, soothing cursor glow,
   stronger ambient motion, compact manifesto, shorter scroll.
   ===================================================================== */

/* Shorter overall scroll */
:root { --space-section: clamp(3.4rem, 2.4rem + 4.5vw, 7rem); }

/* Re-add blur ONLY on small / occasional surfaces (not over the live sky every frame) */
.nav.is-stuck { backdrop-filter: blur(14px) saturate(1.1); -webkit-backdrop-filter: blur(14px) saturate(1.1); }
.book__scrim { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.gcard { backdrop-filter: blur(13px) saturate(1.05); -webkit-backdrop-filter: blur(13px) saturate(1.05); }
.calm { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

/* More visible, living ambient orbs */
.orb { opacity: 0.72; }
.orb--1 { width: 42vw; max-width: 520px; }

/* Soothing glow that follows the cursor (the calming micro-interaction) */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 680px; height: 680px; margin: -340px 0 0 -340px;
  border-radius: 50%; pointer-events: none; z-index: 95;
  background: radial-gradient(circle, rgba(236,158,150,0.7), rgba(233,168,158,0) 64%);
  mix-blend-mode: soft-light; opacity: 0; transition: opacity 700ms var(--ease-out);
  will-change: transform;
}
.cursor-glow.is-on { opacity: 1; }
@media (pointer: coarse) { .cursor-glow { display: none !important; } }
@media (max-width: 760px) { .cursor-glow { display: none !important; } }
html[data-calm="on"] .cursor-glow { opacity: 0 !important; }

/* Responsive, gentle tilt on cards */
.card, .plan, .gcard { transition: transform 240ms var(--ease-out), box-shadow 420ms var(--ease-out); }

/* Compact manifesto (was a tall, narrow column = wasted scroll) */
.manifesto { padding-block: clamp(2.8rem, 2rem + 3vw, 4.6rem); }
.manifesto__inner { max-width: 40ch; }
.manifesto__quote { font-size: clamp(1.7rem, 1.1rem + 2.3vw, 2.7rem); line-height: 1.18; }

/* =====================================================================
   ELEVATION : beige + dorures ciselées (cellule DA) + fixes Inspecteur
   L'or vit en filets, marques, 1 mot par section. Jamais d'aplat criard.
   ===================================================================== */
:root {
  --parchment:  #ece2d2;
  --sand-shadow:#e3d6c2;
  --gold:       #b08d4f;
  --gold-deep:  #8a6d38;
  --gold-light: #d9bd84;
  --gold-pale:  #e8d9b8;
  --gilt-line:  rgba(176,141,79,0.42);
  --gilt-faint: rgba(176,141,79,0.16);
  --foil: linear-gradient(100deg,#9a7838 0%,#b08d4f 18%,#d9bd84 38%,#f0e2c0 50%,#d9bd84 62%,#b08d4f 82%,#8a6d38 100%);
  --ink-faint:  #7a6f68;        /* assombri pour passer AA */
}

/* Lenis gère le scroll : on coupe le smooth natif (évite le double) */
html { scroll-behavior: auto; }

/* Marques dorées (signature répétée, discrète) */
.eyebrow { color: var(--rose-deeper); }
.eyebrow::before { background: var(--gold); width: 30px; }
.card__num { color: var(--gold-deep); }
.manifesto__sign { color: var(--gold-deep); }
.recognition__list li::before,
.plan__list li::before { border-color: var(--gold); }
.timeline__item::before { background: var(--gold); }
.regulate__path span:last-of-type { color: var(--gold-deep); }
.regulate__path i { background: linear-gradient(90deg, var(--line), var(--gold)); }

/* Un seul mot doré (le hero) : feuille d'or, lumière qui glisse une fois */
.hero__title { font-weight: 400; }
.hero__title em {
  background: var(--foil); background-size: 240% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-deep);
}
.hero__title.is-visible em { animation: foilGlide 7s var(--ease-soft) 1 both; }
@keyframes foilGlide { from { background-position: 118% 0; } to { background-position: -18% 0; } }

/* Carte vedette = ciselee d'or, plus de bleu froid */
.plan--feature { background: var(--cream-2); border: 1px solid var(--gilt-line); box-shadow: 0 36px 72px -40px rgba(176,141,79,0.34); }
.plan--feature .plan__list li::before { border-color: var(--gold); }
.plan__tag { background: var(--foil); color: #46371c; }

/* Fin du bleu froid résiduel (Inspecteur P0-4) */
.btn--primary:hover { box-shadow: 0 14px 30px -14px rgba(176,141,79,0.5); }
.reflect:has(input:checked) { border-color: var(--rose-deep); background: var(--rose-soft); color: var(--ink); }

/* Profondeur chaude, doree (Inspecteur P1-2) */
.card, .plan, .begin__form, .gcard { box-shadow: 0 30px 62px -42px rgba(176,141,79,0.30); }
.card:hover, .plan:hover, .gcard:hover { box-shadow: 0 42px 74px -38px rgba(176,141,79,0.42), 0 0 0 1px var(--gilt-faint); }

/* Hero plus calme a l'ouverture (Inspecteur P0-3) : cartes immobiles, tilt au survol seulement */
.gcard { animation: none; }

/* Prix dédramatisé (Inspecteur P1-3) */
.plan__price { font-size: 1.9rem; }

/* Filet doré qui se trace (utilitaire) */
.gilt-rule { height: 1px; background: var(--gilt-line); transform: scaleX(0); transform-origin: left; transition: transform 900ms var(--ease-out); }
.gilt-rule.is-visible { transform: scaleX(1); }

/* reduced-motion / calm : pas de shimmer */
@media (prefers-reduced-motion: reduce) { .hero__title em { animation: none !important; } }
html[data-calm="on"] .hero__title em { animation: none !important; }

/* =====================================================================
   A moment for you : grounding panel + gentle invite + exercises
   ===================================================================== */
.invite {
  position: fixed; right: var(--gutter); bottom: 5.4rem; z-index: 96;
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--cream-2); border: 1px solid var(--gilt-line); border-radius: 100px;
  padding: 0.45rem 0.5rem 0.45rem 1rem; box-shadow: 0 20px 44px -24px rgba(176,141,79,0.45);
  opacity: 0; transform: translateY(10px); transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.invite.is-in { opacity: 1; transform: none; }
.invite__t { font-size: var(--text-small); color: var(--ink-soft); }
.invite__go { background: var(--rose-deep); color: var(--cream-2); border: none; border-radius: 100px; padding: 0.35rem 0.95rem; font-size: 0.85rem; }
.invite__x { background: none; border: none; color: var(--ink-faint); font-size: 1.25rem; line-height: 1; padding: 0 0.35rem; }
.invite__x:hover { color: var(--ink); }
@media (max-width: 620px) { .invite__t { display: none; } }
html[data-calm="on"] .invite { transition: none; }

.ground { position: fixed; inset: 0; z-index: 210; display: grid; place-items: center; }
.ground[hidden] { display: none; }
.ground__scrim { position: absolute; inset: 0; background: rgba(63,58,58,0.32); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); opacity: 0; transition: opacity 340ms var(--ease-out); }
.ground.is-open .ground__scrim { opacity: 1; }
.ground__sheet {
  position: relative; width: min(92vw, 480px); max-height: 92svh; overflow-y: auto;
  background: var(--cream-2); border: 1px solid var(--gilt-line); border-radius: var(--radius-lg);
  box-shadow: 0 50px 100px -50px rgba(58,55,68,0.5); padding: clamp(1.8rem, 1.2rem + 2vw, 2.6rem);
  transform: translateY(16px) scale(0.985); opacity: 0;
  transition: transform 360ms var(--ease-out), opacity 360ms var(--ease-out); text-align: center;
}
.ground.is-open .ground__sheet { transform: none; opacity: 1; }
@media (max-width: 540px) {
  .ground { place-items: end center; }
  .ground__sheet { width: 100vw; border-radius: var(--radius-lg) var(--radius-lg) 0 0; transform: translateY(100%); }
  .ground.is-open .ground__sheet { transform: none; }
}
.ground__close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: transparent; border: 1px solid var(--line); color: var(--ink-soft); }
.ground__close:hover { border-color: var(--gold); color: var(--ink); }
.gview { animation: bookIn 360ms var(--ease-out); }
.gview .eyebrow { justify-content: center; }
.ground__intro { color: var(--ink-soft); margin: 0.8rem auto 1.7rem; max-width: 38ch; }
.ground__menu { display: grid; gap: 0.7rem; margin-bottom: 1.5rem; }
.gtile { display: grid; gap: 0.15rem; text-align: left; padding: 1.05rem 1.3rem; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line-soft); cursor: pointer; transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur); }
.gtile:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 16px 30px -22px rgba(176,141,79,0.4); }
.gtile__t { font-family: var(--display); font-size: 1.18rem; color: var(--ink); }
.gtile__s { font-size: 0.86rem; color: var(--ink-soft); }
.ground__still { display: inline-flex; align-items: center; gap: 0.6rem; font-size: var(--text-small); color: var(--ink-soft); cursor: pointer; }
.ground__still input { accent-color: var(--rose-deep); width: 16px; height: 16px; }
.gback { background: none; border: none; color: var(--ink-faint); font-size: var(--text-small); cursor: pointer; margin-bottom: 0.4rem; }
.gback:hover { color: var(--ink); }
.gview h3 { margin-top: 0.2rem; }
.ground__cue { color: var(--ink-soft); margin: 1.2rem auto 0; max-width: 40ch; }

.gbreathe { position: relative; width: 150px; height: 150px; margin: 1.8rem auto 0; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 44% 40%, rgba(255,255,255,0.82), var(--rose) 72%); box-shadow: 0 24px 60px -22px rgba(189,124,132,0.6); animation: gbScale 10s ease-in-out infinite; }
@keyframes gbScale { 0%, 100% { transform: scale(1); } 40% { transform: scale(1.26); } }
.gbreathe__w { position: relative; width: 1px; height: 1.2em; }
.gbreathe__w span { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); white-space: nowrap; font-family: var(--display); font-style: italic; font-size: 1.1rem; color: var(--ink); }
.gbreathe__in { animation: wIn 10s ease-in-out infinite; }
.gbreathe__out { animation: wOut 10s ease-in-out infinite; }
@keyframes wIn { 0%, 36% { opacity: 1; } 44%, 100% { opacity: 0; } }
@keyframes wOut { 0%, 36% { opacity: 0; } 44%, 96% { opacity: 1; } 100% { opacity: 0; } }

.senses { min-height: 5.5em; display: grid; place-items: center; margin: 1.5rem 0; }
.senses__step { font-family: var(--display); font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem); line-height: 1.3; color: var(--ink); max-width: 32ch; animation: fade-in 500ms var(--ease-out); }
.senses__step b { color: var(--gold-deep); font-style: italic; font-weight: 500; }
.gnext { min-width: 150px; }

.hold { display: flex; justify-content: center; gap: 3.4rem; margin: 2rem 0 0.5rem; }
.hold__dot { width: 52px; height: 52px; border-radius: 50%; background: var(--rose-soft); animation: hbeat 2.6s ease-in-out infinite; }
.hold__dot--r { animation-delay: 1.3s; }
@keyframes hbeat { 0%, 100% { transform: scale(0.92); box-shadow: 0 0 0 0 transparent; } 22% { transform: scale(1.12); box-shadow: 0 0 36px 2px var(--gold-pale); } 50% { transform: scale(0.92); } }

/* Interaction reach: tilt smoothness on more cards + a clearer cursor glow */
.timeline__item, .reflect, .gtile { transition: transform 240ms var(--ease-out), border-color var(--dur), background var(--dur); transform-style: preserve-3d; }
.story__portrait, .regulate__viz, .interlude .orbs, .manifesto__inner, .recognition__list { will-change: transform; }
.cursor-glow {
  width: 720px; height: 720px; margin: -360px 0 0 -360px;
  background: radial-gradient(circle, rgba(208,138,112,0.24) 0%, rgba(202,150,165,0.13) 40%, rgba(208,138,112,0) 66%);
  mix-blend-mode: multiply;
}

.cursor-glow { display: none !important; }

/* Break two pink sections in a row: manifesto becomes a soft white band */
.manifesto { background: #fbf7f1; }

/* Soothing close: a soft cloud blooms before the panel closes */
.rest__msg {
  position: absolute; inset: 0; z-index: 3; display: none; place-items: center;
  padding: 2.4rem; text-align: center; font-family: var(--display); font-style: italic;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.45rem); color: var(--ink); opacity: 0; pointer-events: none;
}
.ground__sheet.is-resting { pointer-events: none; }
.ground__sheet.is-resting > .gview { opacity: 0; transition: opacity 500ms ease; }
.ground__sheet.is-resting::before {
  content: ""; position: absolute; inset: -12%; z-index: 2; border-radius: 50%;
  background: radial-gradient(circle at 50% 52%, rgba(255,251,244,0.97), rgba(250,243,232,0.66) 52%, rgba(250,243,232,0) 72%);
  animation: restCloud 1.9s var(--ease-out) forwards;
}
.ground__sheet.is-resting .rest__msg { display: grid; opacity: 1; transition: opacity 700ms ease 350ms; }
@keyframes restCloud { 0% { opacity: 0; transform: scale(0.82); } 40% { opacity: 1; } 100% { opacity: 0.9; transform: scale(1.07); } }
@media (prefers-reduced-motion: reduce), (prefers-reduced-motion) { .ground__sheet.is-resting::before { animation: none; opacity: 0.95; } }

/* Mini progress bar under the closing message — counts down to the gentle close */
.rest__bar {
  display: none; position: relative; z-index: 3;
  width: 156px; height: 3px; margin: 1.6rem auto 0;
  border-radius: 999px; background: rgba(176,141,79,0.16); overflow: hidden;
}
.ground__sheet.is-resting .rest__bar { display: block; }
.rest__bar span {
  display: block; height: 100%; width: 0; border-radius: 999px;
  background: var(--foil); background-size: 220% 100%;
}
.ground__sheet.is-resting .rest__bar span { animation: restBar 2800ms cubic-bezier(0.4,0,0.2,1) forwards; }
@keyframes restBar { from { width: 0%; } to { width: 100%; } }
@media (prefers-reduced-motion: reduce), (prefers-reduced-motion) { .ground__sheet.is-resting .rest__bar span { animation: none; width: 100%; } }

/* Lightbox — open press / on-air images full size */
.strip__thumb { cursor: pointer; position: relative; }
.strip__thumb::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(34,26,20,0) center/22px no-repeat; transition: background-color var(--dur);
}
.strip__thumb:hover::after { background-color: rgba(34,26,20,0.16); }
.strip__thumb:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.lightbox {
  position: fixed; inset: 0; z-index: 300; padding: 5vw;
  background: rgba(26,20,16,0.84); opacity: 0;
  transition: opacity 320ms var(--ease-out);
}
.lightbox:not([hidden]) { display: grid; place-items: center; }
.lightbox.is-open { opacity: 1; }
.lightbox__frame {
  margin: 0; max-width: min(1100px, 92vw); max-height: 86vh; overflow: hidden;
  border-radius: 14px; border: 1px solid var(--gilt-line);
  box-shadow: 0 50px 120px -30px rgba(0,0,0,0.7);
  transform: scale(0.95); transition: transform 380ms var(--ease-out);
}
.lightbox.is-open .lightbox__frame { transform: scale(1); }
.lightbox__frame img { display: block; width: 100%; height: auto; max-height: 86vh; object-fit: contain; cursor: pointer; }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.12);
  color: #fff; font-size: 2rem; line-height: 1; padding-bottom: 4px; cursor: pointer;
  display: grid; place-items: center;
  transition: background var(--dur), transform var(--dur);
}
.lightbox__nav--prev { left: clamp(0.6rem, 3vw, 2.4rem); }
.lightbox__nav--next { right: clamp(0.6rem, 3vw, 2.4rem); }
.lightbox__nav:hover { background: rgba(255,255,255,0.24); }
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox__count {
  position: absolute; bottom: clamp(1.2rem, 4vh, 2.6rem); left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,0.82);
  font-size: var(--text-small); letter-spacing: 0.18em;
}
@media (max-width: 560px) { .lightbox__nav { width: 44px; height: 44px; font-size: 1.6rem; } }
.lightbox__close {
  position: absolute; top: 1.4rem; right: 1.6rem; width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.12); color: #fff; font-size: 1.7rem; line-height: 1;
  cursor: pointer; transition: background var(--dur), transform var(--dur);
}
.lightbox__close:hover { background: rgba(255,255,255,0.24); transform: scale(1.06); }

/* ===================================================================
   Real photography of Quetzal — hero portrait, story duo, interlude,
   press thumbnails. Warm, framed, on-brand gold.
   =================================================================== */

/* Hero signature portrait (LEFT gutter, near the headline); glass cards stay right.
   Her gaze drifts up-and-out — soft, non-confronting (trauma-informed). 3D tilt to cursor. */
.hero__portrait {
  position: relative; z-index: 1; margin: 0; width: 100%;
  max-width: 330px; aspect-ratio: 1066 / 1600; perspective: 1100px;
  justify-self: center;
}
.hero__portrait-card {
  position: relative; width: 100%; height: 100%;
  border-radius: calc(var(--radius-lg) + 6px); overflow: hidden;
  border: 1px solid var(--gilt-line);
  box-shadow: 0 54px 96px -52px rgba(63,58,58,0.6), 0 0 0 6px rgba(255,255,255,0.34);
  transform-style: preserve-3d; will-change: transform;
}
.hero__portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%;
  filter: saturate(0.88) contrast(0.98) brightness(1.03);
}
.hero__portrait-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(38,30,24,0.35) 66%, rgba(30,23,18,0.82));
}
.hero__portrait-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.6rem 1.4rem 1.25rem; color: #fdf7ee;
  font-family: var(--display); font-size: 1rem; letter-spacing: 0.02em;
  text-shadow: 0 1px 10px rgba(20,14,10,0.55);
}
.hero__portrait-cap span {
  color: var(--gold-light); font-style: italic; font-size: 1.32rem;
  margin-right: 0.15em;
}
html[data-calm="on"] .hero__portrait-card { transform: none !important; }

/* Story — two real photos, the second overlapping */
.story__portrait--accent {
  position: absolute; left: -9%; bottom: -11%; width: 48%; aspect-ratio: 3 / 4;
  z-index: 3; border: 4px solid var(--cream-2); border-radius: var(--radius);
  box-shadow: 0 34px 64px -40px rgba(63,58,58,0.55);
}
.story__portrait--accent img { object-position: 50% 38%; }
@media (max-width: 820px) { .story__portrait--accent { display: none; } }

/* Interlude with photographic background (Moroccan lanterns) */
.interlude--photo { background: #2a221c; }
.interlude--photo .interlude__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
  object-fit: cover; object-position: 50% 40%; opacity: 0.95;
}
.interlude--photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(34,26,20,0.46), rgba(34,26,20,0.62));
}
.interlude--photo .interlude__line { color: #fbf3e8; }
.interlude--photo .interlude__line em { color: var(--gold-light); }

/* Press / on-air proof thumbnails */
.strip__press {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0.85rem; padding-bottom: 1.7rem; margin-top: -0.3rem;
}
.strip__press-label {
  font-size: var(--text-small); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep);
}
.strip__thumb {
  margin: 0; width: clamp(82px, 12vw, 124px); aspect-ratio: 4 / 3; border-radius: 11px;
  overflow: hidden; border: 1px solid var(--gilt-line);
  box-shadow: 0 16px 30px -24px rgba(63,58,58,0.5);
  transition: transform var(--dur) var(--ease-out);
}
.strip__thumb:hover { transform: translateY(-3px); }
.strip__thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
