/*
 * RMAR / Basalt Field Manual
 * Design movement: mountain-industrial field guide. Basalt surfaces, ember-gold booking actions,
 * trail-sequence layouts, condensed display type, operational clarity, and restrained motion.
 */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --basalt-950: #0a0a0c;
  --basalt-925: #0e0e10;
  --basalt-900: #101013;
  --basalt-850: #141418;
  --basalt-800: #17171b;
  --basalt-750: #1b1b20;
  --basalt-700: #212126;
  --basalt-line: #2a2a30;
  --paper: #f5f4f1;
  --paper-dim: #b8b7bd;
  --paper-faint: #85848c;
  --ember: #f0b840;
  --ember-bright: #ffd166;
  --ember-ink: #1e1709;
  --glacier: #6fd6c4;
  --glacier-dim: #2f5a52;
  --danger: #e05a4e;
  --focus: #ffd166;
  --container: min(100% - 40px, 1220px);
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: clamp(5rem, 9vw, 8rem);
  --font-display: 'Barlow Condensed', Impact, sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --easing-out: cubic-bezier(.23, 1, .32, 1);
  --shadow-field: 0 18px 54px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--basalt-950); }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--basalt-950);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--ember-ink); background: var(--ember-bright); }

.skip-link {
  position: fixed;
  z-index: 10000;
  top: -5rem;
  left: 1rem;
  padding: .75rem 1rem;
  color: var(--ember-ink);
  background: var(--ember-bright);
  font-weight: 700;
  transition: top .16s var(--easing-out);
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

.site-shell { overflow: clip; }
.container { width: var(--container); margin-inline: auto; }
.flow > * + * { margin-top: var(--flow-space, 1rem); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0;
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: .55rem; height: .55rem; content: ''; background: currentColor; }
.eyebrow--glacier { color: var(--glacier); }
.eyebrow--paper { color: var(--paper-dim); }
.display-xl, .display-lg, .display-md, h1, h2, h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: .94;
  text-transform: uppercase;
}
.display-xl, h1 { font-size: clamp(3.75rem, 9vw, 8.4rem); }
.display-lg, h2 { font-size: clamp(2.65rem, 5vw, 5.3rem); }
.display-md, h3 { font-size: clamp(1.7rem, 3vw, 2.55rem); }
.lead {
  max-width: 48rem;
  margin: 0;
  color: var(--paper-dim);
  font-size: clamp(1.11rem, 1.5vw, 1.38rem);
  line-height: 1.48;
}
.prose { max-width: 43rem; color: var(--paper-dim); }
.prose p { margin: 0; }
.prose p + p { margin-top: 1rem; }
.prose strong { color: var(--paper); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Header / compact field-station navigation */
.site-header {
  position: relative;
  z-index: 60;
  border-bottom: 1px solid rgba(245, 244, 241, .14);
  background: rgba(10, 10, 12, .78);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 74px;
  gap: 1rem;
}
.brand { display: inline-flex; width: 134px; min-height: 44px; align-items: center; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(.7rem, 1.8vw, 1.65rem); }
.desktop-nav a, .mobile-nav a {
  color: var(--paper-dim);
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: color .16s var(--easing-out);
}
.desktop-nav a:hover, .desktop-nav a[aria-current='page'], .mobile-nav a:hover, .mobile-nav a[aria-current='page'] { color: var(--paper); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: .5rem; }
.phone-link { display: none; color: var(--paper-dim); font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em; }
.menu-toggle {
  display: none;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--basalt-line);
  color: var(--paper);
  background: transparent;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 18px; height: 1px; margin: 0 auto; content: ''; background: currentColor; transition: transform .18s var(--easing-out); }
.menu-toggle::before { transform: translateY(-5px); }
.menu-toggle::after { transform: translateY(4px); }
.menu-toggle[aria-expanded='true'] span { opacity: 0; }
.menu-toggle[aria-expanded='true']::before { transform: translateY(1px) rotate(45deg); }
.menu-toggle[aria-expanded='true']::after { transform: translateY(-1px) rotate(-45deg); }
.mobile-nav { display: none; }

/* Actions */
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .75rem 1.05rem;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .16s var(--easing-out), background-color .16s var(--easing-out), border-color .16s var(--easing-out), transform .16s var(--easing-out);
}
.btn:active { transform: scale(.97); }
.btn--book { color: var(--ember-ink); background: var(--ember); }
.btn--book:hover { background: var(--ember-bright); }
.btn--quiet { border-color: rgba(245, 244, 241, .34); color: var(--paper); background: transparent; }
.btn--quiet:hover { border-color: var(--paper); background: rgba(245, 244, 241, .07); }
.btn--small { min-height: 39px; padding: .62rem .86rem; font-size: .9rem; }
.btn svg, .arrow-link svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.arrow-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--paper); font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; letter-spacing: .025em; text-transform: uppercase; }
.arrow-link:hover { color: var(--ember); }

/* Hero */
.hero { position: relative; min-height: min(800px, calc(100svh - 75px)); display: grid; align-items: end; isolation: isolate; background: var(--basalt-925); }
.hero__media { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero::before { position: absolute; z-index: -1; inset: 0; content: ''; background: linear-gradient(90deg, rgba(8,8,10,.98) 0%, rgba(8,8,10,.86) 31%, rgba(8,8,10,.38) 67%, rgba(8,8,10,.45) 100%), linear-gradient(0deg, rgba(8,8,10,.92) 0%, rgba(8,8,10,0) 47%); }
.hero__inner { width: var(--container); padding-block: clamp(5.5rem, 14vh, 9rem) clamp(3rem, 8vh, 6rem); margin-inline: auto; }
.hero__copy { max-width: 53rem; }
.hero__copy h1 { max-width: 11ch; margin-top: 1.15rem; }
.hero__copy .lead { margin-top: 1.35rem; }
.hero__copy .button-row { margin-top: 2rem; }
.hero__route-note { display: flex; align-items: center; gap: .65rem; margin-top: 3.6rem; color: var(--paper-faint); font-family: var(--font-mono); font-size: .65rem; letter-spacing: .09em; text-transform: uppercase; }
.hero__route-note::before { width: 40px; height: 1px; content: ''; background: var(--ember); }

.inner-hero { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(4.8rem, 10vw, 8rem) clamp(3.7rem, 8vw, 6.4rem); background: var(--basalt-900); }
.inner-hero::before { position: absolute; z-index: -1; inset: 0; content: ''; opacity: .6; background-image: radial-gradient(circle at 75% 20%, rgba(240,184,64,.12), transparent 25%), linear-gradient(125deg, transparent 30%, rgba(111,214,196,.06) 30.4%, transparent 31%), repeating-linear-gradient(135deg, transparent 0 27px, rgba(245,244,241,.03) 28px 29px, transparent 30px 54px); }
.inner-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, .48fr); align-items: end; gap: var(--space-2xl); }
.inner-hero h1 { max-width: 12ch; margin-top: 1rem; }
.inner-hero .lead { margin-top: 1.25rem; }
.inner-hero__aside { align-self: stretch; padding: 1.1rem 0 0 1.2rem; border-left: 1px solid var(--basalt-line); color: var(--paper-faint); font-family: var(--font-mono); font-size: .72rem; line-height: 1.7; }

/* Route / specs */
.section { position: relative; padding-block: var(--space-4xl); }
.section--surface { background: var(--basalt-900); }
.section--raised { background: var(--basalt-800); }
.section--paper { color: var(--basalt-950); background: var(--paper); }
.section--paper h2, .section--paper h3 { color: var(--basalt-950); }
.section--paper .lead, .section--paper .prose { color: #49484e; }
.section--paper .eyebrow { color: #8c6619; }
.section--paper .eyebrow--glacier { color: #1f6c60; }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, .54fr); align-items: end; gap: 2rem; margin-bottom: clamp(2.25rem, 5vw, 4rem); }
.section-head h2 { max-width: 10.8ch; margin-top: 1rem; }
.section-head .prose { justify-self: end; }
.route-grid { display: grid; grid-template-columns: 66px minmax(0, 1fr); gap: 1.3rem; }
.route-index { padding-top: .38rem; color: var(--ember); font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; }
.route-index::after { display: block; width: 1px; height: 100%; min-height: 78px; margin: .85rem 0 0 5px; content: ''; background: var(--basalt-line); }
.section--paper .route-index::after { background: rgba(10,10,12,.16); }

.spec-line { display: grid; grid-template-columns: minmax(118px, .5fr) minmax(0, 1.5fr); gap: 1rem; padding: .98rem 0; border-top: 1px solid var(--basalt-line); }
.spec-line:last-child { border-bottom: 1px solid var(--basalt-line); }
.spec-line dt { color: var(--paper-faint); font-family: var(--font-mono); font-size: .66rem; letter-spacing: .085em; text-transform: uppercase; }
.spec-line dd { margin: 0; color: var(--paper); }
.section--paper .spec-line { border-color: rgba(10,10,12,.16); }
.section--paper .spec-line dt { color: #67666d; }
.section--paper .spec-line dd { color: var(--basalt-950); }

/* Feature layout */
.feature-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(290px, .85fr); align-items: stretch; gap: clamp(1.5rem, 5vw, 5rem); }
.feature-split__media { position: relative; min-height: 470px; overflow: hidden; background: var(--basalt-700); }
.feature-split__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-split__media::after { position: absolute; inset: 0; content: ''; background: linear-gradient(0deg, rgba(10,10,12,.55), transparent 50%); }
.feature-split__tag { position: absolute; z-index: 1; right: 0; bottom: 0; padding: .8rem 1rem; color: var(--ember-ink); background: var(--ember); font-family: var(--font-mono); font-size: .66rem; letter-spacing: .07em; text-transform: uppercase; }
.feature-split__copy { display: flex; flex-direction: column; justify-content: center; padding-block: 2rem; }
.feature-split__copy h2 { max-width: 11ch; margin-top: 1rem; }
.feature-split__copy .prose { margin-top: 1.3rem; }
.feature-split__copy .button-row { margin-top: 2rem; }
.inclusion-list { display: grid; margin: 2rem 0 0; border-top: 1px solid var(--basalt-line); }
.inclusion-list li { display: flex; align-items: baseline; gap: .75rem; padding: .85rem 0; border-bottom: 1px solid var(--basalt-line); color: var(--paper-dim); list-style: none; }
.inclusion-list li::before { width: .48rem; height: .48rem; flex: 0 0 auto; content: ''; background: var(--glacier); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--basalt-line); }
.step { position: relative; padding: 1.8rem clamp(1rem, 3vw, 2.1rem) 1.2rem 0; }
.step + .step { padding-left: clamp(1rem, 3vw, 2.1rem); border-left: 1px solid var(--basalt-line); }
.step__number { display: block; color: var(--ember); font-family: var(--font-mono); font-size: .7rem; letter-spacing: .09em; }
.step h3 { margin-top: 2rem; }
.step p { margin: .8rem 0 0; color: var(--paper-dim); }

/* Cards with full-border matrix, no generic rounded boxes */
.offer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--basalt-line); border-left: 1px solid var(--basalt-line); }
.offer-card { position: relative; display: flex; min-height: 430px; flex-direction: column; justify-content: flex-end; overflow: hidden; border-right: 1px solid var(--basalt-line); border-bottom: 1px solid var(--basalt-line); background: var(--basalt-800); }
.offer-card__media { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.77) contrast(1.06); transition: transform .45s var(--easing-out), filter .45s var(--easing-out); }
.offer-card::after { position: absolute; z-index: 0; inset: 0; content: ''; background: linear-gradient(0deg, rgba(8,8,10,.97) 4%, rgba(8,8,10,.39) 58%, rgba(8,8,10,.08)); }
.offer-card:hover .offer-card__media { filter: saturate(1) contrast(1.03); transform: scale(1.035); }
.offer-card__content { position: relative; z-index: 1; padding: 1.35rem; }
.offer-card__flag { display: inline-block; margin-bottom: .7rem; color: var(--ember); font-family: var(--font-mono); font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; }
.offer-card h3 { max-width: 9ch; font-size: clamp(1.85rem, 2.3vw, 2.55rem); }
.offer-card p { margin: .8rem 0 1.3rem; color: var(--paper-dim); line-height: 1.4; }
.offer-card .arrow-link { font-size: 1rem; }
.offer-card--priority::before { position: absolute; z-index: 2; top: 0; right: 0; width: 12px; height: 100%; content: ''; background: var(--ember); }

.path-cards { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--basalt-line); border-left: 1px solid var(--basalt-line); }
.path-card { min-height: 270px; padding: 1.4rem; border-right: 1px solid var(--basalt-line); border-bottom: 1px solid var(--basalt-line); }
.path-card__number { color: var(--glacier); font-family: var(--font-mono); font-size: .67rem; letter-spacing: .1em; }
.path-card h3 { max-width: 10ch; margin-top: 3rem; }
.path-card p { margin: .75rem 0 0; color: var(--paper-dim); }

/* Terrain band */
.terrain-band { position: relative; min-height: 500px; display: grid; align-items: end; isolation: isolate; overflow: hidden; background: var(--basalt-850); }
.terrain-band__media { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.05); }
.terrain-band::after { position: absolute; z-index: -1; inset: 0; content: ''; background: linear-gradient(90deg, rgba(10,10,12,.94) 0%, rgba(10,10,12,.69) 44%, rgba(10,10,12,.18)); }
.terrain-band__inner { width: var(--container); padding-block: clamp(3.2rem, 7vw, 5rem); margin-inline: auto; }
.terrain-band h2 { max-width: 9ch; margin-top: 1rem; }
.terrain-band .prose { margin-top: 1.3rem; }
.terrain-band .arrow-link { margin-top: 1.7rem; }

/* Real gallery */
.gallery-grid { columns: 4 220px; column-gap: 1rem; }
.gallery-item { position: relative; display: block; break-inside: avoid; margin-bottom: 1rem; overflow: hidden; background: var(--basalt-700); }
.gallery-item img { width: 100%; min-height: 145px; object-fit: cover; transition: transform .4s var(--easing-out); }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 1.4rem .9rem .75rem; color: transparent; background: linear-gradient(0deg, rgba(10,10,12,.82), transparent); font-family: var(--font-mono); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; transition: color .2s var(--easing-out); }
.gallery-item:hover figcaption, .gallery-item:focus-within figcaption { color: var(--paper); }

/* Quote-free trust rail / field notes */
.field-notes { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(220px, .95fr); gap: clamp(2rem, 7vw, 6.5rem); align-items: center; }
.field-notes__mark { width: 74px; height: 74px; display: grid; place-items: center; margin-bottom: 1.5rem; color: var(--ember); border: 1px solid rgba(240,184,64,.45); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; }
.field-notes h2 { max-width: 11ch; }
.field-notes .prose { margin-top: 1.2rem; }
.field-notes__table { border-top: 1px solid var(--basalt-line); }

/* faq */
.faq-list { border-top: 1px solid var(--basalt-line); }
.faq-item { border-bottom: 1px solid var(--basalt-line); }
.faq-question { width: 100%; min-height: 72px; display: grid; grid-template-columns: 1fr 36px; align-items: center; gap: 1rem; padding: 1.1rem 0; border: 0; color: var(--paper); background: transparent; text-align: left; }
.faq-question span:first-child { font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.85rem); font-weight: 600; letter-spacing: -.01em; line-height: 1; text-transform: uppercase; }
.faq-question .faq-icon { position: relative; width: 28px; height: 28px; border: 1px solid var(--basalt-line); }
.faq-question .faq-icon::before, .faq-question .faq-icon::after { position: absolute; inset: 50% auto auto 50%; width: 12px; height: 1px; content: ''; background: var(--ember); transform: translate(-50%, -50%); transition: transform .18s var(--easing-out); }
.faq-question .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-question[aria-expanded='true'] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .22s var(--easing-out); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 48rem; margin: 0; padding: 0 2.6rem 1.45rem 0; color: var(--paper-dim); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* contact and legal */
.contact-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr); gap: clamp(2rem, 7vw, 7rem); }
.contact-channel { display: block; padding: 1rem 0; border-top: 1px solid var(--basalt-line); }
.contact-channel:last-child { border-bottom: 1px solid var(--basalt-line); }
.contact-channel small, .location-block small { display: block; color: var(--paper-faint); font-family: var(--font-mono); font-size: .63rem; letter-spacing: .09em; text-transform: uppercase; }
.contact-channel strong { display: block; margin-top: .3rem; color: var(--paper); font-family: var(--font-display); font-size: clamp(1.65rem, 3vw, 2.4rem); letter-spacing: -.02em; line-height: 1; text-transform: uppercase; }
.contact-channel:hover strong { color: var(--ember); }
.location-stack { display: grid; border-top: 1px solid var(--basalt-line); }
.location-block { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--basalt-line); }
.location-block h3 { margin-top: .4rem; }
.location-block address { margin-top: .7rem; color: var(--paper-dim); font-style: normal; line-height: 1.45; }
.legal-layout { display: grid; grid-template-columns: minmax(110px, .35fr) minmax(0, 1.65fr); gap: 2rem; }
.legal-layout h2 { margin-top: -.2rem; font-size: clamp(2rem, 3vw, 3.3rem); }
.legal-layout .prose { max-width: 54rem; }
.legal-section + .legal-section { margin-top: 2.6rem; }
.legal-notice { margin-top: 2rem; padding: 1rem 1.15rem; border: 1px solid rgba(240,184,64,.45); color: var(--paper-dim); background: rgba(240,184,64,.08); }
.legal-notice strong { color: var(--ember-bright); }

/* Final CTA / sticky book */
.book-band { position: relative; overflow: hidden; padding-block: clamp(4rem, 8vw, 6rem); background: var(--ember); color: var(--ember-ink); }
.book-band::after { position: absolute; top: -20%; right: -6%; width: min(46vw, 560px); aspect-ratio: 1; content: ''; border: 1px solid rgba(30,23,9,.2); border-radius: 50%; box-shadow: 0 0 0 70px rgba(30,23,9,.08), 0 0 0 140px rgba(30,23,9,.06), 0 0 0 210px rgba(30,23,9,.04); }
.book-band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 2rem; }
.book-band h2 { max-width: 11ch; color: var(--ember-ink); }
.book-band .eyebrow { color: #59400b; }
.book-band .lead { max-width: 40rem; margin-top: 1rem; color: #4b380e; }
.book-band .btn--quiet { color: var(--paper); border-color: var(--ember-ink); background: var(--ember-ink); }
.book-band .btn--quiet:hover { background: #34260b; }
.sticky-book { position: fixed; z-index: 48; right: 0; bottom: 0; left: 0; display: none; align-items: center; justify-content: space-between; gap: 1rem; padding: .55rem 1rem; border-top: 1px solid var(--basalt-line); background: rgba(10,10,12,.96); box-shadow: 0 -10px 30px rgba(0,0,0,.26); }
.sticky-book span { color: var(--paper-dim); font-family: var(--font-mono); font-size: .61rem; letter-spacing: .06em; text-transform: uppercase; }
.sticky-book .btn { min-height: 42px; }

/* Footer */
.site-footer { padding-top: var(--space-3xl); border-top: 1px solid var(--basalt-line); background: var(--basalt-950); }
.footer-seo { width: var(--container); margin-inline: auto; padding-bottom: 2.4rem; border-bottom: 1px solid var(--basalt-line); color: var(--paper-dim); }
.footer-seo p { max-width: 66rem; margin: 0; }
.footer-main { width: var(--container); display: grid; grid-template-columns: minmax(190px, 1.45fr) repeat(3, minmax(120px, 1fr)); gap: 2rem; padding-block: 2.7rem; margin-inline: auto; }
.footer-brand img { width: 170px; }
.footer-brand p { max-width: 22rem; margin: 1rem 0 0; color: var(--paper-faint); font-size: .94rem; }
.footer-col h2 { color: var(--paper-faint); font-family: var(--font-mono); font-size: .62rem; font-weight: 500; letter-spacing: .1em; line-height: 1.2; text-transform: uppercase; }
.footer-col ul { display: grid; gap: .55rem; padding: 0; margin: 1rem 0 0; list-style: none; }
.footer-col a { color: var(--paper-dim); font-size: .94rem; }
.footer-col a:hover { color: var(--ember); }
.footer-bottom { width: var(--container); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .7rem 1.5rem; padding-block: 1.2rem; margin-inline: auto; border-top: 1px solid var(--basalt-line); color: var(--paper-faint); font-family: var(--font-mono); font-size: .59rem; letter-spacing: .045em; text-transform: uppercase; }
.footer-bottom a { color: var(--paper-dim); text-decoration: underline; text-underline-offset: 3px; }

/* 404 */
.not-found { min-height: 65vh; display: grid; place-items: center; padding-block: 6rem; text-align: center; }
.not-found p { max-width: 35rem; margin: 1rem auto 2rem; color: var(--paper-dim); }

/* Animation: only nonessential when motion is accepted */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(10px); animation: field-reveal .5s var(--easing-out) forwards; }
  [data-reveal='2'] { animation-delay: .08s; }
  [data-reveal='3'] { animation-delay: .16s; }
  @keyframes field-reveal { to { opacity: 1; transform: translateY(0); } }
}

@media (min-width: 1100px) { .phone-link { display: inline; } }
@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: absolute; top: 100%; right: 0; left: 0; grid-template-columns: 1fr; gap: .8rem; padding: 1.3rem max(20px, calc((100vw - 1220px) / 2)); border-bottom: 1px solid var(--basalt-line); background: var(--basalt-900); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .18s var(--easing-out), transform .18s var(--easing-out); }
  .mobile-nav.is-open { display: grid; transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-nav a { min-height: 44px; display: flex; align-items: center; padding: .6rem 0; border-bottom: 1px solid var(--basalt-line); }
  .mobile-nav a:last-child { border-bottom: 0; }
  .inner-hero__grid, .section-head, .feature-split, .field-notes, .contact-layout, .book-band__inner { grid-template-columns: 1fr; }
  .inner-hero__aside { min-height: auto; padding: 1rem 0 0; border-top: 1px solid var(--basalt-line); border-left: 0; }
  .section-head .prose { justify-self: start; }
  .feature-split__media { min-height: 380px; }
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-card { min-height: 395px; }
  .footer-main { grid-template-columns: minmax(180px, 1.4fr) repeat(2, 1fr); }
  .footer-brand { grid-column: span 3; }
}
@media (max-width: 640px) {
  :root { --container: min(100% - 32px, 1220px); }
  body { font-size: 1rem; padding-bottom: 70px; }
  .header-inner { min-height: 66px; }
  .brand { width: 112px; }
  .header-actions .btn { min-height: 40px; padding-inline: .75rem; font-size: .86rem; }
  .header-actions .btn span { display: none; }
  .hero { min-height: 680px; }
  .hero__media { object-position: 62% center; }
  .hero::before { background: linear-gradient(90deg, rgba(8,8,10,.98), rgba(8,8,10,.56) 100%), linear-gradient(0deg, rgba(8,8,10,.92), transparent 60%); }
  .hero__inner { padding-bottom: 3rem; }
  .hero__route-note { margin-top: 2.4rem; }
  .button-row .btn { flex: 1 1 170px; }
  .section { padding-block: 4.7rem; }
  .route-grid { grid-template-columns: 31px minmax(0, 1fr); gap: .75rem; }
  .route-index::after { min-height: 55px; }
  .steps { grid-template-columns: 1fr; }
  .step { padding: 1.3rem 0; }
  .step + .step { padding-left: 0; border-top: 1px solid var(--basalt-line); border-left: 0; }
  .step h3 { margin-top: 1.5rem; }
  .offer-grid, .path-cards { grid-template-columns: 1fr; }
  .offer-card { min-height: 380px; }
  .feature-split__media { min-height: 330px; }
  .terrain-band { min-height: 470px; }
  .gallery-grid { columns: 2 145px; column-gap: .65rem; }
  .gallery-item { margin-bottom: .65rem; }
  .legal-layout { grid-template-columns: 1fr; gap: .8rem; }
  .book-band__inner .button-row { width: 100%; }
  .book-band__inner .btn { width: 100%; }
  .sticky-book { display: flex; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { padding-bottom: 1.1rem; }
  .location-block { grid-template-columns: 1fr; }
}
@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; }
}
