/* ==========================================================================
   Wellah — v5 "Ivory & Umber" (design.md Ref E — Irulan clone)
   Lora serif + Instrument Sans. Ivory canvas, warm umber ink, cream panels,
   floating nav pill, vertical hairline grid, two-tone headings, pill tags.
   ========================================================================== */

:root {
  --ivory: #FAF8F4;
  --cream: #EBE6DE;
  --cream-soft: #F1EDE6;
  --umber: #3D2E1E;
  --umber-deep: #2E2114;
  --taupe: #8C7E6F;
  --bark: #57493A;
  --line: rgba(61, 46, 30, 0.14);
  --line-light: rgba(250, 248, 244, 0.22);

  --font-display: "Lora", serif;
  --font-body: "Instrument Sans", sans-serif;

  --gutter: clamp(1.25rem, 4vw, 4rem);
  --gap: clamp(5rem, 11vw, 10rem);
  --radius: 16px;

  --ease-calm: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* No CSS scroll-behavior: it conflicts with Lenis (causes stuck/jerky scroll).
   Lenis handles smoothness; reduced-motion users get native instant scroll. */

/* Lenis recommended styles */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  background: var(--ivory);
  color: var(--umber);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--bark);
  outline-offset: 3px;
}

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

/* ---------- Type ---------- */

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--umber);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
}

.tag--dark { background: rgba(250, 248, 244, 0.14); color: var(--ivory); }

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 1.1rem 0 clamp(2rem, 4vw, 3.2rem);
}

.h2 em, .hero__title em, .prefooter__title em {
  font-style: normal;
  color: var(--taupe);
}

.h2--light { color: var(--ivory); }
.h2--light em { color: rgba(250, 248, 244, 0.55); }

.h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.3;
}

.line { display: block; overflow: hidden; }
.line__inner { display: inline-block; will-change: transform; }

/* ---------- Buttons (Ref E: rectangular + square arrow companion) ---------- */

.btn {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.7rem 1.3rem;
  border-radius: 9px;
  transition: background-color 0.3s var(--ease-calm), color 0.3s var(--ease-calm), transform 0.3s var(--ease-calm);
}

.btn:hover { transform: translateY(-2px); }

.btn--bark { background: var(--bark); color: var(--ivory); }
.btn--bark:hover { background: var(--umber); }

.btn--ivory { background: var(--ivory); color: var(--umber); }
.btn--ivory:hover { background: var(--cream); }

.btn-sq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 9px;
  background: var(--bark);
  color: var(--ivory);
  font-size: 1rem;
  transition: background-color 0.3s var(--ease-calm), transform 0.3s var(--ease-calm);
}

.btn-sq:hover { background: var(--umber); transform: translateX(3px); }

.btn-sq--ivory { background: var(--ivory); color: var(--umber); }
.btn-sq--ivory:hover { background: var(--cream); }

.btn-pair { display: flex; align-items: center; gap: 0.5rem; }

.btn-circle-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--umber);
  font-size: 1.05rem;
  transition: background-color 0.3s var(--ease-calm), transform 0.3s var(--ease-calm);
}

.btn-circle-sm:hover { background: var(--cream); transform: scale(1.06); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--umber);
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.8rem 1.4rem;
  border-radius: 0 0 0.6rem 0;
}

.skip-link:focus { left: 0; }

/* ---------- Floating nav pill ---------- */

/* Full-width transparent header over the hero — minimal, not sticky. */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  max-width: 90rem;
  margin: 0 auto;
  padding: 1.4rem var(--gutter);
  color: var(--ivory);
}

/* Header CTA — identical components to the hero's button pair */
.nav__cta { margin-left: auto; }

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

.nav__logo span { color: rgba(250, 248, 244, 0.6); }

/* Centered glass pill for menu items; CTA sits far right */
.nav__menu {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(250, 248, 244, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(250, 248, 244, 0.25);
  border-radius: 999px;
  padding: 0.2rem 0.3rem;
}


.nav__list { list-style: none; display: flex; gap: 0.2rem; }

.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  color: var(--umber);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  transition: background-color 0.25s var(--ease-calm);
}

.nav__link:hover { background: rgba(61, 46, 30, 0.09); }

.nav__panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  min-width: 13.5rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px -20px rgba(46, 33, 20, 0.35);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: opacity 0.28s var(--ease-calm), transform 0.28s var(--ease-calm), visibility 0.28s;
}

.nav__item.is-open .nav__panel,
.nav__item--drop:hover .nav__panel,
.nav__item--drop:focus-within .nav__panel {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.nav__panel-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 0.35rem 0.7rem 0.55rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.35rem;
}

.nav__panel a {
  font-size: 0.88rem;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  color: rgba(61, 46, 30, 0.75);
  transition: background-color 0.2s var(--ease-calm), color 0.2s var(--ease-calm);
}

.nav__panel a:hover { background: var(--cream); color: var(--umber); }

.nav__panel .soon { font-size: 0.7em; color: var(--taupe); letter-spacing: 0.08em; }


.nav__toggle {
  display: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 248, 244, 0.5);
  color: var(--ivory);
  margin-left: auto;
}

.nav__mobile[hidden] { display: none; }

.nav__mobile {
  position: absolute;
  top: 5.4rem;
  left: 1rem;
  right: 1rem;
  z-index: 49;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem;
  box-shadow: 0 24px 48px -20px rgba(46, 33, 20, 0.4);
}

.nav__mobile details { border-bottom: 1px solid var(--line); padding-bottom: 0.8rem; }

.nav__mobile summary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
}

.nav__mobile summary::after { content: " +"; color: var(--taupe); }

.nav__mobile details a { display: block; padding: 0.4rem 0; color: rgba(61, 46, 30, 0.75); }
.nav__mobile details a:first-of-type { margin-top: 0.5rem; }
.nav__mobile .btn { align-self: flex-start; }

/* ---------- Sections shell ---------- */

.section {
  padding: 0 var(--gutter);
  margin-top: var(--gap);
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ivory);
  overflow: clip;
}

.hero__bg { position: absolute; inset: 0; }

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
  filter: sepia(0.18) saturate(0.95) brightness(0.85);
}

.hero__sound {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1.2rem, 3vw, 2.5rem);
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(46, 33, 20, 0.45);
  border: 1px solid rgba(250, 248, 244, 0.4);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  backdrop-filter: blur(8px);
  transition: background-color 0.3s var(--ease-calm), border-color 0.3s var(--ease-calm);
}

.hero__sound:hover { background: rgba(46, 33, 20, 0.7); border-color: var(--ivory); }

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(3, 11, 9, 0.85) 0%, rgba(3, 11, 9, 0.58) 55%, rgba(3, 11, 9, 0.72) 100%);
}

.hero__content {
  position: relative;
  padding: 7.5rem var(--gutter) 0;
  max-width: 90rem;
  margin: 0 auto;
  width: 100%;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  max-width: 14em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}

.hero__title em { color: inherit; }

.hero__sub {
  margin-top: 1.4rem;
  max-width: 34em;
  font-size: 1.18rem;
  color: rgba(250, 248, 244, 0.88);
}

.hero__actions { display: flex; align-items: center; gap: 0.5rem; margin-top: 2rem; }

.hero__stats {
  position: relative;
  list-style: none;
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: 0 var(--gutter) clamp(1.8rem, 4vw, 3rem);
  max-width: 90rem;
  margin: auto auto 0;
  width: 100%;
}

.hero__stats li { flex: 0 1 auto; padding-right: clamp(1.5rem, 4vw, 3.5rem); }

.hero__stats li + li { border-left: 1px solid rgba(250, 248, 244, 0.3); padding-left: clamp(1.5rem, 4vw, 3.5rem); }

.hero__stat-num {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
}

.hero__stat-label {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: rgba(250, 248, 244, 0.75);
  white-space: nowrap;
}

/* ---------- Statement with inline images ---------- */

.statement-block {
  margin-top: var(--gap);
  padding: 0 var(--gutter);
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.statement-block__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1.35;
}

.statement-block__text img {
  display: inline-block;
  vertical-align: middle;
  width: clamp(3.4rem, 6vw, 5rem);
  height: clamp(2.3rem, 4vw, 3.4rem);
  object-fit: cover;
  border-radius: 10px;
  margin: 0 0.35em;
}

/* ---------- Services — numbered rows ---------- */

.services__rows { border-top: 1px solid var(--line); }

.srow {
  display: grid;
  grid-template-columns: minmax(14rem, 24rem) minmax(11rem, 1fr) 1.4fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 4vw, 3.2rem) 0;
  border-bottom: 1px solid var(--line);
}

.srow__media { overflow: hidden; border-radius: var(--radius); height: clamp(15rem, 26vw, 20rem); }

.srow__media img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
}

.srow__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--taupe);
  margin-bottom: 1.2rem;
}

.srow__list { list-style: none; }

.srow__list li {
  font-size: 0.98rem;
  color: rgba(61, 46, 30, 0.82);
  padding: 0.35rem 0;
}

.srow__list li::before { content: "•  "; color: var(--taupe); }

.srow__body .h3 { margin-bottom: 0.8rem; }

.srow__body p { color: rgba(61, 46, 30, 0.75); max-width: 34em; margin-bottom: 1.5rem; }

/* ---------- Programs — accordion + tilted notecard ---------- */

.programs__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.programs__visual { position: relative; padding-bottom: 5rem; }

.programs__photo { overflow: hidden; border-radius: var(--radius); }

.programs__photo img {
  width: 100%;
  height: clamp(20rem, 36vw, 27rem);
  object-fit: cover;
}

.notecard {
  position: absolute;
  right: clamp(-0.5rem, 1vw, 1rem);
  bottom: 0;
  width: min(78%, 19rem);
  background: var(--umber);
  color: var(--ivory);
  border-radius: 14px;
  padding: 1.4rem;
  transform: rotate(-5deg);
  box-shadow: 0 30px 60px -30px rgba(46, 33, 20, 0.6);
}

.notecard p { font-size: 0.88rem; line-height: 1.6; color: rgba(250, 248, 244, 0.85); margin-bottom: 1.1rem; }

/* Accordions */

.accordion { display: flex; flex-direction: column; }

.accordion__item { border-bottom: 1px solid var(--line); }

.accordion--chips { gap: 0.7rem; }

.accordion--chips .accordion__item {
  border: none;
  background: var(--cream);
  border-radius: 12px;
}

.accordion__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 1.15rem 0.2rem;
}

.accordion--chips .accordion__item summary { padding: 1.1rem 1.3rem; }

.accordion__item summary::-webkit-details-marker { display: none; }

.accordion__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--bark);
  color: var(--ivory);
  font-size: 1rem;
  transition: transform 0.3s var(--ease-calm);
}

.accordion__item[open] .accordion__icon { transform: rotate(45deg); }

.accordion__body { padding: 0 0.2rem 1.2rem; }

.accordion--chips .accordion__body { padding: 0 1.3rem 1.2rem; }

.accordion__body p { font-size: 1rem; color: rgba(61, 46, 30, 0.78); max-width: 40em; }

/* ---------- Stories — dark panel slider ---------- */

.stories__panel {
  background: var(--umber);
  color: var(--ivory);
  border-radius: 20px;
  padding: clamp(2rem, 4.5vw, 4rem);
}

.stories__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stories__navs { display: flex; gap: 0.5rem; }

.stories__slider { position: relative; margin-top: clamp(1.5rem, 3vw, 2.5rem); min-height: 16rem; }

.storyslide {
  position: absolute;
  inset: 0;
  background: var(--cream);
  color: var(--umber);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(11rem, 0.65fr) 1.35fr;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 0.55s var(--ease-calm), transform 0.55s var(--ease-calm), visibility 0.55s;
}

.storyslide__photo { overflow: hidden; }

.storyslide__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 16rem;
}

.storyslide__body {
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
}

.storyslide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.storyslide__marks {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--bark);
  margin-bottom: 1.2rem;
}

.storyslide p {
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.45;
  max-width: 30em;
}

.storyslide__body footer {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
}

.storyslide footer span { font-weight: 400; color: var(--taupe); }

/* ---------- Journal cards ---------- */

.journal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.jcard {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: clamp(18rem, 34vw, 23rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  color: var(--ivory);
}

/* No CSS scale transition here — GSAP drives this image's transform every
   frame (parallax), and a competing CSS transition causes flicker. */
.jcard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
}

.jcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(46, 33, 20, 0.05) 40%, rgba(46, 33, 20, 0.66));
}

.jcard__tag {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(250, 248, 244, 0.92);
  color: var(--umber);
  padding: 0.32rem 0.7rem;
  border-radius: 6px;
}

.jcard__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
  max-width: 14em;
}

/* ---------- FAQ ---------- */

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.begin-card {
  background: var(--cream);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  max-width: 28rem;
}

.begin-card .h3 { margin-bottom: 0.8rem; }

.begin-card p { font-size: 1rem; color: rgba(61, 46, 30, 0.78); margin-bottom: 1.4rem; }

/* ---------- Pre-footer + footer ---------- */

.prefooter {
  position: relative;
  margin-top: var(--gap);
  color: var(--ivory);
  overflow: clip;
}

.prefooter__bg { position: absolute; inset: 0; }

.prefooter__bg img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}

.prefooter__scrim { position: absolute; inset: 0; background: rgba(46, 33, 20, 0.82); }

.prefooter__content {
  position: relative;
  max-width: 90rem;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter) clamp(3rem, 6vw, 5rem);
}

.prefooter__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.08;
  margin-bottom: 2rem;
}

.footer {
  position: relative;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 var(--gutter) 1.5rem;
}

.footer__card {
  background: var(--ivory);
  color: var(--umber);
  border-radius: 18px;
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
}

.footer__brand .h3 { margin-bottom: 1rem; }

.footer__brand p { font-size: 1rem; color: rgba(61, 46, 30, 0.72); max-width: 30em; margin-bottom: 1.2rem; }

.footer__mail { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.footer__col { display: flex; flex-direction: column; gap: 0.6rem; }

.footer__head {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}

.footer__col a {
  font-size: 0.92rem;
  color: rgba(61, 46, 30, 0.75);
  transition: color 0.25s var(--ease-calm);
}

.footer__col a:hover { color: var(--umber); }

.footer__legal {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.8rem;
  color: rgba(250, 248, 244, 0.65);
}

.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(6rem, 18vw, 16rem);
  line-height: 0.95;
  text-align: center;
  margin-top: 1rem;
  background: linear-gradient(180deg, rgba(250, 248, 244, 0.65), rgba(250, 248, 244, 0.05));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .srow { grid-template-columns: 1fr 1fr; }
  .srow__media { grid-column: 1 / -1; height: clamp(13rem, 40vw, 18rem); }
  .journal__grid { grid-template-columns: 1fr; }
  .footer__card { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .programs__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 1rem; }
  .hero__stats li { padding-right: 0; }
  .hero__stats li + li { border-left: none; border-top: 1px solid rgba(250, 248, 244, 0.3); padding-left: 0; padding-top: 1rem; }
  .storyslide { grid-template-columns: 1fr; }
  .storyslide__photo img { height: 13rem; min-height: 0; }
}

@media (max-width: 820px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav { gap: 0.8rem; padding-right: 0.55rem; }
  .srow { grid-template-columns: 1fr; }
  .footer__card { grid-template-columns: 1fr; }
}

@media (min-width: 821px) {
  .nav__mobile { display: none !important; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
}
