/* ============================================================
   RIG 47 PLUMBING — shared styles
   Fonts: Big Shoulders Display (display) · Public Sans (body) · JetBrains Mono (num)
   ============================================================ */

:root {
  --ink:    #0D1421;
  --ink-2:  #1B2333;
  --paper:  #F6F4EE;
  --paper-2:#ECE8DC;
  --mute:   #5B6479;
  --line:   #D6D2C5;
  --hi:     #F4C100;
  --hi-2:   #FFD93F;
  --red:    #C42B1C;
  --red-2:  #8C2F20;
  --safe:   #14653F;

  --r-1: 0px;
  --shadow-1: 4px 4px 0 0 var(--ink);
  --shadow-2: 6px 6px 0 0 var(--ink);

  --maxw: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Public Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* ---------- type ---------- */
.display   { font-family: "Big Shoulders Display", Impact, sans-serif; font-weight: 900; line-height: 0.9; letter-spacing: -0.005em; }
.display-7 { font-family: "Big Shoulders Display", Impact, sans-serif; font-weight: 700; line-height: 1; }
.stencil   { font-family: "Big Shoulders Display", Impact, sans-serif; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; }
.num       { font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-feature-settings: "tnum" 1; }

h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }

/* ---------- helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

.hazard       { background-image: repeating-linear-gradient(135deg, var(--hi) 0 18px, var(--ink) 18px 36px); }
.hazard-thin  { background-image: repeating-linear-gradient(135deg, var(--hi) 0 8px, var(--ink) 8px 16px); }
.hazard-h     { height: 12px; }
.hazard-h-thin{ height: 8px; }

.divider-thick { border-bottom: 3px solid var(--ink); }
.divider       { border-bottom: 1px solid var(--line); }

.grain::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 60;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.07  0 0 0 0 0.11  0 0 0 0.3 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.06;
}

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: 0; top: -100px;
  background: var(--ink); color: var(--hi);
  padding: 12px 16px; font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; z-index: 1000;
}
.skip-link:focus { top: 0; outline: 3px solid var(--hi); }

/* ---------- focus ---------- */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  border: 3px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  transition: transform 180ms cubic-bezier(.16,1,.3,1), background 180ms, color 180ms, box-shadow 180ms;
  min-height: 48px;
}
.btn:hover { background: var(--paper-2); }
.btn:active { transform: translate(2px, 2px); box-shadow: none !important; }

.btn--hi      { background: var(--hi); color: var(--ink); box-shadow: var(--shadow-1); }
.btn--hi:hover { background: var(--hi-2); }
.btn--dark    { background: var(--ink); color: var(--hi); box-shadow: 4px 4px 0 0 var(--hi); }
.btn--dark:hover { background: #000; }
.btn--red     { background: var(--red); color: #fff; box-shadow: var(--shadow-1); }
.btn--red:hover { background: var(--red-2); }
.btn--ghost   { background: transparent; }
.btn--lg      { font-size: 24px; padding: 18px 28px; min-height: 56px; }
.btn--xl      { font-size: 32px; padding: 18px 28px; min-height: 64px; }
.btn--block   { width: 100%; justify-content: center; }

/* license plate phone */
.plate {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--hi); color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 0 var(--ink);
  padding: 10px 18px;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-size: 36px; line-height: 1;
  transition: background 180ms, transform 180ms;
  min-height: 56px;
}
.plate:hover { background: var(--hi-2); }
.plate:active { transform: translate(2px, 2px); box-shadow: none; }
.plate--lg { font-size: 56px; padding: 16px 26px; min-height: 80px; }
.plate--xl { font-size: 72px; padding: 18px 30px; min-height: 100px; }

/* badges */
.badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--hi);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  padding: 6px 12px;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 11px;
  text-transform: uppercase;
}
.badge--hi { background: var(--hi); color: var(--ink); }
.badge--red{ background: var(--red); color: #fff; }

.stamp-circle {
  display: inline-block;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 11px;
  text-transform: uppercase;
  transform: rotate(-5deg);
  background: var(--paper);
}

/* punch card */
.punch {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-2);
  padding: 24px;
}
.punch--hi { background: var(--hi); }
.punch--dark { background: var(--ink); color: var(--paper); box-shadow: 6px 6px 0 0 var(--hi); }

.pulse-dot { position: relative; }
.pulse-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 999px;
  background: rgba(196, 43, 28, 0.4);
  animation: rig-pulse 1.8s infinite;
}
@keyframes rig-pulse {
  0%   { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================================
   TOP BAR
   ============================================================ */

.topbar {
  background: var(--ink);
  color: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.topbar__row {
  max-width: var(--maxw); margin: 0 auto;
  padding: 8px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
@media (min-width: 768px) { .topbar__row { padding: 8px 40px; } }
.topbar__creds { display: none; gap: 16px; opacity: 0.75; }
@media (min-width: 900px) { .topbar__creds { display: flex; } }

/* ============================================================
   NAV (desktop + mobile drawer)
   ============================================================ */

.nav {
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  position: sticky; top: 0; z-index: 50;
}
.nav__row {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
@media (min-width: 768px) { .nav__row { padding: 14px 40px; } }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand__mark { width: 44px; height: 44px; flex: 0 0 44px; }
.brand__name { font-family: "Big Shoulders Display", sans-serif; font-weight: 900; font-size: 28px; line-height: 0.9; letter-spacing: -0.005em; }
.brand__name .dot { color: var(--red); }
.brand__sub  { font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); margin-top: 2px; }

.nav__list {
  display: none;
  list-style: none; margin: 0; padding: 0;
  gap: 28px;
  align-items: center;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (min-width: 1024px) { .nav__list { display: flex; } }
.nav__list a { text-decoration: none; color: var(--ink); padding: 6px 0; border-bottom: 3px solid transparent; transition: border-color 180ms, color 180ms; }
.nav__list a:hover { color: var(--red); }
.nav__list a.is-active { border-color: var(--red); color: var(--red); }

.nav__cta {
  display: none;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) { .nav__cta { display: inline-flex; } }

.nav__call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--hi);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 0 var(--ink);
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900; font-size: 22px; letter-spacing: 0.01em;
  text-decoration: none; color: var(--ink);
  transition: background 180ms;
  min-height: 48px;
}
.nav__call:hover { background: var(--hi-2); }

.nav__burger {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--hi);
  border: none;
}
@media (min-width: 1024px) { .nav__burger { display: none; } }
.nav__burger svg { width: 24px; height: 24px; }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(13,20,33,0.85);
  display: none;
  opacity: 0;
  transition: opacity 200ms ease;
}
.drawer.is-open { display: block; opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(92vw, 360px);
  background: var(--paper);
  border-left: 3px solid var(--ink);
  padding: 20px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(20px);
  transition: transform 220ms cubic-bezier(.16,1,.3,1);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 3px solid var(--ink); }
.drawer__close { width: 44px; height: 44px; background: var(--ink); color: var(--hi); border: none; display: inline-flex; align-items: center; justify-content: center; }
.drawer__list { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.drawer__list a {
  display: block; padding: 14px 12px;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800; font-size: 22px; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.drawer__list a.is-active { color: var(--red); }
.drawer__cta { margin-top: 18px; display: grid; gap: 10px; }

/* ============================================================
   STICKY MOBILE BOTTOM CTA
   ============================================================ */

.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--ink);
  border-top: 3px solid var(--hi);
}
@media (min-width: 1024px) { .mobile-cta { display: none; } }
.mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px;
  min-height: 56px;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800; font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-cta__call { background: var(--hi); color: var(--ink); }
.mobile-cta__book { background: var(--red); color: #fff; }
/* push content above sticky bar on mobile */
body { padding-bottom: 0; }
@media (max-width: 1023px) {
  body { padding-bottom: 70px; }
}

/* ============================================================
   HERO + SECTIONS
   ============================================================ */

.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 88px 0; } }
.section--ink { background: var(--ink); color: var(--paper); }
.section--paper-2 { background: var(--paper-2); }
.section--hi { background: var(--hi); }

.eyebrow { font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); }
.eyebrow--red { color: var(--red); }
.eyebrow--ink-hi { color: var(--hi); }

.h-display {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.005em;
  font-size: clamp(48px, 10vw, 128px);
  text-transform: uppercase;
}
.h-display--md { font-size: clamp(40px, 7vw, 88px); }
.h-display--sm { font-size: clamp(32px, 5vw, 64px); }

.lede { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; max-width: 56ch; color: var(--ink-2); }

.hilite { background: var(--hi); padding: 0 8px; display: inline-block; }
.redmark { color: var(--red); }

/* hero edge bars */
.hero { position: relative; border-bottom: 3px solid var(--ink); overflow: hidden; background: var(--paper); }
.hero__edges-l, .hero__edges-r {
  position: absolute; top: 0; bottom: 0; width: 12px;
  background-image: repeating-linear-gradient(135deg, var(--hi) 0 18px, var(--ink) 18px 36px);
}
.hero__edges-l { left: 0; }
.hero__edges-r { right: 0; }
@media (min-width: 768px) { .hero__edges-l, .hero__edges-r { width: 20px; } }
.hero__inner { padding: 56px 36px; }
@media (min-width: 768px) { .hero__inner { padding: 80px 60px; } }

/* stats row */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  border-top: 3px solid var(--ink); padding-top: 24px;
}
.stats > div .num-big {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900; font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
}
.stats > div .num-lbl { font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-top: 4px; }

/* truck box */
.truck-box { background: var(--hi); border: 3px solid var(--ink); box-shadow: 6px 6px 0 0 var(--ink); padding: 6px; }
.truck-box__inner { border: 2px solid var(--ink); padding: 12px; background: var(--hi); }
.truck-box img { width: 100%; height: auto; display: block; aspect-ratio: 4/5; object-fit: cover; }

/* marquee */
.marquee { display: flex; gap: 40px; white-space: nowrap; animation: rig-scroll 38s linear infinite; }
@keyframes rig-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee__row { background: var(--ink); color: var(--paper); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); overflow: hidden; padding: 14px 0; font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; }
.marquee__row .dot { color: var(--hi); }

/* ============================================================
   SERVICE CARD GRID
   ============================================================ */

.svc-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 0 var(--ink);
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  text-decoration: none; color: var(--ink);
  transition: transform 180ms;
}
.svc-card:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 0 var(--ink); }
.svc-card--hi { background: var(--hi); }
.svc-card__top { display: flex; align-items: center; justify-content: space-between; }
.svc-card__title { font-family: "Big Shoulders Display", sans-serif; font-weight: 900; font-size: 32px; line-height: 0.95; text-transform: uppercase; margin-top: 8px; }
.svc-card__body { font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.svc-card__foot {
  margin-top: auto;
  border-top: 3px solid var(--ink);
  padding-top: 14px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.svc-card__price { font-family: "Big Shoulders Display", sans-serif; font-weight: 900; font-size: 28px; line-height: 1; }
.svc-card .stamp-circle.tag {
  position: absolute; top: -16px; right: -10px; background: var(--paper);
}
.svc-card--hi .stamp-circle.tag { background: var(--hi-2); }

/* ============================================================
   BOOKING WIDGET
   ============================================================ */

.book {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-2);
  padding: 22px;
}
@media (min-width: 768px) { .book { padding: 28px; } }
.book__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.book__title { font-family: "Big Shoulders Display", sans-serif; font-weight: 900; font-size: 28px; text-transform: uppercase; line-height: 1; }
.book__step { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); background: var(--hi); padding: 4px 10px; border: 2px solid var(--ink); }

.book__label { font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); display: block; margin-bottom: 8px; }

.tiles { display: grid; gap: 10px; grid-template-columns: repeat(3, 1fr); }
.tile {
  background: var(--paper); border: 2px solid var(--ink);
  padding: 12px 10px;
  text-align: left;
  display: flex; flex-direction: column; gap: 6px;
  cursor: pointer;
  transition: background 180ms, transform 180ms, box-shadow 180ms;
  min-height: 88px;
}
.tile:hover { background: var(--hi-2); }
.tile[aria-pressed="true"] { background: var(--ink); color: var(--hi); }
.tile[aria-pressed="true"] svg path,
.tile[aria-pressed="true"] svg circle,
.tile[aria-pressed="true"] svg rect { stroke: var(--hi) !important; }
.tile[aria-pressed="true"] svg .fill { fill: var(--hi) !important; }
.tile__lbl { font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.1; }
.tile__sub { font-family: "JetBrains Mono", monospace; font-size: 10px; color: inherit; opacity: 0.75; letter-spacing: 0.06em; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--paper); border: 2px solid var(--ink);
  padding: 10px 14px;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms;
  min-height: 44px;
}
.chip:hover { background: var(--hi-2); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--hi); }

.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  padding: 12px 14px;
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  color: var(--ink);
  min-height: 48px;
  border-radius: 0;
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.field input:focus, .field textarea:focus, .field select:focus { background: #fff; }
.field .err { color: var(--red); font-size: 13px; font-family: "JetBrains Mono", monospace; }
.field--invalid input, .field--invalid textarea { border-color: var(--red); }

.book__row { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 520px) { .book__row { grid-template-columns: 1fr 1fr; } }

.book__foot {
  margin-top: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.06em; color: var(--mute);
  text-align: center;
}
.book__foot b { color: var(--ink); }

/* booking success */
.book__success {
  display: none;
  text-align: center; padding: 16px 8px;
}
.book.is-success .book__success { display: block; }
.book.is-success .book__form { display: none; }
.book__success .stencil { color: var(--safe); }
.book__success-title { font-family: "Big Shoulders Display", sans-serif; font-weight: 900; font-size: 40px; line-height: 1; text-transform: uppercase; margin-top: 8px; }

/* ============================================================
   PROMISES BAND
   ============================================================ */
.promises {
  display: grid; grid-template-columns: 1fr;
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
}
@media (min-width: 768px) { .promises { grid-template-columns: repeat(3, 1fr); } }
.promise { padding: 40px 28px; border-bottom: 3px solid var(--ink); }
@media (min-width: 768px) { .promise { border-bottom: none; border-right: 3px solid var(--ink); } .promise:last-child { border-right: none; } }
.promise--ink   { background: var(--ink); color: var(--paper); }
.promise--hi    { background: var(--hi); color: var(--ink); }
.promise--paper { background: var(--paper); color: var(--ink); }
.promise__title { font-family: "Big Shoulders Display", sans-serif; font-weight: 900; font-size: clamp(40px, 4vw, 56px); text-transform: uppercase; line-height: 0.9; margin-top: 12px; }
.promise__body { margin-top: 12px; max-width: 32ch; }

/* ============================================================
   BREADCRUMB
   ============================================================ */

.crumbs {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.crumbs a { color: var(--ink); text-decoration: none; }
.crumbs a:hover { color: var(--red); }
.crumbs > span { margin: 0 8px; opacity: 0.4; }

/* ============================================================
   FOOTER
   ============================================================ */

.foot {
  background: var(--ink);
  color: var(--paper);
}
.foot__top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 24px;
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .foot__top { padding: 56px 40px; grid-template-columns: 2fr 1fr 1fr 1fr; } }
.foot__brand .display { color: var(--hi); font-size: 48px; }
.foot__brand .stencil { color: var(--paper); opacity: 0.7; margin-top: 4px; }
.foot__brand p { margin-top: 14px; color: rgba(245, 244, 238, 0.75); max-width: 36ch; }
.foot h4 { font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hi); margin-bottom: 12px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot a { color: var(--paper); text-decoration: none; opacity: 0.85; }
.foot a:hover { color: var(--hi); opacity: 1; }
.foot__bottom {
  background: var(--ink);
  border-top: 1px solid rgba(245,244,238,0.1);
}
.foot__bottom-row {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,244,238,0.7);
  flex-wrap: wrap; gap: 8px;
}
@media (min-width: 768px) { .foot__bottom-row { padding: 14px 40px; } }

/* ============================================================
   TABLES, ACCORDIONS, MISC
   ============================================================ */

.rate-table {
  width: 100%; border-collapse: collapse;
  border: 3px solid var(--ink); background: var(--paper);
}
.rate-table th, .rate-table td {
  padding: 14px 16px;
  border-bottom: 3px solid var(--ink);
  text-align: left;
  vertical-align: top;
}
.rate-table th {
  background: var(--ink); color: var(--hi);
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.rate-table td.num { font-family: "JetBrains Mono", monospace; font-weight: 500; text-align: right; }
.rate-table tr:last-child td { border-bottom: none; }
.rate-table .row-svc { font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 18px; text-transform: uppercase; }

.faq-item {
  border-bottom: 3px solid var(--ink);
  padding: 18px 0;
}
.faq-item summary {
  font-family: "Big Shoulders Display", sans-serif; font-weight: 800;
  font-size: 20px; text-transform: uppercase;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: "JetBrains Mono", monospace; font-weight: 700; font-size: 24px; color: var(--red);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 10px; color: var(--ink-2); max-width: 65ch; }

.testimonial {
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  padding: 36px 0;
}
.testimonial__quote {
  font-family: "Big Shoulders Display", sans-serif; font-weight: 900;
  font-size: clamp(28px, 4vw, 48px); line-height: 1.05; text-transform: uppercase;
  max-width: 32ch;
}
.testimonial__attr { font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 16px; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee { animation: none; }
}

/* small utility */
.flex-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.gap-sm { gap: 8px; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-6 { margin-top: 48px; } .mt-8 { margin-top: 64px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; } .mb-6 { margin-bottom: 48px; }
.text-center { text-align: center; }
.muted { color: var(--mute); }
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.split { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.2fr 1fr; } }
.split--reverse { grid-template-columns: 1fr; }
@media (min-width: 900px) { .split--reverse { grid-template-columns: 1fr 1.2fr; } }

.img-frame { border: 3px solid var(--ink); background: var(--ink); aspect-ratio: 4/3; overflow: hidden; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame--tall { aspect-ratio: 4/5; }
.img-frame--wide { aspect-ratio: 16/9; }

.kbd-call { display: flex; align-items: center; gap: 8px; }
.kbd-call svg { width: 18px; height: 18px; }

.callbar {
  background: var(--hi);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.callbar__row {
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
@media (min-width: 768px) { .callbar__row { padding: 22px 40px; } }
.callbar__title { font-family: "Big Shoulders Display", sans-serif; font-weight: 900; font-size: clamp(22px, 2.5vw, 32px); text-transform: uppercase; line-height: 1; }

/* hide visually but keep accessible */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
