/* ============================================================================
   HAUL YEAH — shared design system
   Used by: dump-runs.html, store-pickup.html, furniture-moves.html,
            faq.html, reviews.html, get-a-quote.html
   (index.html and booking.html keep their own inline styles.)
   Fonts are loaded via <link> in each page's <head>.
   ============================================================================ */

:root {
  --bg: #f4f1ea;
  --bg-dark: #0a0a0a;
  --ink: #0a0a0a;
  --paper: #f4f1ea;
  --hi-vis: #ff5b00;
  --caution: #ffd400;
  --steel: #2a2a2a;
  --rust: #8a3a14;
  --line: #0a0a0a;
  --grid: rgba(10,10,10,0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 40px 40px;
}

.display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.01em; line-height: 0.9; }
.mono { font-family: 'JetBrains Mono', monospace; }

img { max-width: 100%; display: block; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ============ TOP STRIPE ============ */
.top-stripe {
  background: var(--ink);
  color: var(--paper);
  padding: 8px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
.marquee {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.marquee span { display: flex; align-items: center; gap: 48px; }
.marquee span::after { content: "\25C6"; color: var(--hi-vis); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ NAV ============ */
nav {
  border-bottom: 3px solid var(--ink);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.logo-mark {
  background: var(--hi-vis);
  color: var(--ink);
  padding: 2px 10px 0;
  border: 2px solid var(--ink);
  transform: skewX(-8deg);
}
.nav-links {
  display: flex;
  gap: 17px;
  list-style: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--hi-vis);
}

/* ============ NAV DROPDOWN (Services) ============ */
.nav-dropdown {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px 0;
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}
.nav-dropdown-toggle .caret {
  font-size: 8px;
  transition: transform 0.15s;
}
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--hi-vis);
  opacity: 0;
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.active .nav-dropdown-toggle::after {
  opacity: 1;
}
.nav-dropdown:hover .caret,
.nav-dropdown:focus-within .caret {
  transform: rotate(180deg);
}
.nav-dropdown.active .nav-dropdown-toggle { color: var(--hi-vis); }
.nav-dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 6px 0;
  display: none;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu li { width: 100%; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  white-space: nowrap;
  font-size: 12px;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--caution);
}
.nav-dropdown-menu a:hover::after,
.nav-dropdown-menu a.active::after {
  display: none;
}

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  border: 2px solid var(--ink);
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--hi-vis); color: var(--ink); }

/* mobile hamburger toggle (CSS-only, no JS needed) */
.nav-toggle { display: none; }
.nav-burger { display: none; }

@media (max-width: 1200px) {
  .nav-inner { position: relative; }
  .logo { margin-right: auto; }
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 48px; height: 42px; padding: 0 10px; flex: none;
    border: 2px solid var(--ink); background: var(--paper); cursor: pointer;
  }
  .nav-burger span { display: block; width: 100%; height: 3px; background: var(--ink); transition: transform .2s, opacity .2s; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--paper); border-top: 2px solid var(--ink); border-bottom: 3px solid var(--ink);
    padding: 6px 0; z-index: 200;
    max-height: calc(100vh - 80px); overflow-y: auto;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 15px 32px; font-size: 15px; border-bottom: 1px solid rgba(10,10,10,0.08); }
  .nav-links a:hover { background: var(--caution); }
  .nav-links a:hover::after, .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--hi-vis); }
  .nav-dropdown { padding-bottom: 0; margin-bottom: 0; }
  .nav-dropdown-toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 15px 32px;
    font-size: 15px;
    border-bottom: 1px solid rgba(10,10,10,0.08);
  }
  .nav-dropdown-toggle::after { display: none; }
  .nav-dropdown-toggle:hover { background: var(--caution); }
  .nav-dropdown.active .nav-dropdown-toggle { color: var(--hi-vis); }
  .nav-dropdown-menu {
    display: block;
    position: static;
    transform: none;
    min-width: 0;
    background: rgba(10,10,10,0.03);
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .nav-dropdown-menu a { padding: 13px 32px 13px 48px; font-size: 14px; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 480px) {
  .nav-inner { padding: 14px 16px; gap: 12px; }
  .logo { font-size: 26px; }
  .nav-cta { padding: 10px 14px; font-size: 12px; }
}

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--hi-vis);
  color: var(--ink);
  padding: 20px 36px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.btn-primary:active {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--ink);
}
.btn-primary svg { width: 22px; height: 22px; }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 20px 28px;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  border: 3px solid var(--ink);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 18px 0 0;
  color: var(--steel);
}
.breadcrumb a { color: var(--steel); text-decoration: none; }
.breadcrumb a:hover { color: var(--hi-vis); }
.breadcrumb span { color: var(--hi-vis); }

/* ============ PAGE HERO ============ */
.page-hero {
  padding: 40px 0 56px;
  border-bottom: 3px solid var(--ink);
}
.page-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 6px 14px;
  background: var(--caution);
  border: 2px solid var(--ink);
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 9vw, 128px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  word-break: break-word;
}
.page-hero h1 .accent { color: var(--hi-vis); -webkit-text-stroke: 2px var(--ink); }
.page-hero .lead {
  max-width: 640px;
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.page-hero .lead strong { background: var(--caution); padding: 0 4px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* two-column splits that stack on mobile */
.split { display: grid; gap: 40px; align-items: start; }
.split.price { grid-template-columns: 0.9fr 1.1fr; }
.split.form  { grid-template-columns: 1.3fr 0.7fr; gap: 48px; }
@media (max-width: 860px) {
  .split.price, .split.form { grid-template-columns: 1fr; }
}

/* ============ SECTION HEADER ============ */
.section {
  padding: 80px 0;
}
.section.dark {
  background: var(--ink);
  color: var(--paper);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.section.dark::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background: repeating-linear-gradient(45deg, var(--hi-vis), var(--hi-vis) 20px, var(--ink) 20px, var(--ink) 40px);
}
.section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--hi-vis);
  margin-bottom: 12px;
  font-weight: 700;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.9;
  margin-bottom: 32px;
}

/* ============ PROSE / CONTENT ============ */
.prose { max-width: 720px; }
.prose h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 0.95;
  margin: 44px 0 18px;
}
.prose h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  margin: 32px 0 12px;
}
.prose p { font-size: 17px; line-height: 1.65; margin-bottom: 16px; }
.prose p strong { background: var(--caution); padding: 0 4px; }
.prose ul { list-style: none; margin: 8px 0 20px; }
.prose ul li {
  font-size: 16px;
  line-height: 1.55;
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px dashed rgba(10,10,10,0.15);
}
.prose ul li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--hi-vis);
  font-weight: 700;
}

/* ============ FEATURE / INFO CARDS ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 3px solid var(--ink);
}
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) { .card-grid, .card-grid.two { grid-template-columns: 1fr; } }
.info-card {
  padding: 32px 28px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}
.info-card:nth-child(3n) { border-right: none; }
.card-grid.two .info-card:nth-child(3n) { border-right: 2px solid var(--ink); }
.card-grid.two .info-card:nth-child(2n) { border-right: none; }
@media (max-width: 820px) {
  .info-card, .card-grid.two .info-card { border-right: none; }
}
.info-card .ic-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--hi-vis);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.info-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 30px; margin-bottom: 10px; }
.info-card p { font-size: 15px; line-height: 1.55; }

/* ============ PRICE BOX ============ */
.price-box {
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--paper);
  color: var(--ink);
  padding: 32px 28px;
  max-width: 460px;
}
.price-box .pb-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 700;
}
.price-box .pb-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--hi-vis);
  -webkit-text-stroke: 2px var(--ink);
  margin: 6px 0 14px;
}
.price-box ul { list-style: none; }
.price-box ul li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  padding: 8px 0;
  border-top: 1px dashed rgba(10,10,10,0.2);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

/* ============ PRICE TABLE ============ */
.price-table-wrap { overflow-x: auto; border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); background: var(--paper); }
.price-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.price-table th, .price-table td { text-align: left; padding: 16px 18px; border-bottom: 2px solid var(--ink); vertical-align: middle; }
.price-table thead th { font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; background: var(--ink); color: var(--paper); }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: #fff; }
.price-table .svc { font-family: 'Bebas Neue', sans-serif; font-size: 26px; line-height: 1; display: block; }
.price-table .desc { font-size: 13.5px; color: var(--steel); line-height: 1.45; display: block; margin-top: 4px; }
.price-table .amt { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--hi-vis); -webkit-text-stroke: 1px var(--ink); white-space: nowrap; text-align: right; }
.price-table .amt small { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--steel); -webkit-text-stroke: 0; text-transform: uppercase; margin-top: 2px; }
@media (max-width: 560px) {
  .price-table th, .price-table td { padding: 12px 12px; }
  .price-table .svc { font-size: 22px; }
  .price-table .amt { font-size: 26px; }
}

/* ============ CALLOUT ============ */
.callout {
  border: 2px solid var(--ink);
  background: var(--caution);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 16px;
  line-height: 1.55;
}
.callout strong { font-weight: 700; }

/* ============ FAQ ITEMS ============ */
.faq-item {
  border: 2px solid var(--ink);
  background: var(--paper);
  margin-bottom: -2px;
  transition: background 0.15s;
}
.faq-item[open] {
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  margin-top: 4px;
}
.faq-item summary {
  padding: 22px 60px 22px 24px;
  cursor: pointer;
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.01em;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--hi-vis);
  -webkit-text-stroke: 1px var(--ink);
  line-height: 1;
}
.faq-item[open] summary::after { content: "\00D7"; }
.faq-item summary:hover { background: var(--caution); }
.faq-item[open] summary { border-bottom: 2px solid var(--ink); background: var(--caution); }
.faq-body { padding: 24px; font-size: 16px; line-height: 1.6; }
.faq-body p + p { margin-top: 12px; }
.faq-body strong { background: var(--caution); padding: 0 4px; }
.faq-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--hi-vis);
  margin-right: 10px;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .faq-item summary { font-size: 19px; padding: 18px 50px 18px 18px; }
  .faq-item summary::after { right: 18px; font-size: 24px; }
  .faq-body { padding: 20px 18px; font-size: 15px; }
}

/* ============ REVIEWS ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 3px solid var(--ink);
}
@media (max-width: 700px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--paper);
  padding: 32px 28px 36px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  position: relative;
  transition: background 0.15s;
}
.review-card:nth-child(2n) { border-right: none; }
@media (max-width: 700px) { .review-card { border-right: none; } }
.review-card:hover { background: #fff; }
.review-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.review-stars span { color: var(--hi-vis); font-size: 20px; -webkit-text-stroke: 1px var(--ink); }
.review-text { font-size: 15px; line-height: 1.6; margin-bottom: 24px; font-style: italic; }
.review-text::before { content: "\201C"; }
.review-text::after { content: "\201D"; }
.review-author { border-top: 2px solid var(--ink); padding-top: 16px; display: flex; flex-direction: column; gap: 4px; }
.review-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; line-height: 1; }
.review-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; color: var(--hi-vis); font-weight: 700; }
.review-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--ink); color: var(--caution);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  padding: 3px 8px; letter-spacing: 0.05em;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative;
  border: 3px solid var(--ink);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--hi-vis); color: var(--ink);
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 8px;
}
.gallery-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(10,10,10,0.88));
  color: var(--paper); font-size: 13px; line-height: 1.35;
  padding: 30px 14px 12px; font-weight: 500;
}
.gallery-item::after {
  content: "⤢";
  position: absolute; top: 8px; right: 12px; z-index: 2;
  color: var(--paper); font-size: 18px; opacity: 0; transition: opacity 0.2s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.gallery-item:hover::after { opacity: 1; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(10,10,10,0.93);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 80vh; border: 3px solid var(--paper); object-fit: contain; }
.lightbox-cap {
  position: absolute; bottom: 22px; left: 0; right: 0; text-align: center;
  color: var(--paper); font-family: 'JetBrains Mono', monospace; font-size: 13px; padding: 0 16px;
}
.lb-btn {
  position: absolute; background: var(--hi-vis); color: var(--ink);
  border: 2px solid var(--paper); cursor: pointer; font-family: 'Bebas Neue', sans-serif;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.lb-close { top: 18px; right: 20px; width: 46px; height: 46px; font-size: 30px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 46px; height: 64px; font-size: 30px; }
.lb-prev { left: 14px; } .lb-next { right: 14px; }
.lb-btn:hover { background: var(--caution); }
@media (max-width: 560px) { .lb-prev, .lb-next { width: 40px; height: 52px; font-size: 24px; } }

/* ============ FORM (get a quote) ============ */
.form-card {
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  background: var(--paper);
  padding: 36px 32px;
}
@media (max-width: 600px) { .form-card { padding: 26px 20px; box-shadow: 6px 6px 0 var(--ink); } }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.field label .req { color: var(--hi-vis); }
.field .hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--steel);
  margin-top: 6px;
  text-transform: none;
  font-weight: 400;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  box-shadow: 4px 4px 0 var(--hi-vis);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

/* radio / choice pills */
.pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { position: relative; }
.pill input { position: absolute; opacity: 0; pointer-events: none; }
.pill label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
  margin: 0;
  transition: all 0.12s;
}
.pill input:checked + label { background: var(--hi-vis); box-shadow: 3px 3px 0 var(--ink); }
.pill input:focus-visible + label { box-shadow: 0 0 0 3px var(--caution); }

/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-submit { margin-top: 8px; }
.form-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--steel);
  margin-top: 16px;
  line-height: 1.5;
}

/* success state */
.form-success {
  display: none;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  background: var(--caution);
  padding: 40px 32px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success h2 { font-family: 'Bebas Neue', sans-serif; font-size: 48px; line-height: 0.9; margin-bottom: 12px; }
.form-success p { font-size: 17px; line-height: 1.5; max-width: 460px; margin: 0 auto 8px; }

/* toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(140%);
  background: var(--ink);
  color: var(--paper);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  padding: 14px 22px;
  border: 2px solid var(--hi-vis);
  z-index: 2000;
  transition: transform 0.3s;
  max-width: 90vw;
  text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============ CTA BAND ============ */
.cta {
  padding: 100px 32px;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(10,10,10,0.04) 60px, rgba(10,10,10,0.04) 61px),
    var(--hi-vis);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.85;
  margin-bottom: 20px;
  -webkit-text-stroke: 1px var(--ink);
}
.cta p { font-size: 18px; margin: 0 auto 36px; max-width: 560px; font-weight: 500; }
.cta .btn-primary { background: var(--ink); color: var(--hi-vis); font-size: 30px; padding: 24px 44px; }
.cta .btn-primary:hover { background: var(--paper); color: var(--ink); }

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 32px 32px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 36px; margin-bottom: 16px; }
.footer-tag { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #888; max-width: 260px; line-height: 1.6; }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; text-transform: uppercase;
  color: var(--hi-vis); margin-bottom: 16px; letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; font-size: 13px; }
.footer-col ul li { padding: 5px 0; color: #ccc; }
.footer-col a { color: #ccc; text-decoration: none; }
.footer-col a:hover { color: var(--hi-vis); }
.footer-bottom {
  max-width: 1400px; margin: 60px auto 0; padding-top: 24px;
  border-top: 1px solid #333; display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #666;
  flex-wrap: wrap; gap: 12px;
}

/* ============ HELPERS ============ */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.7s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }

/* ============ SMALL SCREENS ============ */
@media (max-width: 600px) {
  .wrap, .wrap-wide { padding: 0 20px; }
  .section { padding: 56px 0; }
  .page-hero { padding: 28px 0 40px; }
  .cta { padding: 72px 20px; }
  .section-title { font-size: clamp(36px, 11vw, 60px); }
}
