/* =========================================================
   Arizona Pilot Car Service
   Aesthetic: DOT highway signage × trucker's tariff card
   Palette: cream pavement, dense ink, DOT yellow
   Type: Big Shoulders Display (transit signage) + DM Mono + Public Sans
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700;800;900&family=DM+Mono:wght@400;500&family=Public+Sans:wght@400;500;600&display=swap");

:root {
  --cream: #f2e9ce;
  --cream-soft: #f7f0da;
  --paper: #fbf6e5;
  --ink: #0a0a0a;
  --ink-soft: #1f1f1f;
  --ink-mute: #4a4a4a;
  --ink-faint: #7a7a7a;
  --yellow: #ffc60b;
  --yellow-deep: #e8ae00;
  --rust: #a82e2e;
  --hair: rgba(10, 10, 10, 0.16);
  --hair-strong: rgba(10, 10, 10, 0.32);

  --f-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --f-body: "Public Sans", system-ui, sans-serif;
  --f-mono: "DM Mono", ui-monospace, monospace;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --caution: repeating-linear-gradient(
    45deg,
    var(--ink) 0 14px,
    var(--yellow) 14px 28px
  );
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* subtle paper grain */
  background-image:
    radial-gradient(rgba(10, 10, 10, 0.025) 1px, transparent 1.2px),
    radial-gradient(rgba(10, 10, 10, 0.015) 1px, transparent 1.2px);
  background-size:
    3px 3px,
    5px 5px;
  background-position:
    0 0,
    1px 1.5px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Type primitives */
.mono {
  font-family: var(--f-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12.5px;
}
.label {
  font-family: var(--f-mono);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--ink-mute);
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: -0.005em;
  line-height: 0.92;
  text-transform: uppercase;
}
p {
  margin: 0 0 1em;
}

/* ====================== TOP BAR ====================== */
.topbar {
  border-bottom: 1px solid var(--hair);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.04em;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--yellow);
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__text-1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.brand__text-2 {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.nav {
  display: flex;
  gap: 30px;
}
.nav a {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 0;
  position: relative;
  transition: color 120ms ease;
}
.nav a:hover {
  color: var(--ink);
}
.nav a.is-current::before {
  content: "◆";
  position: absolute;
  left: -16px;
  top: 8px;
  color: var(--rust);
  font-size: 9px;
}
.nav a.is-current {
  color: var(--ink);
  font-weight: 500;
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  transition:
    background 150ms ease,
    color 150ms ease;
}
.topbar__cta:hover {
  background: var(--yellow);
  color: var(--ink);
}
.topbar__cta-dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}
.topbar__cta:hover .topbar__cta-dot {
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 2px solid var(--ink);
}

/* ============= SIGN BANNER (tariff ribbon) ============= */
.sign {
  background: var(--yellow);
  color: var(--ink);
  position: relative;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}
.sign::before,
.sign::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  background: var(--caution);
  background-size: 28px 28px;
}
.sign::before {
  left: 0;
}
.sign::after {
  right: 0;
}
.sign__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 76px;
  gap: 26px;
  flex-wrap: wrap;
}
.sign__text {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(18px, 2.4vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}
.sign__bullet {
  width: 8px;
  height: 8px;
  background: var(--ink);
  transform: rotate(45deg);
}

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 100px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: end;
}
.hero__marker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px 14px 8px 10px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
}
.hero__marker-pin {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.hero__marker-text {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(60px, 11vw, 156px);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 0.86;
}
.hero h1 .stack {
  display: block;
}
.hero h1 .accent {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  padding: 0 0.08em 0.04em;
  margin: 0 -0.04em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__tag {
  margin-top: 28px;
  font-family: var(--f-body);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  max-width: 30ch;
  color: var(--ink-soft);
}

.hero__ctas {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  transition:
    transform 150ms ease,
    background 150ms ease,
    box-shadow 150ms ease;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--ink);
}
.btn--primary {
  background: var(--yellow);
}
.btn--primary:hover {
  background: var(--yellow-deep);
}
.btn--dark {
  background: var(--ink);
  color: var(--yellow);
  box-shadow: 4px 4px 0 var(--yellow);
}
.btn--dark:hover {
  box-shadow: 6px 6px 0 var(--yellow);
  background: var(--ink-soft);
}
.btn svg {
  width: 18px;
  height: 18px;
}

.hero__photo {
  position: relative;
  border: 3px solid var(--ink);
  background: var(--ink);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--yellow);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__photo-tag {
  position: absolute;
  left: 0;
  top: 16px;
  background: var(--ink);
  color: var(--yellow);
  padding: 6px 14px 6px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__photo-tag::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 10px solid var(--ink);
}

/* ============ MILE TICK ============ */
.ticks {
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper);
  padding: 14px 0;
  position: relative;
}
.ticks__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.ticks__row span {
  position: relative;
  padding-top: 14px;
}
.ticks__row span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 9px;
  background: var(--ink);
  transform: translateX(-50%);
}
.ticks__row span.major::before {
  height: 14px;
  width: 2px;
}
.ticks__row span.major {
  color: var(--ink);
  font-weight: 500;
}

/* ============ SECTION SCAFFOLD ============ */
.section {
  padding: clamp(72px, 10vw, 130px) 0;
  position: relative;
}
.section--paper {
  background: var(--paper);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.section--ink {
  background: var(--ink);
  color: var(--cream-soft);
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 24px;
  margin-bottom: 56px;
}
.section-head__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.section--ink .section-head__num {
  color: var(--yellow);
}
.section-head__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 8px;
}
.section-head__mi {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.section--ink .section-head__mi {
  color: var(--yellow);
}
.section-head__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -0.005em;
  line-height: 0.95;
  text-transform: uppercase;
}

/* ============ SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.split--reverse .split__photo {
  order: -1;
}
.split__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 62ch;
}
.section--ink .split__copy p {
  color: rgba(247, 240, 218, 0.85);
}

.split__photo {
  position: relative;
  border: 3px solid var(--ink);
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split__photo--yellow {
  box-shadow: -10px 10px 0 var(--yellow);
}
.split__photo--rust {
  box-shadow: 10px 10px 0 var(--rust);
}
.split__photo-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 6px 10px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============ SERVICES LIST ============ */
.svc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1.5px solid var(--ink);
  margin-top: 24px;
}
.svc__row {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1.5px solid var(--ink);
  align-items: baseline;
  transition:
    background 150ms ease,
    padding 150ms ease;
}
.svc__row:hover {
  background: rgba(255, 198, 11, 0.18);
  padding-left: 12px;
  padding-right: 12px;
}
.svc__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.01em;
}
.svc__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1;
}
.svc__desc {
  font-size: 15.5px;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* ============ CREDS BLOCK ============ */
.creds {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
}
.creds li {
  padding: 16px 18px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper);
  font-size: 14.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.creds li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
}
.section--ink .creds {
  border-color: var(--yellow);
}
.section--ink .creds li {
  background: transparent;
  color: var(--cream-soft);
  border-color: rgba(255, 198, 11, 0.4);
}

/* ============ PULL QUOTE / DEPENDABLE ============ */
.pull {
  position: relative;
  padding: 0;
}
.pull__quote {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 22ch;
}
.pull__quote .hl {
  background: var(--yellow);
  padding: 0 0.06em 0.04em;
}
.pull__byline {
  margin-top: 32px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============ CONTACT ============ */
.contact {
  background: var(--ink);
  color: var(--cream-soft);
  border-top: 3px solid var(--yellow);
  position: relative;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--caution);
  background-size: 24px 24px;
}
.contact .container {
  padding-top: 40px;
  padding-bottom: 32px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding-top: 36px;
}
.contact__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.contact__title em {
  font-style: normal;
  color: var(--yellow);
}
.contact__sub {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

.channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1.5px solid var(--yellow);
}
.channel {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1.5px solid rgba(255, 198, 11, 0.35);
  transition: padding 150ms ease;
}
.channel:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: rgba(255, 198, 11, 0.06);
}
.channel__icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  border: 2px solid var(--yellow);
}
.channel__icon img {
  width: 26px;
  height: 26px;
}
.channel__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.channel__kind {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}
.channel__val {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.005em;
  line-height: 1;
}
.channel__arrow {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--yellow);
  transition: transform 150ms ease;
}
.channel:hover .channel__arrow {
  transform: translateX(6px);
}

/* ============ FOOTER ============ */
.foot {
  background: var(--cream);
  border-top: 3px solid var(--ink);
  padding: 56px 0 28px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: 36px;
  border-bottom: 1.5px solid var(--ink);
}
.foot__brand {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.foot__addr {
  font-size: 14.5px;
  line-height: 1.65;
  font-family: var(--f-mono);
}
.foot__addr strong {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 4px;
}
.foot__note {
  margin-top: 18px;
  padding: 10px 12px;
  background: var(--paper);
  border: 1.5px dashed var(--ink);
  font-size: 12.5px;
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  max-width: 38ch;
}
.foot__head {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--ink);
}
.foot__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.foot__list a:hover {
  color: var(--rust);
}

.foot__social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.foot__social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--yellow);
  border: 2px solid var(--ink);
  transition:
    background 150ms ease,
    color 150ms ease;
}
.foot__social a:hover {
  background: var(--yellow);
  color: var(--ink);
}
.foot__social svg {
  width: 16px;
  height: 16px;
}

.foot__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============ PAGE HEADER (inner pages) ============ */
.pagehead {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(56px, 8vw, 96px);
  border-bottom: 1.5px solid var(--ink);
}
.pagehead__marker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.pagehead__pin {
  width: 28px;
  height: 28px;
  background: var(--ink);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 13px;
}
.pagehead__mi {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.pagehead h1 {
  font-size: clamp(54px, 9vw, 120px);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 0.9;
}
.pagehead h1 .hl {
  background: var(--yellow);
  padding: 0 0.08em 0.04em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.pagehead p {
  margin-top: 26px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ============ RATES ============ */
.rate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.rate-card {
  border: 2.5px solid var(--ink);
  background: var(--paper);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.rate-card--alt {
  background: var(--ink);
  color: var(--cream-soft);
}
.rate-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 10px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: flex-start;
  color: var(--ink);
}
.rate-card h3 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 0.95;
}
.rate-card__dim {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 18px;
  border-bottom: 1.5px solid var(--ink);
}
.rate-card--alt .rate-card__dim {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.rate-card__rows {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.rate-card__rows li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1.5px dashed rgba(10, 10, 10, 0.2);
  align-items: baseline;
  font-size: 15px;
}
.rate-card--alt .rate-card__rows li {
  border-bottom-color: rgba(247, 240, 218, 0.2);
}
.rate-card__rows .price {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.rate-card__rows .lbl {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.rate-card__note {
  margin-top: 16px;
  padding-top: 14px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.rate-card--alt .rate-card__note {
  color: var(--yellow);
}

.callouts {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.callout {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-left: 10px solid var(--yellow);
}
.callout__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 0.9;
  color: var(--ink);
  white-space: nowrap;
}
.callout__t {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1;
}
.callout__sub {
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.5;
}

.matrix {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 2px solid var(--ink);
  margin-top: 18px;
}
.matrix__cell {
  padding: 28px 26px;
  border-right: 1.5px solid var(--ink);
  background: var(--paper);
}
.matrix__cell:last-child {
  border-right: none;
}
.matrix__kind {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--ink);
}
.matrix__val {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.015em;
  line-height: 0.9;
  color: var(--ink);
}
.matrix__unit {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}
.matrix__note {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.55;
}

.fees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.payment-row {
  margin-top: 24px;
  padding: 20px 22px;
  background: var(--paper);
  border: 2px dashed var(--ink);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============ FAQ ============ */
.faq {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--ink);
}
.faq details {
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 26px 8px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 22px;
  align-items: center;
  transition:
    background 120ms ease,
    padding 120ms ease;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover {
  background: rgba(255, 198, 11, 0.16);
  padding-left: 18px;
  padding-right: 18px;
}
.faq__n {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 0.9;
}
.faq__q {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.05;
}
.faq__toggle {
  width: 38px;
  height: 38px;
  background: var(--ink);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  transition:
    transform 200ms ease,
    background 200ms ease;
}
.faq details[open] .faq__toggle {
  background: var(--yellow);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 8px 30px 94px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 70ch;
}

/* ============ INFO / RESOURCES ============ */
.dps {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px;
  padding: 20px 26px;
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  position: relative;
}
.dps::before {
  content: "!";
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 28px;
  flex-shrink: 0;
}
.dps__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.dps__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--ink);
}

.res-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}
.res {
  display: block;
  padding: 24px 26px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
  position: relative;
  transition: background 150ms ease;
}
.res:hover {
  background: var(--yellow);
}
.res__src {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--ink);
  margin-bottom: 12px;
}
.res:hover .res__src {
  color: var(--ink);
}
.res__num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  color: var(--ink-faint);
}
.res:hover .res__num {
  color: var(--ink);
}
.res__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.1;
  margin-bottom: 8px;
  padding-right: 36px;
}
.res__desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
  margin: 0;
}
.res:hover .res__desc {
  color: var(--ink-soft);
}
.res__arrow {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.res__arrow::after {
  content: "→";
  transition: transform 150ms ease;
}
.res:hover .res__arrow::after {
  transform: translateX(4px);
}

.info-foot {
  margin-top: 32px;
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.info-foot a {
  border-bottom: 1.5px solid var(--ink);
  color: var(--ink);
}

/* ============ ANIMATIONS ============ */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes signal {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes blink {
  0%,
  100% {
    background: var(--yellow);
  }
  50% {
    background: var(--yellow-deep);
  }
}
.anim-rise {
  animation: rise 720ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.anim-1 {
  animation-delay: 60ms;
}
.anim-2 {
  animation-delay: 180ms;
}
.anim-3 {
  animation-delay: 320ms;
}
.anim-4 {
  animation-delay: 460ms;
}
.anim-5 {
  animation-delay: 600ms;
}

.sign .sign__bullet {
  animation: blink 1.8s ease-in-out infinite;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__photo {
    aspect-ratio: 5 / 4;
    max-width: 640px;
  }
  .rate-grid {
    grid-template-columns: 1fr;
  }
  .matrix {
    grid-template-columns: 1fr;
  }
  .matrix__cell {
    border-right: none;
    border-bottom: 1.5px solid var(--ink);
  }
  .matrix__cell:last-child {
    border-bottom: none;
  }
  .fees {
    grid-template-columns: 1fr;
  }
  .res-grid {
    grid-template-columns: 1fr;
  }
  .foot__grid {
    grid-template-columns: 1fr;
  }
  .callouts {
    grid-template-columns: 1fr;
  }
  .ticks__row span:nth-child(2n) {
    display: none;
  }
}
@media (max-width: 820px) {
  .nav {
    display: none;
  }
  .topbar__cta {
    display: none;
  }
  .nav-toggle {
    display: grid;
    place-items: center;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split--reverse .split__photo {
    order: 0;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .section-head__num {
    font-size: 60px;
  }
  .svc__row {
    grid-template-columns: 60px 1fr;
  }
  .svc__desc {
    grid-column: 1 / -1;
    padding-left: 92px;
  }
  .creds {
    grid-template-columns: 1fr;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .ticks__row span:nth-child(odd) {
    display: none;
  }
  .ticks__row span:nth-child(4n) {
    display: inline;
  }
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(48px, 13vw, 72px);
  }
  .channel {
    grid-template-columns: 48px 1fr;
  }
  .channel__arrow {
    display: none;
  }
  .faq summary {
    grid-template-columns: 44px 1fr auto;
    gap: 14px;
  }
  .faq__a {
    padding-left: 8px;
  }
  .dps {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* Nav open state (mobile) */
.nav.is-open {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--cream);
  padding: 24px var(--gutter);
  border-bottom: 2px solid var(--ink);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 3px;
}

/* Visually-hidden (SEO text crawlers read but eye doesn't) */
.vh {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============ FUEL SURCHARGE BANNER ============ */
.fuel {
  background: var(--ink);
  color: var(--yellow);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.fuel__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  flex-wrap: wrap;
  text-align: center;
}
.fuel__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fuel__text {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.fuel__text em {
  font-style: normal;
  background: var(--yellow);
  color: var(--ink);
  padding: 0 8px;
}

.surcharge-flag {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.surcharge-flag::before {
  content: "+10%";
  background: var(--yellow);
  color: var(--ink);
  padding: 4px 8px;
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: 0.04em;
}

/* ============ STATES grid (info.html) ============ */
.states {
  margin-top: 56px;
}
.states__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 18px;
  margin-bottom: 22px;
}
.states__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 1;
}
.states__all {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}
.states__all:hover {
  color: var(--rust);
  border-bottom-color: var(--rust);
}
.states__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
}
.states__grid a {
  padding: 14px 12px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  transition: background 120ms ease;
}
.states__grid a:hover {
  background: var(--yellow);
}

/* ============ PDF download cards (rates.html) ============ */
.docs {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.doc {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--paper);
  border: 2px solid var(--ink);
  transition: background 150ms ease;
}
.doc:hover {
  background: var(--yellow);
}
.doc__icon {
  width: 56px;
  height: 56px;
  background: var(--ink);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.doc__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.doc__sub {
  margin-top: 4px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.doc:hover .doc__sub {
  color: var(--ink);
}
.doc__arrow {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
}

/* ============ Footer 4-col adjustment ============ */
.foot__grid--4 {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
@media (max-width: 1024px) {
  .foot__grid--4 {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
@media (max-width: 820px) {
  .foot__grid--4 {
    grid-template-columns: 1fr;
  }
  .states__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .docs {
    grid-template-columns: 1fr;
  }
  .fuel__inner {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .states__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Inline content links (faq answers) */
.inline-link {
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transition:
    color 120ms ease,
    border-color 120ms ease;
}
.inline-link:hover {
  color: var(--rust);
  border-bottom-color: var(--rust);
}

/* ============ ARTICLE CONTENT (state pages + topical articles) ============ */
.article {
  max-width: 860px;
  margin: 0 auto;
}
.article h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 44px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 48px 0 22px;
  padding-bottom: 14px;
  border-bottom: 2.5px solid var(--ink);
  line-height: 1;
}
.article h2:first-child {
  margin-top: 0;
}
.article h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 36px 0 14px;
  padding-left: 16px;
  border-left: 6px solid var(--yellow);
  line-height: 1.1;
}
.article p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1em;
}
.article p strong,
.article p b,
.article li strong,
.article li b,
.article div strong,
.article div b,
.article td strong,
.article td b {
  color: var(--ink);
  font-weight: 700;
}
.article ul,
.article ol {
  margin: 0 0 1em;
  padding-left: 28px;
}
.article li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.article a {
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transition:
    color 120ms ease,
    border-color 120ms ease;
}
.article a:hover {
  color: var(--rust);
  border-bottom-color: var(--rust);
}
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border: 2.5px solid var(--ink);
  background: var(--paper);
  font-size: 15px;
}
.article th {
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--f-display);
  font-weight: 800;
  text-align: left;
  padding: 14px 16px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article td {
  padding: 12px 16px;
  border-top: 1.5px solid var(--ink);
  vertical-align: top;
}
.article .note {
  display: block;
  padding: 14px 18px;
  margin: 18px 0;
  background: var(--yellow);
  border-left: 6px solid var(--ink);
  color: var(--ink);
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.article div {
  margin: 0 0 0.8em;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.article img {
  max-width: 100%;
  height: auto;
  border: 2.5px solid var(--ink);
  margin: 22px 0;
}

/* ============ States index columns ============ */
.states-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
  margin-top: 32px;
}
.states-index a,
.states-index span {
  display: block;
  padding: 16px 14px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: background 120ms ease;
}
.states-index a:hover {
  background: var(--yellow);
}
.states-index .disabled {
  color: var(--ink-faint);
  cursor: not-allowed;
  background: var(--cream);
}
@media (max-width: 820px) {
  .states-index {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .states-index {
    grid-template-columns: 1fr;
  }
}
