/* ============================================================
   TP Freight Lines — Pacific Northwest Warehousing & Distribution
   Industrial PNW: dark base, Oregon green/teal accent, warm off-white cards.
   Type: Cabinet Grotesk (display) · Satoshi (body) · JetBrains Mono (technical)
   ============================================================ */

/* -------- Tokens -------- */
:root {
  /* Palette — Pacific NW industrial */
  --ink: #0a110e;            /* near-black, evergreen-tinted */
  --ink-2: #0f1a16;          /* card on dark */
  --ink-3: #14231d;          /* subtle elevation */
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --fog: #e9e4d8;            /* warm off-white */
  --fog-2: #f3efe5;          /* lighter warm */
  --fog-3: #d9d3c2;          /* warm border */
  --text: #ecf0ec;
  --text-mute: #a4b1ab;
  --text-dark: #1a2520;
  --text-dark-mute: #5b6a63;

  /* Accents — Oregon green/teal */
  --accent: #51a68c;         /* primary moss/teal */
  --accent-2: #3c8a73;       /* hover */
  --accent-soft: rgba(81, 166, 140, 0.14);
  --rust: #c46a3b;           /* tertiary industrial signal */

  /* Type */
  --font-display: "Cabinet Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Satoshi", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Sizing */
  --text-xs: clamp(11px, 0.75vw, 12px);
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: clamp(18px, 1.4vw, 20px);
  --text-xl: clamp(22px, 2vw, 28px);
  --text-2xl: clamp(30px, 3.4vw, 44px);
  --text-3xl: clamp(40px, 5.2vw, 72px);
  --text-hero: clamp(48px, 7vw, 96px);

  /* Spacing */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px;

  --container: 1240px;
  --radius: 4px;
  --radius-lg: 10px;

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

/* -------- Reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.mono { font-family: var(--font-mono); font-feature-settings: "tnum" 1; letter-spacing: -0.01em; }
.muted { color: var(--text-mute); }
.small { font-size: var(--text-sm); }
.link {
  color: var(--accent);
  border-bottom: 1px solid rgba(81, 166, 140, 0.35);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.link:hover { color: #7fc4ad; border-color: #7fc4ad; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 var(--s4);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-2px);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 var(--s4);
  max-width: 22ch;
}
.lede {
  font-size: var(--text-lg);
  color: var(--text-mute);
  line-height: 1.5;
  max-width: 60ch;
  margin: 0;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn--accent {
  background: var(--accent);
  color: #07120e;
}
.btn--accent:hover { background: #6ec0a4; }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--text {
  background: transparent;
  color: var(--text);
  padding-inline: 4px;
}
.btn--text:hover { color: var(--accent); }
.btn__icon {
  display: inline-block;
  transform: rotate(-90deg);
  font-family: var(--font-mono);
}

/* -------- Nav -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s5);
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(10, 17, 14, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.brand-mark { color: var(--text); flex-shrink: 0; }
.brand-wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.brand-wordmark__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand-wordmark__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
}
.nav__links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 32px);
  font-size: var(--text-sm);
  color: var(--text-mute);
}
.nav__links a {
  position: relative;
  padding: 8px 2px;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav { grid-template-columns: 1fr auto; }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 88vh, 900px);
  display: flex;
  align-items: center;
  padding: clamp(80px, 12vh, 160px) 0 var(--s9);
  background: var(--ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(81, 166, 140, 0.18), transparent 55%),
    radial-gradient(ellipse at 10% 100%, rgba(196, 106, 59, 0.10), transparent 55%),
    linear-gradient(180deg, transparent 60%, rgba(10, 17, 14, 0.85));
}
.hero__map { width: 100%; height: 100%; }

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: var(--s6);
}
.hero__eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(81, 166, 140, 0.22);
  animation: pulse 2.4s infinite var(--ease);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(81, 166, 140, 0.22); }
  50% { box-shadow: 0 0 0 9px rgba(81, 166, 140, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-3xl);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 var(--s6);
  max-width: 16ch;
}
.hero__line { display: block; opacity: 0; transform: translateY(28px); animation: rise 0.9s var(--ease) forwards; }
.hero__line:nth-child(1) { animation-delay: 0.05s; }
.hero__line:nth-child(2) { animation-delay: 0.2s; }
.hero__line:nth-child(3) { animation-delay: 0.35s; }
.hero__line--accent { color: var(--accent); font-style: italic; font-weight: 500; }
.hero__sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--text-mute);
  letter-spacing: -0.005em;
  margin-top: 18px;
  max-width: 32ch;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.55s forwards;
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero__lede {
  max-width: 60ch;
  font-size: var(--text-base);
  color: var(--text-mute);
  margin: 0 0 var(--s6);
  line-height: 1.65;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s3); align-items: center; margin-bottom: var(--s8); }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: var(--s6);
  max-width: 880px;
}
.hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
}
@media (max-width: 760px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* -------- Marquee strip -------- */
.strip {
  background: var(--ink-3);
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
}
.strip__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  animation: scroll 38s linear infinite;
}
.strip__track span { flex-shrink: 0; }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* -------- Sections -------- */
.section {
  padding: clamp(64px, 9vw, 128px) 0;
}
.section--alt {
  background: var(--fog);
  color: var(--text-dark);
}
.section--alt .h2, .section--alt h3, .section--alt h4 { color: var(--text-dark); }
.section--alt .eyebrow { color: #2b6a55; }
.section--alt .eyebrow::before { background: #2b6a55; }
.section--alt .lede, .section--alt .muted, .section--alt p { color: var(--text-dark-mute); }
.section--alt .lede { color: #344b41; }
.section--alt .link { color: #2b6a55; border-color: rgba(43, 106, 85, 0.4); }

.section--dark { background: var(--ink-2); border-block: 1px solid var(--line); }

.section-head { max-width: 760px; margin-bottom: var(--s8); }
.section-head__lede { color: var(--text-mute); font-size: var(--text-lg); line-height: 1.5; margin-top: 6px; max-width: 60ch; }
.section--alt .section-head__lede { color: var(--text-dark-mute); }
.section-head--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s7);
  align-items: end;
  max-width: none;
}
.section-head__note {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  border-left: 2px solid var(--accent);
  padding-left: var(--s4);
  line-height: 1.7;
}
@media (max-width: 800px) {
  .section-head--row { grid-template-columns: 1fr; }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}
@media (max-width: 1080px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

.prose p { margin: 0 0 var(--s4); font-size: var(--text-base); line-height: 1.7; }

/* -------- Use case cards -------- */
.use-case-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-top: var(--s8);
}
.ucard {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s6);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.ucard:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: var(--ink-3);
}
.ucard__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: var(--s5);
}
.ucard h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin: 0 0 var(--s3);
  line-height: 1.2;
  color: var(--text);
}
.ucard p { color: var(--text-mute); font-size: 15px; line-height: 1.6; margin: 0; }
@media (max-width: 1080px) { .use-case-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .use-case-cards { grid-template-columns: 1fr; } }

/* -------- Why PNW -------- */
.why {
  background: var(--fog-2);
  border: 1px solid var(--fog-3);
  border-radius: var(--radius-lg);
  padding: var(--s6);
  color: var(--text-dark);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.why:hover { transform: translateY(-3px); border-color: var(--accent); }
.why__icon { width: 36px; height: 36px; color: #2b6a55; margin-bottom: var(--s4); }
.why h3 { font-family: var(--font-display); font-size: var(--text-lg); margin: 0 0 var(--s3); line-height: 1.2; }
.why p { font-size: 15px; line-height: 1.55; color: var(--text-dark-mute); margin: 0; }

/* -------- Services -------- */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service {
  background: var(--ink-2);
  padding: var(--s6);
  transition: background 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  min-height: 220px;
}
.service:hover { background: var(--ink-3); }
.service header { display: flex; flex-direction: column; gap: 10px; }
.service__tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 9px;
  border-radius: 100px;
}
.service h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin: 0;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
}
.service p { color: var(--text-mute); font-size: 15px; line-height: 1.6; margin: 0; }
@media (max-width: 1080px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } }

/* -------- Pricing tabs -------- */
.tabs {
  display: flex;
  gap: 2px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: var(--s6);
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
}
.tab {
  background: transparent;
  color: var(--text-mute);
  border: 0;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 3px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.tab:hover { color: var(--text); }
.tab.is-active { background: var(--accent); color: #07120e; }

.tabpanel { display: none; }
.tabpanel.is-active { display: block; animation: fade 0.4s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.ptable {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.prow {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: var(--s4);
  padding: 18px var(--s5);
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 15px;
}
.prow:last-child { border-bottom: 0; }
.prow > span:nth-child(2) {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
}
.prow > span:nth-child(3) {
  text-align: right;
  color: var(--text);
  font-weight: 500;
}
.prow--head {
  background: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-mute);
}
.prow--head > span { color: var(--text-mute) !important; font-weight: 400 !important; text-align: left !important; }
@media (max-width: 720px) {
  .prow { grid-template-columns: 1fr; gap: 4px; padding: var(--s4); }
  .prow > span:nth-child(3) { text-align: left; }
  .prow--head { display: none; }
}
.pricing-note {
  margin-top: var(--s5);
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.6;
  max-width: 80ch;
  padding: var(--s4) var(--s5);
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.02);
}

/* -------- Flow steps -------- */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: flow;
}
.flow__step {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s6);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.flow__step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--accent);
}
.flow__num { font-size: 11px; color: var(--accent); letter-spacing: 0.18em; }
.flow__step h3 { font-family: var(--font-display); font-size: var(--text-lg); margin: 0; color: var(--text); }
.flow__step p { color: var(--text-mute); font-size: 15px; line-height: 1.55; margin: 0; }
.flow__list {
  list-style: none;
  padding: 0;
  margin: var(--s2) 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-mute);
}
.flow__list li {
  position: relative;
  padding-left: 16px;
}
.flow__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
}
@media (max-width: 1080px) { .flow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .flow { grid-template-columns: 1fr; } }

/* -------- Drayage capabilities -------- */
.caps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--fog-3);
  border: 1px solid var(--fog-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.caps li {
  background: var(--fog-2);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text-dark);
  position: relative;
  padding-left: 38px;
  transition: background 0.2s var(--ease);
}
.caps li:hover { background: #fff; }
.caps li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-65%) rotate(-45deg);
}

/* -------- LTL tool -------- */
.ltl {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s6);
  align-items: start;
}
.ltl__formula, .ltl__calc {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s7);
}
.ltl h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin: 0 0 var(--s4);
  color: var(--text);
}
.ltl p { color: var(--text-mute); font-size: 15px; line-height: 1.6; }
.ltl__formula .mono {
  display: block;
  background: var(--ink);
  padding: var(--s4) var(--s5);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--accent);
  line-height: 1.7;
  margin-bottom: var(--s4);
}
.classguide {
  margin-top: var(--s5);
  padding-top: var(--s5);
  border-top: 1px solid var(--line);
}
.classguide__title {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  margin-bottom: var(--s3);
}
.classguide ul { list-style: none; padding: 0; margin: 0 0 var(--s3); display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--text-mute); }
.classguide ul b { color: var(--text); font-weight: 600; }

.ltl__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
  margin-bottom: var(--s5);
}
.ltl__grid label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text-mute); }
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap input {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 44px 12px 14px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 15px;
  transition: border-color 0.2s var(--ease);
}
.input-wrap input:focus { outline: none; border-color: var(--accent); }
.unit {
  position: absolute;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  pointer-events: none;
}

.ltl__out {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s4) var(--s5);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--s4);
}
.out__row { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s4); }
.out__label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-mute); }
.out__val { color: var(--text); font-size: 16px; font-weight: 500; }
.out__row--hint { padding-top: 10px; border-top: 1px solid var(--line); }
.out__row--hint .out__val { color: var(--accent); text-align: right; max-width: 70%; }

@media (max-width: 980px) {
  .ltl { grid-template-columns: 1fr; }
}

/* -------- Accessorial guide -------- */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s4);
}
.acc-group {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s5);
}
.acc-group h4 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 0 0 var(--s3);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--line);
}
.acc-group ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--text-mute); }
.acc-group li::before { content: "·"; color: var(--accent); margin-right: 8px; }
@media (max-width: 1080px) { .acc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .acc-grid { grid-template-columns: 1fr; } }

/* -------- Terminals -------- */
.terminals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-bottom: var(--s8);
}
.terminal {
  background: var(--fog-2);
  border: 1px solid var(--fog-3);
  border-radius: var(--radius-lg);
  padding: var(--s6);
  color: var(--text-dark);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.terminal:hover { transform: translateY(-3px); border-color: var(--accent); }
.terminal h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin: 0 0 var(--s3);
  letter-spacing: -0.01em;
}
.terminal address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dark-mute);
  margin-bottom: var(--s3);
}
.terminal__hours {
  font-size: 12px;
  color: #2b6a55;
  letter-spacing: 0.04em;
}
.terminal--feature {
  grid-column: span 2;
  background: var(--text-dark);
  color: var(--fog);
  border-color: var(--text-dark);
  position: relative;
  overflow: hidden;
}
.terminal--feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(81, 166, 140, 0.18), transparent 55%);
  pointer-events: none;
}
.terminal--feature h3 { color: var(--fog); }
.terminal--feature address { color: rgba(233, 228, 216, 0.7); }
.terminal--feature .terminal__hours { color: var(--accent); }
.terminal__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: var(--s4);
}
@media (max-width: 1080px) { .terminals { grid-template-columns: repeat(2, 1fr); } .terminal--feature { grid-column: span 2; } }
@media (max-width: 560px) { .terminals { grid-template-columns: 1fr; } .terminal--feature { grid-column: span 1; } }

.areas {
  background: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: var(--s7);
  color: var(--fog);
}
.areas h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 var(--s4);
}
.areas__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s4);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
}
.areas__list li {
  font-size: 14px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  color: var(--fog);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.areas__list li:hover { background: rgba(81, 166, 140, 0.14); border-color: var(--accent); }
.areas .muted { color: rgba(233, 228, 216, 0.55); }

/* -------- Auth grid -------- */
.auth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.auth-card {
  background: #fff;
  border: 1px solid var(--fog-3);
  border-radius: var(--radius-lg);
  padding: var(--s6);
}
.auth-card h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #2b6a55;
  margin: 0 0 var(--s4);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--fog-3);
}
.kv {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px var(--s4);
  margin: 0;
  font-size: 14px;
}
.kv dt {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark-mute);
  align-self: center;
}
.kv dd { margin: 0; color: var(--text-dark); align-self: center; }
@media (max-width: 880px) { .auth-grid { grid-template-columns: 1fr; } }

/* -------- Quote form -------- */
.quote-aside {
  list-style: none;
  padding: 0;
  margin: var(--s6) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  font-size: 15px;
  color: var(--text-mute);
}
.quote-aside li {
  position: relative;
  padding-left: 22px;
}
.quote-aside li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px;
  height: 2px;
  background: var(--accent);
}

.form {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text-mute); }
.field--wide { grid-column: 1 / -1; }
.field > span, .field legend {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  margin-bottom: 2px;
}
.field input,
.field textarea {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--accent); background: var(--ink-3); }
.field--group {
  border: 0; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.field--group legend { width: 100%; }
.chk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.chk:hover { border-color: var(--accent); }
.chk input { accent-color: var(--accent); }
.form__actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-top: var(--s5);
  flex-wrap: wrap;
}
.form__msg { font-size: 14px; color: var(--accent); }
@media (max-width: 720px) {
  .form__grid { grid-template-columns: 1fr; }
}

/* -------- FAQ -------- */
.faqs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faqs details {
  border-bottom: 1px solid var(--line);
  padding: var(--s5) 0;
}
.faqs summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s5);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--text);
  letter-spacing: -0.005em;
  transition: color 0.2s var(--ease);
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faqs details[open] summary::after { content: "−"; }
.faqs summary:hover { color: var(--accent); }
.faqs details p {
  margin: var(--s4) 0 0;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.7;
  max-width: 75ch;
}

/* -------- Footer -------- */
.footer {
  background: #060b09;
  border-top: 1px solid var(--line);
  padding: var(--s8) 0 var(--s5);
  color: var(--text-mute);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: var(--s6);
}
.footer__brand svg { color: var(--text); margin-bottom: var(--s4); }
.footer__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  margin: 0 0 6px;
}
.footer__tag { font-size: 14px; line-height: 1.55; max-width: 36ch; margin: 0; }
.footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 var(--s3);
}
.footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.footer__bottom {
  margin-top: var(--s7);
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: var(--s4);
  font-size: 13px;
}
.footer__bottom p { margin: 0; }
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* -------- Reveal on scroll -------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__line, .hero__sub, .strip__track, .hero__eyebrow .dot { animation: none !important; opacity: 1 !important; transform: none !important; }
}
