:root {
  --ink: #050c18;
  --ink-soft: #081424;
  --ink-raised: #0c1b2d;
  --navy: #0b2842;
  --cream: #f4efe5;
  --muted: rgba(244, 239, 229, 0.66);
  --muted-strong: rgba(244, 239, 229, 0.82);
  --gold: #c89b45;
  --gold-light: #edd28d;
  --gold-deep: #8e5f1f;
  --gold-engraved: linear-gradient(135deg, #f4dda2, #bd8730 58%, #f0cc78);
  --jade: #4e8a73;
  --red-gold: #b76543;
  --glass-line: rgba(219, 177, 88, 0.34);
  --soft-line: rgba(244, 239, 229, 0.13);
  --page-pad: 64px;
  --shell: 1500px;
  --header-height: 92px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background: var(--ink);
  font-family: "Jost", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

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

button {
  color: inherit;
}

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

img,
video,
svg {
  display: block;
}

img,
video {
  max-width: 100%;
}

::selection {
  color: #07111e;
  background: var(--gold-light);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-index {
  color: rgba(237, 210, 141, 0.66);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: 4.25rem;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-engraved);
  box-shadow: 0 0 14px rgba(237, 210, 141, 0.5);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 14px var(--page-pad);
  border-bottom: 1px solid transparent;
  transition:
    min-height 350ms ease,
    background-color 350ms ease,
    border-color 350ms ease,
    backdrop-filter 350ms ease;
}

.site-header.is-scrolled {
  min-height: 74px;
  border-color: rgba(219, 177, 88, 0.22);
  background: rgba(5, 12, 24, 0.84);
  backdrop-filter: blur(16px) saturate(1.2);
}

.brand {
  justify-self: start;
}

.brand img {
  width: 144px;
  height: auto;
  filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.46));
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.desktop-nav a,
.desktop-nav button {
  position: relative;
  padding: 10px 0;
  border: 0;
  color: rgba(244, 239, 229, 0.88);
  background: none;
  font-size: 0.76rem;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
}

.desktop-nav a::after,
.desktop-nav button::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav button:hover::after,
.desktop-nav button:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid rgba(219, 177, 88, 0.48);
  border-radius: 4px;
  color: var(--cream);
  background: rgba(7, 17, 31, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  white-space: nowrap;
}

.phone-badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 240ms ease;
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(4px);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-gold {
  color: #091321;
  background: var(--gold-engraved);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 225, 0.7),
    0 12px 28px rgba(170, 117, 35, 0.24);
}

.button-gold:hover,
.button-gold:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 225, 0.8),
    0 16px 38px rgba(216, 167, 74, 0.34);
}

.button-glass {
  border-color: rgba(244, 239, 229, 0.38);
  color: var(--cream);
  background: rgba(5, 12, 24, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.button-glass:hover,
.button-glass:focus-visible {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(5, 12, 24, 0.58);
}

.button-header {
  min-height: 44px;
  padding-inline: 18px;
}

.icon-button,
.carousel-arrow,
.video-control {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid rgba(219, 177, 88, 0.44);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(5, 12, 24, 0.66);
  cursor: pointer;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.icon-button svg,
.carousel-arrow svg,
.video-control svg {
  width: 19px;
  height: 19px;
}

.icon-button:hover,
.icon-button:focus-visible,
.carousel-arrow:hover,
.carousel-arrow:focus-visible,
.video-control:hover,
.video-control:focus-visible {
  border-color: var(--gold-light);
  color: #08111e;
  background: var(--gold-light);
  transform: scale(1.04);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px;
  background: #06101d;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__top img {
  width: 142px;
}

.mobile-menu nav {
  display: grid;
  align-content: center;
  gap: 8px;
}

.mobile-menu nav a,
.mobile-menu nav button {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  padding: 10px 0;
  border: 0;
  color: var(--cream);
  background: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.7rem;
  text-align: left;
  cursor: pointer;
}

.mobile-menu nav span {
  color: var(--gold);
  font-family: "Jost", sans-serif;
  font-size: 0.66rem;
}

.mobile-menu__footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--soft-line);
  color: var(--muted);
  font-size: 0.8rem;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  background: #07111d;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.015);
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 18, 0.92) 0%, rgba(3, 9, 18, 0.48) 44%, rgba(3, 9, 18, 0.08) 78%),
    linear-gradient(0deg, rgba(3, 9, 18, 0.94) 0%, rgba(3, 9, 18, 0.06) 48%, rgba(3, 9, 18, 0.38) 100%);
  pointer-events: none;
}

.hero__rail {
  position: absolute;
  top: calc(var(--header-height) + 58px);
  bottom: 118px;
  left: 26px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(237, 210, 141, 0.68);
  font-size: 0.62rem;
  writing-mode: vertical-rl;
}

.hero__rail i {
  width: 1px;
  min-height: 90px;
  flex: 1;
  background: linear-gradient(180deg, transparent, rgba(237, 210, 141, 0.5), transparent);
}

.hero__content {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(940px, calc(100% - 2 * var(--page-pad)));
  height: 100%;
  flex-direction: column;
  justify-content: center;
  margin-left: var(--page-pad);
  padding-top: 42px;
}

.hero h1 {
  margin-top: 22px;
}

.hero h1 > span {
  display: block;
  font-size: 9.5rem;
  line-height: 0.72;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  margin-top: 26px;
  color: transparent;
  background: var(--gold-engraved);
  background-clip: text;
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 0.95;
}

.hero__intro {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(244, 239, 229, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

[data-hero-reveal] {
  opacity: 0;
  transform: translateY(26px);
  animation: hero-in 850ms cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
}

[data-hero-reveal]:nth-child(2) {
  animation-delay: 120ms;
}

[data-hero-reveal]:nth-child(3) {
  animation-delay: 240ms;
}

[data-hero-reveal]:nth-child(4) {
  animation-delay: 360ms;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__footer {
  position: absolute;
  right: var(--page-pad);
  bottom: 30px;
  left: var(--page-pad);
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 28px;
}

.hero__fact,
.hero__coordinates {
  display: flex;
  flex-direction: column;
  color: rgba(244, 239, 229, 0.58);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.hero__fact strong {
  margin-top: 2px;
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 400;
}

.hero__coordinates {
  align-items: flex-end;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(244, 239, 229, 0.64);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  50% {
    transform: translateY(6px);
  }
}

.video-control {
  position: absolute;
  right: var(--page-pad);
  bottom: 102px;
  z-index: 5;
}

.manifesto {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 42px;
  padding-top: 150px;
  padding-bottom: 150px;
}

.manifesto__text {
  max-width: 1120px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.5rem;
  line-height: 1.04;
}

.manifesto__text em {
  color: var(--gold-light);
  font-weight: 400;
}

.manifesto__facts {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--soft-line);
}

.manifesto__facts div {
  display: flex;
  flex-direction: column;
  min-height: 112px;
  justify-content: flex-end;
  padding: 24px 26px 0 0;
  border-right: 1px solid var(--soft-line);
}

.manifesto__facts div:last-child {
  border-right: 0;
  padding-left: 26px;
}

.manifesto__facts div:nth-child(2) {
  padding-left: 26px;
}

.manifesto__facts strong {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.manifesto__facts span {
  color: var(--muted);
  font-size: 0.85rem;
}

.promotions {
  padding-top: 116px;
  padding-bottom: 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 820px;
  margin-top: 12px;
}

.section-heading > p,
.season__heading > p:last-child,
.continent-intro__title > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.promotion-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.72fr);
  grid-template-rows: repeat(2, 260px);
  gap: 18px;
}

.promotion-layout[data-count="1"] {
  grid-template-columns: 1fr;
  grid-template-rows: 520px;
}

.promotion-layout[data-count="1"] .promo-card:first-child {
  grid-column: 1;
  grid-row: 1;
}

.promotion-layout[data-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 520px;
}

.promotion-layout[data-count="2"] .promo-card:first-child {
  grid-column: auto;
  grid-row: auto;
}

.promo-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(219, 177, 88, 0.34);
  border-radius: 6px;
  background: var(--ink-raised);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.3),
    0 0 26px rgba(183, 101, 67, 0.12);
  isolation: isolate;
}

.promo-card:first-child {
  grid-row: 1 / span 2;
}

.promo-card__image,
.promo-card__wash {
  position: absolute;
  inset: 0;
}

.promo-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 900ms cubic-bezier(0.2, 0.72, 0.24, 1);
}

.promo-card__wash {
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(4, 11, 21, 0.96) 0%, rgba(4, 11, 21, 0.22) 70%),
    linear-gradient(90deg, rgba(4, 11, 21, 0.58), transparent 72%);
}

.promo-card:hover .promo-card__image {
  transform: scale(1.045);
}

.promo-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding: 30px;
}

.promo-card:first-child .promo-card__content {
  padding: 38px;
}

.promo-card__type {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
}

.promo-card h3 {
  max-width: 560px;
  font-size: 2.25rem;
  line-height: 1;
}

.promo-card:first-child h3 {
  font-size: 3.8rem;
}

.promo-card__meta {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.promo-card__old {
  color: rgba(244, 239, 229, 0.58);
  font-size: 0.78rem;
  text-decoration: line-through;
}

.promo-card__price {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  white-space: nowrap;
}

.promo-card__timer {
  margin-top: 7px;
  color: rgba(244, 239, 229, 0.72);
  font-size: 0.72rem;
}

.promo-card__timer time {
  color: var(--gold-light);
  font-weight: 500;
}

.promo-card__discount {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 220, 160, 0.68);
  border-radius: 50%;
  color: #fff5e7;
  background: linear-gradient(145deg, #8e382a, #c67d4f 55%, #8b492f);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 0 28px rgba(198, 89, 55, 0.42);
  font-size: 1.2rem;
  font-weight: 600;
}

.promo-card__link {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.promo-card__link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: -4px;
}

.cinematic-story {
  position: relative;
  height: 280vh;
  background: #07111d;
}

.cinematic-story__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
}

.cinematic-story video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
}

.cinematic-story__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 19, 0.86), rgba(4, 10, 19, 0.18) 64%),
    linear-gradient(0deg, rgba(4, 10, 19, 0.75), transparent 50%);
}

.cinematic-story__counter {
  position: absolute;
  top: 50%;
  right: var(--page-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 0.7rem;
  transform: translateY(-50%);
}

.cinematic-story__counter i {
  width: 1px;
  height: 88px;
  background: rgba(237, 210, 141, 0.48);
}

.story-chapters {
  position: absolute;
  top: 50%;
  left: var(--page-pad);
  width: min(720px, calc(100% - 2 * var(--page-pad)));
  height: 340px;
  transform: translateY(-50%);
}

.story-chapter {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.18, 0.72, 0.24, 1);
  pointer-events: none;
}

.story-chapter.is-active {
  opacity: 1;
  transform: none;
}

.story-chapter h2 {
  margin-top: 18px;
  font-size: 5.2rem;
}

.story-chapter > p:last-child {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.story-dots {
  position: absolute;
  bottom: 42px;
  left: var(--page-pad);
  display: flex;
  gap: 8px;
}

.story-dots span {
  width: 36px;
  height: 2px;
  background: rgba(244, 239, 229, 0.28);
  transition: background-color 300ms ease;
}

.story-dots span.is-active {
  background: var(--gold-light);
}

.featured {
  padding-top: 150px;
  padding-bottom: 160px;
}

.journey-carousel {
  position: relative;
  padding-inline: 54px;
}

.carousel-viewport {
  width: 100%;
  padding: 24px 8px 34px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 18px;
  transform: translate3d(0, 0, 0);
  transition: transform 700ms cubic-bezier(0.2, 0.72, 0.22, 1);
  will-change: transform;
}

.carousel-track.is-jumping {
  transition: none;
}

.journey-card {
  position: relative;
  height: 510px;
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(219, 177, 88, 0.42);
  border-radius: 6px;
  background: var(--ink-raised);
  box-shadow: 0 0 24px rgba(201, 155, 69, 0.14);
  isolation: isolate;
  transition:
    border-color 300ms ease,
    box-shadow 300ms ease,
    transform 300ms ease;
}

.journey-card:hover,
.journey-card:focus-within {
  border-color: rgba(237, 210, 141, 0.8);
  box-shadow:
    0 0 36px rgba(201, 155, 69, 0.3),
    0 22px 54px rgba(0, 0, 0, 0.34);
  transform: translateY(-6px);
}

.journey-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 800ms cubic-bezier(0.2, 0.72, 0.24, 1);
}

.journey-card:hover img,
.journey-card:focus-within img {
  transform: scale(1.06);
}

.journey-card__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 9, 18, 0.97) 0%, rgba(3, 9, 18, 0.04) 66%);
}

.journey-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 26px;
}

.journey-card__location {
  color: rgba(244, 239, 229, 0.68);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.journey-card h3 {
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1;
}

.journey-card__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(244, 239, 229, 0.17);
  font-size: 0.75rem;
}

.journey-card__price {
  color: var(--gold-light);
  font-weight: 500;
}

.journey-card > a {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.journey-card > a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: -4px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
}

.carousel-arrow[hidden] {
  display: none;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.carousel-arrow--prev {
  left: 0;
}

.carousel-arrow--next {
  right: 0;
}

.continent-intro {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 42px;
  padding-top: 130px;
  padding-bottom: 110px;
  border-top: 1px solid var(--soft-line);
}

.continent-intro__title {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 72px;
}

.continent-intro__title h2 {
  font-size: 5.4rem;
}

.continent-index {
  grid-column: 2;
  display: flex;
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

.continent-index a {
  position: relative;
  display: flex;
  min-height: 74px;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px;
  border-right: 1px solid var(--soft-line);
  color: var(--muted-strong);
  font-size: 0.8rem;
  text-transform: uppercase;
  transition:
    color 240ms ease,
    background-color 240ms ease;
}

.continent-index a:first-child {
  padding-left: 0;
}

.continent-index a:last-child {
  border-right: 0;
}

.continent-index a span {
  color: var(--gold);
  font-size: 0.7rem;
}

.continent-index a:hover,
.continent-index a:focus-visible {
  color: var(--gold-light);
  background: rgba(201, 155, 69, 0.05);
}

.continent-collections {
  background: #06101d;
}

.continent-band {
  position: relative;
  overflow: hidden;
  padding: 140px 0 150px;
  border-top: 1px solid rgba(219, 177, 88, 0.16);
  background: var(--band-color, #071524);
  isolation: isolate;
}

.continent-band::before {
  position: absolute;
  top: -220px;
  right: -140px;
  z-index: -1;
  width: 760px;
  height: 760px;
  content: "";
  background: var(--continent-art) center / contain no-repeat;
  opacity: 0.05;
  filter: grayscale(1);
}

.continent-band__inner {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.continent-band__header {
  display: grid;
  grid-template-columns: 120px minmax(340px, 0.85fr) minmax(360px, 1fr) 180px;
  align-items: center;
  gap: 34px;
  margin-bottom: 52px;
}

.continent-band__icon {
  grid-column: 1;
  grid-row: 1;
  width: 108px;
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(201, 155, 69, 0.18));
}

.continent-band__title span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.continent-band__title {
  grid-column: 2;
  grid-row: 1;
}

.continent-band__title h2 {
  font-size: 4.6rem;
}

.continent-band__description {
  grid-column: 3;
  grid-row: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.continent-band__map {
  grid-column: 4;
  grid-row: 1;
  width: 168px;
  height: 138px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(201, 155, 69, 0.2));
}

.continent-band__footer {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.continent-band__footer .button {
  min-width: 230px;
}

.season {
  padding-top: 160px;
  padding-bottom: 160px;
}

.season__heading {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr 0.75fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 54px;
}

.season__heading h2 {
  font-size: 4.8rem;
}

.season-tools {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(330px, 0.68fr);
  gap: 18px;
  align-items: stretch;
}

.season-map.travel-map {
  position: relative;
  display: block;
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(219, 177, 88, 0.44);
  border-radius: 8px;
  background: rgba(11, 31, 48, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px) saturate(1.18);
}

.season-map__header {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(240px, 1fr);
  align-items: end;
  gap: 28px;
}

.control-field,
.month-control {
  display: grid;
  gap: 8px;
}

.control-field > span,
.month-control > span {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
}

.control-field select,
.control-field input,
.season-map .experience-select {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(219, 177, 88, 0.3);
  border-radius: 4px;
  color: var(--cream);
  background: rgba(4, 13, 24, 0.7);
  outline: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.control-field select:focus,
.control-field input:focus,
.season-map .experience-select:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(201, 155, 69, 0.12);
}

.control-field option,
.season-map .experience-select option {
  color: #091321;
  background: #f4efe5;
}

.month-control {
  justify-items: end;
}

.season-map .month-slider {
  width: 100%;
}

.season-map.travel-map .world-map {
  min-height: 480px;
  margin: 22px 0 18px;
  border-radius: 6px;
  background: rgba(3, 17, 29, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(219, 177, 88, 0.14);
}

.season-map.travel-map .world-map svg [data-travel-status="ideal"] {
  fill: rgba(75, 153, 112, 0.9);
}

.season-map.travel-map .world-map svg [data-travel-status="mixed"] {
  fill: rgba(213, 161, 63, 0.9);
}

.season-map.travel-map .world-map svg [data-travel-status="avoid"] {
  fill: rgba(175, 70, 65, 0.86);
}

.season-map__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.season-map.travel-map .legend,
.season-map.travel-map .map-zoom {
  display: flex;
}

.season-map.travel-map .map-zoom button {
  border-radius: 50%;
}

.season-map.travel-map .map-zoom [data-map-zoom="reset"] {
  border-radius: 999px;
}

.journey-planner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(219, 177, 88, 0.36);
  border-radius: 8px;
  background: rgba(8, 24, 39, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 24px 70px rgba(0, 0, 0, 0.28);
}

.journey-planner__heading {
  margin-bottom: 6px;
}

.journey-planner h3 {
  margin-top: 8px;
  font-size: 2.35rem;
  line-height: 1;
}

.planner-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.journey-planner .button {
  width: 100%;
  margin-top: auto;
}

.testimonial {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
  padding-top: 130px;
  padding-bottom: 150px;
  border-top: 1px solid var(--soft-line);
}

.testimonial__mark {
  align-self: start;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 9rem;
  line-height: 0.8;
}

.testimonial__stars {
  display: flex;
  gap: 5px;
  color: var(--gold-light);
}

.testimonial__stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.testimonial blockquote {
  max-width: 980px;
  margin: 22px 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.8rem;
  line-height: 1.06;
}

.testimonial__content > p {
  margin: 0;
  color: var(--cream);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.testimonial__content > p span {
  color: var(--muted);
}

.testimonial__controls {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 12px;
}

.testimonial__controls > span {
  min-width: 58px;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.journal-banner {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  background: #07111d;
}

.journal-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.06);
}

.journal-banner__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 9, 18, 0.9), rgba(3, 9, 18, 0.12) 70%);
}

.journal-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, var(--shell));
  min-height: 78svh;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  padding: 80px var(--page-pad);
}

.journal-banner h2 {
  max-width: 790px;
  margin: 16px 0 34px;
  font-size: 5.2rem;
}

.journal-banner .button {
  align-self: flex-start;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(219, 177, 88, 0.3);
  border-bottom: 1px solid rgba(219, 177, 88, 0.3);
  background: #091625;
}

.service-strip > div {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px;
  border-right: 1px solid var(--soft-line);
}

.service-strip > div:last-child {
  border-right: 0;
}

.service-strip svg {
  width: 34px;
  height: 34px;
  color: var(--gold-light);
}

.service-strip span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.78rem;
}

.service-strip strong {
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 500;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
  padding: 100px var(--page-pad) 30px;
  background: #040a13;
}

.site-footer__lead img {
  width: 176px;
}

.site-footer__lead p {
  max-width: 460px;
  margin: 36px 0 30px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 12px;
}

.site-footer__links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__links strong {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
}

.site-footer__links a,
.site-footer__links span,
.site-footer__links button {
  padding: 0;
  border: 0;
  color: var(--muted);
  background: none;
  font-size: 0.85rem;
  text-align: left;
}

.site-footer__links a,
.site-footer__links button {
  cursor: pointer;
  transition: color 200ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__links button:hover,
.site-footer__links button:focus-visible {
  color: var(--gold-light);
}

.site-footer__bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--soft-line);
  color: rgba(244, 239, 229, 0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.site-footer__bottom a {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  color: var(--muted);
}

.site-footer__bottom svg {
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 14, 0.82);
  backdrop-filter: blur(10px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 52px;
  border: 1px solid rgba(219, 177, 88, 0.5);
  border-radius: 8px;
  background: #0a1828;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.5);
}

.modal__panel h2 {
  margin: 14px 0 20px;
  font-size: 3.3rem;
}

.modal__panel > p:last-child {
  margin: 0;
  color: var(--muted);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 210;
  max-width: 420px;
  padding: 16px 20px;
  border: 1px solid var(--glass-line);
  border-radius: 6px;
  color: var(--cream);
  background: rgba(8, 24, 39, 0.95);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
}

.toast[hidden] {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.72, 0.24, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1280px) {
  :root {
    --page-pad: 42px;
  }

  .site-header {
    grid-template-columns: 150px 1fr auto;
  }

  .brand img {
    width: 126px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .desktop-nav a,
  .desktop-nav button {
    font-size: 0.7rem;
  }

  .phone-badge {
    display: none;
  }

  .hero h1 > span {
    font-size: 8rem;
  }

  .hero h1 em {
    font-size: 4.5rem;
  }

  .manifesto__text {
    font-size: 3.9rem;
  }

  .continent-band__header {
    grid-template-columns: 100px minmax(280px, 0.8fr) 1fr 140px;
  }

  .continent-band__icon {
    width: 92px;
    height: 92px;
  }

  .continent-band__map {
    width: 140px;
  }

  .continent-band__title h2 {
    font-size: 4rem;
  }

  .season-tools {
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.7fr);
  }

  .season-map.travel-map .world-map {
    min-height: 410px;
  }
}

@media (max-width: 1020px) {
  :root {
    --page-pad: 30px;
    --header-height: 80px;
  }

  h2 {
    font-size: 3.5rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .button-header {
    display: none;
  }

  .phone-badge {
    display: inline-flex;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero h1 > span {
    font-size: 7rem;
  }

  .hero h1 em {
    font-size: 4rem;
  }

  .manifesto,
  .continent-intro {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .manifesto__text {
    font-size: 3.3rem;
  }

  .section-heading,
  .continent-intro__title,
  .season__heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .promotion-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 500px 310px;
  }

  .promo-card:first-child {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .story-chapter h2 {
    font-size: 4.3rem;
  }

  .journey-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .continent-intro__title h2 {
    font-size: 4.5rem;
  }

  .continent-band__header {
    grid-template-columns: 92px minmax(0, 1fr) 130px;
  }

  .continent-band__description {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .continent-band__map {
    grid-column: 3;
    grid-row: 1;
  }

  .season__heading h2 {
    font-size: 4.2rem;
  }

  .season-tools {
    grid-template-columns: 1fr;
  }

  .journey-planner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .journey-planner__heading,
  .journey-planner .button {
    grid-column: 1 / -1;
  }

  .testimonial {
    grid-template-columns: 90px 1fr;
  }

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

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

@media (max-width: 720px) {
  :root {
    --page-pad: 20px;
    --header-height: 72px;
  }

  body {
    font-size: 15px;
  }

  h2 {
    font-size: 2.8rem;
  }

  .site-header {
    min-height: var(--header-height);
    padding-block: 10px;
  }

  .brand img {
    width: 112px;
  }

  .phone-badge {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero__rail,
  .hero__coordinates,
  .hero__fact,
  .video-control {
    display: none;
  }

  .hero__wash {
    background:
      linear-gradient(90deg, rgba(3, 9, 18, 0.88), rgba(3, 9, 18, 0.24)),
      linear-gradient(0deg, rgba(3, 9, 18, 0.94), rgba(3, 9, 18, 0.08) 56%, rgba(3, 9, 18, 0.4));
  }

  .hero__content {
    width: calc(100% - 2 * var(--page-pad));
    margin-left: var(--page-pad);
    padding-top: 16px;
  }

  .hero h1 > span {
    font-size: 5.2rem;
  }

  .hero h1 em {
    margin-top: 20px;
    font-size: 3rem;
  }

  .hero__intro {
    margin-top: 24px;
    font-size: 0.96rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__footer {
    grid-template-columns: 1fr;
    justify-items: center;
    bottom: 22px;
  }

  .manifesto,
  .continent-intro {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .manifesto__text {
    font-size: 2.75rem;
  }

  .manifesto__facts,
  .continent-intro__title,
  .continent-index {
    grid-column: 1;
  }

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

  .manifesto__facts div,
  .manifesto__facts div:nth-child(2),
  .manifesto__facts div:last-child {
    min-height: 92px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }

  .manifesto__facts div:last-child {
    border-bottom: 0;
  }

  .promotions,
  .featured,
  .season {
    padding-top: 94px;
    padding-bottom: 100px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .promotion-layout {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .promo-card,
  .promo-card:first-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 390px;
  }

  .promo-card__content,
  .promo-card:first-child .promo-card__content {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }

  .promo-card:first-child h3,
  .promo-card h3 {
    font-size: 2.6rem;
  }

  .promo-card__meta {
    justify-items: start;
    text-align: left;
  }

  .promo-card__discount {
    width: 62px;
    height: 62px;
    font-size: 1rem;
  }

  .cinematic-story {
    height: 240vh;
  }

  .cinematic-story__sticky {
    min-height: 650px;
  }

  .story-chapters {
    top: auto;
    bottom: 92px;
    left: var(--page-pad);
    height: 400px;
    transform: none;
  }

  .story-chapter {
    justify-content: flex-end;
  }

  .story-chapter h2 {
    font-size: 3.25rem;
  }

  .story-chapter > p:last-child {
    margin-top: 20px;
    font-size: 0.94rem;
  }

  .cinematic-story__counter {
    top: 90px;
    right: 20px;
    transform: none;
  }

  .cinematic-story__counter i {
    height: 56px;
  }

  .journey-carousel {
    margin-bottom: 54px;
    padding-inline: 0;
  }

  .carousel-viewport {
    padding-inline: 16px;
  }

  .journey-card {
    height: 500px;
    flex-basis: 100%;
  }

  .carousel-arrow {
    top: auto;
    bottom: -40px;
  }

  .carousel-arrow--prev {
    left: calc(50% - 54px);
  }

  .carousel-arrow--next {
    right: calc(50% - 54px);
  }

  .continent-intro__title h2 {
    font-size: 3.6rem;
  }

  .continent-index {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .continent-index a,
  .continent-index a:first-child {
    min-height: 58px;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }

  .continent-index a:last-child {
    border-bottom: 0;
  }

  .continent-band {
    padding: 96px 0 112px;
  }

  .continent-band::before {
    top: -90px;
    right: -100px;
    width: 430px;
    height: 430px;
  }

  .continent-band__header {
    grid-template-columns: 64px 1fr 82px;
    gap: 14px;
    margin-bottom: 28px;
  }

  .continent-band__icon {
    width: 60px;
    height: 60px;
  }

  .continent-band__title h2 {
    font-size: 2.7rem;
  }

  .continent-band__description {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 12px;
  }

  .continent-band__map {
    grid-column: 3;
    grid-row: 1;
    width: 82px;
    height: 72px;
  }

  .season__heading h2 {
    font-size: 3.35rem;
  }

  .season-map.travel-map,
  .journey-planner {
    padding: 18px;
  }

  .season-map__header {
    grid-template-columns: 1fr;
  }

  .month-control {
    justify-items: start;
  }

  .season-map.travel-map .world-map {
    min-height: 330px;
    margin-top: 16px;
  }

  .season-map__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .season-map.travel-map .legend {
    gap: 12px;
    font-size: 0.74rem;
  }

  .journey-planner {
    display: flex;
  }

  .testimonial {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 94px;
    padding-bottom: 100px;
  }

  .testimonial__mark {
    font-size: 6rem;
  }

  .testimonial blockquote {
    font-size: 2.8rem;
  }

  .testimonial__controls {
    grid-column: 1;
  }

  .journal-banner,
  .journal-banner__content {
    min-height: 660px;
  }

  .journal-banner h2 {
    font-size: 3.4rem;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip > div {
    min-height: 96px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }

  .service-strip > div:last-child {
    border-bottom: 0;
  }

  .site-footer {
    gap: 60px;
    padding: 80px var(--page-pad) 24px;
  }

  .site-footer__lead p {
    font-size: 2.65rem;
  }

  .site-footer__links {
    grid-template-columns: 1fr 1fr;
    gap: 36px 22px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer__bottom a {
    justify-self: start;
  }

  .modal__panel {
    padding: 42px 24px 28px;
  }

  .modal__panel h2 {
    font-size: 2.7rem;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }
}

@media (max-width: 390px) {
  .hero h1 > span {
    font-size: 4.45rem;
  }

  .hero h1 em {
    font-size: 2.55rem;
  }

  .mobile-menu nav a,
  .mobile-menu nav button {
    font-size: 2.25rem;
  }

  .mobile-menu__footer {
    flex-direction: column;
  }

  .continent-band__title h2 {
    font-size: 2.35rem;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
  }
}

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

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

  .reveal,
  [data-hero-reveal] {
    opacity: 1;
    transform: none;
  }
}
