:root {
  --ink: #101418;
  --paper: #ffffff;
  --mist: #f5f7f2;
  --line: #dfe6dc;
  --leaf: #0f7b64;
  --leaf-dark: #0b5949;
  --sun: #f6c453;
  --lava: #b55239;
  --ocean: #194b57;
  --muted: #66736e;
  --radius: 8px;
  --shadow: 0 14px 34px rgba(16, 20, 24, .12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sun), var(--leaf));
  box-shadow: 0 0 18px rgba(246, 196, 83, .45);
  pointer-events: none;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  background: #050706;
  color: rgba(255, 255, 255, .76);
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.top-strip__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-strip__links {
  display: flex;
  gap: 22px;
  white-space: nowrap;
}

.top-strip__right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-strip a:hover {
  color: var(--sun);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lang-switch__link {
  min-width: 36px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  color: rgba(255, 255, 255, .72);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lang-switch__link.is-active {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--ink);
}

.lang-switch--footer {
  margin-top: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(16, 20, 24, .08);
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform-origin: 50% 60%;
  animation: markFloat 5.5s ease-in-out infinite;
}

.brand__mark svg {
  width: 54px;
  height: 54px;
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__name {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__sub {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav__link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-bottom: 3px solid transparent;
  color: #25302d;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.main-nav__link:hover,
.main-nav__link.is-active {
  color: var(--leaf-dark);
  border-bottom-color: var(--sun);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav__link {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.mobile-nav__link.is-active {
  color: var(--leaf);
}

.mobile-nav__langs {
  display: flex;
  gap: 8px;
  padding: 16px 24px 20px;
}

.mobile-nav__langs .lang-switch__link {
  border-color: var(--line);
  color: var(--ink);
}

.mobile-nav__langs .lang-switch__link.is-active {
  border-color: var(--sun);
}

.hero {
  position: relative;
  min-height: 440px;
  height: clamp(460px, calc(100svh - 170px), 720px);
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.03) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  animation: heroDrift 20s ease-in-out infinite alternate;
  transition: transform .45s ease-out;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 6, .78) 0%, rgba(5, 7, 6, .48) 46%, rgba(5, 7, 6, .16) 100%),
    linear-gradient(0deg, rgba(5, 7, 6, .34), transparent 42%);
}

.hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sun);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3rem, 8vw, 6.9rem);
  animation: heroTextIn .8s ease both .1s;
}

.hero__lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1rem, 2vw, 1.22rem);
  animation: heroTextIn .8s ease both .22s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  animation: heroTextIn .8s ease both .34s;
}

.text-link,
.solid-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--radius);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.solid-link {
  background: var(--sun);
  color: var(--ink);
  padding: 0 20px;
}

.text-link {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .42);
  padding: 0 18px;
}

.solid-link:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.stats-band {
  background: var(--sun);
}

.stats-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 24px 18px;
  border-right: 1px solid rgba(16, 20, 24, .16);
  transition: background .25s ease, transform .25s ease;
}

.stat:last-child {
  border-right: 0;
}

.stat:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-2px);
}

.stat__value {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
}

.stat__label {
  display: block;
  margin-top: 5px;
  color: rgba(16, 20, 24, .66);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding: 86px 0;
}

.section--mist {
  background: var(--mist);
}

.section--dark {
  background: var(--ink);
  color: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 4rem);
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.section--dark .section-copy {
  color: rgba(255, 255, 255, .7);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.habitat-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease;
}

.habitat-card::before,
.spotlight-card::before,
.detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, transparent 10%, rgba(255, 255, 255, .18) 46%, transparent 70%);
  opacity: 0;
  transform: translateX(-110%);
  transition: transform .65s ease, opacity .25s ease;
  pointer-events: none;
}

.habitat-card:hover {
  box-shadow: 0 20px 44px rgba(16, 20, 24, .18);
  transform: translateY(-6px);
}

.habitat-card:hover::before,
.spotlight-card:hover::before,
.detail-card:hover::before {
  opacity: 1;
  transform: translateX(110%);
}

.habitat-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform .45s ease;
}

.habitat-card:hover img {
  transform: scale(1.04);
}

.habitat-card__body {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  color: var(--paper);
  background: linear-gradient(0deg, rgba(5, 7, 6, .86), rgba(5, 7, 6, 0));
}

.habitat-card h3 {
  margin: 0 0 7px;
  font-size: 1.15rem;
}

.habitat-card p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.feature-media {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 14px;
}

.feature-media img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-media img:last-child {
  height: 300px;
  align-self: end;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.feature-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  transition: transform .25s ease;
}

.feature-item:hover {
  transform: translateX(4px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #e7f3ec;
  color: var(--leaf-dark);
  font-weight: 900;
}

.feature-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.photo-section {
  background: linear-gradient(180deg, var(--paper), #f7f3e8);
  overflow: hidden;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 145px;
  gap: 14px;
}

.photo-tile {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease, filter .35s ease;
}

.photo-tile:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.photo-tile figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: var(--paper);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 6, .58), rgba(5, 7, 6, 0) 48%);
  pointer-events: none;
}

.photo-tile--1 {
  grid-column: span 5;
  grid-row: span 2;
}

.photo-tile--2 {
  grid-column: span 3;
  grid-row: span 1;
}

.photo-tile--3 {
  grid-column: span 4;
  grid-row: span 2;
}

.photo-tile--4,
.photo-tile--5 {
  grid-column: span 3;
}

.spotlight-section {
  position: relative;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.spotlight-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(16, 20, 24, .08);
  transition: transform .32s ease, box-shadow .32s ease;
}

.spotlight-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.spotlight-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .55s ease;
}

.spotlight-card:hover img {
  transform: scale(1.05);
}

.spotlight-card__body {
  padding: 20px;
}

.spotlight-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.spotlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.route-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(246, 196, 83, .16), transparent 32%),
    linear-gradient(180deg, var(--paper), #f3f7ee);
  overflow: hidden;
}

.route-shell {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 48px;
  align-items: start;
}

.route-copy {
  position: sticky;
  top: 136px;
}

.route-copy .section-copy {
  margin-top: 22px;
}

.route-steps {
  position: relative;
  display: grid;
  gap: 16px;
}

.route-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 29px;
  width: 2px;
  background: linear-gradient(var(--sun), var(--leaf));
  opacity: .55;
}

.route-step {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 26px rgba(16, 20, 24, .07);
  backdrop-filter: blur(10px);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.route-step:hover {
  border-color: rgba(15, 123, 100, .28);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.route-step span {
  position: relative;
  z-index: 1;
  grid-row: 1 / 3;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--sun);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.route-step h3 {
  grid-column: 2;
  margin: 2px 0 6px;
  font-size: 1.1rem;
}

.route-step p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.detail-section {
  background: linear-gradient(180deg, var(--paper), #f8fbf4);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.detail-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(246, 196, 83, .13), transparent 42%),
    var(--paper);
  box-shadow: 0 10px 24px rgba(16, 20, 24, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.detail-card:hover {
  border-color: rgba(15, 123, 100, .28);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.detail-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
}

.page-hero {
  min-height: 330px;
  display: flex;
  align-items: end;
  color: var(--paper);
  background-image: linear-gradient(90deg, rgba(5, 7, 6, .78), rgba(5, 7, 6, .28)), var(--page-image);
  background-position: center;
  background-size: cover;
}

.page-hero__content {
  padding: 70px 0 54px;
}

.page-hero h1 {
  max-width: 800px;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}

.page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 1.08rem;
}

.prose-grid {
  display: grid;
  grid-template-columns: .76fr 1fr;
  gap: 50px;
}

.prose-kicker {
  color: var(--leaf);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.prose h2 {
  margin: 8px 0 18px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.prose p {
  margin: 0 0 16px;
  color: var(--muted);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.note-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.info-card {
  padding: 24px;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.notes-list {
  display: grid;
  gap: 12px;
}

.note-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px;
}

.note-card strong {
  color: var(--leaf-dark);
}

.note-card p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  max-width: 920px;
  display: grid;
  gap: 12px;
}

.faq-button {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-button span:last-child {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  flex: 0 0 auto;
}

.faq-panel {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-panel {
  display: block;
}

.faq-item.is-open .faq-button span:last-child {
  background: var(--sun);
}

.site-footer {
  background: #050706;
  color: rgba(255, 255, 255, .66);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 32px;
  padding: 44px 0 30px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--paper);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.site-footer p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, .56);
  font-size: .92rem;
}

.footer-nav,
.footer-note {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-nav a {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.footer-nav a:hover {
  color: var(--sun);
}

.footer-note {
  font-size: .9rem;
}

.footer-note .lang-switch__link {
  border-color: rgba(255, 255, 255, .22);
}

.site-footer__bottom {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .42);
  font-size: .82rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .62s ease, transform .62s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  animation: riseIn .62s ease both;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  }
  to {
    transform: scale(1.09) translate3d(calc(var(--hero-x, 0) - 1.2%), calc(var(--hero-y, 0) - .8%), 0);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes markFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2px) rotate(-2deg);
  }
}

@keyframes riseIn {
  from {
    opacity: .2;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .cards-grid,
  .spotlight-grid,
  .detail-grid,
  .info-grid,
  .site-footer__grid,
  .section-head,
  .feature-grid,
  .prose-grid,
  .route-shell {
    grid-template-columns: 1fr;
  }

  .route-copy {
    position: static;
  }

  .stats-band__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-mosaic {
    grid-template-columns: repeat(6, 1fr);
  }

  .photo-tile--1,
  .photo-tile--3 {
    grid-column: span 3;
    grid-row: span 2;
  }

  .photo-tile--2,
  .photo-tile--4,
  .photo-tile--5 {
    grid-column: span 2;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .top-strip__links {
    display: none;
  }

  .top-strip__inner {
    align-items: center;
  }

  .top-strip__right {
    margin-left: auto;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark,
  .brand__mark svg {
    width: 46px;
    height: 46px;
  }

  .brand__name {
    font-size: 1.22rem;
  }

  .brand__sub {
    font-size: .62rem;
  }

  .hero {
    min-height: 470px;
    height: calc(100svh - 146px);
  }

  .hero h1 {
    font-size: clamp(2.65rem, 16vw, 4.4rem);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 280px;
  }

  .solid-link,
  .text-link {
    justify-content: center;
  }

  .section {
    padding: 62px 0;
  }

  .cards-grid {
    gap: 14px;
  }

  .habitat-card,
  .habitat-card img {
    min-height: 310px;
  }

  .feature-media {
    grid-template-columns: 1fr;
  }

  .feature-media img,
  .feature-media img:last-child {
    height: 260px;
  }

  .note-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .photo-mosaic {
    display: flex;
    gap: 12px;
    margin-inline: -16px;
    overflow-x: auto;
    padding: 0 16px 8px;
    scroll-snap-type: x mandatory;
  }

  .photo-tile {
    width: 78vw;
    height: 340px;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .spotlight-card img {
    height: 250px;
  }

  .route-steps::before {
    display: none;
  }

  .route-step {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }

  .route-step span {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .stats-band__inner {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 20, 24, .16);
  }

  .stat:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
