:root {
  --ink: #172b26;
  --forest: #203a30;
  --paper: #f3f2e9;
  --lime: #dce898;
  --muted: #526057;
  --line: rgba(23, 43, 38, 0.2);
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gutter: clamp(24px, 4.5vw, 88px);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

/* Reserve these controls' space while deferred scripts initialize. */
.route-tabs[hidden] {
  display: grid !important;
  visibility: hidden;
}

.collection-toolbar[hidden] {
  display: flex !important;
  visibility: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

button {
  font: inherit;
  cursor: pointer;
}

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

button {
  color: inherit;
}

a,
button,
summary {
  touch-action: manipulation;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}

button:disabled {
  cursor: default;
}

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

figure,
p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 600;
}

h2 {
  font-size: clamp(42px, 4.75vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

p {
  line-height: 1.6;
}

button,
summary {
  font-size: inherit;
}

.wrap {
  width: calc(100% - var(--gutter) * 2);
  max-width: 1600px;
  margin-inline: auto;
}

.section-space {
  padding-block: clamp(80px, 9vw, 144px);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.section-number {
  margin-right: 20px;
  color: var(--muted);
}

.muted {
  color: #828b7c;
}

.emphasis {
  font-style: italic;
  font-weight: 400;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--lime);
  margin-right: 10px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 15px;
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--gutter);
  color: var(--paper);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
  white-space: nowrap;
}

.brand-mark {
  width: 33px;
  height: 38px;
  flex-shrink: 0;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 16px;
}

.site-header nav a {
  transition: color 0.2s;
}

.site-header nav a:hover {
  color: var(--lime);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 13px 0 13px 28px;
  border-left: 1px solid #f3f2e94a;
}

.nav-cta span {
  font-size: 20px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  height: 100svh;
  max-height: 1250px;
  overflow: hidden;
  background: #445346;
  color: var(--paper);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 47%;
  transform: scale(1.035);
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(10, 26, 23, 0.61) 0%,
      rgba(15, 28, 25, 0.22) 57%,
      rgba(15, 28, 25, 0.05) 100%
    ),
    linear-gradient(
      0deg,
      rgba(9, 25, 20, 0.68),
      transparent 30%,
      transparent 76%,
      rgba(9, 25, 20, 0.42)
    );
}

.hero-content {
  position: relative;
  padding: clamp(155px, 20vh, 235px) var(--gutter) 130px;
  max-width: 1200px;
}

.hero-intro {
  margin-bottom: 25px;
  font-size: 16px;
}

.hero h1 {
  font-size: clamp(84px, 9.4vw, 162px);
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.hero h1 span {
  color: var(--lime);
}

.hero-description {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
  margin-top: 30px;
  color: #f3f2e9eb;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 54px;
  padding: 15px 22px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 3px;
  transition:
    background 0.2s,
    transform 0.2s;
}

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

.button-lime {
  background: var(--lime);
  color: var(--ink);
}

.button span {
  font-size: 22px;
  line-height: 1;
}

.film-link {
  border: 0;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-size: 16px;
}

.play-symbol {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #f3f2e970;
  border-radius: 50%;
  font-size: 16px;
  padding-left: 2px;
  transition:
    background 0.2s,
    color 0.2s;
}

.film-link:hover .play-symbol {
  background: var(--paper);
  color: var(--ink);
}

.hero-bottom {
  position: absolute;
  bottom: 27px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f3f2e94a;
  padding-top: 20px;
  font-size: 16px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 12px;
}

.location-cross {
  font-size: 27px;
  font-weight: 400;
}

.coordinates {
  margin-left: 20px;
  opacity: 0.72;
  font-family: var(--sans);
  font-size: 16px;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-scroll > span:last-child {
  font-size: 24px;
  transition: transform 0.2s;
}

.hero-scroll:hover > span:last-child {
  transform: translateY(4px);
}

.hero-side-note {
  position: absolute;
  right: var(--gutter);
  top: 48%;
  writing-mode: vertical-rl;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0;
  opacity: 0.8;
}

.hero-intro,
.hero h1,
.hero-description,
.hero-actions {
  animation: hero-enter 1s both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero h1 {
  animation-delay: 0.1s;
}

.hero-description {
  animation-delay: 0.2s;
}

.hero-actions {
  animation-delay: 0.3s;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading > .eyebrow {
  margin-bottom: 35px;
}

.heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
}

.heading-row > p,
.heading-row > div {
  max-width: 350px;
  font-size: 16px;
  color: #526057;
}

.heading-row h2 {
  flex-shrink: 0;
}

.expedition {
  margin-top: 56px;
}

.expedition-screen {
  position: relative;
  aspect-ratio: 16/8.3;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.route-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.route-video.is-changing {
  opacity: 0.3;
}

.expedition-screen:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    rgba(8, 20, 16, 0.8),
    transparent 42%,
    transparent 70%,
    rgba(8, 20, 16, 0.35)
  );
}

.screen-top,
.screen-bottom {
  position: absolute;
  z-index: 1;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.screen-top {
  top: 24px;
  font-family: var(--sans);
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
}

.screen-top > span:first-child {
  display: flex;
  align-items: center;
}

.screen-bottom {
  bottom: 28px;
}

.screen-bottom h3 {
  font-size: clamp(25px, 3.1vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin-top: 9px;
}

.round-button {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid #f3f2e978;
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  transition:
    background 0.2s,
    color 0.2s;
}

.round-button:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.round-button span {
  font-size: 16px;
}

.media-error {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background: var(--ink);
  font-size: 16px;
  text-align: center;
  width: max-content;
  max-width: 90%;
}

.media-error a {
  display: block;
  text-decoration: underline;
}

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

.route-tabs button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 25px 22px 25px 0;
  border: 0;
  background: transparent;
  text-align: left;
  transition: background 0.25s;
}

.route-tabs button + button {
  padding-left: 24px;
}

.route-tabs button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.route-tabs button[aria-selected="true"]:before {
  transform: scaleX(1);
}

.route-tabs button:hover {
  background: #e7e9dc;
}

.route-index {
  align-self: flex-start;
  padding-top: 3px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--muted);
}

.route-tabs strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.route-tabs small {
  display: block;
  font-size: 16px;
  color: var(--muted);
  margin-top: 7px;
}

.route-arrow {
  margin-left: auto;
  font-size: 21px;
  opacity: 0.35;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.route-tabs button[aria-selected="true"] .route-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.explore-foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
}

.explore-foot .eyebrow {
  font-size: 16px;
}

.journal {
  background: #e8ebdf;
}

.small-label {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  color: var(--muted);
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 70px 5vw;
  margin-top: 60px;
  align-items: start;
}

.photo-button {
  display: block;
  border: 0;
  padding: 0;
  background: #68766a;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: left;
}

.photo-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.photo-button:hover img {
  transform: scale(1.035);
}

.photo-expand {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--paper);
  border-radius: 50%;
  font-size: 23px;
  transition:
    background 0.2s,
    transform 0.2s;
}

.photo-button:hover .photo-expand {
  background: var(--lime);
  transform: rotate(45deg);
}

.journal-wide .photo-button {
  aspect-ratio: 1.32;
}

.journal-narrow {
  margin-top: 140px;
}

.journal-narrow .photo-button {
  aspect-ratio: 0.84;
}

.journal-photo figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
}

.journal-photo .eyebrow {
  font-size: 16px;
  color: #526057;
}

.journal-photo h3 {
  font-size: 21px;
  letter-spacing: -0.04em;
  margin-top: 7px;
}

.photo-season {
  font-size: 16px;
  color: #526057;
  text-align: right;
  flex-shrink: 0;
}

.journal-narrow figcaption {
  display: block;
}

.journal-narrow .photo-season {
  display: block;
  text-align: left;
  margin-top: 12px;
}

.journal-panorama {
  grid-column: 1/-1;
}

.journal-panorama .photo-button {
  aspect-ratio: 2.6;
}

.journal-panorama img {
  object-position: center 45%;
}

.night {
  height: 115svh;
  min-height: 750px;
  background: #142323;
  color: var(--paper);
}

.night-stage {
  height: 100svh;
  min-height: 640px;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.night-stage > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.night-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #101f24ba, transparent 90%),
    linear-gradient(0deg, #101f2480, transparent 65%);
}

.night-copy {
  position: relative;
  padding-top: clamp(100px, 19vh, 220px);
}

.night-copy .eyebrow {
  margin-bottom: 30px;
}

.night-copy h2 {
  font-size: clamp(50px, 6.2vw, 96px);
  line-height: 1;
}

.night-copy > p:last-child {
  max-width: 340px;
  margin-top: 30px;
  color: #e1e6df;
  font-size: 16px;
}

.night-caption {
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0;
  border-top: 1px solid #f3f2e94a;
  padding-top: 20px;
}

.mac {
  background: var(--paper);
}

.mac-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 9vw;
}

.mac-heading > .eyebrow {
  margin-bottom: 35px;
}

.mac-heading h2 {
  font-size: clamp(42px, 4.7vw, 74px);
}

.mac-heading > p:not(.eyebrow) {
  max-width: 360px;
  margin-top: 30px;
  font-size: 16px;
  color: #526057;
}

.release-status {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 28px;
  font-size: 16px;
  color: #526057;
}

.release-status .status-dot {
  background: #587143;
}

.mac-details {
  padding-top: 42px;
}

.platform-line {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.platform-line svg {
  width: 63px;
  flex-shrink: 0;
}

.platform-line strong {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--muted);
}

.requirements {
  margin-top: 28px;
}

.requirements > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

.requirements dt {
  color: var(--muted);
}

.release-note {
  font-size: 16px;
  color: var(--muted);
  margin-top: 20px;
  max-width: 370px;
}

.faq {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-top: 100px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
}

.faq > .eyebrow {
  padding-top: 20px;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  padding: 20px 0;
  letter-spacing: -0.015em;
}

.faq summary > span {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.2s;
}

.faq details[open] summary > span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 620px;
  padding: 0 30px 25px 0;
  font-size: 16px;
  color: #526057;
}

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 65px 0 25px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 65px;
}

.footer-top > p {
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.back-top {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 16px;
  padding-block: 12px;
}

.back-top span {
  font-size: 23px;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid #f3f2e930;
  color: #b1c0b2;
  font-size: 16px;
}

.credits {
  max-width: 540px;
}

.credits summary {
  display: flex;
  gap: 16px;
}

.footer-data {
  margin-top: 20px;
  line-height: 1.9;
}

.footer-privacy {
  display: inline-block;
  line-height: 1.6;
}

.footer-privacy:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-data a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-data a:hover {
  color: var(--lime);
}

.media-dialog {
  background: #14241f;
  color: var(--paper);
  border: 1px solid #f3f2e930;
  width: min(1100px, 94vw);
  max-height: 92svh;
  padding: 22px;
  overflow: auto;
}

.media-dialog::backdrop {
  background: #07110eeb;
  backdrop-filter: blur(12px);
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.dialog-header h2 {
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.dialog-close {
  border: 0;
  background: none;
  padding: 8px 0 8px 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.dialog-close span {
  font-size: 25px;
  line-height: 1;
}

.media-dialog video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #09120e;
}

.media-dialog > p {
  font-size: 16px;
  color: #a6b5a6;
  margin-top: 15px;
}

.photo-dialog {
  width: fit-content;
  max-width: 94vw;
}

.photo-dialog > img {
  width: auto;
  height: auto;
  max-height: 76svh;
  max-width: 100%;
  margin: auto;
  object-fit: contain;
}

.motion-enabled .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.8s,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (min-width: 1700px) {
  .hero-content {
    padding-top: 22vh;
  }
  .hero h1 {
    font-size: 162px;
  }
}

@media (max-width: 1000px) {
  .site-header nav {
    gap: 23px;
  }
  .hero h1 {
    font-size: 12vw;
  }
  .hero-content {
    padding-top: 23vh;
  }
  .heading-row > p,
  .heading-row > div {
    max-width: 290px;
  }
  .heading-row {
    gap: 30px;
  }
  .route-tabs strong {
    font-size: 16px;
  }
  .route-tabs button {
    gap: 10px;
  }
  .route-tabs button + button {
    padding-left: 15px;
  }
  .route-tabs small {
    font-size: 16px;
  }
  .journal-grid {
    gap: 55px 4vw;
  }
  .photo-season {
    display: none;
  }
  .journal-narrow {
    margin-top: 95px;
  }
  .journal-photo h3 {
    font-size: 18px;
  }
  .mac-layout {
    gap: 6vw;
  }
  .mac-details {
    padding-top: 25px;
  }
  .mac-heading h2 {
    font-size: 4.7vw;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 24px;
  }
  .site-header {
    padding-top: 23px;
  }
  .brand {
    font-size: 17px;
    gap: 10px;
  }
  .brand-mark {
    width: 27px;
    height: 32px;
  }
  .site-header nav > a:not(.nav-cta) {
    display: none;
  }
  .nav-cta {
    border: 0;
    padding: 10px 0;
    gap: 12px;
    font-size: 16px;
  }
  .hero {
    min-height: 690px;
    max-height: 1050px;
  }
  .hero-content {
    padding-top: clamp(170px, 24svh, 240px);
    padding-bottom: 150px;
  }
  .hero h1 {
    font-size: clamp(62px, 13.3vw, 92px);
    line-height: 0.94;
    letter-spacing: -0.06em;
  }
  .hero-intro {
    font-size: 16px;
    letter-spacing: 0;
    margin-bottom: 22px;
  }
  .hero-description {
    font-size: 17px;
    margin-top: 26px;
  }
  .hero-actions {
    gap: 23px;
    flex-wrap: wrap;
    margin-top: 28px;
  }
  .button {
    padding: 13px 16px;
    gap: 22px;
    font-size: 16px;
    min-height: 50px;
  }
  .film-link {
    font-size: 16px;
    gap: 9px;
  }
  .hero-image {
    object-position: 59% 50%;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #10251f8c, #10251f19),
      linear-gradient(
        0deg,
        #0b211ac9,
        transparent 40%,
        #0b211a19 70%,
        #0b211a69
      );
  }
  .hero-bottom {
    bottom: 22px;
    padding-top: 15px;
  }
  .hero-location {
    font-size: 16px;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 240px;
    line-height: 1.2;
  }
  .hero-location .coordinates {
    display: block;
    width: 100%;
    margin-left: 24px;
    font-size: 16px;
  }
  .location-cross {
    font-size: 22px;
  }
  .hero-scroll > span:first-child {
    display: none;
  }
  .hero-side-note {
    display: none;
  }
  .heading-row {
    display: block;
  }
  .heading-row > p,
  .heading-row > div {
    max-width: 440px;
    margin-top: 25px;
    font-size: 16px;
  }
  .section-heading > .eyebrow {
    margin-bottom: 26px;
  }
  .eyebrow {
    font-size: 16px;
  }
  .expedition {
    margin-top: 34px;
  }
  .expedition-screen {
    aspect-ratio: 4/4.15;
  }
  .route-video {
    object-position: 50% 50%;
  }
  .screen-top,
  .screen-bottom {
    left: 18px;
    right: 18px;
  }
  .screen-top {
    font-size: 16px;
    top: 18px;
  }
  .screen-top .status-dot {
    width: 4px;
    height: 4px;
    margin-right: 6px;
  }
  .screen-bottom {
    bottom: 20px;
    gap: 15px;
  }
  .screen-bottom h3 {
    font-size: 28px;
    max-width: 235px;
  }
  .screen-bottom .eyebrow {
    font-size: 16px;
  }
  .round-button {
    width: 42px;
    height: 42px;
  }
  .route-tabs {
    grid-template-columns: 1fr;
  }
  .route-tabs button,
  .route-tabs button + button {
    padding: 20px 10px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }
  .route-tabs button:last-child {
    border-bottom: 0;
  }
  .route-tabs button:before {
    width: 3px;
    height: auto;
    bottom: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  .route-tabs button[aria-selected="true"]:before {
    transform: scaleY(1);
  }
  .route-tabs button[aria-selected="true"] {
    background: #e7e9dc;
  }
  .route-tabs strong {
    font-size: 16px;
  }
  .route-tabs small {
    font-size: 16px;
    margin-top: 4px;
  }
  .route-index {
    align-self: center;
  }
  .explore-foot {
    margin-top: 16px;
  }
  .explore-foot .eyebrow {
    display: none;
  }
  .explore-foot > p {
    font-size: 16px;
  }
  .journal-grid {
    display: block;
    margin-top: 35px;
  }
  .journal-photo + .journal-photo {
    margin-top: 40px;
  }
  .journal-wide .photo-button {
    aspect-ratio: 1.1;
  }
  .journal-narrow .photo-button {
    aspect-ratio: 1.1;
  }
  .journal-panorama .photo-button {
    aspect-ratio: 1.2;
  }
  .journal-photo figcaption,
  .journal-narrow figcaption {
    display: flex;
  }
  .journal-photo h3 {
    font-size: 18px;
  }
  .journal-photo figcaption {
    margin-top: 15px;
  }
  .journal-narrow .photo-season {
    display: none;
  }
  .night {
    height: 105svh;
    min-height: 700px;
  }
  .night-stage {
    min-height: 660px;
  }
  .night-copy {
    padding-top: 110px;
  }
  .night-copy h2 {
    font-size: clamp(42px, 9.6vw, 67px);
  }
  .night-copy > p:last-child {
    font-size: 16px;
    max-width: 280px;
  }
  .night-caption {
    bottom: 25px;
    display: block;
    font-size: 16px;
  }
  .night-caption > span {
    display: block;
  }
  .night-caption > span + span {
    margin-top: 10px;
  }
  .night-stage > img {
    object-position: 65% center;
  }
  .mac-layout {
    display: block;
  }
  .mac-heading h2 {
    font-size: clamp(40px, 9.4vw, 65px);
  }
  .mac-heading > p:not(.eyebrow) {
    font-size: 16px;
    max-width: 330px;
  }
  .mac-details {
    padding-top: 55px;
    max-width: 480px;
  }
  .platform-line {
    font-size: 20px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 65px;
    padding-top: 20px;
  }
  .faq summary {
    font-size: 16px;
  }
  .faq details p {
    font-size: 16px;
  }
  .footer {
    padding-top: 45px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 35px;
    padding-bottom: 35px;
  }
  .footer-top > p {
    font-size: 19px;
  }
  .back-top {
    grid-column: 1/-1;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid #f3f2e930;
    padding-top: 22px;
  }
  .footer-bottom {
    display: block;
    padding-top: 20px;
  }
  .footer-bottom > span {
    display: block;
  }
  .credits {
    margin-top: 20px;
  }
  .footer-bottom > span:last-child {
    margin-top: 20px;
  }
  .footer-privacy {
    margin-top: 20px;
  }
  .media-dialog {
    padding: 15px;
  }
  .dialog-header h2 {
    font-size: 16px;
  }
  .dialog-close {
    font-size: 16px;
    gap: 10px;
  }
  .photo-dialog > img {
    max-height: 70svh;
  }
}

@media (max-width: 370px) {
  .hero-actions {
    gap: 15px;
  }
  .button {
    gap: 12px;
  }
  .hero h1 {
    font-size: 13vw;
  }
  .hero-intro {
    font-size: 16px;
  }
  .hero .status-dot {
    margin-right: 6px;
  }
  .nav-cta {
    font-size: 16px;
  }
  .hero-actions .film-link {
    font-size: 16px;
  }
  .play-symbol {
    width: 26px;
    height: 26px;
  }
  .screen-bottom h3 {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .hero-image {
    transform: none !important;
    will-change: auto;
  }
  .motion-enabled .reveal {
    opacity: 1;
    transform: none;
  }
  .night {
    height: auto;
    min-height: 0;
  }
  .night-stage {
    position: relative;
    height: 85svh;
    min-height: 640px;
  }
}

.heading-row > p,
.heading-row > div {
  max-width: 420px;
  font-size: 18px;
}
.hero-description {
  max-width: 620px;
  font-size: 23px;
}
.eyebrow {
  font-weight: 500;
}
.coordinates {
  opacity: 1;
}
.hero-bottom {
  padding-top: 18px;
}
.route-tabs strong {
  font-size: 18px;
}
.route-tabs small {
  line-height: 1.45;
}
.route-index {
  display: none;
}
.screen-top {
  font-weight: 500;
}
.screen-top .status-dot {
  display: none;
}
.screen-bottom .eyebrow {
  font-size: 17px;
}
.journal-photo h3 {
  font-size: 26px;
  font-weight: 500;
}
.journal-photo figcaption {
  align-items: flex-start;
  flex-wrap: wrap;
}
.night-copy > p:last-child {
  max-width: 420px;
  font-size: 18px;
}
.mac-heading > p:not(.eyebrow),
.faq details p {
  font-size: 18px;
}
.mac-heading > p:not(.eyebrow) {
  max-width: 440px;
}
.faq summary {
  font-size: 20px;
}
.mac-details {
  padding-top: 0;
}
.footer-top > p {
  font-size: 20px;
}
.footer-bottom {
  flex-wrap: wrap;
}
.footer-data {
  line-height: 1.8;
}
@media (max-width: 1000px) {
  .heading-row {
    display: block;
  }
  .heading-row > p,
  .heading-row > div {
    margin-top: 28px;
    max-width: 540px;
  }
  .route-tabs strong {
    font-size: 17px;
  }
  .route-arrow {
    display: none;
  }
  .coordinates {
    display: none;
  }
}
@media (max-width: 700px) {
  .hero {
    min-height: 740px;
  }
  .hero-content {
    padding-top: 160px;
  }
  .hero-description {
    font-size: 20px;
    line-height: 1.5;
  }
  .hero-actions {
    align-items: flex-start;
    gap: 10px 24px;
  }
  .hero-intro {
    font-size: 16px;
  }
  .hero-location {
    max-width: 250px;
    flex-wrap: nowrap;
    line-height: 1.45;
  }
  .hero-location .coordinates {
    display: none;
  }
  .hero-scroll > span:first-child {
    display: none;
  }
  .screen-top {
    font-size: 16px;
    line-height: 1.4;
    align-items: flex-start;
  }
  .screen-top > span:first-child {
    max-width: 220px;
  }
  .screen-top > span:last-child {
    white-space: nowrap;
  }
  .screen-bottom .eyebrow {
    font-size: 16px;
  }
  .screen-bottom h3 {
    font-size: 28px;
    line-height: 1.15;
  }
  .route-tabs strong {
    font-size: 18px;
  }
  .route-tabs button,
  .route-tabs button + button {
    padding: 20px;
  }
  .night-copy > p:last-child {
    font-size: 18px;
    max-width: 340px;
  }
  .mac-heading h2 {
    font-size: clamp(34px, 9vw, 56px);
  }
  .requirements > div {
    flex-wrap: wrap;
    gap: 8px 20px;
  }
  .mac-details {
    padding-top: 48px;
  }
  .faq summary {
    font-size: 18px;
  }
  .dialog-header h2 {
    font-size: 16px;
  }
  .dialog-close {
    font-size: 16px;
  }
}

.collection-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}
.collection-header .brand {
  font-size: 22px;
}
.collection-header > a:last-child {
  white-space: nowrap;
}
.collection-heading {
  padding-block: 72px 48px;
}
.collection-heading h1 {
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}
.collection-heading p {
  max-width: 680px;
  font-size: 20px;
}
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-block: 24px;
  border-top: 1px solid var(--line);
}
.collection-toolbar label {
  display: flex;
  align-items: center;
  gap: 16px;
}
.collection-toolbar select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 10px;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 32px;
}
.collection-photo[hidden] {
  display: none;
}
.collection-photo .photo-button {
  aspect-ratio: 16 / 9;
}
.collection-photo figcaption {
  margin-top: 20px;
}
.collection-photo h2 {
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.collection-photo figcaption p {
  font-size: 16px;
  color: #526057;
}
.collection-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-block: 32px;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  font-size: 16px;
}
.collection-footer a {
  text-decoration: underline;
}
.collection-dialog {
  width: min(1400px, 95vw);
}
.collection-dialog > img {
  width: 100%;
  max-height: 67svh;
  object-fit: contain;
  background: #09120e;
  aspect-ratio: 16 / 9;
}
.collection-dialog-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  font-size: 16px;
}
.collection-dialog-info a {
  text-decoration: underline;
}
.image-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.image-navigation button {
  background: transparent;
  color: inherit;
  border: 1px solid #f3f2e970;
  padding: 12px 18px;
}
.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 0;
  margin-top: 35px;
  border-bottom: 1px solid currentColor;
}
@media (max-width: 700px) {
  .collection-header .brand {
    font-size: 18px;
  }
  .collection-heading {
    padding-block: 48px 30px;
  }
  .collection-heading p {
    font-size: 18px;
  }
  .collection-toolbar {
    flex-wrap: wrap;
  }
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .collection-photo h2 {
    font-size: 23px;
  }
  .collection-dialog {
    padding: 15px;
  }
}

/* The guide is readable before JavaScript and uses native disclosure controls. */
.engine-guide {
  border-bottom: 1px solid var(--line);
}
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(40px, 7vw, 112px);
  margin-top: 56px;
  align-items: start;
}
.guide-start {
  position: sticky;
  top: 32px;
}
.guide-start > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin-bottom: 28px;
}
.guide-start h3 {
  font-size: 26px;
  letter-spacing: -0.03em;
}
.guide-start ol {
  padding-left: 22px;
  margin-block: 20px 24px;
}
.guide-start li {
  padding-left: 6px;
  margin-bottom: 16px;
  line-height: 1.65;
}
.guide-hint {
  color: var(--muted);
  font-size: 16px;
}
.guide-topics details {
  border-top: 1px solid var(--line);
}
.guide-topics details:last-child {
  border-bottom: 1px solid var(--line);
}
.guide-topics summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px;
  cursor: pointer;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 500;
  line-height: 1.25;
  list-style: none;
  letter-spacing: -0.025em;
}
.guide-topics summary::-webkit-details-marker {
  display: none;
}
.guide-topics summary small {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.015em;
  color: var(--muted);
}
.guide-toggle {
  font-size: 28px;
  transition: transform 0.2s;
}
.guide-topics details[open] .guide-toggle {
  transform: rotate(45deg);
}
.guide-body {
  padding-bottom: 32px;
}
.guide-body p + p {
  margin-top: 20px;
}
.guide-body p {
  line-height: 1.7;
}
.shortcut-list {
  margin-block: 24px;
  font-size: 16px;
}
.shortcut-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: baseline;
  gap: 16px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  line-height: 1.6;
}
.shortcut-list dd {
  color: var(--muted);
}
.engine-guide kbd {
  display: inline-block;
  padding: 1px 6px;
  min-width: 25px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 4px;
  font: 0.85em / 1.6 ui-monospace, monospace;
  color: var(--ink);
  text-align: center;
}
.guide-link,
.original-download,
.media-fallback a,
.preview-status a {
  display: inline-block;
  padding-block: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.guide-link {
  margin-top: 12px;
  font-size: 16px;
}
.preview-status:not(:empty) {
  padding: 20px 0;
  font-size: 16px;
}
.original-download {
  font-size: 16px;
}
#full-photo,
#gallery-image {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}
.site-header nav a,
.privacy-navigation a,
.collection-header > a,
.collection-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 800px) {
  .guide-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .guide-start {
    position: static;
  }
  .guide-start > img {
    max-height: 320px;
    object-fit: cover;
  }
}
@media (max-width: 700px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }
  .site-header nav {
    width: 100%;
    justify-content: space-between;
  }
  .site-header nav > a.guide-nav {
    display: inline-flex;
  }
  .site-header .nav-cta {
    border: 0;
    padding: 0;
  }
  .hero {
    min-height: 680px;
  }
  .hero-content {
    padding-top: 180px;
  }
}
@media (max-width: 380px) {
  .shortcut-list > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
}
