:root {
  --ink: #101312;
  --ink-soft: #2a2f2c;
  --paper: #f4f0e8;
  --paper-strong: #fffdf8;
  --paper-muted: #e9e2d6;
  --gold: #d6a652;
  --gold-bright: #f2c55b;
  --acid: #f6d64a;
  --forest: #173c2a;
  --forest-soft: #2a5b42;
  --red: #a9362a;
  --white: #ffffff;
  --line: rgba(16, 19, 18, 0.14);
  --line-light: rgba(255, 255, 255, 0.17);
  --shadow: 0 24px 70px rgba(16, 19, 18, 0.13);
  --shadow-small: 0 12px 36px rgba(16, 19, 18, 0.10);
  --radius: 28px;
  --radius-small: 16px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 78px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .17em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

::selection {
  background: var(--gold-bright);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-compact {
  padding: 76px 0;
}

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

.section-dark::before,
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(214, 166, 82, .20), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(42, 91, 66, .36), transparent 34%);
}

.section-title {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 850;
}

.section-title.small {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.section-intro {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(16, 19, 18, .72);
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
}

.section-dark .section-intro {
  color: rgba(255, 253, 248, .72);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--forest);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.section-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--gold-bright);
}

.muted {
  color: rgba(16, 19, 18, .64);
}

.section-dark .muted,
.page-hero .muted {
  color: rgba(255, 253, 248, .65);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--paper-strong);
  background: rgba(10, 12, 11, .83);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(18px);
  transition: box-shadow .3s ease, background .3s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 12, 11, .96);
  box-shadow: 0 10px 36px rgba(0, 0, 0, .24);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,.16);
}

.logo-copy {
  display: grid;
  line-height: 1;
}

.logo-name {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.logo-tagline {
  margin-top: 5px;
  color: rgba(255,255,255,.62);
  font-size: .67rem;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold-bright);
  transition: right .25s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before { top: -6px; }
.menu-toggle-lines::after { top: 6px; }

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s ease, color .22s ease, border-color .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--acid);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(246, 214, 74, .18);
}

.btn-primary:hover {
  background: #ffe36d;
  box-shadow: 0 14px 34px rgba(246, 214, 74, .24);
}

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

.btn-dark:hover {
  background: #262a28;
}

.btn-light {
  background: var(--paper-strong);
  color: var(--ink);
}

.btn-outline {
  border-color: currentColor;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255,255,255,.08);
}

.btn-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: .88rem;
}

.btn-arrow::after {
  content: "↗";
  font-size: 1.05em;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: calc(var(--header-height) + 64px) 0 64px;
  background:
    linear-gradient(135deg, #0d100f 0%, #111a15 55%, #08100c 100%);
  color: var(--paper-strong);
}

.hero::after {
  content: "";
  position: absolute;
  right: -14vw;
  bottom: -28vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(214, 166, 82, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(214, 166, 82, .035), 0 0 0 14vw rgba(214, 166, 82, .028);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero-copy {
  padding-top: 28px;
}

.hero h1 {
  margin: 0;
  max-width: 10.8ch;
  font-size: clamp(3.4rem, 7.2vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .88;
  text-transform: uppercase;
}

.hero h1 .accent {
  display: block;
  color: var(--gold-bright);
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, .75);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 34px;
  color: rgba(255, 253, 248, .68);
  font-size: .91rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 5px rgba(242, 197, 91, .12);
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-photo-wrap {
  position: absolute;
  inset: 0 0 0 8%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 180px 28px 180px 28px;
  box-shadow: 0 35px 90px rgba(0,0,0,.34);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(.88) contrast(1.04);
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.40) 100%);
}

.hero-number {
  position: absolute;
  z-index: 2;
  top: 2%;
  left: 0;
  color: transparent;
  font-size: clamp(7rem, 16vw, 13rem);
  font-weight: 950;
  line-height: .8;
  -webkit-text-stroke: 1px rgba(242, 197, 91, .44);
  transform: rotate(-90deg) translateX(-72%);
  transform-origin: left top;
  pointer-events: none;
}

.event-ticket {
  position: absolute;
  z-index: 3;
  left: -3%;
  bottom: 4%;
  width: min(430px, 90%);
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 253, 248, .95);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ticket-label {
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.event-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(169, 54, 42, .10);
  color: var(--red);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.event-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.event-status.is-future {
  background: rgba(23, 60, 42, .11);
  color: var(--forest);
}

.ticket-title {
  margin: 18px 0 0;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}

.ticket-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.ticket-detail {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.ticket-detail strong,
.ticket-detail span {
  display: block;
}

.ticket-detail strong {
  font-size: .77rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ticket-detail span {
  margin-top: 3px;
  color: rgba(16, 19, 18, .65);
  font-size: .91rem;
}

.ticket-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--forest);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none;
}

.ticket-link:hover {
  text-decoration: underline;
}

.stats-bar {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--acid);
  color: var(--ink);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 132px;
}

.stat {
  display: grid;
  align-content: center;
  padding: 28px 34px;
  border-right: 1px solid rgba(16, 19, 18, .18);
}

.stat:first-child {
  border-left: 1px solid rgba(16, 19, 18, .18);
}

.stat strong {
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  font-weight: 950;
  letter-spacing: -.05em;
  line-height: 1;
}

.stat span {
  margin-top: 8px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.story-copy p {
  max-width: 730px;
  margin: 28px 0 0;
  color: rgba(16, 19, 18, .72);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, .63);
  box-shadow: 0 8px 28px rgba(16,19,18,.04);
}

.feature-index {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-bright);
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.feature-item h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -.02em;
}

.feature-item p {
  margin: 7px 0 0;
  color: rgba(16,19,18,.63);
  font-size: .96rem;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
}

.section-heading-row .section-intro {
  max-width: 500px;
  margin: 0;
}

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

.race-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line-light);
  border-radius: 26px;
  background: #1a1e1c;
  color: var(--white);
  box-shadow: var(--shadow-small);
  isolation: isolate;
}

.race-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .65s var(--ease);
}

.race-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 12%, rgba(0,0,0,.22) 45%, rgba(4,8,6,.94) 100%);
}

.race-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.race-card-content {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
}

.race-distance {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--gold-bright);
  font-size: 3.55rem;
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: .9;
}

.race-distance small {
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.race-card h3 {
  margin: 16px 0 0;
  font-size: 1.4rem;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.race-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
}

.race-meta span {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.20);
}



/* Анонсы: сетка и все внутренние блоки карточек */
.announcement-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  gap: 24px;
}

.announcement-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: clamp(240px, 23vw, 280px) minmax(0, 1fr);
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: 100%;
  border: 1px solid var(--line-light);
  border-radius: 30px;
  background: #172019;
  color: var(--paper-strong);
  box-shadow: var(--shadow-small);
}

.announcement-card.featured {
  border-color: rgba(255,255,255,.28);
  background: var(--paper-strong);
  color: var(--ink);
}

.announcement-media {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  background: #24342a;
}

.announcement-card.featured .announcement-media {
  background: var(--paper-muted);
}

.announcement-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,8,6,.04), rgba(4,8,6,.52));
  pointer-events: none;
}

.announcement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
  transition: transform .65s var(--ease), filter .65s var(--ease);
}

.announcement-card:hover .announcement-media img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.04);
}

.announcement-date,
.announcement-status {
  position: absolute;
  z-index: 3;
  top: 20px;
  max-width: calc(100% - 40px);
}

.announcement-date {
  left: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(8,10,9,.76);
  color: var(--white);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.announcement-status {
  right: 20px;
  background: rgba(255,253,248,.94);
  color: var(--forest);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
}

.announcement-status.is-past {
  color: var(--red);
}

.announcement-number {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: -16px;
  color: rgba(255,255,255,.18);
  font-size: clamp(6.5rem, 13vw, 11rem);
  font-weight: 950;
  letter-spacing: -.09em;
  line-height: .78;
  pointer-events: none;
}

.announcement-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 32px;
}

.announcement-kicker {
  display: block;
  color: var(--gold-bright);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.announcement-card.featured .announcement-kicker {
  color: var(--forest);
}

.announcement-content h3 {
  margin: 14px 0 0;
  max-width: 16ch;
  min-width: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .96;
  overflow-wrap: anywhere;
}

.announcement-content > p {
  max-width: 670px;
  min-width: 0;
  margin: 18px 0 0;
  color: rgba(255,253,248,.68);
  overflow-wrap: break-word;
}

.announcement-card.featured .announcement-content > p {
  color: rgba(16,19,18,.66);
}

.announcement-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  min-width: 0;
  gap: 10px;
  margin: 26px 0 0;
}

.announcement-facts.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.announcement-fact {
  min-width: 0;
  padding-top: 13px;
  border-top: 1px solid rgba(255,255,255,.19);
}

.announcement-card.featured .announcement-fact {
  border-color: var(--line);
}

.announcement-fact strong,
.announcement-fact span {
  display: block;
  min-width: 0;
}

.announcement-fact strong {
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.announcement-fact span {
  margin-top: 3px;
  color: rgba(255,253,248,.58);
  font-size: .79rem;
  font-weight: 750;
  letter-spacing: .06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.announcement-card.featured .announcement-fact span {
  color: rgba(16,19,18,.56);
}

.announcement-content > .btn,
.announcement-actions {
  margin-top: auto;
  padding-top: 30px;
}

.announcement-content > .btn {
  align-self: flex-start;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.announcement-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
  gap: 18px;
}

.text-link {
  color: var(--forest);
  font-size: .92rem;
  font-weight: 850;
}

.schedule-card {
  background: rgba(255,253,248,.82);
}

.schedule-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 30px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper-strong);
}

.schedule-heading span {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.schedule-heading strong {
  color: var(--gold-bright);
  font-size: 1.05rem;
}

.timeline-text strong,
.timeline-text small {
  display: block;
}

.timeline-text strong {
  color: var(--ink);
  font-size: 1rem;
}

.timeline-text small {
  margin-top: 4px;
  color: rgba(16,19,18,.60);
  font-size: .88rem;
  line-height: 1.45;
}

.event-overview {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
}

.event-summary-card {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-small);
}

.event-summary-card h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.04em;
}

.event-summary-card p {
  margin: 16px 0 0;
  color: rgba(16,19,18,.67);
}

.summary-facts {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
}

.summary-fact {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: .95rem;
}

.summary-fact strong {
  font-size: .77rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.summary-fact span {
  color: rgba(16,19,18,.66);
}

.timeline-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,253,248,.68);
}

.timeline-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.timeline-tab {
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: rgba(16,19,18,.58);
  font-weight: 850;
  cursor: pointer;
}

.timeline-tab + .timeline-tab {
  border-left: 1px solid var(--line);
}

.timeline-tab[aria-selected="true"] {
  background: var(--ink);
  color: var(--gold-bright);
}

.timeline-panel {
  display: none;
  padding: 18px 30px 30px;
}

.timeline-panel.is-active {
  display: block;
}

.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-time {
  color: var(--forest);
  font-size: .95rem;
  font-weight: 900;
}

.timeline-text {
  color: rgba(16,19,18,.72);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.check-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,253,248,.75);
}

.check-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-bright);
  font-size: 1.15rem;
  font-weight: 900;
}

.check-card h3 {
  margin: 22px 0 0;
  font-size: 1.12rem;
  letter-spacing: -.02em;
}

.check-card p {
  margin: 9px 0 0;
  color: rgba(16,19,18,.63);
  font-size: .92rem;
}

.location-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: stretch;
}

.location-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(8,16,12,.42), rgba(8,16,12,.56)),
    url('../img/hero-trail.webp') center/cover no-repeat;
}

.location-visual::after {
  content: "СЕЗОН 2026";
  position: absolute;
  right: -22px;
  bottom: -18px;
  color: rgba(255,255,255,.12);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: 1;
}

.map-pin {
  position: absolute;
  z-index: 2;
  top: 46%;
  left: 54%;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 8px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 1.6rem;
  box-shadow: 0 12px 50px rgba(0,0,0,.35);
  transform: translate(-50%, -50%);
}

.location-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-content .section-title {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.venue-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.venue-card {
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
}

.venue-card strong,
.venue-card span {
  display: block;
}

.venue-card strong {
  font-size: 1rem;
}

.venue-card span {
  margin-top: 7px;
  color: rgba(255,253,248,.67);
  font-size: .94rem;
}

.venue-card a {
  display: inline-block;
  margin-top: 13px;
  color: var(--gold-bright);
  font-size: .86rem;
  font-weight: 850;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 88px);
  border-radius: 34px;
  background: var(--acid);
  color: var(--ink);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -92%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(16,19,18,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(16,19,18,.035), 0 0 0 120px rgba(16,19,18,.025);
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: end;
}


.cta-kicker {
  display: block;
  margin-bottom: 18px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cta-panel h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: .93;
  letter-spacing: -.06em;
}

.cta-panel p {
  max-width: 670px;
  margin: 22px 0 0;
  font-size: 1.1rem;
}

.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.action-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-small);
}

.action-card.dark {
  background: var(--forest);
  color: var(--paper-strong);
}

.action-card-label {
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.action-card h3 {
  margin: 34px 0 0;
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .96;
  letter-spacing: -.05em;
}

.action-card p {
  max-width: 500px;
  margin: 18px 0 0;
  color: rgba(16,19,18,.65);
}

.action-card.dark p {
  color: rgba(255,253,248,.70);
}

.action-card .btn {
  align-self: flex-start;
  margin-top: 30px;
}

.site-footer {
  padding: 72px 0 34px;
  background: #080a09;
  color: var(--paper-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr 1.15fr;
  gap: 44px;
}

.footer-brand p {
  max-width: 320px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.58);
  font-size: .94rem;
}

.footer-title {
  margin: 4px 0 18px;
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-contact a {
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.48);
  font-size: .82rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 96px) 0 98px;
  background: linear-gradient(135deg, #0d100f, #153023);
  color: var(--paper-strong);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  gap: 52px;
  align-items: end;
}

.page-hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: .88;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.page-hero p {
  margin: 24px 0 0;
  max-width: 670px;
  color: rgba(255,253,248,.72);
  font-size: 1.17rem;
}

.page-hero-aside {
  padding: 26px;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
}

.page-hero-aside strong {
  display: block;
  color: var(--gold-bright);
  font-size: 2.8rem;
  letter-spacing: -.05em;
  line-height: 1;
}

.page-hero-aside span {
  display: block;
  margin-top: 10px;
  color: rgba(255,253,248,.65);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-strong);
  box-shadow: 0 10px 28px rgba(16,19,18,.05);
}

.team-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-muted);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.team-card:hover img {
  transform: scale(1.035);
}

.team-body {
  padding: 22px;
}

.team-body h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}

.team-role {
  margin: 7px 0 0;
  color: var(--forest-soft);
  font-size: .9rem;
  font-weight: 800;
}

.team-body p {
  margin: 14px 0 0;
  color: rgba(16,19,18,.62);
  font-size: .92rem;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.number-card {
  min-height: 190px;
  display: grid;
  align-content: center;
  padding: 28px;
  background: var(--paper-strong);
}

.number-card strong {
  font-size: 3.5rem;
  letter-spacing: -.06em;
  line-height: 1;
}

.number-card span {
  margin-top: 9px;
  color: rgba(16,19,18,.62);
  font-size: .88rem;
}

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

.benefit-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  background: rgba(255,255,255,.05);
}

.benefit-card .feature-index {
  background: var(--gold-bright);
  color: var(--ink);
}

.benefit-card h3 {
  margin: 30px 0 0;
  font-size: 1.4rem;
  letter-spacing: -.03em;
}

.benefit-card p {
  margin: 12px 0 0;
  color: rgba(255,253,248,.66);
}

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

.package-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper-strong);
}

.package-card.featured {
  background: var(--forest);
  color: var(--paper-strong);
  transform: translateY(-14px);
}

.package-badge {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 28px 0 0;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.045em;
}

.package-card > p {
  margin: 15px 0 0;
  color: rgba(16,19,18,.62);
}

.package-card.featured > p {
  color: rgba(255,253,248,.68);
}

.package-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.package-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(16,19,18,.72);
  font-size: .92rem;
}

.package-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 900;
}

.package-card.featured .package-list li {
  color: rgba(255,253,248,.74);
}

.package-card.featured .package-list li::before {
  color: var(--gold-bright);
}

.package-card .btn {
  margin-top: auto;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: start;
}

.form-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.form-copy p {
  max-width: 520px;
  color: rgba(16,19,18,.66);
}

.form-card {
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-small);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.form-label {
  font-size: .82rem;
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(16,19,18,.20);
  border-radius: 13px;
  background: #fffefb;
  color: var(--ink);
  transition: border .2s ease, box-shadow .2s ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--forest-soft);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(42,91,66,.12);
}

.check-options {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.check-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(16,19,18,.72);
  font-size: .91rem;
}

.check-option input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--forest);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.form-note {
  color: rgba(16,19,18,.54);
  font-size: .78rem;
}

.form-message {
  display: none;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(23,60,42,.10);
  color: var(--forest);
  font-weight: 700;
}

.form-message.is-visible {
  display: block;
}

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

.role-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,253,248,.72);
}

.role-card h3 {
  margin: 20px 0 0;
  font-size: 1.24rem;
}

.role-card p {
  margin: 10px 0 0;
  color: rgba(16,19,18,.62);
  font-size: .92rem;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.doc-card {
  display: grid;
  grid-template-columns: 66px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper-strong);
  box-shadow: 0 8px 26px rgba(16,19,18,.04);
}

.doc-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 18px;
  background: var(--forest);
  color: var(--gold-bright);
  font-size: 1.05rem;
  font-weight: 900;
}

.doc-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.doc-card p {
  margin: 7px 0 0;
  color: rgba(16,19,18,.58);
  font-size: .84rem;
}

.doc-link {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.doc-link:hover {
  background: var(--ink);
  color: var(--gold-bright);
}

.alert {
  margin-top: 34px;
  padding: 22px 24px;
  border-left: 5px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: rgba(214,166,82,.12);
  color: rgba(16,19,18,.74);
}

.content-list {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 28px;
}

.content-list li::before {
  content: "";
  position: absolute;
  top: .64em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(214,166,82,.12);
}


@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a:not(.btn) {
    font-size: .84rem;
  }

  .hero-grid {
    grid-template-columns: 1fr .78fr;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 8vw, 6.2rem);
  }

  .hero-media {
    min-height: 520px;
  }

  .race-grid,
  .check-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .announcement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .announcement-facts.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .race-card {
    min-height: 500px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
    --container: min(100% - 30px, 720px);
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: 88px 0;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 26px max(15px, calc((100vw - 720px) / 2)) 40px;
    background: rgba(8,10,9,.985);
    transform: translateX(100%);
    transition: transform .28s var(--ease);
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.11);
    font-size: 1.1rem;
  }

  .site-nav a:not(.btn)::after {
    display: none;
  }

  .site-nav .btn {
    margin-top: 22px;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 54px);
  }

  .hero-grid,
  .story-grid,
  .event-overview,
  .location-grid,
  .form-shell,
  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.25rem, 12vw, 6rem);
  }

  .hero-media {
    min-height: 500px;
    margin-top: 20px;
  }

  .hero-photo-wrap {
    inset: 0 4% 0 4%;
  }

  .event-ticket {
    left: 0;
  }

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

  .stat:nth-child(3) {
    border-left: 1px solid rgba(16,19,18,.18);
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid rgba(16,19,18,.18);
  }

  .section-heading-row {
    display: grid;
    align-items: start;
  }

  .section-heading-row .section-intro {
    max-width: 650px;
  }

  .event-summary-card,
  .form-copy {
    position: static;
  }

  .dual-cta,
  .cta-grid,
  .announcement-grid {
    grid-template-columns: 1fr;
  }
  .announcement-card {
    min-height: 0;
  }

  .cta-grid .btn {
    justify-self: start;
  }

  .team-grid,
  .benefit-grid,
  .package-grid,
  .role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card.featured {
    transform: none;
  }

  .doc-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-aside {
    max-width: 440px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 24px, 560px);
  }

  .site-nav {
    padding-inline: max(12px, calc((100vw - 560px) / 2));
  }

  .logo-tagline {
    display: none;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(2.95rem, 15vw, 4.6rem);
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    display: grid;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-photo-wrap {
    inset: 0;
    border-radius: 100px 22px 100px 22px;
  }

  .hero-number {
    display: none;
  }

  .event-ticket {
    left: 12px;
    right: 12px;
    bottom: 14px;
    width: auto;
    padding: 20px;
  }

  .ticket-title {
    font-size: 1.65rem;
  }

  .ticket-top {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .ticket-details {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ticket-link {
    margin-top: 16px;
  }

  .announcement-card {
    grid-template-rows: 230px auto;
    min-height: 0;
    border-radius: 24px;
  }

  .announcement-date,
  .announcement-status {
    top: 14px;
  }

  .announcement-date {
    left: 14px;
  }

  .announcement-status {
    top: 58px;
    right: auto;
    left: 14px;
    max-width: calc(100% - 28px);
    text-align: left;
  }

  .announcement-content {
    padding: 24px;
  }

  .announcement-content h3 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .announcement-facts.three {
    grid-template-columns: 1fr 1fr;
  }

  .announcement-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .announcement-content > .btn {
    max-width: 100%;
  }

  .schedule-heading {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 20px;
  }

  .stats-grid,
  .race-grid,
  .check-grid,
  .team-grid,
  .benefit-grid,
  .package-grid,
  .role-grid,
  .number-grid {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:first-child,
  .stat:nth-child(3) {
    border: 0;
    border-bottom: 1px solid rgba(16,19,18,.18);
  }

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

  .race-card {
    min-height: 470px;
  }

  .section-title {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .feature-item {
    grid-template-columns: 44px 1fr;
    padding: 20px;
  }

  .feature-index {
    width: 44px;
    height: 44px;
  }

  .summary-fact {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .timeline-panel {
    padding-inline: 20px;
  }

  .timeline-item {
    grid-template-columns: 72px 1fr;
    gap: 13px;
  }

  .location-visual {
    min-height: 430px;
  }

  .cta-panel {
    padding: 38px 26px;
    border-radius: 26px;
  }

  .action-card {
    min-height: 320px;
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 70px);
  }

  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: auto;
  }

  .doc-card {
    grid-template-columns: 54px 1fr;
  }

  .doc-icon {
    width: 54px;
    height: 54px;
  }

  .doc-link {
    grid-column: 2;
    justify-self: start;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
