:root {
  --pine-950: #0d1f18;
  --pine-900: #12281f;
  --pine-800: #163529;
  --pine-700: #1f4b37;
  --moss-500: #6f9f4b;
  --moss-300: #b8cf8a;
  --clay-700: #8f3d1f;
  --clay-500: #c45f2c;
  --carrot-400: #f0b23a;
  --sunset-500: #ee7f2d;
  --ember-950: #2a0809;
  --straw-200: #f3d990;
  --sky-300: #98c9df;
  --sky-100: #d9eef2;
  --paper-100: #f5efe3;
  --paper-200: #e4d7bd;
  --charcoal: #17201b;
  --ink-soft: #405146;
  --white: #fffaf0;
  --shadow: 0 18px 60px rgba(13, 31, 24, 0.28);
  --shadow-soft: 0 10px 30px rgba(13, 31, 24, 0.16);
  --radius: 8px;
  --max-width: 1180px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 14% 8%, rgba(240, 178, 58, 0.18), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(152, 201, 223, 0.24), transparent 34%),
    linear-gradient(180deg, var(--paper-100) 0%, #efe2c6 45%, #d6e0bf 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.48;
  background:
    repeating-linear-gradient(0deg, rgba(42, 8, 9, 0.03) 0 1px, transparent 1px 11px),
    repeating-linear-gradient(90deg, rgba(42, 8, 9, 0.025) 0 1px, transparent 1px 17px);
}

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

a {
  color: inherit;
}

button,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--pine-950);
  background: var(--carrot-400);
  border-radius: var(--radius);
  font-weight: 800;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: var(--header-height);
  padding: 12px 28px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(42, 8, 9, 0.94), rgba(13, 31, 24, 0.9));
  border-bottom: 1px solid rgba(240, 178, 58, 0.28);
  box-shadow: 0 8px 26px rgba(42, 8, 9, 0.18);
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  background: linear-gradient(90deg, rgba(42, 8, 9, 0.98), rgba(13, 31, 24, 0.95));
  border-bottom-color: rgba(240, 178, 58, 0.36);
  box-shadow: 0 12px 34px rgba(13, 31, 24, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--pine-950);
  background: var(--carrot-400);
  border: 2px solid rgba(255, 250, 240, 0.8);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(13, 31, 24, 0.24);
}

.brand-name {
  font-size: 1rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: var(--radius);
  color: rgba(255, 250, 240, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--pine-950);
  background: var(--straw-200);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-picker select {
  min-width: 72px;
  padding: 9px 10px;
  color: var(--white);
  background: rgba(13, 31, 24, 0.55);
  border: 1px solid rgba(255, 250, 240, 0.35);
  border-radius: var(--radius);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary,
.btn-small {
  color: var(--pine-950);
  background: linear-gradient(180deg, #ffd15e, var(--carrot-400) 52%, var(--sunset-500));
  border-color: rgba(255, 250, 240, 0.3);
  box-shadow: 0 10px 24px rgba(143, 61, 31, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-small:hover,
.btn-small:focus-visible {
  box-shadow: 0 14px 34px rgba(143, 61, 31, 0.45);
}

.btn-small {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 0.88rem;
}

.btn-ghost {
  color: var(--white);
  background: rgba(13, 31, 24, 0.42);
  border-color: rgba(255, 250, 240, 0.45);
  box-shadow: 0 10px 24px rgba(13, 31, 24, 0.24);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 250, 240, 0.14);
}

.btn-outline {
  color: var(--pine-950);
  background: transparent;
  border-color: rgba(22, 53, 41, 0.42);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--straw-200);
}

.road-hud {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 90;
  width: 178px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(13, 31, 24, 0.82);
  border: 1px solid rgba(243, 217, 144, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.road-hud-label,
.road-hud-sub {
  display: block;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.76rem;
}

.road-hud strong {
  display: block;
  margin: 2px 0;
  color: var(--carrot-400);
  font-size: 1.35rem;
  line-height: 1.15;
}

.journey-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--pine-950);
}

.atmosphere-frame,
.atmosphere-warmth {
  position: absolute;
  inset: -2vh -2vw;
}

.atmosphere-frame {
  opacity: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(0.78) contrast(0.94) brightness(0.72);
  transition: opacity 700ms ease;
}

.atmosphere-frame.is-active {
  opacity: 0.28;
}

.atmosphere-forest {
  background-image: url("../images/long-ride-hero-placeholder.jpg");
}

.atmosphere-road {
  background-image: url("../images/longride-placeholder-meadow-road.png");
}

.atmosphere-cabin {
  background-image: url("../images/longride-placeholder-cabin-stop.png");
}

.atmosphere-overlook {
  background-image: url("../images/longride-placeholder-forest-overlook.png");
}

.atmosphere-night {
  background-image: url("../images/longride-placeholder-night-camp.png");
}

.atmosphere-warmth {
  background:
    radial-gradient(circle at 52% 12%, rgba(255, 200, 71, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(238, 127, 45, 0.13), rgba(13, 31, 24, 0.46) 72%);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 96vh;
  min-height: 96svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 124px 28px 80px;
  color: var(--white);
  background: var(--pine-950);
}

.hero-parallax,
.hero-layer,
.hero-keyart-grade,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-parallax {
  z-index: 0;
  overflow: hidden;
}

.hero-layer {
  --hero-y: 0px;
  transform: translate3d(0, var(--hero-y), 0) scale(1.045);
  will-change: transform;
}

.hero-keyart-bg {
  background-image: url("../images/hero/lr-hero-keyart-generated.png");
  background-position: center bottom;
  background-size: cover;
}

.hero-keyart-grade {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 31, 24, 0.05) 0%, rgba(13, 31, 24, 0.02) 42%, rgba(13, 31, 24, 0.66) 100%),
    radial-gradient(circle at 50% 25%, rgba(255, 240, 170, 0.1), transparent 33%),
    linear-gradient(90deg, rgba(13, 31, 24, 0.26), transparent 24%, transparent 76%, rgba(13, 31, 24, 0.28));
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(13, 31, 24, 0.02) 0%, rgba(13, 31, 24, 0.04) 54%, rgba(13, 31, 24, 0.5) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 6;
  max-width: 1080px;
  width: min(100%, 1080px);
  margin: 0 auto;
  text-align: center;
  transform: translateY(-3vh);
}

.eyebrow,
.section-km,
.biome-km {
  margin: 0 0 12px;
  color: var(--carrot-400);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.6rem, 9.5vw, 10.4rem);
  line-height: 0.86;
  font-weight: 900;
  white-space: nowrap;
  color: rgba(18, 70, 59, 0.86);
  text-shadow:
    0 2px 0 rgba(255, 244, 188, 0.28),
    0 18px 42px rgba(13, 31, 24, 0.26);
}

.hero-lede {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(255, 250, 240, 0.9);
  font-size: 1.18rem;
  text-shadow: 0 2px 16px rgba(42, 8, 9, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-tagline {
  margin: 18px 0 0;
  color: var(--straw-200);
  font-weight: 900;
}

.section-pad {
  padding: 96px 28px;
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.intro-band {
  position: relative;
  overflow: hidden;
  color: var(--paper-100);
  background:
    linear-gradient(90deg, rgba(42, 8, 9, 0.88), rgba(22, 53, 41, 0.86)),
    repeating-linear-gradient(105deg, rgba(243, 217, 144, 0.06) 0 2px, transparent 2px 18px);
}

.intro-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(240, 178, 58, 0.22), transparent 22%),
    linear-gradient(115deg, transparent 0 44%, rgba(196, 95, 44, 0.18) 44% 49%, transparent 49% 100%),
    repeating-linear-gradient(86deg, rgba(255, 250, 240, 0.035) 0 1px, transparent 1px 22px);
  opacity: 0.9;
}

.intro-band .section-inner {
  position: relative;
  z-index: 1;
}

.intro-grid,
.loot-grid,
.horse-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  line-height: 1.02;
  color: inherit;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.22;
}

.section-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: currentColor;
  opacity: 0.82;
  font-size: 1.06rem;
}

.loop-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.loop-step {
  min-height: 196px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.12), rgba(255, 250, 240, 0.06));
  border: 1px solid rgba(243, 217, 144, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(13, 31, 24, 0.18);
  backdrop-filter: blur(3px);
}

.loop-step p {
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.74);
}

.step-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--carrot-400);
  font-weight: 950;
}

.road-section {
  position: relative;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  background:
    linear-gradient(180deg, rgba(245, 239, 227, 0.94), rgba(243, 217, 144, 0.5) 42%, rgba(18, 40, 31, 0.9) 42%, rgba(13, 31, 24, 0.96));
}

.road-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 46%;
  background:
    radial-gradient(circle at 26% 10%, rgba(240, 178, 58, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(152, 201, 223, 0.18), rgba(245, 239, 227, 0.04)),
    repeating-linear-gradient(92deg, rgba(31, 75, 55, 0.05) 0 12px, transparent 12px 34px);
  opacity: 0.72;
}

.road-section .section-inner {
  position: relative;
  z-index: 1;
  padding: 0 28px;
}

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

.biome-road {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  min-height: 480px;
  overflow-x: auto;
}

.biome {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 480px;
  padding: 32px;
  color: var(--white);
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.08);
}

.biome::before,
.biome::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.biome::after {
  background:
    linear-gradient(180deg, rgba(42, 8, 9, 0.04), rgba(13, 31, 24, 0.76)),
    radial-gradient(circle at 50% 26%, rgba(240, 178, 58, 0.16), transparent 35%),
    repeating-linear-gradient(92deg, rgba(255, 250, 240, 0.04) 0 1px, transparent 1px 24px);
}

.biome-meadow::before {
  background:
    linear-gradient(180deg, rgba(13, 31, 24, 0.08), rgba(13, 31, 24, 0.22)),
    url("../images/longride-placeholder-meadow-road.png");
  background-position: center;
  background-size: cover;
}

.biome-forest::before {
  background:
    linear-gradient(180deg, rgba(13, 31, 24, 0.1), rgba(13, 31, 24, 0.42)),
    url("../images/longride-placeholder-forest-overlook.png");
  background-position: center;
  background-size: cover;
}

.biome-dry::before {
  background:
    linear-gradient(180deg, rgba(13, 31, 24, 0.08), rgba(42, 8, 9, 0.36)),
    url("../images/longride-placeholder-cabin-stop.png");
  background-position: center;
  background-size: cover;
}

.biome-night::before {
  background:
    linear-gradient(180deg, rgba(13, 31, 24, 0.08), rgba(13, 31, 24, 0.58)),
    url("../images/longride-placeholder-night-camp.png");
  background-position: center;
  background-size: cover;
}

.biome-content {
  max-width: 280px;
  padding: 16px;
  background: rgba(13, 31, 24, 0.42);
  border: 1px solid rgba(243, 217, 144, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(13, 31, 24, 0.32);
  backdrop-filter: blur(4px);
}

.biome-content p {
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.82);
}

.loot-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 239, 227, 0.92), rgba(231, 238, 214, 0.84) 54%, rgba(217, 238, 242, 0.74));
}

.loot-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(240, 178, 58, 0.18), transparent 22%),
    linear-gradient(105deg, transparent 0 54%, rgba(196, 95, 44, 0.12) 54% 59%, transparent 59%),
    repeating-linear-gradient(0deg, rgba(31, 75, 55, 0.035) 0 1px, transparent 1px 18px);
  opacity: 0.85;
}

.loot-section .section-inner {
  position: relative;
  z-index: 1;
}

.saddlebag {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.loot-item {
  min-height: 54px;
  padding: 12px 14px;
  color: var(--pine-950);
  background: rgba(255, 250, 240, 0.72);
  border: 2px solid rgba(31, 75, 55, 0.18);
  border-radius: var(--radius);
  font-weight: 850;
  text-align: left;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    box-shadow 150ms ease;
}

.loot-item:hover,
.loot-item:focus-visible {
  transform: translateY(-1px);
  background: var(--white);
  border-color: rgba(196, 95, 44, 0.72);
  outline: none;
  box-shadow: var(--shadow-soft);
}

.loot-item.is-selected {
  color: var(--pine-950);
  background: var(--straw-200);
  border-color: var(--clay-500);
  box-shadow: 0 10px 26px rgba(143, 61, 31, 0.18);
}

.inventory-panel,
.horse-status {
  padding: 24px;
  background: rgba(255, 250, 240, 0.76);
  border: 1px solid rgba(22, 53, 41, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--pine-950);
  font-weight: 950;
}

.text-button {
  padding: 7px 10px;
  color: var(--clay-700);
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 900;
}

.text-button:hover,
.text-button:focus-visible {
  background: rgba(196, 95, 44, 0.12);
  outline: none;
}

.forecast-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.forecast-list div,
.horse-status div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(22, 53, 41, 0.12);
}

.forecast-list dt,
.horse-status span {
  color: var(--ink-soft);
  font-weight: 750;
}

.forecast-list dd {
  margin: 0;
  color: var(--clay-700);
  font-weight: 950;
}

.horse-comment {
  margin: 0;
  padding: 16px;
  color: var(--paper-100);
  background: var(--pine-800);
  border-radius: var(--radius);
  font-weight: 760;
}

.horse-section {
  position: relative;
  overflow: hidden;
  color: var(--paper-100);
  background:
    linear-gradient(120deg, rgba(42, 8, 9, 0.84), rgba(13, 31, 24, 0.92)),
    linear-gradient(90deg, rgba(196, 95, 44, 0.22), rgba(152, 201, 223, 0.16));
}

.horse-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 31, 24, 0.88), rgba(13, 31, 24, 0.48)),
    url("../images/long-ride-hero-placeholder.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.58) contrast(0.95) brightness(0.64);
  opacity: 0.28;
}

.horse-section .section-inner {
  position: relative;
  z-index: 1;
}

.horse-panel {
  padding-top: 12px;
}

.horse-panel .btn {
  margin-top: 26px;
  color: var(--paper-100);
  border-color: rgba(243, 217, 144, 0.4);
}

.horse-panel .btn:hover,
.horse-panel .btn:focus-visible {
  color: var(--pine-950);
}

.horse-status {
  color: var(--pine-950);
}

.horse-status strong {
  color: var(--clay-700);
}

.horse-status p {
  margin: 18px 0 0;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--clay-700), var(--pine-800));
  border-radius: var(--radius);
  font-weight: 850;
}

.media-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 239, 227, 0.96), rgba(235, 221, 190, 0.94));
}

.media-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 10%, rgba(240, 178, 58, 0.18), transparent 22%),
    repeating-linear-gradient(100deg, rgba(143, 61, 31, 0.045) 0 2px, transparent 2px 20px);
}

.media-section .section-inner {
  position: relative;
  z-index: 1;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.media-card {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--pine-900);
  border: 7px solid rgba(255, 250, 240, 0.92);
  border-radius: 6px;
  box-shadow: 0 16px 36px rgba(42, 8, 9, 0.2);
  transform: rotate(-0.55deg);
}

.media-card:nth-child(2n) {
  transform: rotate(0.45deg);
}

.media-card:nth-child(3n) {
  transform: rotate(-0.2deg);
}

.media-card::after {
  content: "capture";
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 8px;
  color: var(--pine-950);
  background: var(--carrot-400);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.placeholder-art::after,
.generated-art::after {
  content: "placeholder";
}

.media-card img,
.placeholder-art > div {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.media-card img {
  filter: saturate(0.78) contrast(0.96) brightness(0.92);
  transition: transform 220ms ease, filter 220ms ease;
}

.media-card:hover img {
  filter: saturate(0.95) contrast(1) brightness(0.96);
  transform: scale(1.03);
}

.media-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 42px 16px 16px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(13, 31, 24, 0), rgba(13, 31, 24, 0.86));
  font-weight: 850;
}

.media-card figcaption span {
  display: block;
  color: var(--carrot-400);
  font-size: 0.76rem;
  font-weight: 950;
}

.placeholder-art > div {
  background:
    radial-gradient(circle at 56% 22%, rgba(255, 220, 115, 0.42), transparent 13%),
    linear-gradient(102deg, transparent 0 48%, rgba(196, 95, 44, 0.58) 48% 54%, transparent 54%),
    linear-gradient(180deg, #8cc5dd 0 36%, #8dbb6a 36% 68%, #4f7f3a 68% 100%);
}

.cabin-art > div {
  background:
    linear-gradient(135deg, transparent 0 53%, #4b1d14 53% 60%, transparent 60%),
    linear-gradient(90deg, transparent 0 48%, #7c321d 48% 62%, transparent 62%),
    linear-gradient(115deg, transparent 0 46%, rgba(196, 95, 44, 0.7) 46% 54%, transparent 54%),
    linear-gradient(180deg, #9fcfe4 0 42%, #8bbd68 42% 100%);
}

.road-art > div {
  background:
    linear-gradient(92deg, transparent 0 44%, rgba(143, 61, 31, 0.86) 44% 51%, transparent 51%),
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.16) 0 3px, transparent 3px 24px),
    linear-gradient(180deg, #cddfa5 0 28%, #5e9043 28% 100%);
}

.overlook-art > div {
  background:
    radial-gradient(circle at 62% 12%, rgba(240, 178, 58, 0.28), transparent 20%),
    repeating-linear-gradient(88deg, transparent 0 18px, rgba(111, 159, 75, 0.5) 18px 28px, transparent 28px 42px),
    linear-gradient(180deg, #8bb7cb 0 34%, #4f7459 34% 58%, #163529 58% 100%);
}

.night-art > div {
  background:
    radial-gradient(circle at 70% 20%, rgba(240, 178, 58, 0.62), transparent 8%),
    linear-gradient(110deg, transparent 0 48%, rgba(196, 95, 44, 0.38) 48% 53%, transparent 53%),
    linear-gradient(180deg, #162942 0 38%, #10241c 38% 100%);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 62% 18%, rgba(240, 178, 58, 0.24), transparent 22%),
    linear-gradient(90deg, rgba(42, 8, 9, 0.95), rgba(13, 31, 24, 0.84)),
    linear-gradient(180deg, #283d47 0 34%, #13281f 34% 100%);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 18%, rgba(240, 178, 58, 0.22), transparent 28%),
    linear-gradient(94deg, transparent 0 48%, rgba(196, 95, 44, 0.75) 48% 52%, transparent 52%),
    repeating-linear-gradient(0deg, rgba(255, 250, 240, 0.045) 0 1px, transparent 1px 18px);
  opacity: 0.74;
}

.final-inner {
  position: relative;
  max-width: 760px;
}

.final-inner p:not(.section-km) {
  margin: 18px 0 28px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 1.08rem;
}

.site-footer {
  padding: 26px 28px;
  color: var(--paper-100);
  background: var(--pine-950);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--carrot-400);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 18px;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    min-height: 90vh;
    min-height: 90svh;
    padding: 116px 20px 48px;
  }

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

  .intro-grid,
  .loot-grid,
  .horse-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    position: sticky;
    background: linear-gradient(90deg, rgba(42, 8, 9, 0.98), rgba(13, 31, 24, 0.95));
    backdrop-filter: blur(14px);
  }

  .brand-name {
    display: none;
  }

  .btn-small {
    max-width: 132px;
  }

  .language-picker select {
    min-width: 62px;
  }

  .road-hud {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    width: auto;
    padding: 9px 10px;
  }

  .road-hud-sub {
    display: none;
  }

  .road-hud strong {
    margin: 0;
    font-size: 1rem;
  }

  .hero {
    min-height: 86vh;
    min-height: 86svh;
    padding: 136px 18px 38px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(13, 31, 24, 0.82) 0%, rgba(13, 31, 24, 0.22) 72%),
      radial-gradient(circle at 50% 30%, rgba(255, 214, 103, 0.12), transparent 36%);
  }

  .hero h1 {
    font-size: 3.7rem;
    color: rgba(18, 70, 59, 0.88);
  }

  .hero-content {
    transform: translateY(-1vh);
  }

  .hero-lede,
  .section-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .section-pad {
    padding: 70px 18px;
  }

  h2 {
    font-size: 2.1rem;
  }

  .loop-steps,
  .saddlebag,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .biome-road {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .biome {
    min-height: 340px;
  }

  .footer-inner {
    display: block;
  }

  .footer-inner a {
    display: inline-block;
    margin-top: 12px;
    padding-bottom: 52px;
  }
}

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