/* ═══════════════════════════════════════════════
   TeenFEMM + TeenMEN
   Design: Calm educational — clear, grounded, parent-facing
   Fonts: Playfair Display (display) + DM Sans (body)
   ═══════════════════════════════════════════════ */

:root {
  --forest: #27485a;
  --forest-deep: #1d3643;
  --teal: #5f7b8a;
  --sage: #94aab3;
  --gold: #a86f56;
  --gold-light: #c7947b;
  --gold-bg: #f6ece7;
  --cream: #f7f4ef;
  --cream-dark: #ebe6df;
  --white: #ffffff;
  --ink: #24333b;
  --ink-mid: #50626c;
  --ink-light: #7a8d97;
  --ink-faint: #8ea0a9;
  --rose: #b7655d;
  --line: #d9d9d3;
  --line-light: #e8e6e0;
  --max: 1100px;
  --max-narrow: 720px;
  --nav-height: 64px;
  --scroll-offset: 112px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
}

body {
  font-family: "DM Sans", -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.2em; }
li { margin-top: 0.25em; }

.wrap {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
}
.wrap--narrow {
  width: min(calc(100% - 3rem), var(--max-narrow));
}

#program,
#leaders,
#contact {
  scroll-margin-top: var(--scroll-offset);
}

/* ─── Typography ─── */

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 2rem;
  border: none;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 8px 20px rgba(39, 72, 90, 0.16);
}
.btn--gold:hover {
  box-shadow: 0 10px 24px rgba(39, 72, 90, 0.2);
}
.btn--full { width: 100%; }

.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.09);
}

/* ═══ NAV ═══ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-light);
}

.nav__inner {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
}
.nav__logo-sub {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: background 200ms, color 200ms;
}
.nav__links a:hover {
  background: rgba(39, 72, 90, 0.06);
  color: var(--forest);
}
.nav__cta {
  background: var(--forest) !important;
  color: #fff !important;
}
.nav__cta:hover {
  background: var(--forest-deep) !important;
}

/* ═══ HERO ═══ */

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 128px 1.5rem 72px;
  background: linear-gradient(180deg, #f5f1ea 0%, #eef4f6 100%);
  color: var(--ink);
  overflow: hidden;
}

.hero__bg {
  display: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__orb--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  right: -5%;
  background: rgba(200, 146, 60, 0.15);
}
.hero__orb--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -8%;
  background: rgba(42, 107, 90, 0.2);
}
.hero__orb--3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(200, 146, 60, 0.06);
}

.hero__inner {
  position: relative;
  max-width: 860px;
  padding: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 56px rgba(36, 51, 59, 0.08);
}

.hero__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.4rem;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--forest);
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  max-width: 640px;
  margin: 1.75rem auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-mid);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__proofs {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero__proof {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--forest);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero__helper,
.cta__helper {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.hero__helper {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink-mid);
}

.hero__scroll {
  display: none;
}
.scroll-dot {
  animation: scroll-bob 2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { cy: 8; }
  50% { cy: 16; }
}

/* ═══ HIGHLIGHTS ═══ */

.highlights {
  padding: 5rem 0;
  background: var(--white);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.hi-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  transition: background 300ms var(--ease);
}
.hi-card:hover {
  background: #fbfaf7;
}

.hi-card__num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hi-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.hi-card p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ═══ PROGRAM ═══ */

.program {
  padding: 6rem 0;
  background: var(--cream);
}

.section-intro {
  margin-bottom: 3rem;
  max-width: 540px;
}
.section-intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-intro__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-intro__label--light {
  color: var(--teal);
}

.section-intro h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--forest);
}
.section-intro--light h2 {
  color: var(--forest);
}
.section-intro p {
  margin-top: 1rem;
  color: var(--ink-mid);
  font-size: 1.05rem;
  line-height: 1.75;
}
.section-intro--light p {
  color: var(--ink-mid);
}

.program__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.prog-card {
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-color 300ms;
}
.prog-card:hover {
  transform: none;
  box-shadow: 0 14px 34px rgba(36, 51, 59, 0.06);
  border-color: var(--teal);
}

.prog-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gold-bg);
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.prog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.prog-card p {
  color: var(--ink-mid);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ═══ AUDIENCE ═══ */

.audience {
  padding: 5rem 0;
  background: var(--white);
}

.audience__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.audience__text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--forest);
  margin-bottom: 1rem;
}
.audience__text p {
  color: var(--ink-mid);
  line-height: 1.75;
}

.audience__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
  background: var(--cream);
  transition: background 200ms, border-color 200ms, transform 200ms var(--ease);
}
.tag:hover {
  background: #fbfaf7;
  border-color: var(--teal);
  transform: none;
}

/* ═══ PILOT ═══ */

.pilot {
  padding: 6rem 0;
  background: var(--cream);
}

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

.pilot-card {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(27, 58, 45, 0.04);
}

.pilot-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.pilot-card p {
  color: var(--ink-mid);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ═══ LEADERS ═══ */

.leaders {
  padding: 6rem 0;
  background: var(--cream);
}

.leaders__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.leader {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.leader:hover {
  transform: none;
  box-shadow: 0 12px 32px rgba(36, 51, 59, 0.06);
}

.leader__badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold-bg);
  color: var(--gold);
  border: 1px solid rgba(200, 146, 60, 0.15);
  margin-bottom: 1.25rem;
}

.leader h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.leader__role {
  color: var(--ink-faint);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.leader p {
  color: var(--ink-mid);
  line-height: 1.7;
  font-size: 0.93rem;
}

.leader ul {
  margin-top: 1rem;
  color: var(--ink-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}

.leader__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal);
  text-decoration: none;
  transition: color 200ms;
}
.leader__link:hover { color: var(--gold); }

/* ═══ PROCESS ═══ */

.process {
  padding: 6rem 0;
  background: var(--white);
}

.process__track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process__line {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  z-index: 1;
}

.step {
  text-align: center;
}

.step__dot {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(27, 58, 45, 0.15);
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

/* ═══ FAQ ═══ */

.faq {
  padding: 6rem 0;
  background: var(--cream);
}

.faq__list {
  display: grid;
  gap: 0.5rem;
}

.faq__list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 200ms, box-shadow 200ms;
}
.faq__list details:hover {
  border-color: var(--ink-faint);
}
.faq__list details[open] {
  box-shadow: 0 4px 20px rgba(27, 58, 45, 0.05);
  border-color: var(--gold-light);
}

.faq__list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  gap: 1rem;
}
.faq__list summary::-webkit-details-marker { display: none; }

.faq__icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  position: relative;
  transition: background 200ms, transform 300ms var(--ease);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--teal);
  transform: translate(-50%, -50%);
  transition: transform 300ms var(--ease);
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
details[open] .faq__icon {
  background: var(--gold-bg);
}
details[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__list p {
  padding: 0 1.5rem 1.5rem;
  color: var(--ink-mid);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ═══ CTA / SIGNUP ═══ */

.cta {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, #eef4f6 0%, #f7f4ef 100%);
  color: var(--ink);
  overflow: hidden;
}

.cta__bg {
  display: none;
}
.cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cta__orb--1 {
  width: 400px;
  height: 400px;
  top: -20%;
  right: -10%;
  background: rgba(200, 146, 60, 0.12);
}
.cta__orb--2 {
  width: 350px;
  height: 350px;
  bottom: -15%;
  left: -5%;
  background: rgba(42, 107, 90, 0.15);
}

.cta__inner {
  position: relative;
}

.cta__trust {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.cta__trust-item {
  padding: 1rem 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.cta__trust-item strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-bg);
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.cta__trust-item p {
  color: var(--ink-mid);
  font-size: 0.9rem;
  line-height: 1.55;
}

.signup {
  position: relative;
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(36, 51, 59, 0.08);
}

.signup__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.signup__field {
  display: grid;
  gap: 0.35rem;
}
.signup__field--full {
  grid-column: 1 / -1;
}

.signup__field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
}

.opt {
  font-weight: 400;
  opacity: 0.8;
}

.signup__field input,
.signup__field textarea {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #faf9f6;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 0.93rem;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
  outline: none;
}
.signup__field input::placeholder,
.signup__field textarea::placeholder {
  color: var(--ink-light);
}
.signup__field input:focus,
.signup__field textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(95, 123, 138, 0.12);
}
.signup__field textarea {
  resize: vertical;
  min-height: 80px;
}

.signup__check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  padding: 0.25rem 0;
}
.signup__check input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  flex: none;
  accent-color: var(--forest);
  cursor: pointer;
}
.signup__check span {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.45;
}

.signup__check--required {
  padding-top: 0.35rem;
  border-top: 1px solid var(--line-light);
}

.signup__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup__kids-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.signup__kid-field {
  display: grid;
  gap: 0.25rem;
}
.signup__kid-field label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-mid);
}
.signup__kid-field input[type="number"] {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #faf9f6;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 0.93rem;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
  outline: none;
  width: 100%;
}
.signup__kid-field input[type="number"]::placeholder {
  color: var(--ink-light);
}
.signup__kid-field input[type="number"]:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(95, 123, 138, 0.12);
}

.signup__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-mid);
  margin-top: 0.25rem;
}

/* Signup states */
.form-success {
  text-align: center;
  padding: 2.5rem 0;
}
.form-success h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 44ch;
  margin: 0 auto;
}
.form-error {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #f8e9e7;
  border: 1px solid #e3b9b4;
  color: #7b3f39;
  font-size: 0.88rem;
}
button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* ═══ FOOTER ═══ */

.footer {
  padding: 3rem 0;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-align: center;
}
.footer__inner {
  display: grid;
  gap: 0.35rem;
}
.footer__brand {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.25rem;
}
.footer a {
  color: var(--gold-light);
  text-decoration: none;
}
.footer a:hover { text-decoration: underline; }

/* ═══ ANIMATIONS ═══ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

/* ═══ RESPONSIVE ═══ */

@media (max-width: 900px) {
  .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .program__grid {
    grid-template-columns: 1fr;
  }
  .audience__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pilot__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .leaders__grid {
    grid-template-columns: 1fr;
  }
  .process__line { display: none; }
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta__trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --scroll-offset: 88px;
  }

  .wrap, .wrap--narrow {
    width: calc(100% - 2rem);
  }
  .nav__inner { width: calc(100% - 2rem); }

  .nav__links a:not(.nav__cta) { display: none; }

  .hero {
    padding: 100px 1.25rem 60px;
    min-height: auto;
  }
  .hero__inner {
    padding: 2rem 1.4rem;
  }
  .hero__title {
    font-size: 2rem;
  }
  .hero__sub {
    font-size: 0.98rem;
  }
  .hero__scroll { display: none; }

  .highlights__grid {
    grid-template-columns: 1fr;
  }
  .program__grid,
  .pilot__grid,
  .process__steps {
    grid-template-columns: 1fr;
  }
  .signup__row {
    grid-template-columns: 1fr;
  }

  .signup {
    padding: 1.25rem;
  }

  .highlights, .program, .audience, .pilot, .leaders, .process, .faq, .cta {
    padding: 3.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
  .reveal { opacity: 1; transform: none; }
}
