/* routebook — design system
   Brand canon: copper accent on charcoal, Inter only, lowercase wordmark, route-line mark.
   Multi-page architecture: shared shell + per-page sections.
*/

:root {
  --copper: #C97B47;
  --copper-bright: #D89461;
  --copper-dark: #A35F30;
  --copper-soft: rgba(201, 123, 71, 0.08);
  --charcoal: #1A1A1A;
  --charcoal-2: #232323;
  --off-white: #FAFAF7;
  --bone: #F4F2EC;
  --ink: #0E0E0E;
  --ash: #6B6B6B;
  --mist: #9A9A9A;
  --line: #E5E2DA;
  --line-dark: #2A2A2A;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  font-family: 'Inter', system-ui, -apple-system, 'SF Pro Display', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  background: var(--off-white);
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.1px;
}
@supports (font-variation-settings: normal) {
  html { font-family: 'Inter var', 'Inter', system-ui, sans-serif; }
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
hr.hairline { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ── Layout primitives ───────────────────────────────────────────────── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) {
  .wrap, .wrap-narrow { padding: 0 20px; }
}

.section { padding: 96px 0; }
.section-bone { background: var(--bone); }
.section-charcoal { background: var(--charcoal); color: var(--off-white); }
.section-charcoal h2, .section-charcoal h3, .section-charcoal h4 { color: var(--off-white); }
.section-charcoal .lead, .section-charcoal p { color: rgba(250, 250, 247, 0.72); }
.section-charcoal .eyebrow { color: var(--copper-bright); }
.section-charcoal .hairline { background: var(--line-dark); }

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin: 0 0 20px;
}

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.5px; font-weight: 700; }
.section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 20px;
}
.section h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.25px; }

p { margin: 0 0 16px; }
.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ash);
  max-width: 640px;
  margin: 0 0 40px;
  letter-spacing: -0.1px;
}
.section-charcoal .lead { color: rgba(250, 250, 247, 0.72); }
.period-copper { color: var(--copper); }

/* ── Top nav ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand-row { display: inline-flex; align-items: center; gap: 12px; }
.brand-row .mark { width: 32px; height: 32px; }
.brand-row .wordmark { height: 20px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ash);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 200ms var(--ease-out), background 200ms var(--ease-out);
}
.nav-links a:hover { color: var(--charcoal); background: rgba(26,26,26,0.04); }
.nav-links a.active {
  color: var(--copper-dark);
  background: var(--copper-soft);
}
.nav-cta {
  margin-left: 10px;
  background: var(--charcoal) !important;
  color: var(--off-white) !important;
  padding: 10px 18px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out) !important;
}
.nav-cta:hover { background: var(--ink) !important; transform: translateY(-1px); color: var(--off-white) !important; }
.nav-cta.active { background: var(--copper) !important; }

@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links { gap: 0; }
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.1px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out), border-color 200ms var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--charcoal); color: var(--off-white); }
.btn-primary:hover { background: var(--ink); }
.btn-copper { background: var(--copper); color: white; }
.btn-copper:hover { background: var(--copper-bright); }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--charcoal); }
.btn-ghost-light { background: transparent; color: var(--off-white); border-color: rgba(250,250,247,0.24); }
.btn-ghost-light:hover { border-color: var(--off-white); }
.btn-lg { padding: 15px 28px; font-size: 16px; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 10%, rgba(201,123,71,0.08), transparent 50%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.display {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.8px;
  margin: 0 0 24px;
  color: var(--charcoal);
}
.display .accent { color: var(--copper); }
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 36px;
}
.cta-meta { font-size: 14px; color: var(--mist); margin-left: 8px; }
@media (max-width: 720px) { .cta-meta { margin-left: 0; margin-top: 12px; flex-basis: 100%; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: stretch;
  min-height: 540px;
}
.hero-grid > div:first-child { padding: 24px 0; align-self: center; }

.hero-visual {
  position: relative;
  align-self: stretch;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  min-height: 540px;
  border-top-left-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-lg);
  background: var(--charcoal);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.88) brightness(0.92);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.40) 0%, transparent 30%, transparent 70%, rgba(201,123,71,0.14) 100%);
  pointer-events: none;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; min-height: 0; }
  .hero-grid > div:first-child { padding: 0; }
  .hero-visual {
    margin-right: 0;
    min-height: 0;
    border-radius: var(--radius-lg);
  }
  .hero-visual img { aspect-ratio: 16 / 10; }
}

/* ── Animated route-line hero accent ─────────────────────────────────── */
.hero-route {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 4px;
  pointer-events: none;
  overflow: hidden;
}
.hero-route::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  animation: route-flow 6s linear infinite;
}
@keyframes route-flow {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(220%); }
}

/* ── Tier hero (sub-page hero) ───────────────────────────────────────── */
.tier-hero {
  padding: 88px 0 56px;
  position: relative;
  overflow: hidden;
}
.tier-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 10%, rgba(201,123,71,0.06), transparent 55%);
  pointer-events: none;
}
.tier-hero .wrap { position: relative; }
.tier-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}
.tier-hero h1 .accent { color: var(--copper); }
.tier-hero .lead { font-size: 19px; max-width: 720px; }

/* ── Problem strip (kept) ────────────────────────────────────────────── */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.problem-grid .col { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--off-white); transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out); }
.problem-grid .col:hover { border-color: var(--copper); transform: translateY(-2px); }
.problem-grid .col h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.4px; margin: 0 0 12px; }
.problem-grid .col p { color: var(--ash); margin: 0; }
.problem-grid .col h3::before { content: "✕  "; color: #B23B3B; font-weight: 400; }
@media (max-width: 720px) { .problem-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ── Modules grid (home + features) ──────────────────────────────────── */
.modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 8px;
}
.module {
  background: var(--off-white);
  padding: 32px;
  transition: background 200ms var(--ease-out);
}
.module:hover { background: var(--copper-soft); }
.module-num {
  font-size: 13px;
  font-weight: 500;
  color: var(--copper-dark);
  letter-spacing: 0.4px;
}
.module h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.25px; margin: 8px 0 12px; }
.module p { font-size: 15px; color: var(--ash); margin: 0; line-height: 1.5; }
@media (max-width: 980px) { .modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .modules { grid-template-columns: 1fr; } }

/* ── Features page: deep module cards w/ visual previews ─────────────── */
.feature-deep {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.feature-deep:last-child { border-bottom: 0; }
.feature-deep.reverse { grid-template-columns: 1.1fr 1fr; }
.feature-deep.reverse .feature-info { order: 2; }
.feature-deep.reverse .feature-visual { order: 1; }
.feature-deep .feature-num {
  font-family: 'Inter', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--copper-dark);
  margin-bottom: 12px;
}
.feature-deep h2 { font-size: 30px; font-weight: 700; letter-spacing: -0.8px; line-height: 1.1; margin-bottom: 18px; }
.feature-deep p { font-size: 16px; color: var(--ash); line-height: 1.6; margin-bottom: 16px; }
.feature-deep ul { list-style: none; padding: 0; margin: 0; font-size: 14.5px; color: var(--ash); }
.feature-deep ul li { padding: 6px 0; }
.feature-deep ul li::before { content: "→  "; color: var(--copper); font-weight: 600; }
.feature-visual {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 880px) {
  .feature-deep { grid-template-columns: 1fr; gap: 24px; }
  .feature-deep.reverse { grid-template-columns: 1fr; }
  .feature-deep.reverse .feature-info { order: 1; }
  .feature-deep.reverse .feature-visual { order: 2; }
}

/* ── Animated CSS module previews (no images needed) ─────────────────── */
.preview-dispatch {
  display: grid;
  grid-template-columns: 60px repeat(5, 1fr);
  gap: 1px;
  background: rgba(250,250,247,0.08);
  border: 1px solid rgba(250,250,247,0.10);
  border-radius: 8px;
  overflow: hidden;
  font-family: 'Inter', monospace;
  font-size: 11px;
}
.preview-dispatch .row { display: contents; }
.preview-dispatch .cell {
  background: var(--charcoal);
  padding: 10px 8px;
  color: rgba(250,250,247,0.7);
  border-bottom: 1px solid rgba(250,250,247,0.06);
}
.preview-dispatch .cell.head { color: var(--copper-bright); font-weight: 600; }
.preview-dispatch .cell.tech { color: var(--copper-bright); font-weight: 600; }
.preview-dispatch .cell.job { background: rgba(201,123,71,0.18); color: var(--off-white); border-left: 2px solid var(--copper); }
.preview-dispatch .cell.job-blue { background: rgba(63,143,92,0.18); color: var(--off-white); border-left: 2px solid #3F8F5C; }

.preview-invoice {
  background: var(--off-white);
  color: var(--charcoal);
  border-radius: 8px;
  padding: 20px;
  font-size: 13px;
}
.preview-invoice .header { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.preview-invoice .header .num { font-family: 'Inter', monospace; color: var(--ash); font-size: 11px; }
.preview-invoice .line { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.preview-invoice .line .desc { color: var(--charcoal); }
.preview-invoice .line .amt { font-variant-numeric: tabular-nums; color: var(--ash); }
.preview-invoice .total { display: flex; justify-content: space-between; padding-top: 12px; margin-top: 4px; border-top: 1px solid var(--line); font-weight: 700; }
.preview-invoice .total .amt { color: var(--copper-dark); font-size: 18px; }
.preview-invoice .stamp { display: inline-block; padding: 4px 10px; background: rgba(63,143,92,0.16); color: #3F8F5C; font-size: 11px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; border-radius: 4px; margin-top: 12px; }

.preview-pl {
  background: var(--off-white);
  color: var(--charcoal);
  border-radius: 8px;
  padding: 20px;
  font-size: 13px;
}
.preview-pl .pl-row { display: grid; grid-template-columns: 1fr auto auto; gap: 16px; padding: 8px 0; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.preview-pl .pl-row:last-child { border-bottom: 0; padding-top: 12px; border-top: 2px solid var(--charcoal); margin-top: 4px; font-weight: 700; }
.preview-pl .pl-row .label { color: var(--charcoal); }
.preview-pl .pl-row .val { color: var(--ash); }
.preview-pl .pl-row .delta.up { color: #3F8F5C; }
.preview-pl .pl-row .delta.down { color: #B23B3B; }
.preview-pl .pl-row.total .label { color: var(--charcoal); }
.preview-pl .pl-row.total .val { color: var(--copper-dark); font-size: 18px; }

.preview-route {
  background: var(--charcoal-2);
  border-radius: 8px;
  height: 280px;
  position: relative;
  overflow: hidden;
}
.preview-route svg { width: 100%; height: 100%; }
.preview-route .pin {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(201,123,71,0.25);
  animation: pin-pulse 2.4s var(--ease-out) infinite;
}
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201,123,71,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(201,123,71,0.10); }
}

.preview-inventory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.preview-inventory .bin {
  background: rgba(250,250,247,0.05);
  border: 1px solid rgba(250,250,247,0.10);
  border-radius: 6px;
  padding: 12px;
  font-size: 12px;
  color: rgba(250,250,247,0.7);
}
.preview-inventory .bin .name { color: var(--off-white); font-weight: 600; }
.preview-inventory .bin .qty { color: var(--copper-bright); font-variant-numeric: tabular-nums; font-size: 18px; font-weight: 700; margin-top: 4px; }
.preview-inventory .bin.low { border-color: rgba(178,59,59,0.4); }
.preview-inventory .bin.low .qty { color: #E96A6A; }

.preview-customer {
  background: rgba(250,250,247,0.04);
  border: 1px solid rgba(250,250,247,0.10);
  border-radius: 8px;
  padding: 16px;
  font-size: 12.5px;
  color: rgba(250,250,247,0.7);
}
.preview-customer .name { color: var(--off-white); font-weight: 600; font-size: 14px; }
.preview-customer .meta { color: var(--mist); font-size: 11px; margin: 4px 0 12px; }
.preview-customer .item { display: flex; justify-content: space-between; padding: 6px 0; border-top: 1px solid rgba(250,250,247,0.08); }
.preview-customer .item:first-of-type { border-top: 0; }
.preview-customer .badge { padding: 2px 8px; background: rgba(201,123,71,0.18); color: var(--copper-bright); border-radius: 999px; font-size: 10px; }

/* ── Operator quote (kept) ───────────────────────────────────────────── */
.operator { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.operator blockquote {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.5px;
  margin: 0;
  color: var(--off-white);
}
.operator .attrib { margin-top: 24px; font-size: 14px; color: var(--mist); }
.operator .attrib .name { color: var(--off-white); font-weight: 500; }
.operator-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.stat .num {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--copper-bright);
  font-variant-numeric: tabular-nums;
}
.stat .num small { font-size: 16px; font-weight: 500; color: rgba(250,250,247,0.5); margin-left: 4px; }
.stat .label { font-size: 14px; color: rgba(250, 250, 247, 0.6); margin-top: 4px; }
@media (max-width: 860px) { .operator { grid-template-columns: 1fr; gap: 48px; } }

/* ── Editorial photo bands ───────────────────────────────────────────── */
.photo-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
}
.photo-band img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.88) brightness(0.94);
}
.photo-band.cinematic img { aspect-ratio: 21 / 8; max-height: 460px; }
.photo-band.fade-bottom::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30%;
  background: linear-gradient(to bottom, transparent, var(--charcoal));
  pointer-events: none;
}
.photo-band.with-caption .caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1180px;
  width: calc(100% - 64px);
  z-index: 2;
  color: var(--off-white);
}
.photo-band.with-caption .caption .eyebrow { color: var(--copper-bright); margin-bottom: 8px; }
.photo-band.with-caption .caption h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
  max-width: 24ch;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  margin: 0;
}
@media (max-width: 720px) {
  .photo-band.cinematic img { aspect-ratio: 16 / 10; max-height: 320px; }
  .photo-band.with-caption .caption h3 { font-size: 20px; }
}

/* ── Pricing ─────────────────────────────────────────────────────────── */
.pricing-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 64px; }
.pricing-card {
  background: var(--charcoal);
  color: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, rgba(201,123,71,0.18), transparent 60%);
  pointer-events: none;
}
.pricing-card .tier {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--copper-bright);
}
.pricing-card .price {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1.8px;
  margin: 12px 0 4px;
  font-variant-numeric: tabular-nums;
  position: relative;
}
.pricing-card .price small { font-size: 18px; font-weight: 500; color: rgba(250, 250, 247, 0.6); letter-spacing: 0; }
.pricing-card .period { font-size: 14px; color: rgba(250, 250, 247, 0.6); }
.pricing-card ul { list-style: none; padding: 0; margin: 32px 0; position: relative; }
.pricing-card li { padding: 10px 0; font-size: 15px; border-top: 1px solid var(--line-dark); }
.pricing-card li:first-child { border-top: 0; }
.pricing-card li::before { content: "→  "; color: var(--copper-bright); font-weight: 600; }
@media (max-width: 860px) { .pricing-hero { grid-template-columns: 1fr; gap: 40px; } }

.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.roi-card { background: var(--off-white); padding: 32px; }
.roi-card .label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--copper-dark);
  margin-bottom: 8px;
}
.roi-card .figure {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.8px;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.roi-card p { font-size: 14.5px; color: var(--ash); margin: 0; }
@media (max-width: 720px) { .roi-grid { grid-template-columns: 1fr; } }

.partner-callout {
  margin-top: 56px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  max-width: 760px;
}
.partner-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; color: var(--copper-dark); margin: 0 0 10px; }
.partner-body { font-size: 15px; line-height: 1.55; color: var(--ash); margin: 0 0 14px; }
.partner-body strong { color: var(--charcoal); font-weight: 600; }
.partner-link { font-size: 14px; font-weight: 500; color: var(--charcoal); border-bottom: 1px solid var(--copper); padding-bottom: 1px; }
.partner-link:hover { color: var(--copper-dark); }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { max-width: 760px; }
.faq details { border-top: 1px solid var(--line); padding: 24px 0; }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--copper-dark);
  transition: transform 200ms var(--ease-out);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 16px 0 0; color: var(--ash); font-size: 16px; line-height: 1.6; }

/* ── Banner CTA ──────────────────────────────────────────────────────── */
.banner {
  background: var(--charcoal);
  color: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,123,71,0.18), transparent 60%);
  pointer-events: none;
}
.banner > * { position: relative; }
.banner h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: var(--off-white);
}
.banner p { color: rgba(250,250,247,0.72); margin: 0 0 32px; font-size: 18px; max-width: 56ch; margin-left: auto; margin-right: auto; }
.banner .btn { padding: 16px 28px; font-size: 16px; }
@media (max-width: 720px) { .banner { padding: 48px 24px; } }

/* ── Form (Talk page) ────────────────────────────────────────────────── */
.tf-form { max-width: 640px; }
.tf-form fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0 0 24px;
  background: var(--off-white);
}
.tf-form legend {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--copper-dark);
  padding: 0 10px;
}
.tf-form label {
  display: block;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}
.tf-form input[type="text"],
.tf-form input[type="email"],
.tf-form input[type="tel"],
.tf-form input[type="number"],
.tf-form select,
.tf-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: white;
  color: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 150ms var(--ease-out);
}
.tf-form select { -webkit-appearance: none; appearance: none; padding-right: 36px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%236B6B6B' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.tf-form textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.tf-form input:focus, .tf-form select:focus, .tf-form textarea:focus { outline: none; border-color: var(--copper); }
.tf-form .hidden-honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-disclaimer { font-size: 13px; color: var(--mist); margin-top: 16px; max-width: 56ch; line-height: 1.5; }

/* ── Footer ──────────────────────────────────────────────────────────── */
footer { padding: 56px 0 64px; border-top: 1px solid var(--line); background: var(--off-white); }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.foot-grid h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 14px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { padding: 6px 0; font-size: 14px; color: var(--ash); }
.foot-grid li a:hover { color: var(--charcoal); }
.foot-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--mist);
}
.foot-tag { color: var(--ash); max-width: 320px; line-height: 1.5; }
.ext-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.85em;
  opacity: 0.7;
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
}
a:hover .ext-arrow { opacity: 1; transform: translate(2px, -2px); }
@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-meta { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ── Fade-in on scroll ───────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; }
  .hero-route::before { animation: none; }
  .preview-route .pin { animation: none; }
}

/* ── Misc ────────────────────────────────────────────────────────────── */
.hide-mobile { display: initial; }
.show-mobile { display: none; }
@media (max-width: 720px) {
  .hide-mobile { display: none; }
  .show-mobile { display: initial; }
}
