:root {
  --paper: #F4F6F1;
  --ink: #1E3A34;
  --ink-soft: #52685F;
  --route: #D2452F;
  --route-glow: rgba(210,69,47,.16);
  --card: #FFFFFF;
  --hairline: #D9E0D5;
  --chip: #EBEFE7;
  --deep: #14251F;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; color-scheme: light; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Charter, 'Iowan Old Style', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.65;
}
.sans { font-family:'Avenir Next','Segoe UI',Seravek,system-ui,sans-serif; }
.mono { font-family:ui-monospace,'SF Mono',Menlo,Consolas,monospace;
  font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; }
.wrap { max-width:1100px; margin:0 auto; padding:0 24px; }
a:focus-visible { outline:2px solid var(--route); outline-offset:3px; border-radius:2px; }
h1,h2,h3 { font-family:'Avenir Next','Segoe UI',Seravek,system-ui,sans-serif; }

/* ---------- header ---------- */
header { border-bottom:1px solid var(--hairline); position:relative; z-index:3; }
.nav { display:flex; justify-content:space-between; align-items:center;
  padding-top:22px; padding-bottom:22px; }
.brand { display:flex; align-items:center; gap:10px; font-weight:700; font-size:1.15rem;
  color:var(--ink); text-decoration:none; white-space:nowrap; }
.brand svg { flex-shrink:0; }
.nav-links { display:flex; gap:26px; }
.nav-links a { color:var(--ink-soft); text-decoration:none; font-size:.92rem; font-weight:600; }
.nav-links a:hover { color:var(--route); }

/* ---------- hero ---------- */
.hero { position:relative; padding:88px 0 104px; overflow:hidden; }
.hero-route { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; }
.hero-route .path { fill:none; stroke:var(--route); stroke-width:2.5;
  stroke-dasharray:2 10; stroke-linecap:round; opacity:.75; }
.hero-route .pin { fill:var(--route); }
@media (prefers-reduced-motion: no-preference) {
  .hero-route .path { animation:walk 28s linear infinite; }
  @keyframes walk { to { stroke-dashoffset:-360; } }
}
.hero-grid { position:relative; display:grid; grid-template-columns:1.15fr .85fr;
  gap:48px; align-items:center; }
.eyebrow { color:var(--route); display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.eyebrow::before { content:""; width:9px; height:9px; border-radius:50%;
  background:var(--route); box-shadow:0 0 0 4px var(--route-glow); }
h1 { font-weight:800; font-size:clamp(2.4rem,5.6vw,4rem); line-height:1.05;
  letter-spacing:-.02em; margin-bottom:22px; }
h1 em { font-style:normal; color:var(--route); }
.lede { font-size:1.28rem; color:var(--ink-soft); max-width:40ch; margin-bottom:36px; }

.badge { display:inline-block; line-height:0; border-radius:8px;
  transition:transform .15s ease, box-shadow .15s ease; }
.badge:hover { transform:translateY(-2px); box-shadow:0 8px 22px var(--route-glow); }
.badge img { height:104px; width:auto; display:block; }
.badge + .badge { margin-left:8px; }
.hero-note { margin-top:16px; color:var(--ink-soft); font-size:.95rem; font-style:italic; }

/* phone mockup */
.phone-wrap { display:flex; justify-content:center; position:relative; }
.phone {
  width:270px; border-radius:36px; padding:12px;
  background:var(--deep); box-shadow:0 24px 60px rgba(0,0,0,.28);
  position:relative;
}
.screen { border-radius:26px; overflow:hidden; background:var(--card);
  border:1px solid var(--hairline); }
.screen .map { display:block; width:100%; }
.screen .map .land { fill:var(--chip); }
.screen .map .street { stroke:var(--hairline); stroke-width:5; fill:none; }
.screen .map .walkpath { stroke:var(--route); stroke-width:3; stroke-dasharray:1.5 7;
  stroke-linecap:round; fill:none; }
@media (prefers-reduced-motion: no-preference) {
  .screen .map .walkpath { animation:walk 20s linear infinite; }
  .now .bars i { animation:eq 1.1s ease-in-out infinite; }
  .now .bars i:nth-child(2) { animation-delay:.18s; }
  .now .bars i:nth-child(3) { animation-delay:.36s; }
  .now .bars i:nth-child(4) { animation-delay:.54s; }
  @keyframes eq { 0%,100%{transform:scaleY(.4);} 50%{transform:scaleY(1);} }
}
.now { display:flex; align-items:center; gap:12px; padding:14px 16px;
  border-top:1px solid var(--hairline); background:var(--card); }
.now .bars { display:flex; gap:3px; align-items:flex-end; height:22px; }
.now .bars i { display:block; width:4px; height:100%; background:var(--route);
  border-radius:2px; transform-origin:bottom; transform:scaleY(.6); }
.now .t { line-height:1.25; }
.now .t .l1 { font-family:'Avenir Next','Segoe UI',system-ui,sans-serif;
  font-weight:600; font-size:.85rem; }
.now .t .l2 { font-size:.76rem; color:var(--ink-soft); }

/* ---------- shared section bits ---------- */
section.band { padding:84px 0; border-top:1px solid var(--hairline); }
.head { max-width:580px; margin-bottom:48px; }
.head .mono { color:var(--route); display:block; margin-bottom:12px; }
h2 { font-weight:800; font-size:clamp(1.7rem,3.8vw,2.4rem); line-height:1.12; letter-spacing:-.015em; }

/* steps on a route */
.steps { display:grid; grid-template-columns:repeat(3,1fr); position:relative; }
.steps::before { content:""; position:absolute; top:19px; left:10%; right:10%;
  border-top:2px dashed var(--route); opacity:.45; }
.step { padding:0 26px; text-align:center; position:relative; }
.step .dot { width:40px; height:40px; margin:0 auto 18px; border-radius:50%;
  background:var(--paper); border:2px dashed var(--route); color:var(--route);
  display:flex; align-items:center; justify-content:center;
  font-family:ui-monospace,monospace; }
.step h3 { font-size:1.12rem; margin-bottom:8px; }
.step p { color:var(--ink-soft); font-size:.99rem; }

/* pillars */
.pillars { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.pillar { background:var(--card); border:1px solid var(--hairline); border-radius:16px;
  padding:30px 26px; transition:transform .18s ease, box-shadow .18s ease; }
.pillar:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,.08); }
.pillar .icon { width:46px; height:46px; border-radius:12px; background:var(--chip);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.pillar .icon svg { stroke:var(--route); }
.pillar h3 { font-size:1.2rem; margin-bottom:10px; }
.pillar p { color:var(--ink-soft); font-size:.99rem; }

/* voice strip */
.voice { background:var(--deep); color:#EDEFE6; padding:84px 0; }
.voice .wrap { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.voice .mono { color:#9BB3A9; display:block; margin-bottom:12px; }
.voice h2 { color:#fff; margin-bottom:16px; }
.voice p { color:#B9C8BF; font-size:1.12rem; max-width:46ch; }
.wave { display:flex; align-items:center; gap:6px; height:120px; justify-content:center; }
.wave span { width:6px; border-radius:3px; background:var(--route); transform-origin:center; }
.wave span:nth-child(odd) { background:#7FA79A; }
@media (prefers-reduced-motion: no-preference) {
  .wave span { animation:pulse 1.6s ease-in-out infinite; }
  .wave span:nth-child(2n) { animation-delay:.2s; }
  .wave span:nth-child(3n) { animation-delay:.45s; }
  .wave span:nth-child(5n) { animation-delay:.7s; }
  @keyframes pulse { 0%,100%{transform:scaleY(.55);} 50%{transform:scaleY(1);} }
}

/* cta + footer */
.cta { text-align:center; padding:92px 0; }
.cta h2 { margin-bottom:12px; }
.cta p { color:var(--ink-soft); margin-bottom:32px; }
footer.site { border-top:1px solid var(--hairline); padding:36px 0 44px; }
.foot { display:flex; justify-content:space-between; flex-wrap:wrap; gap:18px; align-items:center; }
.foot .mono { color:var(--ink-soft); }
.foot-links { display:flex; gap:22px; }
.foot-links a { color:var(--ink-soft); text-decoration:none; font-size:.88rem;
  font-family:'Avenir Next','Segoe UI',system-ui,sans-serif; font-weight:600; }
.foot-links a:hover { color:var(--route); }

/* social icons */
.socials { display:flex; gap:14px; align-items:center; }
.socials a { display:flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:50%; color:var(--ink-soft);
  border:1px solid var(--hairline); background:var(--card);
  transition:transform .15s ease, color .15s ease, border-color .15s ease; }
.socials a:hover { color:var(--route); border-color:var(--route); transform:translateY(-2px); }

/* ---------- inner pages (about, privacy, terms) ---------- */
.page { padding:64px 0 88px; }
.page-head { max-width:640px; margin-bottom:40px; }
.page-head .mono { color:var(--route); display:block; margin-bottom:12px; }
.page-head p { color:var(--ink-soft); margin-top:14px; }
article.prose { max-width:760px; }
.prose h1 { font-size:clamp(1.9rem,4.4vw,2.8rem); margin:0 0 10px; }
.prose h2 { font-size:1.45rem; margin:44px 0 14px; }
.prose h3 { font-size:1.12rem; margin:30px 0 10px; }
.prose p { margin:0 0 16px; }
.prose ul, .prose ol { margin:0 0 18px 1.3em; }
.prose li { margin-bottom:8px; }
.prose a { color:var(--route); text-decoration-thickness:1px; text-underline-offset:2px; }
.prose hr { border:none; border-top:1px solid var(--hairline); margin:40px 0; }
.prose strong { font-weight:700; }
.prose blockquote { border-left:3px solid var(--route); padding-left:18px;
  color:var(--ink-soft); margin:0 0 18px; }
.table-scroll { overflow-x:auto; margin:0 0 22px; border:1px solid var(--hairline);
  border-radius:12px; background:var(--card); }
.prose table { border-collapse:collapse; width:100%; font-size:.94rem; }
.prose th, .prose td { text-align:left; padding:10px 14px; vertical-align:top;
  border-bottom:1px solid var(--hairline); }
.prose tr:last-child td { border-bottom:none; }
.prose th { font-family:'Avenir Next','Segoe UI',system-ui,sans-serif; font-size:.85rem;
  background:var(--chip); }

/* about page cards */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:36px; }
.contact-card { background:var(--card); border:1px solid var(--hairline);
  border-radius:16px; padding:30px 26px; }
.contact-card h3 { font-size:1.1rem; margin-bottom:14px; }
.contact-card p { color:var(--ink-soft); font-size:.99rem; margin-bottom:6px; }
.contact-card a { color:var(--route); text-decoration:none; }
.contact-card a:hover { text-decoration:underline; }

@media (max-width:880px) {
  header .wrap { padding-left:16px; padding-right:16px; }
  .nav { padding-top:20px; padding-bottom:20px; }
  .brand { font-size:1.1rem; gap:8px; }
  .nav-links { gap:12px; }
  .nav-links a { font-size:.9rem; }
  .hero-route { display:none; }
  .hero-grid { grid-template-columns:1fr; gap:40px; }
  .phone-wrap { order:-1; }
  .phone { width:230px; }
  .badge { display:block; width:fit-content; margin-left:auto; margin-right:auto; }
  .badge + .badge { margin-left:auto; margin-top:6px; }
  .badge img { height:92px; }
  .hero-note { text-align:center; }
  .steps { grid-template-columns:1fr; gap:32px; }
  .steps::before { display:none; }
  .voice .wrap { grid-template-columns:1fr; }
  .hero { padding:56px 0 72px; }
  .contact-grid { grid-template-columns:1fr; }
  .pillars { grid-template-columns:1fr; }
  .foot { flex-direction:column; align-items:flex-start; }
}
