:root {
  color-scheme: light;
  --linen: #faf7f2;
  --paper: #fffdf9;
  --sage: #e6ebdf;
  --sage-deep: #c9d5c2;
  --ink: #0e1316;
  --forest: #173f30;
  --forest-mid: #376950;
  --ember: #ed8153;
  --ember-deep: #d9693e;
  --muted: #56625d;
  --line: #d8d8cf;
  --shadow-soft: 0 24px 70px rgba(42, 57, 47, 0.16);
  --shadow-float: 0 18px 44px rgba(27, 57, 43, 0.2);
  --max: 1240px;
  --display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  margin-block: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-variation-settings: "wdth" 92;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease);
}

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

.site-shell {
  overflow: clip;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: -0.015em;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

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

.button:active {
  transform: translateY(1px) scale(0.985);
}

.button-ember {
  background: var(--ember);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(183, 83, 45, 0.24);
}

.button-ember:hover {
  background: #f08f66;
  box-shadow: 0 15px 34px rgba(183, 83, 45, 0.28);
}

.button-forest {
  background: var(--forest);
  color: #fffdf9;
  box-shadow: 0 10px 24px rgba(23, 63, 48, 0.2);
}

.button-forest:hover {
  background: #20523f;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--ink);
  font-weight: 800;
}

.text-link span {
  color: var(--ember-deep);
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translateX(4px);
}

[dir="rtl"] .text-link span {
  transform: rotate(180deg);
}

[dir="rtl"] .text-link:hover span {
  transform: rotate(180deg) translateX(4px);
}

/* Navigation */
.site-nav {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 50;
  pointer-events: none;
}

.nav-rail {
  width: min(1320px, calc(100% - 32px));
  min-height: 66px;
  margin-inline: auto;
  padding: 8px 10px 8px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 14px 40px rgba(27, 49, 39, 0.16);
  pointer-events: auto;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), background-color 260ms var(--ease);
}

.site-nav.is-scrolled .nav-rail {
  transform: translateY(-8px);
  background: rgba(255, 253, 249, 0.99);
  box-shadow: 0 16px 38px rgba(27, 49, 39, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 142px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding-block: 10px;
  color: #33433c;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 5px;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 14px;
}

.language {
  position: relative;
}

.language-button,
.menu-toggle {
  min-width: 46px;
  height: 46px;
  border: 0;
  border-radius: 11px;
  background: #f0eee8;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  transition: background-color 180ms var(--ease), transform 180ms var(--ease);
}

.language-button:hover,
.menu-toggle:hover {
  background: var(--sage);
  transform: translateY(-1px);
}

.language-button svg,
.menu-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.language-menu {
  position: absolute;
  inset: calc(100% + 10px) 0 auto auto;
  width: 190px;
  padding: 8px;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow-float);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms;
}

.language.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu a {
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
}

.language-menu a:hover,
.language-menu a.is-current {
  background: var(--sage);
}

.language-menu small {
  color: var(--muted);
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(820px, 82dvh);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #cddcaf;
}

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

.hero-media video {
  object-fit: cover;
  object-position: 58% 52%;
  transform: scale(calc(1.035 + var(--hero-shift, 0) * 0.02));
  transition: filter 500ms var(--ease);
}

.hero-media.is-paused video {
  filter: saturate(0.88);
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(250, 247, 242, 0.96) 0%, rgba(250, 247, 242, 0.84) 31%, rgba(250, 247, 242, 0.18) 58%, rgba(14, 19, 22, 0.04) 100%),
    linear-gradient(180deg, rgba(14, 19, 22, 0.1), transparent 32%, rgba(14, 19, 22, 0.18));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(700px, calc(100% - 48px));
  margin-inline-start: max(24px, calc((100vw - var(--max)) / 2));
  padding: 140px 0 160px;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 780;
  color: var(--ink);
}

.hero-copy p {
  max-width: 61ch;
  margin-top: 26px;
  color: #25332d;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 600;
  line-height: 1.7;
}

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

.hero-seam {
  position: absolute;
  z-index: 4;
  inset: auto 0 -1px;
  height: clamp(70px, 9vw, 145px);
  pointer-events: none;
}

.hero-seam svg {
  width: 100%;
  height: 100%;
}

.hero-seam path {
  fill: var(--linen);
}

/* Product opening */
.product-opening {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0 clamp(100px, 13vw, 190px);
  background: var(--linen);
}

.opening-heading {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 72px;
}

.opening-heading h2,
.finder-intro h2,
.crew-copy h2,
.cave-copy h2,
.download-copy h2,
.faq-layout > h2 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 760;
}

.opening-heading p,
.finder-intro > p,
.crew-copy > p,
.cave-copy > p,
.download-copy > p {
  max-width: 66ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.route-thread {
  position: absolute;
  z-index: 2;
  inset: 190px 0 auto;
  height: 860px;
  pointer-events: none;
}

.route-thread svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route-shadow,
.route-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-shadow {
  stroke: rgba(255, 253, 249, 0.94);
  stroke-width: 15;
}

.route-line {
  stroke: var(--ember);
  stroke-width: 7;
  stroke-dasharray: var(--route-length, 1400);
  stroke-dashoffset: var(--route-offset, 0);
}

.product-collage {
  position: relative;
  z-index: 3;
  min-height: 700px;
  margin-top: 86px;
}

.social-proof-card,
.map-proof-card {
  position: absolute;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.social-proof-card {
  inset: 24px auto auto 3%;
  width: min(54%, 650px);
  border-radius: 16px;
  transform: rotate(-2.4deg);
}

.post-topline {
  min-height: 60px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 13px;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--forest-mid);
}

.avatar-two {
  margin-inline-start: -14px;
  background: var(--ember);
  box-shadow: 0 0 0 3px var(--paper);
}

.social-proof-card > img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.post-copy {
  padding: 24px 28px 30px;
}

.post-copy h3,
.map-copy h3 {
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-weight: 730;
}

.post-copy p {
  max-width: 58ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.map-proof-card {
  inset: 120px 1.5% auto auto;
  width: min(47%, 570px);
  min-height: 560px;
  border-radius: 14px;
  transform: rotate(2.8deg);
  background: #dce8d2;
}

.map-proof-card > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  opacity: 0.82;
}

.map-copy {
  position: absolute;
  z-index: 2;
  inset: 24px 26px auto;
  max-width: 330px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 12px 28px rgba(23, 63, 48, 0.14);
}

.map-copy > strong {
  color: var(--forest-mid);
  font-size: 12px;
}

.map-copy h3 {
  margin-top: 6px;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
}

.map-route {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 42px;
}

.map-route path {
  fill: none;
  stroke: var(--ember);
  stroke-width: 9;
  stroke-linecap: round;
}

.map-route circle {
  fill: var(--paper);
  stroke: var(--ember);
  stroke-width: 5;
}

/* Feature lab */
.feature-lab {
  padding: 0 0 clamp(100px, 12vw, 170px);
  background: var(--linen);
}

.feature-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.feature-tab {
  position: relative;
  min-height: 112px;
  padding: 20px 22px;
  border: 0;
  border-inline-end: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  text-align: start;
}

.feature-tab:last-child {
  border-inline-end: 0;
}

.feature-tab::after {
  content: "";
  position: absolute;
  inset: auto 20px -1px;
  height: 4px;
  background: var(--ember);
  transform: scaleX(0);
  transition: transform 240ms var(--ease);
}

.feature-tab.is-active {
  color: var(--ink);
}

.feature-tab.is-active::after {
  transform: scaleX(1);
}

.feature-tab span,
.feature-tab small {
  display: block;
}

.feature-tab span {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 720;
}

.feature-tab small {
  margin-top: 5px;
  color: inherit;
  font-size: 12px;
  line-height: 1.45;
}

.feature-stage {
  min-height: 650px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  border-radius: 16px;
  overflow: hidden;
  background: var(--forest);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
}

.feature-media {
  min-height: 650px;
  background: #dfe7d5;
  overflow: hidden;
}

.feature-media img,
.feature-media video {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.feature-copy {
  padding: clamp(42px, 6vw, 82px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.feature-copy h3 {
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
  font-weight: 740;
}

.feature-copy > p {
  max-width: 53ch;
  margin-top: 26px;
  color: #dbe7df;
  font-size: 1rem;
}

.feature-copy .text-link {
  margin-top: 34px;
  color: var(--paper);
}

.feature-notes {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-notes span,
.cave-list span {
  padding: 8px 11px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.feature-notes span {
  background: rgba(250, 247, 242, 0.12);
  color: var(--paper);
}

/* Promise */
.promise-strip {
  background: var(--forest);
  color: var(--paper);
  overflow: hidden;
}

.promise-track {
  width: min(1500px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr 1.25fr;
}

.promise-track article {
  min-height: 230px;
  padding: 42px clamp(24px, 3vw, 48px);
  border-inline-end: 1px solid rgba(250, 247, 242, 0.18);
}

.promise-track article:nth-child(2) {
  background: #20523f;
}

.promise-track article:nth-child(3) {
  background: var(--ember);
  color: var(--ink);
}

.promise-track article:last-child {
  border-inline-end: 0;
}

.promise-track strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.6rem);
  letter-spacing: -0.03em;
}

.promise-track p {
  max-width: 34ch;
  margin-top: 18px;
  color: inherit;
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.85;
}

/* Finder */
.trail-finder {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--paper);
}

.finder-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.finder-intro {
  position: sticky;
  top: 120px;
}

.finder-intro > p {
  margin-top: 28px;
}

.finder-controls {
  margin-top: 46px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.search-field > span:first-child,
.finder-controls legend {
  display: block;
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.search-input-wrap {
  min-height: 54px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: #efeee8;
}

.search-input-wrap svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 2;
  stroke-linecap: round;
}

.search-input-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.search-input-wrap input::placeholder {
  color: #68736e;
  opacity: 1;
}

.finder-controls fieldset {
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #c9cdc6;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  transition: background-color 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease);
}

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

.filter-button.is-active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--paper);
}

.clear-button {
  margin-top: 18px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--forest-mid);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trail-list {
  display: grid;
  gap: 22px;
}

.trail-card {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  border-radius: 14px;
  background: var(--linen);
  box-shadow: 0 14px 34px rgba(34, 59, 47, 0.1);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.trail-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.18fr) minmax(190px, 0.82fr);
}

.trail-card:nth-child(even) > img {
  order: 2;
}

.trail-card:hover {
  transform: translateY(-4px) rotate(-0.25deg);
  box-shadow: 0 20px 46px rgba(34, 59, 47, 0.15);
}

.trail-card > img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.trail-card-copy {
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trail-card h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 720;
}

.trail-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.trail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 13px;
  margin-top: 20px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.save-button {
  min-height: 42px;
  margin-top: auto;
  padding: 0 15px;
  border: 0;
  border-radius: 9px;
  background: var(--paper);
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(34, 59, 47, 0.1);
}

.save-button.is-saved {
  background: var(--ember);
  color: var(--ink);
}

.trail-empty {
  min-height: 230px;
  padding: 34px;
  border-radius: 14px;
  background: var(--sage);
}

.trail-empty h3 {
  font-size: 2rem;
}

.trail-empty p {
  margin-top: 12px;
  color: var(--muted);
}

/* Crew */
.crew-story {
  padding: clamp(100px, 13vw, 190px) 0;
  background: var(--linen);
}

.crew-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.crew-media {
  position: relative;
  min-height: 680px;
}

.crew-media img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 16px 54px 16px 16px;
  box-shadow: var(--shadow-soft);
}

.crew-signal {
  position: absolute;
  inset: 12% -34px auto auto;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
}

.crew-signal span {
  position: absolute;
  border: 4px solid var(--ember);
  border-radius: 50%;
  animation: signal 2.8s var(--ease) infinite;
}

.crew-signal span:nth-child(1) { width: 34px; height: 34px; }
.crew-signal span:nth-child(2) { width: 70px; height: 70px; animation-delay: 180ms; }
.crew-signal span:nth-child(3) { width: 110px; height: 110px; animation-delay: 360ms; }

@keyframes signal {
  0%, 18% { opacity: 0; transform: scale(0.78); }
  38%, 72% { opacity: 0.88; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.08); }
}

.crew-copy > p {
  margin-top: 28px;
}

.crew-steps {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.crew-steps li {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.crew-steps li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--forest);
  color: var(--paper);
  font-family: var(--display);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.crew-steps strong {
  font-family: var(--display);
  font-size: 1.25rem;
}

.crew-steps p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

/* Cave */
.cave-story {
  padding: clamp(90px, 11vw, 155px) 0;
  background: var(--sage);
}

.cave-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(52px, 9vw, 120px);
  align-items: center;
}

.cave-copy > p {
  margin-top: 28px;
}

.cave-list {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cave-list span {
  background: var(--paper);
  color: var(--forest);
}

.cave-media {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.cave-media img {
  position: relative;
  z-index: 2;
  width: min(76%, 530px);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(24, 62, 47, 0.24));
  transform: rotate(2deg);
}

.topo-disc {
  position: absolute;
  width: min(92%, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 22%, rgba(23, 63, 48, 0.08) 22.5% 23%, transparent 23.5% 35%, rgba(23, 63, 48, 0.08) 35.5% 36%, transparent 36.5% 49%, rgba(23, 63, 48, 0.08) 49.5% 50%, transparent 50.5% 63%, rgba(23, 63, 48, 0.08) 63.5% 64%, transparent 64.5%),
    #d4dfcd;
}

/* Download */
.download {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  background: var(--ember);
}

.download-image {
  min-height: 760px;
  overflow: hidden;
}

.download-image img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

.download-copy {
  padding: clamp(56px, 8vw, 110px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.download-copy h2 {
  max-width: 10ch;
}

.download-copy > p {
  margin-top: 28px;
  color: #27342f;
}

.store-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-button {
  min-height: 60px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 11px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 14px 28px rgba(85, 45, 27, 0.22);
  transition: transform 180ms var(--ease), background-color 180ms var(--ease);
}

.store-button:hover {
  transform: translateY(-2px);
  background: var(--forest);
}

.store-button svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.store-button span,
.store-button small,
.store-button strong {
  display: block;
}

.store-button small {
  font-size: 9px;
  opacity: 0.78;
}

.store-button strong {
  font-size: 14px;
}

/* FAQ and footer */
.faq {
  padding: clamp(100px, 12vw, 170px) 0;
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 130px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list article {
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line);
}

.faq-list h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 700;
}

.faq-list p {
  max-width: 68ch;
  margin-top: 14px;
  color: var(--muted);
}

.footer {
  min-height: 190px;
  padding: 42px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  background: var(--linen);
}

.footer-main p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
  color: #33433c;
  font-size: 12px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--ember-deep);
}

.toast {
  position: fixed;
  z-index: 80;
  inset: auto 22px 22px auto;
  max-width: min(390px, calc(100% - 44px));
  padding: 14px 18px;
  border-radius: 11px;
  background: var(--forest);
  color: var(--paper);
  box-shadow: var(--shadow-float);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(18px);
  visibility: hidden;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* RTL */
[dir="rtl"] .nav-rail {
  padding: 8px 18px 8px 10px;
}

[dir="rtl"] .hero-wash {
  transform: scaleX(-1);
}

[dir="rtl"] .hero-media video {
  transform: scaleX(-1) scale(calc(1.035 + var(--hero-shift, 0) * 0.02));
}

[dir="rtl"] .route-thread {
  transform: scaleX(-1);
}

[dir="rtl"] .social-proof-card {
  inset-inline: auto 3%;
  transform: rotate(2.4deg);
}

[dir="rtl"] .map-proof-card {
  inset-inline: 1.5% auto;
  transform: rotate(-2.8deg);
}

[dir="rtl"] .toast {
  inset-inline: 22px auto;
}

/* Responsive */
@media (max-width: 1050px) {
  .nav-links {
    position: fixed;
    inset: 96px 16px auto;
    padding: 18px;
    border-radius: 14px;
    background: var(--paper);
    box-shadow: var(--shadow-float);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

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

  .opening-heading,
  .finder-layout,
  .crew-grid,
  .cave-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .opening-heading {
    gap: 28px;
  }

  .finder-intro {
    position: static;
  }

  .feature-stage {
    grid-template-columns: 1fr;
  }

  .feature-media,
  .feature-media img,
  .feature-media video {
    min-height: 480px;
    height: 480px;
  }

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

  .promise-track article:nth-child(2) {
    border-inline-end: 0;
  }

  .crew-grid,
  .cave-grid {
    gap: 58px;
  }

  .crew-media,
  .crew-media img {
    min-height: 560px;
    height: 560px;
  }

  .crew-copy,
  .cave-copy {
    max-width: 720px;
  }

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

  .download-image,
  .download-image img {
    min-height: 520px;
    height: 520px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-nav {
    inset-block-start: 10px;
  }

  .nav-rail {
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 6px 7px 6px 13px;
    gap: 10px;
    border-radius: 14px;
  }

  .brand img {
    width: 112px;
  }

  .nav-cta {
    display: none;
  }

  .language-button span {
    display: none;
  }

  .language-button,
  .menu-toggle {
    min-width: 44px;
    height: 44px;
  }

  .nav-links {
    inset-block-start: 80px;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-media video {
    object-position: 61% center;
  }

  .hero-wash {
    background: linear-gradient(180deg, rgba(250, 247, 242, 0.16) 0%, rgba(250, 247, 242, 0.32) 36%, rgba(250, 247, 242, 0.94) 74%, var(--linen) 100%);
  }

  .hero-copy {
    width: calc(100% - 28px);
    margin-inline: auto;
    padding: 270px 0 100px;
  }

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

  .hero-copy p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .product-opening {
    padding-block-start: 36px;
  }

  .opening-heading h2,
  .finder-intro h2,
  .crew-copy h2,
  .cave-copy h2,
  .download-copy h2,
  .faq-layout > h2 {
    font-size: clamp(2.8rem, 12vw, 4.3rem);
  }

  .route-thread {
    inset-block-start: 270px;
    height: 760px;
    opacity: 0.82;
  }

  .product-collage {
    min-height: 920px;
    margin-top: 60px;
  }

  .social-proof-card,
  .map-proof-card {
    width: 92%;
  }

  .social-proof-card {
    inset: 20px auto auto 0;
    transform: rotate(-1.6deg);
  }

  .social-proof-card > img {
    height: 260px;
  }

  .map-proof-card {
    inset: 470px 0 auto auto;
    min-height: 430px;
    transform: rotate(1.8deg);
  }

  .map-proof-card > img {
    height: 430px;
  }

  [dir="rtl"] .social-proof-card {
    inset-inline: auto 0;
  }

  [dir="rtl"] .map-proof-card {
    inset-inline: 0 auto;
  }

  .feature-lab {
    padding-block-end: 90px;
  }

  .feature-nav {
    grid-template-columns: repeat(4, minmax(128px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .feature-tab {
    min-height: 92px;
    padding: 16px;
  }

  .feature-tab small {
    display: none;
  }

  .feature-stage {
    min-height: 0;
    margin-top: 24px;
  }

  .feature-media,
  .feature-media img,
  .feature-media video {
    min-height: 380px;
    height: 380px;
  }

  .feature-copy {
    padding: 38px 24px 44px;
  }

  .feature-copy h3 {
    font-size: clamp(2.45rem, 10vw, 3.8rem);
  }

  .promise-track {
    grid-template-columns: 1fr;
  }

  .promise-track article {
    min-height: 180px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(250, 247, 242, 0.18);
  }

  .trail-finder,
  .crew-story,
  .cave-story,
  .faq {
    padding-block: 90px;
  }

  .trail-card,
  .trail-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .trail-card:nth-child(even) > img {
    order: 0;
  }

  .trail-card > img {
    min-height: 230px;
    height: 230px;
  }

  .crew-media,
  .crew-media img {
    min-height: 480px;
    height: 480px;
  }

  .crew-signal {
    inset-inline-end: -10px;
    width: 96px;
    height: 96px;
  }

  .crew-signal span:nth-child(3) {
    width: 88px;
    height: 88px;
  }

  .cave-media {
    min-height: 470px;
  }

  .cave-media img {
    max-height: 470px;
  }

  .download,
  .download-image,
  .download-image img {
    min-height: 0;
  }

  .download-image img {
    height: 410px;
  }

  .download-copy {
    padding: 54px 22px 66px;
  }

  .faq-layout {
    gap: 48px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

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

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

  .route-line {
    stroke-dashoffset: 0 !important;
  }
}
