/* =============================================================
   QUIET MIND EXPLAINED™ — QME HOMEPAGE V2
   Vanilla static stylesheet · no framework · no build step
   Section order: Hero → Emotional Bridge → Philosophy →
   Collection Four → Complete Reset Collection →
   How a Guided Reset Works → Quiet Notes → Footer
   ============================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root{
  /* Ground — deep forest / dark sage */
  --sage-deep:#1E2B22;
  --sage-deep-2:#243328;
  --sage:#34473A;
  --sage-soft:#4A5F4F;

  /* Reading surfaces — warm cream / beige */
  --cream:#F4EEE3;
  --paper:#FBF8F1;
  --beige:#EBE3D5;
  --line:#E1D8C8;

  /* Accents — each owns one emotional job */
  --gold:#C09A3E;        /* intent · primary CTA · dividers */
  --gold-deep:#8F6F22;   /* gold text on cream */
  --clay:#C07A57;        /* avoidance / dread warmth */
  --plum:#94708A;        /* self-trust / emotional pattern */
  --blue-grey:#6E8B98;   /* trust / secondary calm */

  /* Text — warm, low-saturation */
  --ink:#26302A;
  --ink-soft:#55605A;
  --ink-mute:#7C857F;
  --on-dark:#F2EDE2;
  --on-dark-soft:rgba(242,237,226,.66);
  --on-dark-mute:rgba(242,237,226,.42);

  /* System */
  --serif:'Cormorant Garamond',Georgia,'Times New Roman',serif;
  --sans:'DM Sans',system-ui,-apple-system,Segoe UI,sans-serif;
  --maxw:1180px;
  --maxw-read:680px;
  --radius:16px;
  --radius-lg:24px;
  --shadow:0 2px 20px rgba(30,43,34,.05);
  --shadow-lift:0 18px 50px rgba(30,43,34,.12);
  --ease:cubic-bezier(.22,.61,.36,1);
  --dur:300ms;

  /* Fluid type scale (Cormorant only appears >=24px) */
  --t-hero:clamp(2.4rem,6.2vw,4.5rem);   /* ~38 → 72 */
  --t-h2:clamp(1.95rem,3.6vw,3rem);      /* ~31 → 48 */
  --t-feeling:clamp(1.4rem,2.4vw,1.72rem);/* ~22 → 27 */
  --t-lead:clamp(1.06rem,1.5vw,1.32rem);
  --t-body:1.0625rem;
  --t-label:.8125rem;
  --t-meta:.78rem;
}

/* ---------- 2. RESET / BASE ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;background:var(--sage-deep);-webkit-text-size-adjust:100%;}
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--cream);
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit;}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px;border-radius:4px;}

.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;}

/* skip link */
.skip{position:absolute;left:12px;top:-60px;background:var(--gold);color:var(--sage-deep);
  padding:10px 18px;border-radius:8px;font-weight:600;z-index:400;transition:top .2s;}
.skip:focus{top:12px;}

/* ---------- 3. LAYOUT PRIMITIVES ---------- */
.container{max-width:var(--maxw);margin-inline:auto;padding-inline:clamp(20px,5vw,48px);}
.read{max-width:var(--maxw-read);margin-inline:auto;}
.section{padding-block:clamp(64px,10vw,124px);position:relative;}
.section--sage{background:var(--sage-deep);color:var(--on-dark);}
.section--cream{background:var(--cream);}
.section--paper{background:var(--paper);}

.eyebrow{
  font-family:var(--sans);font-size:var(--t-label);font-weight:600;
  letter-spacing:.22em;text-transform:uppercase;color:var(--gold-deep);
  display:inline-flex;align-items:center;gap:12px;margin-bottom:18px;
}
.section--sage .eyebrow{color:var(--gold);}
.eyebrow::before{content:"";width:26px;height:1px;background:currentColor;opacity:.6;}

.serif{font-family:var(--serif);font-weight:400;line-height:1.12;letter-spacing:-.005em;}
h1,h2,h3{font-family:var(--serif);font-weight:400;line-height:1.12;}

/* ---------- 4. TYPE HELPERS ---------- */
.h2{font-family:var(--serif);font-size:var(--t-h2);font-weight:400;line-height:1.1;
  color:var(--ink);text-wrap:pretty;letter-spacing:-.01em;}
.section--sage .h2{color:var(--on-dark);}
.h2 em{font-style:italic;color:var(--gold-deep);}
.section--sage .h2 em{color:var(--gold);}
.lead{font-size:var(--t-lead);color:var(--ink-soft);line-height:1.65;font-weight:400;}
.section--sage .lead{color:var(--on-dark-soft);}
sup{font-family:var(--sans);font-size:.42em;font-weight:400;vertical-align:super;top:-.2em;position:relative;}

/* =============================================================
   HEADER / NAV
   ============================================================= */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:300;
  height:66px;display:flex;align-items:center;
  background:rgba(30,43,34,.86);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(242,237,226,.08);
  transition:transform var(--dur) var(--ease),background var(--dur) var(--ease);
  padding-top:env(safe-area-inset-top);
}
.site-header--hidden{transform:translateY(-100%);}
.site-header__row{max-width:var(--maxw);margin-inline:auto;width:100%;
  padding-inline:clamp(20px,5vw,48px);display:flex;align-items:center;justify-content:space-between;gap:20px;}
.brand{font-family:var(--serif);font-size:1.28rem;color:var(--on-dark);letter-spacing:.02em;white-space:nowrap;}
.brand em{font-style:italic;color:var(--blue-grey);}
.site-header__nav{display:flex;align-items:center;gap:30px;}
.site-header__nav a{font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;
  color:var(--on-dark-soft);transition:color .2s;white-space:nowrap;}
.site-header__nav a:hover{color:var(--on-dark);}
.nav-toggle{display:none;flex-direction:column;gap:5px;padding:8px;}
.nav-toggle span{display:block;width:24px;height:1.6px;background:var(--on-dark-soft);transition:.3s;}

.nav-drawer{display:none;position:fixed;top:66px;left:0;right:0;z-index:290;
  background:rgba(24,34,27,.98);backdrop-filter:blur(14px);
  flex-direction:column;padding:14px 28px 26px;border-bottom:1px solid rgba(242,237,226,.08);}
.nav-drawer.open{display:flex;}
.nav-drawer a{color:var(--on-dark-soft);font-size:.95rem;padding:13px 0;
  border-bottom:1px solid rgba(242,237,226,.06);letter-spacing:.03em;}
.nav-drawer a:last-child{border-bottom:none;}

/* =============================================================
   1 · HERO — Calm
   ============================================================= */
.hero{
  min-height:100svh;display:flex;align-items:center;
  background:
    radial-gradient(120% 90% at 50% 8%,rgba(110,139,152,.10) 0%,transparent 55%),
    linear-gradient(168deg,var(--sage-deep) 0%,var(--sage-deep-2) 62%,#2A3B2E 100%);
  color:var(--on-dark);position:relative;overflow:hidden;
  padding:120px 0 90px;
}
.hero__inner{max-width:820px;}
.hero__title{font-family:var(--serif);font-size:var(--t-hero);font-weight:300;
  line-height:1.04;letter-spacing:-.015em;color:#fff;margin-bottom:26px;text-wrap:balance;}
.hero__title em{font-style:italic;color:var(--blue-grey);}
.hero__sub{font-size:var(--t-lead);color:var(--on-dark-soft);line-height:1.6;
  max-width:600px;margin-bottom:38px;font-weight:400;}
.hero__cta-row{display:flex;align-items:center;gap:22px;flex-wrap:wrap;}
.hero__micro{font-size:var(--t-meta);letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold);font-weight:500;margin-top:34px;}
.hero__scroll{position:absolute;bottom:30px;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:8px;
  font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:var(--on-dark-mute);}
.hero__scroll .line{width:1px;height:40px;background:linear-gradient(var(--on-dark-mute),transparent);animation:pulse 2.4s infinite;}
@keyframes pulse{0%,100%{opacity:.3}50%{opacity:.85}}

/* CTA buttons */
.btn{display:inline-flex;align-items:center;gap:9px;font-family:var(--sans);
  font-size:.95rem;font-weight:500;letter-spacing:.01em;padding:15px 30px;border-radius:50px;
  transition:transform var(--dur) var(--ease),background var(--dur) var(--ease),box-shadow var(--dur) var(--ease);
  min-height:52px;-webkit-tap-highlight-color:transparent;}
.btn svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;transition:transform var(--dur) var(--ease);}
.btn:hover svg{transform:translateX(3px);}
.btn--gold{background:var(--gold);color:var(--sage-deep);font-weight:600;box-shadow:0 8px 26px rgba(192,154,62,.28);}
.btn--gold:hover{transform:translateY(-2px);box-shadow:0 14px 34px rgba(192,154,62,.36);}
.btn--ghost-light{background:rgba(242,237,226,.08);color:var(--on-dark);border:1px solid rgba(242,237,226,.18);}
.btn--ghost-light:hover{background:rgba(242,237,226,.14);transform:translateY(-2px);}
/* down-arrow (scroll cue) doesn't translate sideways */
.btn--gold svg.arrow-down,.btn--ghost-light svg.arrow-down{}
.btn:hover svg.arrow-down{transform:translateY(3px);}

.textlink{display:inline-flex;align-items:center;gap:7px;font-weight:500;font-size:.95rem;
  color:var(--gold-deep);border-bottom:1px solid transparent;transition:border-color .2s,gap .2s;}
.section--sage .textlink{color:var(--gold);}
.textlink svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;transition:transform .2s;}
.textlink:hover{border-color:currentColor;}
.textlink:hover svg{transform:translateX(3px);}

/* =============================================================
   2 · EMOTIONAL BRIDGE — Recognition (the heart)
   ============================================================= */
.bridge{background:var(--cream);}
.bridge__head{text-align:center;max-width:660px;margin:0 auto clamp(38px,5vw,58px);}
.bridge__q{font-family:var(--serif);font-size:clamp(2.2rem,4.8vw,3.5rem);font-weight:400;
  line-height:1.08;color:var(--ink);letter-spacing:-.015em;margin-bottom:16px;text-wrap:balance;}
.bridge__sub{font-size:var(--t-lead);color:var(--ink-soft);font-style:italic;font-family:var(--serif);}

.bridge__grid{display:grid;grid-template-columns:1fr;gap:16px;}
.bridge__more{display:contents;}  /* desktop: children flow into grid */

.feeling{
  display:flex;flex-direction:column;justify-content:space-between;gap:20px;
  background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:28px 30px;min-height:150px;position:relative;overflow:hidden;
  transition:transform var(--dur) var(--ease),box-shadow var(--dur) var(--ease),border-color var(--dur) var(--ease);
}
.feeling::before{content:"";position:absolute;left:0;top:0;bottom:0;width:3px;background:var(--blue-grey);opacity:.5;transition:opacity var(--dur);}
.feeling:hover{transform:translateY(-4px);box-shadow:var(--shadow-lift);border-color:transparent;}
.feeling:hover::before{opacity:1;}
.feeling__text{font-family:var(--serif);font-size:var(--t-feeling);line-height:1.22;color:var(--ink);font-style:italic;}
.feeling__foot{display:flex;align-items:center;justify-content:space-between;gap:14px;}
.feeling__reset{font-family:var(--sans);font-size:.9rem;font-weight:500;color:var(--ink-soft);letter-spacing:.005em;}
.feeling__reset .alt{display:block;font-size:.8rem;color:var(--ink-mute);font-weight:400;margin-top:2px;}
.feeling__go{flex-shrink:0;width:34px;height:34px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--beige);color:var(--ink-soft);
  transition:background var(--dur),color var(--dur),transform var(--dur);}
.feeling__go svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;}
.feeling:hover .feeling__go{background:var(--gold);color:var(--sage-deep);transform:translateX(2px);}

/* flagship weighting */
.feeling--gold::before{background:var(--gold);opacity:.85;}
.feeling--gold:hover .feeling__go,.feeling--gold .feeling__go{background:rgba(192,154,62,.16);color:var(--gold-deep);}
.feeling--gold:hover .feeling__go{background:var(--gold);color:var(--sage-deep);}
.feeling--plum::before{background:var(--plum);opacity:.85;}
.feeling--plum:hover .feeling__go{background:var(--plum);color:#fff;}
.feeling--clay::before{background:var(--clay);opacity:.85;}
.feeling--clay:hover .feeling__go{background:var(--clay);color:#fff;}

.bridge__morebtn{display:none;margin:26px auto 0;align-items:center;gap:10px;
  font-size:.9rem;font-weight:500;letter-spacing:.04em;color:var(--ink-soft);
  padding:12px 24px;border:1px solid var(--line);border-radius:50px;background:var(--paper);
  min-height:48px;transition:border-color .2s,color .2s;}
.bridge__morebtn:hover{border-color:var(--gold);color:var(--gold-deep);}
.bridge__morebtn svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;transition:transform .3s;}
.bridge__morebtn[aria-expanded="true"] svg{transform:rotate(180deg);}

/* =============================================================
   3 · PHILOSOPHY — Trust
   ============================================================= */
.philosophy{text-align:center;}
.philosophy .read{max-width:720px;}
.philosophy__lead{font-family:var(--serif);font-size:var(--t-h2);font-weight:300;
  line-height:1.16;color:var(--ink);letter-spacing:-.01em;margin-bottom:26px;text-wrap:balance;}
.philosophy__lead em{font-style:italic;color:var(--plum);}
.philosophy__body{font-size:var(--t-lead);color:var(--ink-soft);line-height:1.7;margin-bottom:30px;}
.philosophy__pull{font-family:var(--serif);font-style:italic;font-size:clamp(1.5rem,2.8vw,2rem);
  color:var(--ink);line-height:1.3;padding-top:26px;border-top:1px solid var(--line);
  max-width:560px;margin:0 auto;}
.philosophy__attr{margin-top:22px;font-size:var(--t-meta);letter-spacing:.16em;text-transform:uppercase;color:var(--gold-deep);font-weight:600;}

/* =============================================================
   4 · COLLECTION FOUR SHOWCASE — Curiosity (flagship)
   ============================================================= */
.showcase__head{max-width:640px;margin-bottom:clamp(46px,6vw,72px);}
.showcase__intro{font-family:var(--serif);font-size:var(--t-h2);font-weight:300;
  line-height:1.12;color:var(--on-dark);letter-spacing:-.01em;margin-top:6px;text-wrap:balance;}
.showcase__intro em{font-style:italic;color:var(--gold);}

.panel{display:grid;grid-template-columns:1fr 1fr;gap:clamp(28px,5vw,64px);align-items:center;
  padding-block:clamp(34px,5vw,52px);border-top:1px solid rgba(242,237,226,.10);}
.panel:first-of-type{border-top:none;}
.panel--reverse .panel__media{order:2;}
.panel__body{max-width:460px;}
.panel__num{font-family:var(--serif);font-size:1rem;color:var(--gold);letter-spacing:.1em;margin-bottom:14px;}
.panel__name{font-family:var(--serif);font-size:clamp(2rem,3.4vw,2.75rem);font-weight:400;
  color:#fff;line-height:1.02;margin-bottom:14px;}
.panel__promise{font-family:var(--serif);font-style:italic;font-size:clamp(1.15rem,1.8vw,1.4rem);
  line-height:1.4;margin-bottom:22px;}
.panel__mech{display:inline-flex;align-items:center;gap:10px;font-size:.82rem;font-weight:500;
  letter-spacing:.03em;padding:8px 16px;border-radius:50px;margin-bottom:26px;
  background:rgba(242,237,226,.07);border:1px solid rgba(242,237,226,.16);color:var(--on-dark);}
.panel__mech .dot{width:7px;height:7px;border-radius:50%;flex-shrink:0;}
.panel__mech .mlabel{color:var(--on-dark-soft);font-weight:400;}

/* per-reset accent thread */
.panel--load .panel__promise{color:#EBD79A;}
.panel--load .panel__mech .dot{background:var(--gold);}
.panel--trust .panel__promise{color:#E3C6DA;}
.panel--trust .panel__mech .dot{background:var(--plum);}
.panel--avoid .panel__promise{color:#EEC6B2;}
.panel--avoid .panel__mech .dot{background:var(--clay);}

/* screenshot placeholder (fallback, unused once real shots wired) */
.shot{border-radius:var(--radius-lg);overflow:hidden;position:relative;
  aspect-ratio:4/3;border:1px solid rgba(242,237,226,.14);
  background:
    repeating-linear-gradient(135deg,rgba(242,237,226,.05) 0 12px,rgba(242,237,226,.02) 12px 24px),
    linear-gradient(160deg,var(--sage-deep-2),var(--sage-deep));
  display:flex;align-items:center;justify-content:center;text-align:center;padding:24px;}
.shot__label{font-family:'DM Mono','SF Mono',ui-monospace,Menlo,monospace;
  font-size:.72rem;letter-spacing:.04em;color:var(--on-dark-mute);line-height:1.6;}
.shot__label strong{display:block;color:var(--on-dark-soft);font-weight:500;margin-bottom:4px;font-size:.78rem;}

/* real screenshot in a soft phone frame */
.phone{max-width:296px;margin-inline:auto;border-radius:40px;overflow:hidden;
  border:9px solid #11170D;background:#11170D;
  box-shadow:0 34px 70px rgba(0,0,0,.42),0 0 0 1px rgba(242,237,226,.09);}
.phone img{display:block;width:100%;height:auto;border-radius:31px;}

/* =============================================================
   5 · COMPLETE RESET COLLECTION — Exploration (bands)
   ============================================================= */
.collection__head{max-width:620px;margin-bottom:clamp(38px,5vw,54px);}
.bands{display:flex;flex-direction:column;gap:16px;}
.band{background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;
  transition:border-color var(--dur),box-shadow var(--dur);}
.band[open]{border-color:transparent;box-shadow:var(--shadow-lift);}
.band__summary{list-style:none;cursor:pointer;padding:26px 30px;display:flex;align-items:center;
  justify-content:space-between;gap:20px;min-height:64px;}
.band__summary::-webkit-details-marker{display:none;}
.band__summary:hover .band__cue{border-color:var(--gold);color:var(--gold-deep);}
.band__label{font-size:var(--t-meta);font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-deep);margin-bottom:7px;}
.band__title{font-family:var(--serif);font-size:clamp(1.4rem,2.4vw,1.85rem);font-weight:400;color:var(--ink);line-height:1.1;}
.band__desc{font-size:.96rem;color:var(--ink-soft);margin-top:6px;max-width:520px;}
.band__cue{flex-shrink:0;width:42px;height:42px;border-radius:50%;border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;color:var(--ink-soft);transition:.25s;}
.band__cue svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;transition:transform .3s;}
.band[open] .band__cue svg{transform:rotate(45deg);}
.band__flag{display:inline-block;font-size:.66rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold-deep);background:rgba(192,154,62,.14);border:1px solid rgba(192,154,62,.3);
  padding:3px 10px;border-radius:50px;margin-left:12px;vertical-align:middle;}

.band__panel{padding:0 30px 30px;}
.band__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;padding-top:6px;border-top:1px solid var(--line);}
.rcard{display:flex;flex-direction:column;gap:10px;background:var(--cream);border:1px solid var(--line);
  border-radius:var(--radius);padding:22px 22px 20px;transition:transform .25s var(--ease),box-shadow .25s var(--ease);}
.rcard:hover{transform:translateY(-3px);box-shadow:var(--shadow);}
.rcard__name{font-family:var(--serif);font-size:1.3rem;font-weight:500;color:var(--ink);line-height:1.1;}
.rcard__entry{font-family:var(--serif);font-style:italic;font-size:1rem;color:var(--ink-soft);line-height:1.4;flex:1;}
.rcard__foot{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:4px;}
.rcard__mech{font-size:.72rem;letter-spacing:.02em;color:var(--ink-mute);}
.rcard__open{font-size:.82rem;font-weight:600;color:var(--gold-deep);display:inline-flex;align-items:center;gap:5px;}
.rcard__open svg{width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;transition:transform .2s;}
.rcard:hover .rcard__open svg{transform:translateX(3px);}
.band__note{margin-top:16px;font-size:.9rem;color:var(--ink-mute);font-style:italic;font-family:var(--serif);}
.band__seeall{margin-top:18px;}

/* =============================================================
   6 · HOW A GUIDED RESET WORKS — Confidence (merged)
   ============================================================= */
.how__head{max-width:560px;margin-bottom:clamp(40px,5vw,60px);}
.how__part-label{font-family:var(--serif);font-style:italic;font-size:1.4rem;color:var(--gold);margin-bottom:26px;}
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(20px,3vw,36px);position:relative;}
.step{display:flex;flex-direction:column;gap:12px;}
.step__num{width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);font-size:1.4rem;color:var(--gold);
  background:rgba(192,154,62,.1);border:1px solid rgba(192,154,62,.28);margin-bottom:4px;}
.step__title{font-family:var(--serif);font-size:1.4rem;font-weight:500;color:var(--on-dark);line-height:1.1;}
.step__desc{font-size:.98rem;color:var(--on-dark-soft);line-height:1.6;}

.how__divider{height:1px;background:rgba(242,237,226,.12);margin-block:clamp(46px,6vw,68px);}

.safe__head{font-family:var(--serif);font-size:clamp(1.6rem,2.6vw,2.1rem);font-weight:400;color:var(--on-dark);margin-bottom:34px;}
.safe__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(18px,2.6vw,30px);}
.point{display:flex;flex-direction:column;gap:9px;}
.point__key{display:flex;align-items:center;gap:11px;}
.point__dot{width:26px;height:26px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;background:rgba(110,139,152,.16);}
.point__dot svg{width:14px;height:14px;fill:none;stroke:var(--blue-grey);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.point__title{font-family:var(--serif);font-size:1.24rem;font-weight:500;color:var(--on-dark);}
.point__desc{font-size:.92rem;color:var(--on-dark-soft);line-height:1.55;}
.how__closer{margin-top:clamp(40px,5vw,56px);}

/* =============================================================
   7 · QUIET NOTES — Connection (preserved)
   ============================================================= */
.notes__head{text-align:center;max-width:560px;margin:0 auto clamp(40px,5vw,56px);}
.notes__sub{font-family:var(--serif);font-style:italic;font-size:var(--t-lead);color:var(--ink-soft);}
.notes__grid{display:grid;grid-template-columns:1fr;gap:20px;}
.note{display:flex;flex-direction:column;gap:12px;background:var(--paper);border:1px solid var(--line);
  border-radius:var(--radius-lg);padding:30px 30px 26px;transition:transform .25s var(--ease),box-shadow .25s var(--ease);}
.note:hover{transform:translateY(-4px);box-shadow:var(--shadow-lift);}
.note__meta{font-size:var(--t-meta);letter-spacing:.12em;text-transform:uppercase;color:var(--ink-mute);}
.note__title{font-family:var(--serif);font-size:1.5rem;font-weight:500;color:var(--ink);line-height:1.16;}
.note__excerpt{font-size:.96rem;color:var(--ink-soft);line-height:1.6;flex:1;}
.note__read{font-size:.82rem;font-weight:600;letter-spacing:.04em;color:var(--gold-deep);display:inline-flex;align-items:center;gap:6px;}
.note__read svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;transition:transform .2s;}
.note:hover .note__read svg{transform:translateX(3px);}
.notes__more{text-align:center;margin-top:clamp(34px,4vw,46px);}

/* =============================================================
   8 · FOOTER — Reassurance
   ============================================================= */
.site-footer{background:var(--sage-deep);color:var(--on-dark);padding:clamp(60px,8vw,96px) 0 40px;
  padding-bottom:calc(40px + env(safe-area-inset-bottom));}
.footer__closing{font-family:var(--serif);font-style:italic;font-size:clamp(1.8rem,3.4vw,2.6rem);
  font-weight:300;color:#fff;text-align:center;line-height:1.2;margin-bottom:clamp(44px,6vw,64px);}
.footer__cols{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:40px;
  padding-bottom:38px;border-bottom:1px solid rgba(242,237,226,.1);}
.footer__brand{font-family:var(--serif);font-size:1.5rem;color:var(--on-dark);margin-bottom:14px;}
.footer__brand em{font-style:italic;color:var(--blue-grey);}
.footer__privacy{font-size:.9rem;color:var(--on-dark-soft);line-height:1.65;max-width:340px;}
.footer__coltitle{font-size:var(--t-meta);letter-spacing:.16em;text-transform:uppercase;color:var(--gold);font-weight:600;margin-bottom:16px;}
.footer__list{list-style:none;display:flex;flex-direction:column;gap:11px;}
.footer__list a{font-size:.92rem;color:var(--on-dark-soft);transition:color .2s;}
.footer__list a:hover{color:var(--on-dark);}
.footer__disclaimer{padding-top:32px;font-size:.82rem;color:var(--on-dark-mute);line-height:1.7;max-width:820px;}
.footer__disclaimer strong{color:var(--on-dark-soft);font-weight:500;}
.footer__disclaimer a{color:var(--blue-grey);}
.footer__bottom{margin-top:26px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;
  font-size:.78rem;color:var(--on-dark-mute);}

/* =============================================================
   REVEAL ANIMATION
   ============================================================= */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .7s var(--ease),transform .7s var(--ease);}
.reveal.is-visible{opacity:1;transform:none;}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (min-width:600px){
  .bridge__grid{grid-template-columns:1fr 1fr;}
  .notes__grid{grid-template-columns:1fr 1fr;}
}
@media (min-width:900px){
  .notes__grid{grid-template-columns:repeat(3,1fr);}
}

/* DESKTOP ≥960 — all 8 bridge feelings visible, editorial panels */
@media (min-width:960px){
  .bridge__grid{grid-template-columns:1fr 1fr;gap:18px;}
  /* flagships get a touch more presence */
  .feeling--gold,.feeling--plum,.feeling--clay{padding:32px 34px;}
  .bridge__more{display:contents;}
  .bridge__morebtn{display:none !important;}
}

/* MOBILE / TABLET <960 — 6 visible + More feelings reveal */
@media (max-width:959px){
  .bridge__more{
    display:grid;grid-template-columns:inherit;gap:16px;
    grid-column:1/-1;
    max-height:0;opacity:0;overflow:hidden;
    transition:max-height .45s var(--ease),opacity .35s var(--ease),margin .45s var(--ease);
    margin-top:0;
  }
  .bridge__grid{grid-auto-flow:row;}
  .bridge__more.open{max-height:900px;opacity:1;margin-top:16px;}
  .bridge__morebtn{display:inline-flex;}
  /* when JS disabled, .no-js on <html> forces reveal open */
  .no-js .bridge__more{max-height:none;opacity:1;overflow:visible;margin-top:16px;}
  .no-js .bridge__morebtn{display:none;}
}

@media (max-width:860px){
  .site-header__nav{display:none;}
  .nav-toggle{display:flex;}
  .panel{grid-template-columns:1fr;gap:24px;}
  .panel--reverse .panel__media{order:0;}
  .panel__body{max-width:none;}
  .steps{grid-template-columns:1fr;gap:26px;}
  .safe__grid{grid-template-columns:1fr 1fr;gap:24px 20px;}
  .band__grid{grid-template-columns:1fr;}
  .footer__cols{grid-template-columns:1fr;gap:32px;}
  .footer__privacy{max-width:none;}
}
@media (max-width:520px){
  .bridge__grid{grid-template-columns:1fr;}
  .safe__grid{grid-template-columns:1fr;}
  .hero__cta-row{flex-direction:column;align-items:stretch;}
  .hero__cta-row .btn{justify-content:center;}
  .band__summary{padding:22px 22px;}
  .band__panel{padding:0 22px 24px;}
  .footer__bottom{flex-direction:column;}
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;
    transition-duration:.001ms !important;scroll-behavior:auto !important;}
  .reveal{opacity:1;transform:none;}
  .bridge__more{transition:none;}
}
