/* ============================================================
   Шухи-Поктой — лендинг природного заказника
   Палитра: тёплая тайга. Шрифты: Playfair Display + Manrope.
   ============================================================ */

:root {
  --cream:     #f4f0e6;
  --cream-2:   #ece4d2;
  --sand:      #ede4cf;
  --ink:       #1c2a1f;
  --ink-soft:  #5c6457;
  --forest:    #14241a;
  --forest-2:  #20402b;
  --moss:      #5d7c4e;
  --gold:      #b8893f;
  --gold-soft: #cda86a;
  --line:      rgba(28, 42, 31, 0.16);
  --line-light:rgba(244, 240, 230, 0.22);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, 'Segoe UI', sans-serif;

  --header-h: 78px;
  --shell: 1180px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- сброс ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg { display: block; max-width: 100%; }

img { height: auto; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul, ol { list-style: none; padding: 0; }

::selection { background: var(--gold-soft); color: var(--forest); }

/* ---------- служебное ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 4vw, 3rem);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -200px;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  background: var(--forest);
  color: var(--cream);
  border-radius: 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- общие типографические элементы ---------- */
.eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--light { color: var(--gold-soft); }

.sec-index {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}
.sec-index span { color: var(--gold); }

.sec-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.sec-intro {
  margin-top: 1.1rem;
  max-width: 46ch;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.prose {
  max-width: 60ch;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.prose + .prose { margin-top: 1.1rem; }
.prose--light { color: rgba(244, 240, 230, 0.78); }

/* ---------- секции ---------- */
.section {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
}
.section--cream { background: var(--cream); }
.section--sand  { background: var(--sand); }
.section--dark  { background: var(--forest); color: var(--cream); }

/* ============================================================
   ШАПКА
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  --hd-fg: var(--cream);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled,
.site-header.nav-open {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--line), 0 14px 30px -24px rgba(20, 36, 26, 0.5);
  --hd-fg: var(--ink);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--hd-fg);
  transition: color 0.35s var(--ease);
}
.brand__mark { width: 34px; height: 34px; }
.bm-ring  { stroke: currentColor; }
.bm-front { fill: currentColor; }
.bm-back  { fill: currentColor; opacity: 0.4; }
.bm-sun   { fill: var(--gold-soft); }
.brand__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: 0.01em;
}
.brand__dot { color: var(--gold); }
.brand__text--light { color: var(--cream); }

.site-nav {
  display: flex;
  gap: 2rem;
}
.site-nav a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--hd-fg);
  padding: 0.3rem 0;
  transition: color 0.25s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.site-nav a:hover { color: var(--gold); }
.site-nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--hd-fg);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   ГЕРОЙ
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(5rem, 11vh, 9.5rem);
  overflow: hidden;
  color: var(--cream);
}
.hero__bg {
  position: absolute;
  inset: -8% 0;
  background: url('../assets/img/hero-taiga.jpg') center 38% / cover no-repeat;
  will-change: transform;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 36, 26, 0.55) 0%, rgba(20, 36, 26, 0.08) 32%,
      rgba(20, 36, 26, 0.45) 66%, rgba(20, 36, 26, 0.92) 100%),
    radial-gradient(120% 80% at 70% 20%, transparent 40%, rgba(20, 36, 26, 0.5));
}
.hero__inner { position: relative; }

.hero__kicker {
  font-size: clamp(0.72rem, 1.4vw, 0.86rem);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.6rem, 13vw, 10.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-shadow: 0 14px 50px rgba(10, 18, 12, 0.55);
}
.hero__lead {
  margin-top: 1.6rem;
  max-width: 30ch;
  font-size: clamp(1.05rem, 2.1vw, 1.4rem);
  line-height: 1.55;
  color: rgba(244, 240, 230, 0.9);
}
.hero__meta {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: rgba(244, 240, 230, 0.72);
}
.hero__meta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__aside {
  position: absolute;
  top: 50%;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 240, 230, 0.6);
  writing-mode: vertical-rl;
}
.hero__aside--left  { left: 1.4rem; transform: translateY(-50%); }
.hero__aside--right { right: 1.4rem; transform: translateY(-50%) rotate(180deg); }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(244, 240, 230, 0.8);
}
.hero__scroll-line {
  width: 1.5px;
  height: 54px;
  background: linear-gradient(var(--gold-soft), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
.hero__scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50%      { transform: scaleY(1);   opacity: 1;   transform-origin: top; }
}

/* ============================================================
   01 — О ЗАКАЗНИКЕ
   ============================================================ */
.lead-statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.7vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
.lead-statement em {
  font-style: italic;
  color: var(--gold);
}
.lead-statement + .prose { margin-top: 1.8rem; }

.stats {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--cream);
  padding: 1.9rem 1.6rem;
  display: flex;
  flex-direction: column;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1;
  color: var(--forest-2);
  letter-spacing: -0.02em;
}
.stat__unit {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.stat__label {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ============================================================
   ФИЧА — КЕДР
   ============================================================ */
.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.feature__media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.feature__media img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.feature__media:hover img { transform: scale(1.05); }
.feature__media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.9rem;
  background: rgba(20, 36, 26, 0.82);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-radius: 6px;
}
.feature__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  margin: 0.8rem 0 1.3rem;
}
.feature__body .eyebrow { display: block; }

/* ============================================================
   ИМЯ — тёмная секция
   ============================================================ */
.name { overflow: hidden; }
.name__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/img/forest.jpg') center / cover no-repeat;
  opacity: 0.32;
}
.name__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--forest), rgba(20, 36, 26, 0.7), var(--forest));
}
.name__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.name__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  line-height: 1.32;
  margin: 1.4rem 0 1.8rem;
  max-width: 18ch;
}
.name__quote em { font-style: italic; color: var(--gold-soft); }
.name .prose { text-align: center; }

/* ============================================================
   02 — ПРИРОДА / КАРТОЧКИ
   ============================================================ */
.group-title {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: clamp(2.6rem, 5vw, 4rem) 0 1.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
}
.group-title span { flex: none; }
.group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.cards { display: grid; gap: 1.5rem; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fbf9f1;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 50px -28px rgba(20, 36, 26, 0.55);
}
.card__media {
  position: relative;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.card--tall .card__media img { aspect-ratio: 4 / 4.6; }
.card:hover .card__media img { transform: scale(1.07); }
.card__media img[src*='bear']  { object-position: center 64%; }
.card__media img[src*='cedar'] { object-position: center 32%; }

.card__tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.34rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(20, 36, 26, 0.86);
  color: var(--cream);
  border-radius: 5px;
  backdrop-filter: blur(3px);
}
.card__tag--red {
  background: #8d3b2c;
}
.card__body { padding: 1.3rem 1.3rem 1.5rem; }
.card__latin {
  font-style: italic;
  font-size: 0.84rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.36rem;
  line-height: 1.2;
}
.card__text {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   03 — ГЕОГРАФИЯ
   ============================================================ */
.geo__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.geo__body .sec-title { margin-top: 0.4rem; }
.geo__body .prose { margin-top: 1.2rem; }

.geo__facts {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}
.geo__fact-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--forest-2);
}
.geo__fact-label {
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.geo__art {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 55px -34px rgba(20, 36, 26, 0.55);
}
.geomap { width: 100%; height: auto; display: block; }
.geo__art figcaption {
  padding: 0.8rem 1rem;
  background: #fbf9f1;
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

/* ============================================================
   ИСТОРИЯ — таймлайн
   ============================================================ */
.timeline {
  margin-top: clamp(2.4rem, 5vw, 4rem);
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  right: 7px;
  top: 7px;
  height: 2px;
  background: var(--line);
}
.timeline__item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-right: 1.6rem;
}
.timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  order: -2;
}
.timeline__year {
  order: -1;
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--forest-2);
}
.timeline__text {
  margin-top: 0.7rem;
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   МИССИЯ — тёмная секция
   ============================================================ */
.mission__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.12;
  margin-top: 0.9rem;
  max-width: 18ch;
}
.mission__grid {
  margin-top: clamp(2.6rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.mission__item {
  background: var(--forest);
  padding: 2rem 1.6rem 2.2rem;
}
.mission__num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: 0.1em;
}
.mission__item h3 {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.32rem;
  line-height: 1.2;
}
.mission__item p {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(244, 240, 230, 0.7);
}

/* ============================================================
   ПОДВАЛ
   ============================================================ */
.site-footer {
  background: #101d14;
  color: var(--cream);
  padding-block: clamp(3.5rem, 7vw, 6rem) 2.5rem;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid var(--line-light);
}
.footer__brand .brand__text--light { font-size: 1.5rem; }
.footer__tagline {
  margin-top: 0.8rem;
  max-width: 34ch;
  color: rgba(244, 240, 230, 0.62);
  font-size: 0.96rem;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  text-align: right;
}
.footer__nav a {
  font-size: 0.95rem;
  color: rgba(244, 240, 230, 0.78);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--gold-soft); }

/* блок продажи домена */
.domain {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  flex-wrap: wrap;
  padding: 1.7rem 1.9rem;
  background: linear-gradient(120deg, #1a2c1f, #1f3a29);
  border: 1px solid var(--line-light);
  border-radius: 10px;
}
.domain__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.domain__headline {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
}
.domain__desc {
  margin-top: 0.4rem;
  font-size: 0.92rem;
  color: rgba(244, 240, 230, 0.66);
  max-width: 46ch;
}
.domain__desc strong { color: var(--cream); font-weight: 600; }
.domain__btn {
  flex: none;
  padding: 0.9rem 1.5rem;
  background: var(--gold);
  color: #1a130a;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.25s, transform 0.25s var(--ease);
}
.domain__btn:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.footer__bottom {
  margin-top: 2.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__credits {
  max-width: 64ch;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(244, 240, 230, 0.42);
}
.footer__copy {
  font-size: 0.78rem;
  color: rgba(244, 240, 230, 0.42);
  white-space: nowrap;
}

/* ============================================================
   АНИМАЦИИ ПОЯВЛЕНИЯ
   ============================================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.cards .card:nth-child(2) { transition-delay: 0.1s; }
.cards .card:nth-child(3) { transition-delay: 0.2s; }
.cards .card:nth-child(4) { transition-delay: 0.3s; }
.stats .stat:nth-child(2) { transition-delay: 0.08s; }
.stats .stat:nth-child(3) { transition-delay: 0.16s; }
.stats .stat:nth-child(4) { transition-delay: 0.24s; }
.timeline__item:nth-child(2) { transition-delay: 0.1s; }
.timeline__item:nth-child(3) { transition-delay: 0.2s; }
.timeline__item:nth-child(4) { transition-delay: 0.3s; }
.mission__item:nth-child(2) { transition-delay: 0.1s; }
.mission__item:nth-child(3) { transition-delay: 0.2s; }
.mission__item:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 1000px) {
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .geo__grid { grid-template-columns: 1fr; }
  .geo__art { order: -1; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    padding: 0.5rem clamp(1.2rem, 4vw, 3rem) 1.4rem;
    box-shadow: 0 20px 30px -22px rgba(20, 36, 26, 0.6);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-open .site-nav { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a {
    --hd-fg: var(--ink);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .site-nav a::after { display: none; }

  .feature__grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature__media img { aspect-ratio: 16 / 11; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before {
    left: 6px; right: auto; top: 6px; bottom: 6px;
    width: 2px; height: auto;
  }
  .timeline__item {
    padding: 0 0 1.9rem 2.2rem;
  }
  .timeline__item:last-child { padding-bottom: 0; }
  .timeline__dot { position: absolute; left: 0; top: 4px; }
  .timeline__year { margin-top: 0; }
  .mission__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__aside { display: none; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .cards--3,
  .cards--4 { grid-template-columns: 1fr; }
  .card--tall .card__media img { aspect-ratio: 4 / 3.2; }
  .stats { grid-template-columns: 1fr; }
  .mission__grid { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; gap: 1.6rem; }
  .footer__nav { text-align: left; }
  .domain { flex-direction: column; align-items: flex-start; }
  .domain__btn { width: 100%; text-align: center; }
  .footer__bottom { flex-direction: column; }
  .footer__copy { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll-line { animation: none; }
  .card:hover { transform: none; }
}
