*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #f0ebe3;
  color: #1a1814;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

:root {
  --ink: #1a1814;
  --muted: #6e675c;
  --sand: #f0ebe3;
  --sand-deep: #e2dbd0;
  --card: #faf7f2;
  --ochre: #c4782a;
  --ochre-dark: #a05e1c;
  --slate: #2c3540;
  --border: rgba(26,24,20,0.1);
}

/* ——— RIGHT VERTICAL NAV (unique) ——— */
.side-rail {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  background: var(--slate);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}
.side-rail .logo-mark {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.side-rail .logo-mark span { color: var(--ochre); }
.side-rail nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.side-rail nav a {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.side-rail nav a:hover,
.side-rail nav a.active { color: var(--ochre); }

.mobile-top {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 58px;
  background: var(--slate);
  z-index: 1100;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}
.mobile-top .logo-mark {
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.9rem;
}
.mobile-top .logo-mark span { color: var(--ochre); }
.mobile-top button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--slate);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--ochre); }

/* shift content for rail */
.wrap {
  margin-right: 72px;
}

/* ——— HERO: stacked type over full image ——— */
.hero-stack {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}
.hero-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-stack .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.85) 0%, rgba(26,24,20,0.2) 55%, transparent 100%);
}
.hero-stack .content {
  position: relative;
  z-index: 2;
  padding: 60px 48px 80px;
  max-width: 700px;
  color: #fff;
}
.hero-stack .eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 16px;
}
.hero-stack h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.hero-stack p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 420px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
}
.btn-ochre {
  background: var(--ochre);
  color: #fff;
}
.btn-ochre:hover { background: var(--ochre-dark); }
.btn-line {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-line-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  margin-left: 10px;
}
.btn-line-light:hover { background: #fff; color: var(--ink); }

/* ——— HORIZONTAL BAND ——— */
.band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.band-cell {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
}
.band-cell:last-child { border-right: none; }
.band-cell .num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ochre);
  margin-bottom: 12px;
}
.band-cell h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.band-cell p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ——— ZIGZAG ROWS ——— */
.zig {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.zig .pic img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.zig .copy {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--card);
}
.zig .copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.zig .copy p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 1.02rem;
}
.zig.alt .pic { order: 2; }
.zig.alt .copy { order: 1; background: var(--sand-deep); }

/* ——— TRAIL CARDS: staggered ——— */
.trails-head {
  padding: 70px 48px 30px;
  max-width: 900px;
}
.trails-head .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 10px;
}
.trails-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 10px;
}
.trails-head p { color: var(--muted); }

.trail-list {
  padding: 0 48px 80px;
}
.trail-row {
  display: grid;
  grid-template-columns: 200px 1fr 120px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.trail-row:hover { background: rgba(196,120,42,0.06); }
.trail-row img {
  width: 200px;
  height: 120px;
  object-fit: cover;
  border-radius: 2px;
}
.trail-row h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.trail-row p {
  color: var(--muted);
  font-size: 0.95rem;
}
.trail-row .meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre);
  text-align: right;
}

/* ——— ORIGIN long form ——— */
.origin-hero {
  padding: 80px 48px 40px;
  max-width: 800px;
}
.origin-hero .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 12px;
}
.origin-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.12;
}
.origin-hero .lead {
  font-size: 1.2rem;
  color: var(--muted);
}
.origin-body {
  max-width: 700px;
  padding: 20px 48px 80px;
}
.origin-body p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.origin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 48px 48px 0;
  max-width: 700px;
}
.origin-stats div {
  background: var(--card);
  padding: 24px;
  text-align: center;
}
.origin-stats strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ochre);
  margin-bottom: 2px;
}
.origin-stats span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ——— REACH ——— */
.reach-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 80vh;
}
.reach-info {
  padding: 70px 48px;
  background: var(--slate);
  color: #e8e4dc;
}
.reach-info .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 14px;
}
.reach-info h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  color: #fff;
}
.reach-info > p {
  color: rgba(232,228,220,0.65);
  margin-bottom: 36px;
}
.reach-line {
  margin-bottom: 22px;
}
.reach-line .lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 4px;
}
.reach-line p, .reach-line a {
  color: rgba(232,228,220,0.75);
  font-size: 0.98rem;
}
.reach-line a:hover { color: #fff; }

.reach-form-wrap {
  padding: 70px 48px;
  background: var(--sand);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 0.98rem;
  color: var(--ink);
  border-radius: 2px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--ochre);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ——— FOOTER ——— */
.foot {
  background: var(--ink);
  color: #8a847a;
  padding: 40px 48px;
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}
.foot strong { color: #e8e4dc; }

@media (max-width: 900px) {
  .side-rail { display: none; }
  .mobile-top { display: flex; }
  .wrap { margin-right: 0; padding-top: 58px; }
  .band { grid-template-columns: 1fr; }
  .band-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .zig { grid-template-columns: 1fr; }
  .zig.alt .pic, .zig.alt .copy { order: unset; }
  .zig .pic img { min-height: 280px; }
  .zig .copy { padding: 40px 24px; }
  .hero-stack .content { padding: 40px 24px 60px; }
  .trail-row { grid-template-columns: 1fr; gap: 12px; }
  .trail-row img { width: 100%; height: 180px; }
  .trail-row .meta { text-align: left; }
  .trails-head, .trail-list, .origin-hero, .origin-body { padding-left: 24px; padding-right: 24px; }
  .origin-stats { margin-left: 24px; margin-right: 24px; grid-template-columns: 1fr; }
  .reach-grid { grid-template-columns: 1fr; }
  .reach-info, .reach-form-wrap { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .foot { padding: 28px 24px; }
}
