:root {
  --navy-980: #020917;
  --navy-950: #041226;
  --navy-900: #071b36;
  --navy-820: #0a2a52;
  --gold-500: #d9a64f;
  --gold-350: #f1c979;
  --gold-200: #ffe9ad;
  --white: #fffaf0;
  --text: #f8fbff;
  --muted: #c7d3e3;
  --muted-dark: #617087;
  --line: rgba(241, 201, 121, 0.38);
  --line-soft: rgba(255, 255, 255, 0.12);
  --panel: rgba(5, 18, 39, 0.82);
  --panel-strong: rgba(4, 13, 30, 0.95);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --content: 1100px;
  --focus: 0 0 0 4px rgba(241, 201, 121, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--navy-950);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 20% 8%, rgba(217, 166, 79, 0.16), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(36, 132, 210, 0.2), transparent 28rem),
    var(--navy-950);
}

body.is-menu-locked {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 0;
  box-shadow: var(--focus);
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 50;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--navy-950);
  background: var(--gold-350);
  font-weight: 900;
}

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

.site-header {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(241, 201, 121, 0.24);
  border-radius: 999px;
  color: var(--text);
  background: rgba(2, 9, 23, 0.62);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  pointer-events: none;
  max-width: 100vw;
}

.brand,
.header-actions {
  position: relative;
  z-index: 42;
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
}

.brand__logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.48));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.language-switcher {
  display: flex;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(2, 9, 23, 0.5);
  backdrop-filter: blur(18px);
}

.language-button {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.language-button span:last-child {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.flag {
  width: 17px;
  height: 12px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.flag--de {
  background: linear-gradient(to bottom, #111 0 33%, #dd0000 33% 66%, #ffce00 66% 100%);
}

.flag--gb {
  background:
    linear-gradient(32deg, transparent 0 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(148deg, transparent 0 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(to right, transparent 0 42%, #fff 42% 45%, #c8102e 45% 55%, #fff 55% 58%, transparent 58%),
    linear-gradient(to bottom, transparent 0 36%, #fff 36% 42%, #c8102e 42% 58%, #fff 58% 64%, transparent 64%),
    #012169;
}

.language-button.is-active {
  background: rgba(241, 201, 121, 0.2);
}

.menu-toggle {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 7px 8px 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-350);
  background: rgba(2, 9, 23, 0.62);
  font-weight: 950;
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--gold-350);
  background: rgba(5, 18, 39, 0.9);
}

.menu-toggle i {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-350);
}

.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  left: 9px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy-950);
  transition: top 180ms ease, transform 180ms ease;
}

.menu-toggle i::before {
  top: 12px;
}

.menu-toggle i::after {
  top: 20px;
}

.site-header.is-menu-open .menu-toggle i::before {
  top: 17px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle i::after {
  top: 17px;
  transform: rotate(-45deg);
}

.site-header.is-menu-open {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: flex-start;
  border: 0;
  border-radius: 0;
  background: rgba(2, 9, 23, 0.985);
  box-shadow: none;
  pointer-events: auto;
}

.main-nav {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: start center;
  padding: 116px 16px 24px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 220ms ease, transform 220ms ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.site-header.is-menu-open .main-nav {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.main-nav__panel {
  display: grid;
  width: min(100%, 820px);
  gap: 8px;
  padding: 0 0 24px;
}

.main-nav__eyebrow,
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-350);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(7, 27, 54, 0.96);
  font-size: clamp(1.35rem, 6.5vw, 3.2rem);
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.main-nav a::after {
  content: "↗";
  color: var(--gold-350);
  font-size: 1rem;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--navy-950);
  background: var(--gold-350);
  border-color: var(--gold-350);
  transform: translateX(8px);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  color: var(--navy-950);
}

.section {
  padding: 64px 16px;
  background: #f6f3ec;
  color: var(--navy-950);
}

.section--dark {
  background: transparent;
  color: var(--text);
}

.section__inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.section__heading {
  max-width: 720px;
  margin-bottom: 28px;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.section__heading h2,
.route-card h2,
.schedule-card h2,
.cta-panel h2,
.event-highlight h2 {
  font-size: clamp(2rem, 9vw, 4.1rem);
  font-weight: 950;
}

.section p {
  color: var(--muted-dark);
}

.section--dark p,
.hero p {
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 92px 16px 0;
  overflow: hidden;
  color: var(--text);
  background: var(--navy-950);
}

.hero__ornaments {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(241, 201, 121, 0.24);
  border-radius: 50%;
  animation: orbitPulse 6s ease-in-out infinite;
}

.orbit--one {
  width: 420px;
  height: 420px;
  left: -180px;
  top: 60px;
}

.orbit--two {
  width: 520px;
  height: 520px;
  right: -260px;
  bottom: 70px;
  animation-delay: -2s;
}

.light-beam {
  position: absolute;
  width: 68vw;
  height: 2px;
  background: rgba(241, 201, 121, 0.56);
  transform: rotate(-38deg);
  animation: beamMove 8s ease-in-out infinite;
}

.light-beam--one {
  top: 20%;
  right: -16%;
}

.light-beam--two {
  left: -22%;
  bottom: 26%;
  animation-delay: -3s;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1180px);
  min-height: calc(100svh - 128px);
  margin: 0 auto;
  gap: 22px;
  align-items: center;
  min-width: 0;
}

.hero__logo-wrap {
  position: relative;
  width: min(100%, 440px);
  margin: 0 auto;
}

.hero__logo {
  width: clamp(250px, 78vw, 480px);
  margin: 0 auto;
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.56));
  animation: logoFloat 5.4s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(1.85rem, 7.2vw, 5.8rem);
  font-weight: 950;
  text-transform: uppercase;
  text-wrap: balance;
  overflow: visible;
}

.hero h1::first-line {
  color: var(--gold-350);
}

.hero__lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(1.1rem, 4.5vw, 1.45rem);
  font-weight: 750;
}

.hero__text {
  max-width: 620px;
  margin: 8px 0 0;
  font-size: 1.02rem;
}

.hero__actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.motto-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.motto-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-350);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button b {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  font-size: 1rem;
}

.button--primary {
  color: var(--navy-950);
  background: var(--gold-350);
  box-shadow: 0 18px 42px rgba(217, 166, 79, 0.26);
}

.button--primary b {
  background: rgba(2, 9, 23, 0.12);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line);
}

.button--ghost b {
  background: rgba(241, 201, 121, 0.16);
}

.button--wide {
  width: 100%;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 24px;
}

.countdown__item {
  min-width: 0;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 18, 39, 0.62);
  text-align: center;
}

.countdown strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.45rem, 7vw, 2.8rem);
  line-height: 1;
}

.countdown span {
  display: block;
  margin-top: 4px;
  color: var(--gold-350);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ticker {
  position: relative;
  z-index: 2;
  width: calc(100% + 32px);
  margin: 28px -16px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(2, 9, 23, 0.76);
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 12px 16px;
  color: var(--gold-350);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: tickerMove 18s linear infinite;
}

.event-highlight,
.info-card,
.personal-card,
.cta-panel,
.route-card,
.schedule-card,
.accordion__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.event-highlight {
  display: block;
  padding: 24px;
  overflow: hidden;
}

.personal-invitation {
  scroll-margin-top: 120px;
  padding-top: 42px;
  background: var(--navy-950);
  color: var(--text);
}

.personal-invitation[hidden] {
  display: none;
}

.personal-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.personal-card::before {
  content: "";
  display: block;
  width: 76px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold-350);
}

.personal-card h2 {
  color: var(--white);
  font-size: clamp(2rem, 9vw, 4rem);
  font-weight: 950;
}

.personal-card h2 span:last-child {
  color: var(--gold-350);
}

.personal-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 3.5vw, 1.22rem);
}

.personal-card .button {
  margin-top: 22px;
}

.event-highlight__content {
  position: relative;
  padding: 0;
}

.event-highlight__content::before {
  content: "";
  display: block;
  width: 76px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold-350);
}

.event-highlight p {
  margin: 14px 0 0;
}

.event-facts {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.event-facts div {
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.event-facts span {
  display: block;
  color: var(--gold-350);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.event-facts strong {
  display: block;
  margin-top: 3px;
  color: var(--white);
  font-size: 1.22rem;
}

.info-grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.info-card {
  padding: 22px;
  transition: transform 180ms ease, background 180ms ease;
}

.info-card:hover {
  transform: translateY(-5px);
  background: rgba(8, 31, 61, 0.86);
}

.card-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-350);
  font-weight: 950;
}

.info-card h3 {
  color: var(--gold-350);
  font-size: 1.32rem;
}

.info-card p {
  margin: 14px 0 0;
}

.cta-panel {
  display: grid;
  gap: 20px;
  padding: 24px;
  color: var(--text);
  background: var(--navy-900);
}

.cta-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-panel__icon {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-350);
  font-size: 2rem;
}

.route-layout {
  display: grid;
  gap: 16px;
}

.route-card,
.schedule-card {
  padding: 22px;
}

.route-card > p,
.schedule-card > p {
  margin: 12px 0 20px;
}

.parking-note {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}

.parking-note > span {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-350);
  font-weight: 950;
}

.parking-note h3 {
  color: var(--gold-350);
  font-size: 1.15rem;
}

.parking-note p {
  margin: 8px 0 0;
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 74px 42px 1fr;
  gap: 12px;
  align-items: start;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.timeline li > div {
  min-width: 0;
}

.timeline li:hover {
  transform: translateY(-3px);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 107px;
  top: 56px;
  bottom: -14px;
  width: 1px;
  background: var(--line);
}

.timeline li:last-child::before {
  content: none;
}

.timeline time {
  display: inline-grid;
  width: 70px;
  min-height: 42px;
  place-items: center;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--gold-350);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.timeline__icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-350);
  background: var(--navy-900);
  font-weight: 950;
}

.timeline h3 {
  color: var(--white);
  font-size: 1.06rem;
}

.timeline p {
  margin: 4px 0 0;
  font-size: 0.94rem;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion__item {
  background: var(--navy-900);
  overflow: hidden;
}

.accordion__button {
  display: flex;
  width: 100%;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 0;
  color: var(--white);
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.accordion__button span:last-child {
  flex: 0 0 auto;
  color: var(--gold-350);
  font-size: 1.5rem;
}

.accordion__panel {
  display: none;
  padding: 0 16px 18px;
  color: var(--muted);
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.site-footer {
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 32px 16px;
  color: var(--text);
  background: var(--navy-980);
  text-align: center;
}

.site-footer img {
  width: 56px;
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
  color: var(--gold-350);
  font-weight: 800;
}

.site-footer a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-350);
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(1);
  }

  50% {
    opacity: 0.58;
    transform: scale(1.05);
  }
}

@keyframes beamMove {
  0%,
  100% {
    opacity: 0.22;
    transform: translateX(0) rotate(-38deg);
  }

  50% {
    opacity: 0.8;
    transform: translateX(30px) rotate(-38deg);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 700px) {
  .site-header {
    top: 18px;
    left: 28px;
    right: 28px;
    padding: 12px 16px;
  }

  .brand__logo {
    width: 76px;
    height: 76px;
  }

  .section {
    padding: 82px 28px;
  }

  .hero {
    padding: 114px 28px 0;
  }

  .hero__grid {
    width: min(100%, 1120px);
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    gap: 34px;
  }

  .hero__logo-wrap {
    order: -1;
  }

  .hero__actions {
    grid-template-columns: repeat(2, max-content);
  }

  .countdown {
    max-width: 620px;
    gap: 10px;
  }

  .ticker {
    display: none;
  }

  .event-highlight {
    padding: 32px;
  }

  .personal-card {
    padding: 32px;
  }

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

  .cta-panel {
    grid-template-columns: auto 1fr minmax(220px, 280px);
    align-items: center;
    padding: 30px;
  }

  .route-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}

@media (min-width: 1040px) {
  .hero__logo {
    width: min(32vw, 500px);
  }

  .hero h1 {
    max-width: 780px;
    font-size: clamp(3.4rem, 5.15vw, 5.7rem);
  }

  .timeline {
    gap: 14px;
  }
}

@media (min-width: 1400px) {
  .hero__grid {
    width: min(100%, 1240px);
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  }

  .hero h1 {
    max-width: 820px;
    font-size: clamp(4.2rem, 4.7vw, 5.85rem);
  }
}

@media (max-width: 699px) {
  .site-header {
    gap: 8px;
    top: max(10px, env(safe-area-inset-top));
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    padding: 8px 10px;
    overflow: visible;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand__logo {
    width: 56px;
    height: 56px;
  }

  .language-switcher {
    flex: 0 0 auto;
    padding: 3px;
  }

  .language-button {
    width: 28px;
    height: 28px;
  }

  .menu-toggle {
    flex: 0 0 auto;
    min-height: 44px;
    gap: 8px;
    padding: 6px 7px;
  }

  .menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .menu-toggle i {
    width: 32px;
    height: 32px;
  }

  .main-nav {
    padding: 104px 14px 22px;
  }

  .main-nav__panel {
    gap: 7px;
  }

  .main-nav a {
    min-height: 54px;
    padding: 11px 14px;
    font-size: clamp(1.35rem, 9vw, 2.35rem);
  }

  .main-nav a::after {
    font-size: 0.9rem;
  }

  .hero h1 {
    max-width: calc(100vw - 32px);
    font-size: clamp(1.42rem, 6.2vw, 1.78rem);
    line-height: 1.14;
    text-transform: none;
  }

  .hero__lead {
    max-width: calc(100vw - 32px);
    font-size: clamp(1rem, 4.6vw, 1.18rem);
  }

  .hero__text {
    max-width: calc(100vw - 32px);
  }

  .hero__actions {
    max-width: calc(100vw - 32px);
  }

  .motto-row {
    max-width: calc(100vw - 32px);
  }

  .motto-row span {
    min-height: 30px;
    padding: 5px 10px;
    font-size: 0.68rem;
  }

  .timeline li {
    display: block;
    padding: 18px;
  }

  .timeline time {
    display: inline-grid;
    width: auto;
    min-width: 92px;
    min-height: 36px;
    padding: 6px 12px;
    font-size: 0.82rem;
  }

  .timeline__icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
  }

  .timeline li > div {
    margin-top: 16px;
  }

  .timeline li::before {
    content: none;
  }

  .timeline p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.48;
  }
}

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