:root {
  --bg: #0c1715;
  --bg-elevated: #17302b;
  --ink: #f4eee4;
  --ink-muted: #b7c3bd;
  --river: #2a7a7a;
  --river-bright: #4db8af;
  --brick: #c45c2a;
  --brick-hot: #d56a35;
  --sand: #e0cba8;
  --line: rgba(244, 238, 228, 0.12);
  --line-strong: rgba(244, 238, 228, 0.22);
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.22);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --max: 1160px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(77, 184, 175, 0.16), transparent 58%),
    radial-gradient(900px 480px at 100% 0%, rgba(196, 92, 42, 0.12), transparent 52%),
    linear-gradient(180deg, #0a1412 0%, #122420 42%, #0c1715 100%);
  background-attachment: fixed;
  color-scheme: dark;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 40h80M40 0v80' stroke='%23f2ebe0' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  z-index: 0;
}

::selection {
  background: rgba(196, 92, 42, 0.45);
  color: #fff8f2;
}

:focus-visible {
  outline: 2px solid var(--river-bright);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 0.75rem;
  z-index: 80;
  padding: 0.55rem 0.8rem;
  background: var(--brick);
  color: #fff8f2;
  border-radius: 6px;
  transform: translateY(-160%);
}

.skip-link:focus-visible {
  transform: none;
}

#app {
  position: relative;
  z-index: 1;
  flex: 1;
}

#root {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.shell {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  backdrop-filter: blur(18px) saturate(1.15);
  background: rgba(10, 20, 18, 0.72);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  background: rgba(10, 20, 18, 0.9);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 1rem;
  min-height: var(--header-h);
  padding: 0.55rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  grid-column: 1;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}

.brand em {
  font-style: italic;
  color: var(--river-bright);
  font-weight: 500;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem 1.15rem;
  grid-column: 3;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: nowrap;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink-muted);
  transition: color 0.2s, background 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
  background: rgba(77, 184, 175, 0.16);
}

.nav-toggle {
  display: none !important;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(23, 48, 43, 0.5);
  border-radius: 10px;
  padding: 10px 9px;
  cursor: pointer;
  grid-column: 3;
  justify-self: end;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

body.nav-open .nav-toggle span:nth-child(2) {
  transform: translateY(5.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(3) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(4) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bots-kicker {
  margin: 1.35rem 0 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
}

.bot-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.bot-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.bot-link img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}

.bot-links--header {
  display: flex;
  align-items: center;
  height: 36px;
}

.bot-links--header .bot-link {
  padding: 0;
  line-height: 0;
}

.bot-links--header .bot-link:hover,
.bot-links--footer .bot-link:hover,
.bot-links--hero .bot-link:hover {
  transform: translateY(-1px);
}

.bot-links--hero .bot-link,
.bot-links--footer .bot-link {
  padding: 0.32rem 0.85rem 0.32rem 0.32rem;
  background: rgba(12, 23, 21, 0.55);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
}

.bot-links--hero .bot-link:hover,
.bot-links--footer .bot-link:hover {
  border-color: rgba(77, 184, 175, 0.5);
  background: rgba(77, 184, 175, 0.14);
}

.bot-links--header .bot-link img {
  width: 30px;
  height: 30px;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  padding: 3.5rem 0 3.25rem;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    var(--hero-img, none) center / cover no-repeat;
  transform: scale(1.04);
  animation: drift 22s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 16, 15, 0.88) 18%, rgba(8, 16, 15, 0.42) 62%, rgba(8, 16, 15, 0.72)),
    linear-gradient(180deg, rgba(8, 16, 15, 0.15), rgba(8, 16, 15, 0.55));
}

@keyframes drift {
  from {
    transform: scale(1.04) translateY(0);
  }
  to {
    transform: scale(1.1) translateY(-2%);
  }
}

.hero__content {
  position: relative;
  max-width: 38rem;
}

.hero__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 700;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 6rem);
  line-height: 0.9;
  margin: 0 0 1.1rem;
  font-weight: 700;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero__brand em {
  font-style: italic;
  color: var(--sand);
  font-weight: 600;
  font-size: 0.96em;
}

.hero__lead {
  margin: 0 0 1.6rem;
  color: #d5ddd9;
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 30rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0;
  max-width: 28rem;
}

.hero__stats div {
  padding: 0.75rem 0 0;
  border-top: 1px solid var(--line-strong);
}

.hero__stats dt {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--sand);
}

.hero__stats dd {
  margin: 0.1rem 0 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.93rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--brick);
  color: #fff8f2;
  box-shadow: 0 10px 24px rgba(196, 92, 42, 0.28);
}

.btn--primary:hover {
  background: var(--brick-hot);
}

.btn--ghost {
  background: rgba(12, 23, 21, 0.28);
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--river-bright);
  color: var(--river-bright);
}

.section {
  padding: 4.25rem 0;
}

.section--ways {
  padding-top: 0;
  margin-top: -2.25rem;
  position: relative;
  z-index: 2;
}

.section--history {
  padding-top: 0;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.85rem;
}

.section__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brick-hot);
  font-weight: 700;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin: 0;
  font-weight: 600;
  line-height: 1.08;
}

.section__sub {
  margin: 0.45rem 0 0;
  color: var(--ink-muted);
  max-width: 34rem;
  line-height: 1.55;
}

.ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.way {
  display: block;
  padding: 1.35rem 1.3rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(23, 48, 43, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  transition: transform 0.2s, border-color 0.2s;
}

.way:hover {
  transform: translateY(-3px);
  border-color: rgba(77, 184, 175, 0.45);
}

.way__num {
  display: block;
  font-family: var(--font-display);
  color: var(--sand);
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.way h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.way p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.5;
  font-size: 0.94rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.chip {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(23, 48, 43, 0.35);
  color: var(--ink-muted);
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
  transition: 0.2s;
}

.chip:hover,
.chip.active {
  color: var(--ink);
  border-color: var(--river-bright);
  background: rgba(77, 184, 175, 0.16);
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.15rem;
}

.place-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(23, 48, 43, 0.42);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
  animation: rise 0.55s ease both;
}

.place-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 184, 175, 0.4);
  box-shadow: var(--shadow);
}

.place-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(77, 184, 175, 0.2), rgba(196, 92, 42, 0.16)),
    var(--bg-elevated);
}

.place-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.place-card:hover .place-card__media img {
  transform: scale(1.06);
}

.place-card__media.is-empty {
  min-height: 160px;
}

.place-card__badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 1;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(10, 20, 18, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 700;
}

.place-card__body {
  padding: 0.95rem 1rem 1.1rem;
}

.place-card__meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brick-hot);
  font-weight: 700;
}

.place-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0.2rem 0 0.4rem;
  line-height: 1.15;
  transition: color 0.2s;
}

.place-card:hover .place-card__title {
  color: var(--river-bright);
}

.place-card__text {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.place-hero {
  margin: 0 0 0.75rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.place-hero img {
  width: 100%;
  height: min(56vh, 460px);
  object-fit: cover;
}

.gallery {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  margin-bottom: 0.25rem;
}

.gallery__item {
  flex: 0 0 auto;
  width: 92px;
  height: 70px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__item.is-active,
.gallery__item:hover {
  border-color: var(--river-bright);
}

.timeline {
  display: grid;
  gap: 1.4rem;
  border-left: 1px solid var(--line);
  padding-left: 1.4rem;
}

.timeline--preview {
  grid-template-columns: repeat(3, 1fr);
  border-left: 0;
  padding-left: 0;
  gap: 1rem;
}

.timeline--preview .timeline__item {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(23, 48, 43, 0.38);
  overflow: hidden;
}

.timeline--preview .timeline__item::before {
  display: none;
}

.timeline--preview .timeline__photo {
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.timeline--preview .timeline__year,
.timeline--preview .timeline__text {
  padding-inline: 1rem;
}

.timeline--preview .timeline__text {
  padding-bottom: 1.1rem;
}

.timeline__item {
  position: relative;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.6rem;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--river-bright);
  box-shadow: 0 0 0 5px rgba(77, 184, 175, 0.18);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sand);
  margin: 0.75rem 0 0.3rem;
}

.timeline__text {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.55;
}

.timeline__photo {
  margin: 0 0 0.65rem;
  max-width: 360px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.timeline__photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 1rem;
  min-height: calc(100vh - 140px);
  padding: 1.25rem 0 2rem;
}

.map-panel {
  background: rgba(23, 48, 43, 0.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1rem 1.15rem;
  overflow: auto;
  max-height: calc(100vh - 140px);
  backdrop-filter: blur(10px);
}

.map-panel h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.3rem;
}

.map-panel p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.map-search input {
  width: 100%;
  margin-bottom: 0.85rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(10, 20, 18, 0.55);
  color: var(--ink);
  font: inherit;
}

.map-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.map-list button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0.65rem 0.55rem;
  border-radius: 10px;
  font: inherit;
  cursor: pointer;
}

.map-list button:hover,
.map-list button.active {
  background: rgba(77, 184, 175, 0.16);
}

.map-list small {
  display: block;
  color: var(--ink-muted);
  margin-top: 0.15rem;
}

.map-list__row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.map-list__thumb {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.map-canvas {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  height: calc(100vh - 140px);
  box-shadow: var(--shadow);
}

.map-error {
  display: grid;
  place-items: center;
  gap: 0.75rem;
  height: 100%;
  padding: 1.5rem;
  text-align: center;
  color: var(--ink-muted);
}

.key-form {
  display: grid;
  gap: 0.75rem;
  max-width: 420px;
  margin-top: 1.25rem;
}

.key-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(23, 48, 43, 0.8);
  color: var(--ink);
  font: inherit;
}

.key-form input:focus {
  outline: 1px solid var(--river-bright);
}

code {
  color: var(--sand);
  font-size: 0.9em;
}

.leaflet-container,
#yandex-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  font-family: var(--font-body);
}

.place-page {
  padding: 2rem 0 4.5rem;
}

.place-page__back {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
  display: inline-block;
}

.place-page__back:hover {
  color: var(--river-bright);
}

.place-page__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem 2.4rem;
  align-items: start;
}

.place-page__title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  margin: 0.35rem 0 0.85rem;
  line-height: 1.05;
}

.place-page__body {
  max-width: 40rem;
  color: #c9d2cd;
  line-height: 1.7;
  font-size: 1.06rem;
}

.place-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.photo-caption {
  margin: 0.75rem 0 0;
  color: #b7c3bd;
  font-size: 0.92rem;
  line-height: 1.55;
}

.event-month {
  margin-top: 2.2rem;
}

.event-month h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin: 0 0 1rem;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.event-card {
  border: 1px solid var(--line, rgba(244, 238, 228, 0.12));
  border-radius: 16px;
  overflow: hidden;
  background: rgba(23, 48, 43, 0.45);
}

.event-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.event-card p {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  line-height: 1.4;
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 2.2rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
  background: rgba(8, 14, 13, 0.45);
}

.site-footer a {
  color: var(--river-bright);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr;
  gap: 1.75rem 2rem;
  align-items: start;
}

.footer-brand__name {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
}

.footer-brand p {
  margin: 0;
  max-width: 26rem;
  line-height: 1.5;
}

.footer-nav {
  display: grid;
  gap: 0.45rem;
}

.footer-nav a {
  color: var(--ink-muted);
}

.footer-nav a:hover {
  color: var(--river-bright);
}

.site-footer .bots-kicker {
  margin-top: 0;
}

.page-enter {
  animation: rise 0.45s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .ways,
  .timeline--preview,
  .footer-grid,
  .place-page__layout {
    grid-template-columns: 1fr;
  }

  .map-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .map-panel,
  .map-canvas {
    max-height: none;
    height: auto;
  }

  .map-canvas {
    min-height: 420px;
    height: 62vh;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: grid !important;
    place-items: center;
  }

  .header-right {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0.75rem 1rem 1rem;
    background: rgba(10, 20, 18, 0.96);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    grid-column: 1 / -1;
  }

  body.nav-open .header-right {
    display: flex;
  }

  .nav {
    flex-direction: column;
  }

  .hero {
    min-height: 86vh;
    padding-top: 2.2rem;
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .section__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
