/* ==========================================================================
   Mike Brown — build-v3  ·  "Warm & alive" alternative (nautical palette)
   Navy + ocean-blue grounds · orange star accent · pure-white light sections.
   Display: Gloock (high-contrast serif) · Body/energy: Figtree.
   Signature: color-blocked section journey, highlighted serif keywords with
   hand-drawn underlines, a rotating badge stamp, rounded pills, hero photo
   carousel, film grain, character-varied scroll reveals.
   Token names (--plum/--coral/--cream…) are kept across palette swaps.
   ========================================================================== */

:root {
  /* --- color — nautical: white / ocean blue / navy / orange -------------
     Grounds are navy + ocean blue; orange is the single star; white is the
     light ground (pure #FFF per Philip). Token names kept across the swap. */
  --plum:        #004E72;   /* OCEAN BLUE — mid ground (statement, CTA, blue card) */
  --plum-900:    #092634;   /* NAVY — deepest: hero base, story panel, footer, text */
  --plum-lift:   #0A5578;   /* lifted blue — statement band                */
  --coral:       #FF6E42;   /* ORANGE — the star: name, highlights, action */
  --coral-deep:  #F2571F;   /* orange hover                                */
  --coral-soft:  #FF9E7E;   /* soft orange                                */
  --gold:        #004E72;   /* spare accent (no gold in palette) -> blue   */
  --terracotta:  #092634;   /* story panel now = navy                     */
  --terra-deep:  #061A24;
  --cream:       #FFFFFF;   /* white light ground (per Philip: FFF)        */
  --cream-deep:  #EEF3F6;   /* faint cool-tinted alt panel                */
  --ink:         #092634;   /* text on white (navy)                       */
  --ink-60:      #526670;   /* secondary text on white (muted navy)       */
  --cream-70:    #BFD2DB;   /* secondary text on navy/blue (cool light)   */
  --cream-45:    rgba(255,255,255,.5);
  --line-cream:  #E1E8EC;
  --line-plum:   rgba(255,255,255,.16);

  /* --- type ------------------------------------------------------------- */
  --serif: "Gloock", "Spectral", Georgia, serif;
  --sans:  "Figtree", "Helvetica Neue", Arial, system-ui, sans-serif;

  /* --- geometry --------------------------------------------------------- */
  --radius:   22px;
  --radius-sm:14px;
  --radius-lg: clamp(22px, 3vw, 40px);
  --pill:     999px;
  --wrap:     1180px;
  --gut:      clamp(1.25rem, 5vw, 4rem);
  --sect:     clamp(4.5rem, 9vw, 8rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ------------------------------------------------------------------ reset */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { overflow-x: hidden; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1rem, .55vw + .9rem, 1.1rem);
  line-height: 1.62;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

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

/* ------------------------------------------------------------- type roles */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -.01em; }

/* multi-color highlighted keyword + hand-drawn underline */
.hl { position: relative; white-space: nowrap; padding-bottom: .06em; }
.hl--coral { color: var(--coral); }
.hl--gold  { color: var(--gold); }
.hl--cream { color: var(--cream); }
.hl::after {
  content: ""; position: absolute; left: -.04em; right: -.04em; bottom: -.06em;
  height: .34em; background-repeat: no-repeat; background-position: center bottom;
  background-size: 100% 100%; pointer-events: none;
}
.hl--coral::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 14' preserveAspectRatio='none'%3E%3Cpath d='M3 9C50 3 90 3 130 7c38 4 70 3 107-3' fill='none' stroke='%23FF6E42' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
}
.hl--gold::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 14' preserveAspectRatio='none'%3E%3Cpath d='M3 9C50 3 90 3 130 7c38 4 70 3 107-3' fill='none' stroke='%2359B6E0' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
}
.hl--cream::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 14' preserveAspectRatio='none'%3E%3Cpath d='M3 9C50 3 90 3 130 7c38 4 70 3 107-3' fill='none' stroke='%23FF6E42' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 1.05em 1.6em; border-radius: var(--pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease);
}
.btn .arw { transition: transform .3s var(--ease); }
.btn:hover .arw { transform: translate(2px,-2px); }
.btn--coral { background: var(--coral); color: var(--plum-900); }
.btn--coral:hover { background: var(--coral-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--cream); border-color: var(--cream-45); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(255,255,255,.10); transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: #000; transform: translateY(-2px); }
.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: #fff; transform: translateY(-2px); }

/* text link with animated underline */
.tlink { position: relative; font-weight: 600; padding-bottom: 3px; }
.tlink::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: currentColor; transform: scaleX(.32); transform-origin: left;
  transition: transform .35s var(--ease); opacity: .8;
}
.tlink:hover::after { transform: scaleX(1); }
.tlink--coral { color: var(--coral); }

/* =====================================================================  NAV */
.nav { position: absolute; top: 0; left: 0; right: 0; z-index: 40; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.nav__brand { font-family: var(--serif); font-size: 1.6rem; color: var(--cream); letter-spacing: -.02em; }
.nav__brand b { color: var(--coral); font-weight: 400; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.nav__links > a { color: var(--cream); font-weight: 500; font-size: .98rem; opacity: .92; transition: opacity .2s, color .2s; }
.nav__links > a:hover { opacity: 1; color: var(--coral); }
.nav__cta { padding: .7em 1.15em; border-radius: var(--pill); background: var(--coral); color: var(--plum-900) !important; font-weight: 600; opacity: 1 !important; }
.nav__cta:hover { background: var(--coral-deep); }
.nav__toggle { display: none; background: none; border: 0; color: var(--cream); cursor: pointer; padding: 6px; }

/* sticky condensed state */
.nav.is-fixed { position: fixed; background: rgba(9,38,52,.88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line-plum); animation: navDrop .4s var(--ease); }
.nav.is-fixed .nav__inner { height: 66px; }
@keyframes navDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* ==================================================================== HERO */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; background: var(--plum-900); }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; will-change: transform; }
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: var(--pos, center); opacity: 0;
  animation: heroFade 21s var(--ease) infinite, heroZoom 21s ease-in-out infinite;
}
.hero__slide:nth-child(1) { animation-delay: 0s, 0s; }
.hero__slide:nth-child(2) { animation-delay: 7s, 7s; }
.hero__slide:nth-child(3) { animation-delay: 14s, 14s; }
@keyframes heroFade { 0% {opacity:0} 3% {opacity:1} 30% {opacity:1} 34% {opacity:0} 100% {opacity:0} }
@keyframes heroZoom { 0% {transform:scale(1.02)} 34% {transform:scale(1.10)} 100% {transform:scale(1.10)} }
@media (prefers-reduced-motion: reduce){
  .hero__slide { animation: none; opacity: 0; transform: none; }
  .hero__slide:nth-child(1) { opacity: 1; }
}
.hero__wash {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(125% 95% at 70% 22%, transparent 0%, rgba(9,38,52,.34) 78%),
    linear-gradient(202deg, rgba(0,78,114,.52) 0%, rgba(9,38,52,.14) 34%, rgba(9,38,52,.72) 72%, var(--plum-900) 100%),
    linear-gradient(0deg, rgba(9,38,52,.30), rgba(9,38,52,.30));
}
.hero__content { position: relative; z-index: 3; padding-bottom: clamp(3rem, 7vw, 6rem); padding-top: 120px; width: 100%; }
.hero__name {
  font-family: var(--serif); color: var(--coral);
  font-size: clamp(4rem, 14.5vw, 12rem); line-height: .9; letter-spacing: -.02em;
  text-shadow: 0 6px 40px rgba(9,38,52,.6);
}
.hero__name span { display: block; }
.hero__name .b2 { margin-left: .06em; }
.hero__sub { color: var(--cream); font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.5; max-width: 40ch; margin-top: 1.5rem; text-shadow: 0 2px 18px rgba(9,38,52,.65); }
.hero__sub b { color: var(--coral-soft); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

/* rotating badge stamp */
.stamp { position: absolute; z-index: 5; right: clamp(1rem, 5vw, 4rem); bottom: -46px;
  width: 118px; height: 118px; display: grid; place-items: center; color: var(--cream); }
.stamp__ring { position: absolute; inset: 0; animation: spin 22s linear infinite; }
.stamp__ring text { font-family: var(--sans); font-size: 11.3px; font-weight: 600; letter-spacing: .12em; fill: var(--cream); text-transform: uppercase; }
.stamp__disc { width: 118px; height: 118px; border-radius: 50%; background: var(--coral); box-shadow: 0 14px 34px rgba(9,38,52,.4); display: grid; place-items: center; }
.stamp__mono { font-family: var(--serif); font-size: 2.1rem; color: var(--plum-900); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .stamp__ring { animation: none; } }

/* ================================================================ SECTIONS */
.section { padding-block: var(--sect); }
.section--plum   { background: var(--plum); color: var(--cream); }
.section--lift   { background: var(--plum-lift); color: var(--cream); }
.section--cream  { background: var(--cream); color: var(--ink); }
.section--creamd { background: var(--cream-deep); color: var(--ink); }

/* section heading block */
.sec-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-title { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -.015em; }
.sec-lead { font-size: 1.1rem; line-height: 1.55; }
.section--cream .sec-lead, .section--creamd .sec-lead { color: var(--ink-60); }
.section--plum .sec-lead, .section--lift .sec-lead { color: var(--cream-70); }

/* ---------------------------------------------------- VALUE STATEMENT band */
.statement { background: var(--plum-lift); color: var(--cream); padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.statement__big { font-family: var(--serif); font-size: clamp(1.85rem, 4.3vw, 3.5rem); line-height: 1.18; letter-spacing: -.01em; max-width: 20ch; }
.statement__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); margin-top: clamp(2rem, 4vw, 3rem); max-width: 760px; }
.statement__cols p { color: var(--cream-70); font-size: 1.05rem; }
.statement__cols em { color: var(--cream); font-style: normal; font-weight: 600; }
.statement__cta { margin-top: 2.4rem; }

/* ------------------------------------------------------------- STORY block */
.story {
  background: var(--terracotta); color: var(--cream);
  border-radius: var(--radius-lg);
  margin: clamp(3rem, 7vw, 6.5rem) clamp(1rem, 4vw, 3rem);
  padding-block: clamp(3.5rem, 7vw, 6rem);
  position: relative;
}
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story__body h2 { font-family: var(--sans); font-weight: 800; text-transform: uppercase; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.04; letter-spacing: -.01em; }
.story__body h2 .u { color: var(--coral); }
.story__lead { font-size: clamp(1.1rem, 1.5vw, 1.35rem); font-family: var(--serif); line-height: 1.4; margin-top: 1.4rem; }
.story__p { color: #D7E2E8; margin-top: 1.1rem; max-width: 52ch; }
.story__p em { font-style: normal; color: var(--cream); font-weight: 600; border-bottom: 2px solid rgba(255,255,255,.4); }
.story__cta { margin-top: 2rem; }
.story__media { position: relative; }
.story__media .m-main { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; width: 100%; box-shadow: 0 30px 60px rgba(9,38,52,.35); }
.story__media .m-inset { position: absolute; width: 45%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius-sm); right: -8px; bottom: -22px; border: 5px solid var(--terracotta); box-shadow: 0 18px 40px rgba(9,38,52,.4); }
.story__tag { position: absolute; top: -14px; left: -12px; background: var(--coral); color: var(--plum-900); font-weight: 700; font-size: .85rem; padding: .5em .9em; border-radius: var(--pill); transform: rotate(-4deg); box-shadow: 0 10px 24px rgba(9,38,52,.3); }

/* --------------------------------------------------------------- OFFERS */
.offers { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.offer { border-radius: var(--radius); padding: clamp(1.6rem, 2.4vw, 2.2rem); display: flex; flex-direction: column; min-height: 100%; transition: transform .3s var(--ease); }
.offer:hover { transform: translateY(-6px); }
.offer--navy  { background: var(--plum-900);  color: var(--cream); }
.offer--coral { background: var(--coral);      color: var(--plum-900); }
.offer--blue  { background: var(--plum);       color: var(--cream); }
.offer__num { font-family: var(--serif); font-size: 1.5rem; opacity: .55; }
.offer h3 { font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.05; margin-top: .3rem; }
.offer__sub { font-weight: 600; font-size: .95rem; margin-top: .8rem; opacity: .82; }
.offer ul { margin-top: 1rem; display: grid; gap: .55rem; }
.offer li { position: relative; padding-left: 1.3rem; font-size: .98rem; line-height: 1.4; opacity: .92; }
.offer li::before { content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px; border-radius: 50%; background: currentColor; opacity: .55; }
.offer--gold li::before { opacity: .7; }

/* --------------------------------------------------------------- YOUTH */
.youth__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.youth__body h2 { font-family: var(--serif); font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.04; }
.youth__body p { margin-top: 1.2rem; color: var(--ink-60); max-width: 46ch; }
.youth__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.youth__actions .btn--ghost { color: var(--ink); border-color: rgba(9,38,52,.25); }
.youth__actions .btn--ghost:hover { border-color: var(--ink); background: rgba(9,38,52,.04); }

/* video facade */
.video { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; cursor: pointer; box-shadow: 0 24px 50px rgba(9,38,52,.22); }
.video img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.video:hover img { transform: scale(1.04); }
.video__play { position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; background: var(--coral); color: var(--plum-900); border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(9,38,52,.35); }
.video__play svg { width: 30px; height: 30px; margin-left: 4px; }

/* --------------------------------------------------------------- PROOF */
.proof__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.proof__media { position: relative; }
.proof__media img { border-radius: var(--radius); height: 100%; min-height: 460px; object-fit: cover; object-position: center 30%; width: 100%; }
.quotes { display: grid; gap: 1.4rem; }
.quote { background: var(--cream); border-radius: var(--radius); padding: clamp(1.5rem, 2.5vw, 2.1rem); border: 1px solid var(--line-cream); }
.quote p { font-family: var(--serif); font-size: clamp(1.15rem, 1.7vw, 1.5rem); line-height: 1.35; }
.quote .qm { color: var(--coral); }
.quote figcaption { margin-top: 1rem; font-size: .95rem; color: var(--ink-60); }
.quote figcaption b { color: var(--ink); font-weight: 700; }
.press { margin-top: clamp(2.5rem, 5vw, 3.5rem); display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.1rem; padding-top: 1.8rem; border-top: 1px solid var(--line-cream); }
.press__label { font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-60); }
.press__list { font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--ink); display: flex; flex-wrap: wrap; gap: .5rem .7rem; }
.press__list span { color: var(--coral); }

/* --------------------------------------------------------------- BOOKS */
.books__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.books__intro h2 { font-family: var(--serif); font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.02; }
.books__intro p { margin-top: 1.1rem; color: var(--ink-60); max-width: 40ch; }
.books__cta { margin-top: 1.6rem; }
.books__cta .tlink { color: var(--plum); }
.books__row { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(.8rem, 1.6vw, 1.3rem); }
.book { display: flex; flex-direction: column; gap: .7rem; transition: transform .3s var(--ease); }
.book:hover { transform: translateY(-6px); }
.book img { border-radius: 10px; aspect-ratio: 3/4; object-fit: cover; width: 100%; box-shadow: 0 16px 34px rgba(9,38,52,.22); }
.book__t { font-size: .9rem; line-height: 1.3; color: var(--ink-60); }

/* --------------------------------------------------------------- CTA */
.cta { background: var(--plum); color: var(--cream); text-align: center; padding-block: clamp(5rem, 10vw, 9rem); position: relative; overflow: hidden; }
.cta__title { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -.02em; max-width: 16ch; margin-inline: auto; }
.cta p { color: var(--cream-70); max-width: 50ch; margin: 1.4rem auto 0; font-size: 1.1rem; }
.cta__actions { margin-top: 2.2rem; }
.cta__contact { margin-top: 2rem; font-size: .98rem; color: var(--cream-70); }
.cta__contact a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.45); text-underline-offset: 3px; }
.cta__contact a:hover { text-decoration-color: var(--coral); }

/* --------------------------------------------------------------- FOOTER */
.footer { background: var(--plum-900); color: var(--cream-70); padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.footer__brand { font-family: var(--serif); font-size: 1.8rem; color: var(--cream); }
.footer__brand b { color: var(--coral); font-weight: 400; }
.footer__top > div > p { margin-top: .8rem; max-width: 42ch; font-size: .98rem; }
.footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.footer__col h4 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream); opacity: .7; margin-bottom: .9rem; }
.footer__col a { display: block; padding: .28rem 0; color: var(--cream-70); font-size: .96rem; transition: color .2s; }
.footer__col a:hover { color: var(--coral); }
.footer__bottom { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.6rem; border-top: 1px solid var(--line-plum); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .88rem; }
.socials { display: flex; gap: .6rem; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-plum); display: grid; place-items: center; color: var(--cream-70); transition: all .2s; }
.socials a:hover { color: var(--plum-900); background: var(--coral); border-color: var(--coral); }
.socials svg { width: 18px; height: 18px; }

/* ------------------------------------------------------------ animations */
.rise { opacity: 0; transform: translateY(22px); }
.js-anim .rise { animation: rise .9s var(--ease) forwards; }
.js-anim .hero .rise { animation-delay: .1s; }
.js-anim .hero .d2 { animation-delay: .24s; }
.js-anim .hero .d3 { animation-delay: .38s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* scroll-reveal — a focus-pull: rise + settle-scale + de-blur, springy ease.
   Variants add direction (left/right) or an image wipe (clip). */
.js-anim .reveal {
  opacity: 0; transform: translateY(38px) scale(.965); filter: blur(9px);
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .95s cubic-bezier(.16,1,.3,1), filter .7s ease-out, clip-path .95s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--i, 0) * 110ms);
}
.js-anim .reveal--left  { transform: translateX(-52px) translateY(6px) scale(.985); filter: blur(7px); }
.js-anim .reveal--right { transform: translateX(52px)  translateY(6px) scale(.985); filter: blur(7px); }
.js-anim .reveal--clip  { transform: translateY(0) scale(1.02); filter: blur(0); clip-path: inset(0 0 100% 0 round var(--radius)); }
.js-anim .reveal.is-in  { opacity: 1; transform: none; filter: none; clip-path: inset(0 0 0% 0 round var(--radius)); }

@media (prefers-reduced-motion: reduce){
  .rise { opacity: 1 !important; transform: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; transition: none !important; }
}

/* film-grain texture — one fixed overlay, high-contrast speckle so it reads */
.grain { position: fixed; inset: -30%; z-index: 90; pointer-events: none; opacity: .22; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='linear' slope='2.8' intercept='-0.85'/%3E%3CfeFuncG type='linear' slope='2.8' intercept='-0.85'/%3E%3CfeFuncB type='linear' slope='2.8' intercept='-0.85'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 170px 170px; }
@media (prefers-reduced-motion: no-preference){
  .grain { animation: grainShift 1.1s steps(5) infinite; }
}
@keyframes grainShift {
  0%{transform:translate(0,0)} 20%{transform:translate(-5%,4%)} 40%{transform:translate(4%,-3%)}
  60%{transform:translate(-3%,5%)} 80%{transform:translate(5%,-4%)} 100%{transform:translate(0,0)}
}

/* ============================================================ RESPONSIVE */
@media (max-width: 900px) {
  .nav__links { position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; align-items: flex-start;
    gap: 1.1rem; background: var(--plum-900); padding: 92px var(--gut) 2rem; transform: translateY(-100%);
    transition: transform .4s var(--ease); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
  .nav.is-open .nav__links { transform: translateY(0); }
  .nav__toggle { display: block; position: relative; z-index: 60; }
  .nav.is-open .nav__toggle { color: var(--cream); }
  .nav__links > a { font-size: 1.3rem; }
  .sec-head { grid-template-columns: 1fr; }
  .story__grid, .youth__grid, .proof__grid, .books__grid, .footer__top { grid-template-columns: 1fr; }
  .offers { grid-template-columns: 1fr; }
  .statement__cols { grid-template-columns: 1fr; }
  .story__media { max-width: 460px; }
  .story__media .m-inset { width: 42%; }
  .books__row { grid-template-columns: repeat(4,1fr); }
  .proof__media { max-width: 480px; }
}
@media (max-width: 560px) {
  .hero__actions { gap: .6rem; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .books__row { grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .stamp { width: 96px; height: 96px; bottom: -38px; }
  .stamp__disc { width: 96px; height: 96px; }
}
