/* =========================================================================
   IF YOU CALL WE WILL HAUL — SITE STYLES
   -------------------------------------------------------------------------
   HOW TO EDIT COLORS: change the values in the ":root" block below.
   Every color on the site is pulled from these variables, so changing
   one line here updates it everywhere.
   HOW TO EDIT FONTS: change the two font stacks in ":root" as well.
   ========================================================================= */

:root {
  /* ---- BRAND COLORS -------------------------------------------------- */
  --haul-yellow: #FFC72C;      /* primary brand color — matches the truck */
  --haul-yellow-dark: #E8AE00; /* used for hover states / shadows */
  --ink: #17181C;              /* near-black — headlines, nav, footer */
  --charcoal: #2B2C31;         /* dark surface panels */
  --paper: #FFFFFF;            /* page background */
  --paper-alt: #F4F4F2;        /* alternate section background (light grey) */
  --line: #E4E3DE;             /* hairline borders/dividers */
  --text: #1F2023;             /* body copy */
  --text-muted: #5B5C63;       /* secondary/supporting copy */
  --safety-red: #D2402C;       /* warnings, "what we don't take" */
  --safety-green: #2E7D4F;     /* accepted / can-take confirmations */

  /* ---- TYPE ------------------------------------------------------------ */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;   /* big bold headlines */
  --font-body: 'Inter', -apple-system, Segoe UI, sans-serif; /* paragraphs, nav, buttons */
  --font-mono: 'Space Mono', 'Courier New', monospace;   /* tags, labels, ticket numbers */

  /* ---- LAYOUT ----------------------------------------------------------- */
  --max-width: 1180px;
  --radius: 4px;
  --shadow: 0 10px 30px rgba(23,24,28,0.10);
}

/* =========================================================================
   RESET / BASE
   ========================================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--ink);
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }
@media (max-width: 720px) {
  section { padding: 56px 0; }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================================
   EYEBROW / TAG LABELS (mono utility style)
   ========================================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--haul-yellow);
  padding: 6px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.eyebrow.on-dark { background: transparent; color: var(--haul-yellow); border: 1px solid rgba(255,199,44,0.4); }

/* =========================================================================
   HAZARD STRIPE DIVIDER — signature element
   A repeating diagonal yellow/black stripe, echoing the hi-vis markings
   and dump-bed styling on the company truck. Used to separate major
   sections instead of a plain line.
   ========================================================================= */
.hazard-stripe {
  height: 14px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink),
    var(--ink) 22px,
    var(--haul-yellow) 22px,
    var(--haul-yellow) 44px
  );
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--haul-yellow);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--haul-yellow-dark); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #000; }
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline.on-dark {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline.on-dark:hover { border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.top-bar {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.03em;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a:hover { color: var(--haul-yellow); }
.top-bar-license { color: rgba(255,255,255,0.65); }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 58px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-name span { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; margin-top: 3px; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { border-color: var(--haul-yellow); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.header-phone small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: var(--ink);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: '';
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--haul-yellow);
}
.nav-toggle::before { top: 14px; }
.nav-toggle span { top: 21px; }
.nav-toggle::after { top: 28px; }

@media (max-width: 940px) {
  .header-phone { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 20px; }
  .main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .site-header .container { flex-wrap: wrap; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  min-height: 620px;
}
.hero-copy {
  padding: 90px 48px 90px 24px;
  max-width: 620px;
  margin: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy h1 {
  color: #fff;
  font-size: clamp(40px, 5.2vw, 68px);
  margin-bottom: 18px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--haul-yellow);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-media {
  position: relative;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,24,28,0.05), rgba(23,24,28,0.35));
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 56px 24px 40px; max-width: 100%; }
  .hero-media { clip-path: none; height: 320px; }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.hero-badge {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 12px;
  border-radius: 3px;
}

/* =========================================================================
   TRUST / STAT STRIP
   ========================================================================= */
.trust-strip {
  background: var(--paper-alt);
  border-bottom: 1px solid var(--line);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.trust-item { text-align: left; }
.trust-item .num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ink);
  display: block;
}
.trust-item .label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 800px) {
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================================
   SECTION HEADS
   ========================================================================= */
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { color: var(--text-muted); font-size: 17px; }

/* =========================================================================
   SERVICES GRID (cards styled like manifest tags)
   ========================================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--paper);
  padding: 30px 24px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.15s ease;
}
.service-card:hover { background: var(--paper-alt); }
.service-card .tag-no {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.service-card h3 {
  font-size: 19px;
  margin: 14px 0 8px;
}
.service-card p { font-size: 14.5px; color: var(--text-muted); margin: 0; }
@media (max-width: 940px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* Compact service list used on inner pages */
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-list-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
}
.service-list-item h3 { font-size: 18px; margin-bottom: 8px; }
.service-list-item p { color: var(--text-muted); font-size: 14.5px; margin: 0; }
@media (max-width: 900px) { .service-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-list-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   HAUL TICKET — signature card component
   Styled like a dispatch / weight ticket: perforated top edge, mono
   type, stub divider. Reused for process steps, stats, testimonials.
   ========================================================================= */
.ticket {
  background: var(--paper);
  border: 1.5px dashed var(--ink);
  border-radius: 6px;
  padding: 28px 26px;
  position: relative;
}
.ticket::before {
  content: '';
  position: absolute;
  top: -9px; left: 24px;
  width: 18px; height: 18px;
  background: var(--paper-alt);
  border: 1.5px dashed var(--ink);
  border-radius: 50%;
}
.ticket-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.ticket h3 { font-size: 20px; margin-bottom: 8px; }
.ticket p { color: var(--text-muted); font-size: 14.5px; margin: 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) { .steps-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   DARK / COMMUNITY BAND
   ========================================================================= */
.band-dark {
  background: var(--ink);
  color: #fff;
}
.band-dark .section-head p { color: rgba(255,255,255,0.7); }
.band-dark h2 { color: #fff; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.check-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 15.5px;
}
.check-list li:last-child { border-bottom: none; }
.check-list .mark {
  color: var(--haul-yellow);
  font-family: var(--font-mono);
  font-weight: 700;
}
.light .check-list li { border-bottom-color: var(--line); }

/* =========================================================================
   TAKE / DON'T TAKE PANELS
   ========================================================================= */
.accept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) { .accept-grid { grid-template-columns: 1fr; } }
.accept-panel {
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--line);
}
.accept-panel.yes { border-top: 5px solid var(--safety-green); }
.accept-panel.no { border-top: 5px solid var(--safety-red); }
.accept-panel h3 { font-size: 19px; display: flex; align-items: center; gap: 10px; }
.accept-panel ul li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.accept-panel ul li:last-child { border-bottom: none; }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band {
  background: var(--haul-yellow);
  text-align: center;
}
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); }
.cta-band p { color: rgba(23,24,28,0.75); font-size: 17px; max-width: 560px; margin: 0 auto 30px; }
.cta-band .btn-row { justify-content: center; }

/* =========================================================================
   PAGE HERO (for inner pages)
   ========================================================================= */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 70px 0 56px;
}
.page-hero .eyebrow { background: var(--haul-yellow); color: var(--ink); }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 54px); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 640px; margin: 0; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--haul-yellow); }

/* =========================================================================
   PHOTO + TEXT BLOCK
   ========================================================================= */
.photo-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .photo-text { grid-template-columns: 1fr; gap: 30px; } }
.photo-text img { border-radius: 6px; box-shadow: var(--shadow); }
.photo-text.reverse .photo { order: 2; }

/* =========================================================================
   CONTACT PAGE
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
}
.contact-card h3 { font-size: 18px; }
.contact-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 90px;
}
.contact-row .v { font-weight: 600; font-size: 15px; }
.contact-row .v a:hover { color: var(--haul-yellow-dark); text-decoration: underline; }

.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  transition: background 0.15s ease;
}
.social-btn:hover { background: var(--haul-yellow-dark); }

form.quote-form {
  display: grid;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.quote-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: #fff;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.quote-form textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: -4px; }

.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 32px;
}
.map-wrap iframe { display: block; width: 100%; height: 320px; border: 0; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 50px; }
.footer-brand-name { font-family: var(--font-display); color: #fff; font-size: 17px; text-transform: uppercase; }
.footer-tagline { font-family: var(--font-mono); font-size: 12px; color: var(--haul-yellow); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul li { padding: 6px 0; font-size: 14.5px; }
.footer-col ul li a:hover { color: var(--haul-yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* =========================================================================
   STICKY MOBILE CALL BAR
   ========================================================================= */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--haul-yellow);
  z-index: 60;
  padding: 12px 20px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--ink);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
}
@media (max-width: 720px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 54px; }
}
