/* =======================================================
   Neo Academy — Insta360-inspired home (v2)
   Pairs with home.html and level detail pages.
   ======================================================= */

:root {
  /* Totoro palette (kept across the v2 design) */
  --ink: #1d1d1f;
  --ink-80: #3a3a3d;
  --ink-60: #6e6e73;
  --ink-40: #a1a1a6;
  --hairline: #e5e5ea;

  --bg: #ffffff;
  --bg-alt: #f6f6f8;
  --bg-soft: #eceef1;

  --forest: #4f7361;
  --forest-700: #3d5a4c;
  --forest-100: #dfe8df;
  --butter: #f4d35e;
  --sky: #a8c5d9;
  --rose: #e8b4a8;
  --coral: #e89c7d;
  --sage: #a3b88f;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --pill: 980px;

  --container: 1280px;
  --gutter: 24px;

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

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
}
p { margin: 0; color: var(--ink-80); }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Nav ---------- */
/* Temporarily hidden — remove these two lines to bring the menu back.
   The logo and the Contact-us button stay visible. */
.nav__links,
.nav__toggle { display: none !important; }
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 0 var(--gutter);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  background: transparent;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav__logo {
  height: 40px;
  width: auto;
  transition: opacity 0.2s var(--ease);
  /* On dark hero the logo needs to be visible against video. */
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.25));
}
.nav--scrolled .nav__logo { filter: none; }
.nav__brand:hover .nav__logo { opacity: 0.85; }
.nav__links {
  display: none;
  margin-left: auto;
  gap: 30px;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  opacity: 0.92;
  transition: opacity 0.2s var(--ease), color 0.3s var(--ease);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}
.nav--scrolled .nav__links a {
  color: var(--ink);
  opacity: 1;
  text-shadow: none;
}
.nav__links a:hover { opacity: 0.7; }
.nav__cta { display: none; margin-left: 8px; }
.nav__toggle {
  margin-left: auto;
  width: 40px; height: 40px;
  display: grid; place-items: center; gap: 4px;
  background: transparent; border: 0; padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), background 0.3s var(--ease);
}
.nav--scrolled .nav__toggle span { background: var(--ink); box-shadow: none; }
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 859px) {
  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(20px);
    padding: 18px var(--gutter) 24px;
    gap: 16px;
    border-bottom: 1px solid var(--hairline);
  }
  .nav--open .nav__links a {
    color: var(--ink);
    text-shadow: none;
    font-size: 17px;
    opacity: 1;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #000; }
.btn--primary.btn--icon { background: #25D366; color: #fff; }
.btn--primary.btn--icon:hover { background: #1fb657; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--wa { background: #25D366; color: #fff; padding: 16px 28px; font-size: 16px; }
.btn--wa:hover { background: #1fb657; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn__icon { flex: none; }

/* ---------- Hero video section ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
  overflow: hidden;
  background: #0d0f11;
  color: #fff;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.75) 100%),
    linear-gradient(to right, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}
.hero__copy {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(48px, 10vh, 120px);
  padding: 0 var(--gutter);
  text-align: center;
}
.hero__title {
  color: #fff;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.hero__sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

/* ---------- Level picker section ---------- */
.picker {
  padding: clamp(96px, 14vh, 160px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.picker__title {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.picker__sub {
  color: var(--ink-60);
  font-size: clamp(17px, 2vw, 22px);
  max-width: 640px;
  margin: 0 auto 56px;
}
.picker__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.picker__btn {
  padding: 16px 28px;
  min-width: 140px;
  border-radius: var(--pill);
  background: var(--bg);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1.15;
}
.picker__btn:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.picker__btn small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.picker__btn:hover small { color: rgba(255, 255, 255, 0.7); }
.picker__btn--soon {
  border-color: var(--hairline);
  color: var(--ink-60);
  background: var(--bg-alt);
}
.picker__btn--soon:hover {
  background: var(--bg-soft);
  color: var(--ink-80);
  transform: none;
}
.picker__btn--soon small { color: var(--ink-40); }

/* ---------- Levels grid (home, replaces pill picker) ---------- */
.levels-section {
  padding: clamp(96px, 14vh, 160px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.levels-section__head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 56px;
}
.levels-section__eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--forest);
  margin-bottom: 18px;
}
.levels-section__title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.levels-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.level-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.level-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -26px rgba(15, 23, 42, 0.28);
}
.level-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}
.level-card__media :is(img, video) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.level-card:hover .level-card__media :is(img, video) { transform: scale(1.04); }
.level-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.level-card__body h3 {
  font-size: 28px;
  line-height: 1.1;
}
.level-card__body p {
  color: var(--ink-60);
  font-size: 15px;
  line-height: 1.5;
  flex: 1;
}
.level-card__chip {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: var(--pill);
  background: var(--forest-100);
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 600;
}
.level-card__chip--primary { background: var(--sky); color: var(--ink); }
.level-card__chip--soon {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--ink-60);
}
.level-card__cta {
  color: var(--forest);
  font-weight: 500;
  font-size: 15px;
  margin-top: 4px;
}
.level-card__cta--muted { color: var(--ink-40); }

.level-card--soon { background: var(--bg-alt); }
.level-card--soon .level-card__media :is(img, video) {
  opacity: 0.7;
  filter: saturate(0.7);
}
.level-card--soon:hover {
  transform: none;
  box-shadow: none;
}

@media (min-width: 640px) {
  .levels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .levels-grid {
    grid-template-columns: repeat(2, minmax(0, 360px));
    justify-content: center;
  }
}

/* ---------- Video reel (peek carousel like DJI) ---------- */
.reel {
  padding: clamp(64px, 10vh, 120px) 0 clamp(80px, 10vh, 120px);
  background: var(--bg);
  overflow: hidden;
}
.reel__stage {
  position: relative;
}
.reel__track {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0 15%;
  transition: transform 0.9s var(--ease);
  will-change: transform;
}
.reel__track--snap { transition: none; }
.reel__slide {
  flex: 0 0 70%;
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0d0f11;
  box-shadow: 0 24px 48px -28px rgba(15, 23, 42, 0.35);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), opacity 0.6s var(--ease);
  opacity: 0.55;
  transform: scale(0.94);
}
.reel__slide.is-active {
  opacity: 1;
  transform: none;
}
.reel__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  background: transparent;
}
.reel__slide-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.reel__slide-poster:not([src]) { display: none; }
.reel__caption--mobile { display: none; }
@media (max-width: 540px) {
  .reel__caption--desktop { display: none; }
  .reel__caption--mobile { display: block; }
}
.reel__slide::after {
  content: "";
  position: absolute;
  inset: 45% 0 0 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.reel__caption {
  position: absolute;
  left: clamp(20px, 2.6vw, 40px);
  bottom: clamp(20px, 3vh, 36px);
  z-index: 1;
  max-width: 460px;
}
.reel__chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.reel__cap-text {
  color: #fff;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
}

/* Arrow nav */
.reel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.reel__nav:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.06);
}
.reel__nav:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }
.reel__nav--prev { left: clamp(8px, 2vw, 24px); }
.reel__nav--next { right: clamp(8px, 2vw, 24px); }

/* Timeline bars — track shows gray background, fill grows with active video's playback */
.reel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.reel__dot {
  position: relative;
  overflow: hidden;
  width: 36px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.reel__dot:hover { background: rgba(0, 0, 0, 0.3); }
.reel__dot-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--ink);
  border-radius: 2px;
  pointer-events: none;
}
/* Past slides: keep the bar fully filled to show progress through the set */
.reel__dot--done .reel__dot-fill { width: 100%; }

@media (max-width: 859px) {
  .reel__track { padding: 0 10%; }
  .reel__slide { flex: 0 0 80%; }
  .reel__nav { width: 36px; height: 36px; }
}
@media (max-width: 540px) {
  .reel__track { padding: 0 6%; gap: 10px; }
  .reel__slide { flex: 0 0 88%; aspect-ratio: 2 / 3; }
  .hero {
    height: auto;
    aspect-ratio: 9 / 16;
    min-height: 0;
    max-height: none;
  }
}

/* ---------- Contact / WhatsApp CTA section ---------- */
.cta {
  background: var(--bg-alt);
  padding: clamp(80px, 12vh, 140px) var(--gutter);
}
.cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.cta__title {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  margin-bottom: 16px;
}
.cta__lead {
  color: var(--ink-60);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 640px;
  margin: 0 auto 40px;
}
.cta__wa { margin-bottom: 64px; }
.cta__wa svg { width: 22px; height: 22px; }

/* Compact CTA layout used on the homepage: equal vertical rhythm between
   title, WhatsApp button, and campus cards. */
.cta--simple .cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.cta--simple .cta__title { margin-bottom: 0; }
.cta--simple .cta__wa { margin-bottom: 0; }
.cta--simple .campuses { width: 100%; }

.campuses {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.campus {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.campus__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
}
.campus h3 {
  font-size: 22px;
  line-height: 1.25;
}
.campus__addr {
  color: var(--ink-60);
  font-size: 15px;
  line-height: 1.55;
  margin: 4px 0 8px;
}
.campus__hours {
  color: var(--ink-60);
  font-size: 14px;
  margin-bottom: 4px;
}
.campus__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.campus__links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid var(--ink-40);
  padding-bottom: 2px;
}
.campus__links a:hover { border-bottom-color: var(--ink); }

.cta__hours {
  margin-top: 28px;
  font-size: 14px;
  color: var(--ink-60);
}

/* ---------- Footer ---------- */
.footer {
  padding: 32px var(--gutter);
  text-align: center;
  color: var(--ink-60);
  font-size: 13px;
  border-top: 1px solid var(--hairline);
  background: var(--bg);
}
.footer a { color: var(--ink-60); }
.footer a:hover { color: var(--ink); }

/* ---------- Level detail pages ---------- */
.detail-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
}
.detail-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
}
.detail-hero__copy {
  position: absolute;
  left: 0; right: 0;
  bottom: 80px;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.detail-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  margin-bottom: 18px;
}
.detail-hero__title {
  color: #fff;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
  max-width: 12ch;
}
.detail-hero__sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.8vw, 20px);
  margin-top: 16px;
  max-width: 560px;
}

.section {
  padding: clamp(72px, 10vh, 128px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.section--alt { background: var(--bg-alt); max-width: none; }
.section--alt > * { max-width: var(--container); margin-left: auto; margin-right: auto; }

.feature {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr;
}
.feature__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}
.feature__media :is(img, video) { width: 100%; height: 100%; object-fit: cover; }
.feature__body h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  margin-bottom: 16px;
}
.feature__body p { color: var(--ink-60); font-size: 17px; margin-bottom: 14px; }
.feature__body .btn { margin-top: 12px; }

.tiles {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}
.tile :is(img, video) { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.tile:hover :is(img, video) { transform: scale(1.04); }
.tile figcaption {
  position: absolute;
  left: 20px;
  bottom: 16px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-60);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}
.back-link:hover { color: var(--ink); }

.coming-soon {
  text-align: center;
  padding: clamp(96px, 16vh, 180px) var(--gutter);
  max-width: 720px;
  margin: 0 auto;
}
.coming-soon__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--pill);
  background: var(--forest-100);
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.coming-soon__title {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.coming-soon__lead {
  color: var(--ink-60);
  font-size: clamp(16px, 1.8vw, 20px);
  margin-bottom: 36px;
}

/* ---------- Breakpoints ---------- */
@media (min-width: 640px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .campuses { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
  :root { --gutter: 40px; }
  .nav__links { display: inline-flex; margin-left: 40px; margin-right: auto; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .feature { grid-template-columns: 1fr 1fr; gap: 80px; }
  .feature--reverse .feature__media { order: 2; }
}

/* ---------- Accessibility ---------- */
:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
