/* ============================================================
   HumanIA — The University for Life
   Design system extracted from the supplied design (v3).
   ============================================================ */

:root {
  --paper: #F1EBE1;
  --paper-2: #EBE3D7;
  --card: #E7DDCD;
  --deep: #221B16;
  --deep-2: #1A1511;
  --ink: #3E342C;
  --ink-70: rgba(62, 52, 44, .82);
  --ink-55: rgba(62, 52, 44, .72);
  --ink-40: rgba(62, 52, 44, .5);
  --rule: rgba(62, 52, 44, .2);
  --rule-soft: rgba(62, 52, 44, .13);
  --accent: #A4552F;
  --brand: #62DDE8;
  --glow: #E0A075;
  --glow-2: #F0C4A2;
  --light: #F6F1E9;
  --light-84: rgba(246, 241, 233, .84);
  --light-72: rgba(246, 241, 233, .72);
  --light-56: rgba(246, 241, 233, .56);
  --rule-light: rgba(241, 235, 225, .24);

  --sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --display: 'Outfit', system-ui, sans-serif;

  --wrap: 1500px;
  --pad-x: clamp(20px, 4.6vw, 72px);
  --gutter: clamp(52px, 8vw, 150px);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--paper); overflow-x: hidden; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p { margin: 0; text-wrap: pretty; }
h1, h2, h3, h4 { margin: 0; text-wrap: balance; font-family: var(--display); font-weight: 300; }
img { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--ink); }
::selection { background: rgba(164, 85, 47, .18); }

/* Visible keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  background: var(--deep);
  color: var(--light);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: .85rem;
}
.skip-link:focus { left: 12px; color: var(--light); }

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad-x); }
.section { padding: clamp(76px, 9.5vw, 150px) 0; }
.section--tight { padding: clamp(60px, 7vw, 120px) 0; }
.on-paper { background: var(--paper); }
.on-paper-2 { background: var(--paper-2); }
.on-deep { background: var(--deep); color: var(--light); }

.eyebrow {
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.on-deep .eyebrow { color: var(--light-72); }

/* Numbered section header: [nn] | content */
.sec-head {
  display: grid;
  grid-template-columns: clamp(52px, 8vw, 150px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 60px);
  align-items: start;
}
.sec-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: .74rem;
  letter-spacing: .2em;
  color: var(--accent);
  padding-top: .6em;
}
.on-deep .sec-num { color: var(--glow); }

.h2 {
  margin-top: 24px;
  font-weight: 200;
  font-size: clamp(2.1rem, 5.4vw, 5rem);
  line-height: 1.06;
  letter-spacing: -.038em;
}
.on-deep .h2 { color: var(--light); }
.accent { color: var(--accent); font-weight: 300; }
.on-deep .accent, .glow { color: var(--glow); font-weight: 300; }
em { font-style: italic; }

.lede {
  font-size: clamp(1.04rem, 1.3vw, 1.22rem);
  line-height: 1.72;
  color: var(--ink-70);
}
.indent { padding-left: clamp(0px, 11vw, 210px); }

.measure { max-width: 56ch; }
.measure-sm { max-width: 46ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: .86rem;
  font-weight: 400;
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, box-shadow .3s ease;
  white-space: nowrap;
}
.btn--solid { color: var(--deep); background: var(--paper); }
.btn--solid:hover { color: var(--deep); background: var(--glow); }
.btn--dark { color: var(--light); background: var(--deep); }
.btn--dark:hover { color: var(--light); background: var(--ink); }
.btn--ghost-light { color: var(--light); box-shadow: inset 0 0 0 1px rgba(246, 241, 233, .4); }
.btn--ghost-light:hover { color: var(--light); box-shadow: inset 0 0 0 1px rgba(246, 241, 233, .9); }
.btn--ghost-dark { color: var(--ink); box-shadow: inset 0 0 0 1px rgba(62, 52, 44, .4); }
.btn--ghost-dark:hover { color: var(--light); background: var(--deep); box-shadow: inset 0 0 0 1px var(--deep); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Masthead ---------- */
.mast {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  transition: background .5s ease, box-shadow .5s ease, backdrop-filter .5s ease;
}
.mast__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.mast__logo { flex: none; display: flex; align-items: center; }
.mast__logo img { height: 26px; width: auto; }
.nav { display: flex; gap: clamp(12px, 1.6vw, 26px); align-items: center; }
.nav a[data-navlink] {
  font-size: .8rem;
  font-weight: 300;
  color: var(--light-72);
  white-space: nowrap;
}
.nav a[data-navlink]:hover { color: var(--light); }
.mast.is-solid { background: rgba(34, 27, 22, .95); backdrop-filter: saturate(1.1) blur(8px); }
.nav__cta {
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 400;
  color: var(--deep) !important;
  background: var(--paper);
  padding: 11px 22px;
  border-radius: 999px;
}
.nav__cta:hover { background: var(--card); }
.nav__toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--deep-2);
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: sepia(.24) saturate(1.02) brightness(.82) contrast(1.02);
  animation: settle 3.4s var(--ease) both;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(26, 21, 17, .94) 0%, rgba(26, 21, 17, .82) 28%,
    rgba(26, 21, 17, .58) 52%, rgba(26, 21, 17, .3) 78%, rgba(26, 21, 17, .5) 100%);
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(52px, 7vw, 104px);
}
.tagline { display: flex; align-items: center; gap: 16px; animation: rise .9s var(--ease) .15s both; }
.tagline__line { display: block; width: 38px; height: 1px; background: var(--glow-2); }
.tagline__text {
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--light);
}
.hero__wordmark {
  margin-top: clamp(22px, 3vw, 44px);
  animation: rise 1.05s var(--ease) .22s both;
}
.hero__wordmark img { width: clamp(250px, 44vw, 640px); height: auto; }
.hero__sub {
  margin-top: clamp(18px, 2.2vw, 34px);
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(1.7rem, 4.6vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -.035em;
  color: var(--light);
  animation: rise 1.05s var(--ease) .32s both;
}
.hero__sub .glow { font-weight: 300; }
.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(24px, 4vw, 80px);
  align-items: end;
  margin-top: clamp(28px, 3.4vw, 48px);
  animation: rise 1.05s var(--ease) .42s both;
}
.hero__lede { font-size: clamp(1.02rem, 1.24vw, 1.18rem); line-height: 1.74; color: var(--light-84); max-width: 48ch; }
.hero__aside { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.hero__aside p { font-size: clamp(1.04rem, 1.28vw, 1.2rem); line-height: 1.55; color: var(--light); max-width: 34ch; font-weight: 400; }

/* ---------- Marquee stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); gap: clamp(18px, 3vw, 60px); }
.stat { border-top: 1px solid var(--rule); padding-top: 16px; }
.stat b { display: block; font-family: var(--display); font-weight: 300; font-size: clamp(1.3rem, 1.9vw, 1.7rem); letter-spacing: -.02em; }
.stat span { display: block; font-size: .94rem; color: var(--ink-70); margin-top: 6px; }

/* ---------- Generic content blocks ---------- */
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(26px, 4vw, 84px);
}
.cols-start { align-items: start; }
.cols-end { align-items: end; }

/* Definition rows (numbered / dash lists) */
.deflist { border-top: 1px solid var(--rule); }
.deflist.two { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); gap: 0 clamp(30px, 5vw, 96px); }
.defrow { display: flex; gap: 22px; padding: 19px 0; border-bottom: 1px solid var(--rule-soft); }
.defrow .n { font-family: var(--display); font-weight: 300; font-size: .82rem; color: var(--accent); flex: none; padding-top: .42em; width: 1.8em; }
.defrow .t { font-size: 1.04rem; line-height: 1.55; }

/* Small feature cards atop hairline */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 0 clamp(26px, 3.4vw, 56px); }
.feature { padding: 22px 0 34px; border-top: 1px solid var(--rule); }
.feature h3, .feature h4 { font-weight: 400; font-size: 1.16rem; line-height: 1.24; letter-spacing: -.02em; }
.feature p { font-size: .98rem; line-height: 1.64; color: var(--ink-70); margin-top: 10px; }
.feature .kicker { font-family: var(--display); font-size: .7rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.on-deep .feature { border-top-color: var(--rule-light); }
.on-deep .feature h3, .on-deep .feature h4 { color: var(--light); }
.on-deep .feature p { color: var(--light-72); }

/* Panel (soft card) */
.panel { background: var(--card); padding: clamp(26px, 3.4vw, 52px); border-radius: 4px; }
.on-deep .panel { background: rgba(241, 235, 225, .06); box-shadow: inset 0 0 0 1px rgba(241, 235, 225, .16); }
.panel--glass { background: rgba(241, 235, 225, .06); box-shadow: inset 0 0 0 1px rgba(241, 235, 225, .16); border-radius: 4px; }

/* dash list */
.dash { display: flex; flex-direction: column; gap: 12px; }
.dash > div { display: flex; gap: 14px; font-size: 1rem; line-height: 1.5; }
.dash .m { color: var(--accent); flex: none; }
.on-deep .dash .m { color: var(--glow); }

/* ---------- Photo bands / quotes ---------- */
.band {
  position: relative;
  min-height: clamp(380px, 56vw, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep-2);
}
.band--tall { min-height: clamp(420px, 62vw, 780px); }
.band--bottom { align-items: flex-end; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: sepia(.3) saturate(.98) brightness(.72) contrast(1.04); }
.band__scrim { position: absolute; inset: 0; }
.scrim-l { background: linear-gradient(100deg, rgba(26,21,17,.9) 0%, rgba(26,21,17,.58) 50%, rgba(26,21,17,.3) 100%); }
.scrim-b { background: linear-gradient(to top, rgba(26,21,17,.9) 0%, rgba(26,21,17,.5) 55%, rgba(26,21,17,.24) 100%); }
.band__inner { position: relative; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: clamp(56px, 7vw, 110px) var(--pad-x); }
.pull {
  margin: 0;
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(1.6rem, 4.2vw, 4rem);
  line-height: 1.14;
  letter-spacing: -.032em;
  color: var(--light);
  max-width: 22ch;
}
.pull .glow { color: var(--glow); }

/* ---------- Accordions (pathways / faq) ---------- */
.accordion { border-bottom: 1px solid var(--rule); }
details { border-top: 1px solid var(--rule); }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
.plus {
  font-family: var(--display);
  font-weight: 200;
  line-height: 1;
  color: var(--accent);
  transition: transform .42s var(--ease);
}
details[open] .plus { transform: rotate(45deg); }

.path-sum {
  display: grid;
  grid-template-columns: clamp(38px, 5vw, 80px) 1fr auto;
  gap: clamp(12px, 2.4vw, 40px);
  align-items: baseline;
  padding: clamp(20px, 2.6vw, 32px) 0;
}
.path-sum .n { font-family: var(--display); font-weight: 300; font-size: .82rem; color: var(--accent); }
.path-sum .title { display: block; font-family: var(--display); font-weight: 300; font-size: clamp(1.35rem, 2.9vw, 2.4rem); line-height: 1.1; letter-spacing: -.032em; }
.path-sum .desc { display: block; margin-top: 9px; font-size: 1rem; color: var(--ink-70); }
.path-sum .plus { font-size: 1.7rem; }
.path-body { display: grid; grid-template-columns: clamp(38px, 5vw, 80px) 1fr; gap: clamp(12px, 2.4vw, 40px); padding-bottom: clamp(26px, 3vw, 46px); }
.path-body__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: clamp(20px, 3vw, 56px); align-items: start; }
.path-body p { font-size: 1.04rem; line-height: 1.7; max-width: 50ch; }
.able .kicker { font-family: var(--display); font-size: .7rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-55); }
.able .list { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.able .list > div { display: flex; gap: 13px; font-size: 1rem; line-height: 1.5; }
.able .list .m { flex: none; color: var(--accent); }

/* FAQ */
.faq-sum { display: flex; justify-content: space-between; gap: 26px; align-items: baseline; padding: 22px 0; font-family: var(--display); font-weight: 300; font-size: clamp(1.12rem, 1.9vw, 1.5rem); letter-spacing: -.028em; line-height: 1.28; }
.faq-a { padding: 0 0 26px; font-size: 1.02rem; line-height: 1.74; color: var(--ink-70); max-width: 72ch; }
.faq-sum .plus { font-size: 1.5rem; flex: none; }

/* ---------- How it works steps ---------- */
.steps { border-bottom: 1px solid var(--rule); }
.step { display: grid; grid-template-columns: clamp(38px, 5vw, 80px) minmax(0, 1fr); gap: clamp(12px, 2.4vw, 40px); padding: clamp(22px, 2.8vw, 36px) 0; border-top: 1px solid var(--rule); }
.step .n { font-family: var(--display); font-weight: 300; font-size: .82rem; color: var(--accent); padding-top: .5em; }
.step__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: clamp(14px, 2.4vw, 52px); align-items: start; }
.step h3 { font-weight: 300; font-size: clamp(1.28rem, 2.3vw, 2rem); line-height: 1.12; letter-spacing: -.03em; max-width: 16ch; }
.step p { font-size: 1.02rem; line-height: 1.72; color: var(--ink-70); max-width: 58ch; }

/* ---------- Network / ecosystem cards ---------- */
.net-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(18px, 2.4vw, 32px); }
.net-card { background: var(--card); border-radius: 4px; padding: clamp(26px, 3vw, 44px); display: flex; flex-direction: column; }
.net-card .kicker { font-family: var(--display); font-size: .7rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.net-card h3 { margin-top: 12px; font-weight: 300; font-size: clamp(1.4rem, 2.3vw, 1.9rem); line-height: 1.14; letter-spacing: -.03em; }
.net-card .role { margin-top: 6px; font-family: var(--display); font-size: 1.02rem; color: var(--ink); }
.net-card p { margin-top: 14px; font-size: 1rem; line-height: 1.66; color: var(--ink-70); }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)); gap: 0; align-items: stretch; border-radius: 4px; overflow: hidden; }
.split__media { position: relative; min-height: 340px; background: var(--deep-2); }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: sepia(.24) saturate(1) brightness(.82) contrast(1.02); }

/* ---------- Ways in ---------- */
.ways { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.way { background: var(--card); border-radius: 4px; padding: clamp(28px, 3.2vw, 50px); display: flex; flex-direction: column; }
.way .kicker { font-family: var(--display); font-size: .7rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.way h3 { margin-top: 14px; font-weight: 300; font-size: clamp(1.5rem, 2.5vw, 2.1rem); line-height: 1.1; letter-spacing: -.034em; }
.way p { margin-top: 14px; font-size: 1.02rem; line-height: 1.68; color: var(--ink-70); }
.way .btn { margin-top: auto; align-self: flex-start; }
.way .btn-wrap { margin-top: 28px; }

/* ---------- Form ---------- */
.enrol { position: relative; overflow: hidden; background: var(--deep-2); color: var(--light); }
.enrol__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: sepia(.34) saturate(.9) brightness(.42) contrast(1.02); }
.enrol__scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,21,17,.82), rgba(26,21,17,.93)); }
.enrol__inner { position: relative; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.field label { font-family: var(--display); font-size: .68rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--light-56); }
.field input, .field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(246, 241, 233, .3);
  padding: 10px 0;
  font-size: 1.02rem;
  color: var(--light);
  outline: none;
  width: 100%;
  font-family: inherit;
}
.field select { appearance: none; cursor: pointer; }
.field input::placeholder { color: rgba(246, 241, 233, .38); }
.field input:focus, .field select:focus { border-bottom-color: var(--glow); }
.field option { background: var(--deep); color: var(--light); }
.form-note { margin-top: 16px; font-size: .9rem; color: var(--light-72); text-align: center; }
.form-btn { width: 100%; justify-content: center; }
.form-success h3 { font-weight: 300; font-size: 2rem; line-height: 1.1; letter-spacing: -.034em; color: var(--light); }
.form-success p { margin-top: 14px; font-size: 1.02rem; line-height: 1.7; color: var(--light-72); }
[hidden] { display: none !important; }

/* Sign-off */
.signoff { text-align: center; padding-top: clamp(40px, 5vw, 72px); }
.signoff .name { font-family: var(--display); font-weight: 200; font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -.03em; color: var(--light); }
.signoff .name .ia { color: var(--brand); font-weight: 300; }
.signoff .role { margin-top: 6px; font-family: var(--display); font-size: clamp(1rem, 1.6vw, 1.25rem); color: var(--light-72); letter-spacing: .02em; }

/* ---------- Footer ---------- */
.footer { padding: clamp(42px, 5vw, 72px) 0 clamp(36px, 4vw, 56px); background: var(--deep); color: var(--light); }
.footer__inner { display: flex; flex-wrap: wrap; gap: 34px; justify-content: space-between; align-items: flex-start; }
.footer__brand { display: flex; gap: 20px; align-items: flex-start; flex: 1 1 300px; }
.footer__brand img.iso { width: 26px; height: auto; margin-top: 2px; opacity: .85; }
.footer__brand img.word { height: 26px; width: auto; }
.footer__brand p { margin-top: 14px; font-size: 1.02rem; color: var(--light-72); max-width: 32ch; font-style: italic; }
.footer__meta { flex: 0 1 auto; text-align: right; font-size: .84rem; color: var(--light-72); line-height: 2.1; }
.footer__meta a { color: var(--glow); }
.footer__legal { max-width: var(--wrap); margin: clamp(30px, 4vw, 48px) auto 0; padding-inline: var(--pad-x); }
.footer__legal-inner { border-top: 1px solid var(--rule-light); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: space-between; font-size: .8rem; color: var(--light-56); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 1; }
.reveal-on [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-on [data-reveal].is-in { opacity: 1; transform: none; }

@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes settle { from { transform: scale(1.07); } to { transform: scale(1); } }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px; padding: 80px 32px; background: rgba(26, 21, 17, .98); backdrop-filter: blur(10px); transform: translateX(100%); transition: transform .4s var(--ease); }
  .nav.is-open { transform: none; }
  .nav a[data-navlink] { font-size: 1.1rem; color: var(--light-84); }
  .nav__cta { font-size: 1rem; }
  .nav__toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; z-index: 90; }
  .nav__toggle span { display: block; width: 24px; height: 1.5px; background: var(--light); transition: transform .3s ease, opacity .3s ease; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal-on [data-reveal] { opacity: 1 !important; transform: none !important; }
}
