/* ============================================================
   NORTHPOINT DUMPSTER RENTALS — DESIGN SYSTEM
   Concept: the "spec plate" — the stenciled equipment ID plate
   riveted to real roll-off containers. Used throughout as the
   signature structural device for stats, sizes, pricing, FAQs.
   ============================================================ */

:root {
  /* Color tokens — aligned with sister brand NorthPoint Equipment Rentals
     (deep navy + vivid orange + coral-red CTA), with pine green kept as
     this brand's own secondary accent so the two sites read as family
     without being identical. */
  --charcoal: #14233B;      /* deep navy, matches sister-brand hero/header bg */
  --charcoal-2: #1E3350;    /* lifted navy panel */
  --orange: #34781E;        /* darkened brand green — safe default for text on light backgrounds (5.45:1 contrast) */
  --orange-bright: #6AFF3F; /* exact brand green, sampled directly from the real logo file — for dark-background contexts and large/decorative elements */
  --red: #0F5E99;           /* darkened brand blue, same hue as the exact logo blue (#79C1F6) with boosted saturation to avoid looking muddy/gray — 6.82:1 contrast with white */
  --pine: #2F4538;          /* NH forest green — this brand's own secondary accent */
  --granite: #6B7280;       /* mid gray, borders/decorative use only — too low-contrast for text, see granite-dark/granite-light */
  --granite-dark: #3F454B;
  --granite-light: #9CA3AF; /* for secondary text/labels on dark backgrounds — passes WCAG AA where plain granite (2.6:1) failed */
  --birch: #ECEAE5;         /* paper/birch-bark light bg */
  --birch-2: #DFDCD3;       /* slightly darker birch for section breaks */
  --ink: #1C1E20;           /* body text on light bg */
  --white: #FFFFFF;

  /* Type */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --radius: 2px; /* deliberately near-square — this is steel, not soft UI */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--birch);
  line-height: 1.6;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  line-height: 1.1;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; }
h3 { font-size: 1.3rem; font-weight: 500; }

p { margin: 0 0 1.1em; max-width: 68ch; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--orange); text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 48px 0; }
.section-tight { padding: 40px 0; }
.section-dark { background: var(--charcoal); color: var(--birch); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-pine { background: var(--pine); color: var(--birch); }
.section-pine h2 { color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  background: var(--charcoal);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 3px solid var(--orange-bright);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
}
.header-actions { display: flex; align-items: center; gap: 18px; order: 2; margin-left: 24px; padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.15); }
.nav-phone-cta {
  display: flex; align-items: center; gap: 7px;
  color: var(--white); font-family: var(--font-display); font-weight: 600;
  font-size: 0.95rem; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.02em;
}
.nav-phone-cta:hover { color: var(--orange); text-decoration: none; }
.nav-phone-cta svg { flex-shrink: 0; }
.nav-desktop-book { white-space: nowrap; }
.logo {
  display: flex; align-items: center;
}
.nav { display: flex; gap: 20px; align-items: center; }
.nav a { color: var(--birch); font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.02em; white-space: nowrap; }

/* ---------- Resources & Tools nav dropdown ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: none; border: none; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--birch); font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.02em; white-space: nowrap;
}
.nav-dropdown-trigger:hover { color: var(--orange-bright); }
.nav-caret { transition: transform 0.15s ease; flex-shrink: 0; }
.nav-dropdown-open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; margin-top: 14px;
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); min-width: 230px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 100;
}
.nav-dropdown-open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 10px 12px; border-radius: 6px;
  text-transform: none; letter-spacing: normal; font-size: 0.85rem;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.07); color: var(--orange-bright); }
.nav a:hover { color: var(--orange-bright); text-decoration: none; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.btn {
  display: inline-block; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600; border: 2px solid transparent;
  cursor: pointer;
}
.btn.nav-mobile-book { display: none; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #9E2118; text-decoration: none; color: var(--white); }
.btn-outline { background: transparent; border-color: var(--birch); color: var(--birch); }
.btn-outline:hover { border-color: var(--red); color: var(--red); text-decoration: none; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Hero (SVG spec-plate hero, no stock photography) ---------- */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px;
  align-items: center; padding: 56px 0 44px;
}
.hero-text-block { max-width: 700px; padding: 56px 0 0; }
.hero-graphic-full { margin: 32px 0 56px; max-width: none; }
.hero-graphic-full img, .hero-graphic-full svg { width: 100%; }
.hero-eyebrow {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange-bright); font-size: 0.82rem; margin-bottom: 14px; display: block;
}
.hero p.lead { color: var(--birch); font-size: 1.15rem; max-width: 46ch; }
.hero-svg { width: 100%; height: auto; display: block; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hero-simple-note {
  margin-top: 18px; font-size: 1.05rem; font-weight: 700; color: var(--charcoal);
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange-bright); padding: 12px 20px; border-radius: var(--radius);
}
.hero-simple-note::before { content: "✓"; color: var(--charcoal); font-weight: 900; font-size: 1.2rem; }

/* ---------- Hero stat row (family-owned / driveway protection / rental days) ---------- */
.hero-stat-row { display: flex; gap: 32px; margin-top: 24px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--orange-bright); }
.hero-stat-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--birch); opacity: 0.8; margin-top: 2px; }
.hero-story-link {
  display: inline-block; margin-top: 16px; font-size: 0.9rem;
  color: var(--orange-bright); font-weight: 600; text-decoration: none;
}
.hero-story-link:hover { text-decoration: underline; }
.badge-247 {
  display: inline-block; margin-left: 10px; padding: 3px 10px; border-radius: 20px;
  background: var(--orange); color: var(--white); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.03em; vertical-align: middle;
}

/* ---------- Scrolling ticker of project types ---------- */
.ticker-strip { background: var(--red); overflow: hidden; padding: 12px 0; }
.ticker-track { width: 100%; overflow: hidden; }
.ticker-content {
  display: inline-flex; align-items: center; gap: 14px; white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-content a { color: var(--white); font-family: var(--font-display); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.02em; }
.ticker-content a:hover { text-decoration: underline; }
.ticker-dot { color: var(--white); opacity: 0.6; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-content { animation: none; }
  .ticker-track { overflow-x: auto; }
}
@media (max-width: 860px) {
  .hero-stat-row { gap: 22px; }
  .hero-stat-num { font-size: 1.3rem; }
}

/* ---------- Same-day delivery sunburst badge (hero overlay) ---------- */
.hero-graphic-wrap { position: relative; }
.sunburst-badge {
  position: absolute; top: -24px; right: -16px; width: 180px; height: 180px;
  transform: rotate(-8deg); filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.25));
  transition: transform 0.2s ease; z-index: 5;
}
.sunburst-badge:hover { transform: rotate(-8deg) scale(1.05); }
@media (max-width: 860px) {
  .sunburst-badge { width: 130px; height: 130px; top: -14px; right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sunburst-badge { transition: none; }
}
.mascot-corner-badge {
  position: absolute; bottom: 30px; left: -16px; width: 130px; height: 130px;
  filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.25));
  transition: transform 0.2s ease; z-index: 5;
}
.mascot-corner-badge:hover { transform: scale(1.05); }
@media (max-width: 860px) {
  .mascot-corner-badge { width: 90px; height: 90px; bottom: 20px; left: 0; }
}
.sunburst-badge-sm {
  position: absolute; top: -18px; right: -18px; width: 100px; height: 100px;
  transform: rotate(-8deg); filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.25));
  transition: transform 0.2s ease; z-index: 5;
}
.sunburst-badge-sm:hover { transform: rotate(-8deg) scale(1.05); }
@media (max-width: 860px) {
  .sunburst-badge-sm { width: 90px; height: 90px; top: -8px; right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sunburst-badge-sm { transition: none; }
}

/* ---------- Spec Plate: the signature component ---------- */
.plate {
  border: 2px solid var(--granite);
  background: var(--charcoal-2);
  color: var(--birch);
  padding: 22px 24px;
  position: relative;
  border-radius: var(--radius);
}
.plate-branded { border-color: var(--orange-bright); border-top-width: 4px; }
.plate-branded .plate-label { color: var(--orange-bright); }
.plate::before, .plate::after,
.plate .rivet-tl, .plate .rivet-tr, .plate .rivet-bl, .plate .rivet-br {
  content: ''; position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: var(--granite); box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
}
.plate::before { top: 8px; left: 8px; }
.plate::after { top: 8px; right: 8px; }
.plate .rivet-bl { bottom: 8px; left: 8px; }
.plate .rivet-br { bottom: 8px; right: 8px; }
.plate-label {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.72rem; color: var(--granite-light); display: block; margin-bottom: 4px;
}
.plate-value {
  font-family: var(--font-mono); font-size: 1.6rem; color: var(--white); font-weight: 600;
}
.plate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plate-light { background: var(--white); border-color: var(--granite); color: var(--ink); }
.plate-light .plate-label { color: var(--granite-dark); }
.plate-light .plate-value { color: var(--charcoal); }

/* ---------- Booking widget panel ---------- */
.booking-panel {
  background: var(--white); border: 2px solid var(--charcoal);
  padding: 28px; border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--red);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.booking-panel.panel-highlight {
  border-color: var(--orange);
  box-shadow: 8px 8px 0 var(--orange), 0 0 0 4px rgba(242, 128, 30, 0.25);
}
.booking-panel h3 { margin-bottom: 18px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: var(--font-mono); text-transform: uppercase;
  font-size: 0.72rem; letter-spacing: 0.08em; color: var(--granite-dark); margin-bottom: 6px;
}
.field select, .field input {
  width: 100%; padding: 12px 14px; border: 2px solid var(--birch-2);
  background: var(--birch); font-family: var(--font-body); font-size: 1rem;
  border-radius: var(--radius);
}
.field select:focus, .field input:focus { border-color: var(--orange); outline: none; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.card {
  background: var(--white); border: 1px solid var(--birch-2); padding: 26px;
  border-radius: var(--radius); border-top: 4px solid var(--orange);
}
.card h3 { margin-bottom: 10px; color: var(--ink); }
.card.card-pine { border-top-color: var(--pine); }
.card.card-branded { border-top-color: var(--orange-bright); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-family: var(--font-mono); font-size: 0.82rem; color: var(--granite-dark);
  padding: 18px 0; text-transform: uppercase; letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--granite-dark); }
.breadcrumb span { margin: 0 6px; }

/* ---------- Town/hub list chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-mono); font-size: 0.85rem; text-transform: uppercase;
  border: 1.5px solid var(--charcoal); padding: 8px 14px; border-radius: var(--radius);
  color: var(--charcoal); background: var(--white);
}
.chip:hover { background: var(--charcoal); color: var(--white); text-decoration: none; }

/* ---------- FAQ ---------- */
details.faq-item {
  border-bottom: 1px solid var(--birch-2); padding: 18px 0;
}
details.faq-item summary {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em;
  font-size: 1.05rem; cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--orange); }
details.faq-item[open] summary::after { content: '\2212'; }
details.faq-item .faq-a { padding-top: 12px; color: var(--granite-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--birch); padding: 44px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 28px; }
.footer-grid-wide {
  grid-template-columns: 1.3fr 1fr 1.1fr;
  grid-template-rows: auto auto;
  row-gap: 24px;
}
.footer-col-locations { grid-column: 1; grid-row: 1 / 3; }
.footer-col-company { grid-column: 2; grid-row: 1; }
.footer-col-resources { grid-column: 3; grid-row: 1; }
.footer-col-rewards { grid-column: 2 / 4; grid-row: 2; align-self: start; }
.footer-grid .footer-h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; font-weight: 600; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--granite-light); }
.footer-grid a:hover { color: var(--orange); }
.footer-location { margin-bottom: 16px; }
.footer-location-name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 0.95rem; }
.footer-location-name a { color: var(--white); }
.footer-location-name a:hover { color: var(--orange); }
.footer-tag { color: var(--orange-bright); font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col-rewards.card { border-top-width: 3px; }
.footer-col-rewards .footer-h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 0.95rem; margin-bottom: 8px; font-weight: 600; }
.footer-trust {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 16px 0; border-top: 1px solid var(--granite-dark);
}
.footer-social { display: flex; gap: 18px; align-items: center; }
.footer-social a { color: var(--granite-light); font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; }
.footer-social a svg { color: var(--granite-light); }
.footer-social a:hover, .footer-social a:hover svg { color: var(--orange); }
.footer-serving { padding: 14px 0; border-top: 1px solid var(--granite-dark); line-height: 1.9; }
.footer-serving a { color: var(--granite-light); }
.footer-serving a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--granite-dark); padding-top: 22px;
  font-size: 0.85rem; color: var(--granite-light); display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--granite-light); }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Town list & step icons ---------- */
.town-list-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 16px;
  max-height: 420px; overflow-y: auto; padding-right: 8px;
}
.town-list-grid a { font-size: 0.92rem; color: var(--birch); padding: 3px 0; }
.town-list-grid a:hover { color: var(--orange); }
.step-icon { display: flex; justify-content: center; margin-bottom: 14px; }

/* ---------- 4-step booking process strip (prominent, high on homepage) ---------- */
.steps-strip { background: var(--charcoal); }
.steps-strip-header { max-width: 640px; }
.steps-strip-header h2 { color: var(--white); }
.steps-strip-header p { margin-top: 10px; color: var(--birch); opacity: 0.85; }
.steps-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
  border: 1.5px solid var(--orange); border-radius: 20px; color: var(--orange);
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 14px;
}
.steps-flow {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center; gap: 8px; margin-top: 28px;
}
.step-arrow { color: var(--orange); opacity: 0.6; }
.step-card {
  background: var(--charcoal-2); border: 2px solid var(--orange-bright); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; position: relative; height: 100%;
}
.step-icon-wrap {
  display: flex; justify-content: center; margin-bottom: 14px;
}
.step-icon-wrap .price-icon { width: 34px; height: 34px; color: var(--orange-bright); }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  margin-bottom: 12px;
  box-shadow: 0 0 0 6px rgba(242, 128, 30, 0.18);
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--white); }
.step-card p { color: var(--birch); opacity: 0.85; }
@media (max-width: 860px) {
  .steps-flow { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
}
.booking-step-label {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  font-family: var(--font-display); text-transform: uppercase; font-size: 0.85rem;
  letter-spacing: 0.03em; color: var(--charcoal);
}
.step-number-sm {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange); color: var(--white); font-size: 0.8rem; font-weight: 700;
}

/* ---------- Size Finder tool ---------- */
.finder-widget { margin-top: 24px; max-width: 720px; }
.finder-question { font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; margin-bottom: 14px; color: var(--charcoal); }
.finder-options { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.finder-option { cursor: pointer; background: var(--white); }
.finder-option.selected { background: var(--charcoal); color: var(--white); border-color: var(--orange-bright); }
.finder-option.selected:hover { color: var(--white); }

/* ---------- Pricing cards ---------- */
.pricing-disclaimer {
  border: 2px dashed var(--orange-bright); background: var(--charcoal-2); color: var(--birch);
  padding: 14px 20px; font-family: var(--font-mono); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 28px;
}
.size-card { background: var(--charcoal); border: 1px solid var(--granite-dark); overflow: hidden; }
.size-card-illustration { background: #14233B; line-height: 0; }
.size-card-body { padding: 26px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; }
.size-card-body h3, .size-card-body .card-label { color: var(--white); font-size: 1.4rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; }
.size-card-body p { color: var(--granite-light); font-size: 0.92rem; }
.price-box { border: 1.5px solid var(--orange-bright); padding: 16px 18px; }
.price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.88rem; color: var(--birch); }
.price-row:last-child { margin-bottom: 0; }
.price-row .price-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--orange-bright); }
.price-row .price-highlight { color: var(--orange-bright); font-weight: 700; font-size: 1rem; }
.size-card-cta { padding: 0 26px 26px; }

/* ---------- Quick Quote widget (low-commitment secondary conversion path) ---------- */
.quote-widget {
  background: var(--white); border: 2px solid var(--charcoal); padding: 26px;
  border-radius: var(--radius); max-width: 460px;
}
.quote-widget h3 { margin-bottom: 6px; }

/* ---------- Context banner (cross-page pre-fill continuity) ---------- */
.context-banner {
  background: var(--birch-2); border-left: 4px solid var(--orange);
  padding: 12px 16px; font-size: 0.92rem; color: var(--charcoal);
}

/* ---------- Accessibility: skip-to-content link ---------- */
.skip-link {
  position: absolute; top: -100px; left: 0; z-index: 200;
  background: var(--red); color: var(--white); padding: 14px 20px;
  font-family: var(--font-display); text-transform: uppercase; font-size: 0.9rem;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; color: var(--white); text-decoration: none; }

/* ---------- Utility ---------- */
.glossary-term { padding: 16px 0; border-bottom: 1px solid var(--birch-2); }
.glossary-term h3 { margin-bottom: 6px; }
.mascot-badge-block { text-align: center; padding: 28px 0 4px; }
.mascot-badge-block img { width: 170px; height: auto; }
.mascot-badge-block.mascot-badge-large img { width: 340px; }
@media (max-width: 860px) {
  .mascot-badge-block img { width: 130px; }
  .mascot-badge-block.mascot-badge-large img { width: 220px; }
}
.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;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 0.9rem; color: var(--granite-dark); }
.eyebrow-dark {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.8rem; color: var(--orange); display: block; margin-bottom: 10px;
}

@media (max-width: 860px) {
  .hero-inner, .grid-3, .grid-4, .grid-2, .footer-grid, .footer-grid-wide, .plate-grid, .size-card-body {
    grid-template-columns: 1fr;
  }
  .footer-col-locations, .footer-col-company, .footer-col-resources, .footer-col-rewards {
    grid-column: 1; grid-row: auto;
  }

  /* --- Navigation: real hamburger menu, not a vanished one --- */
  .site-header .container { height: 78px; }
  .logo img { height: 54px !important; }
  .nav-toggle { display: flex; }
  .nav-desktop-book { display: none; }
  .nav {
    display: none;
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--charcoal); flex-direction: column; align-items: stretch;
    gap: 0; padding: 8px 20px 20px; border-bottom: 3px solid var(--orange-bright);
    max-height: calc(100vh - 78px); overflow-y: auto;
  }
  .nav.nav-open { display: flex; }
  .nav a {
    padding: 15px 4px; border-bottom: 1px solid var(--granite-dark);
    font-size: 1rem; white-space: normal;
  }
  .btn.nav-mobile-book { display: block; text-align: center; margin-top: 14px; border-bottom: none; }
  body.nav-locked { overflow: hidden; }

  /* --- Resources & Tools dropdown becomes an inline accordion on mobile,
         not a floating flyout, since it's stacked vertically here --- */
  .nav-dropdown-trigger {
    width: 100%; justify-content: space-between;
    padding: 15px 4px; border-bottom: 1px solid var(--granite-dark);
    font-size: 1rem;
  }
  .nav-dropdown-menu {
    position: static; margin-top: 0; opacity: 1; visibility: visible;
    transform: none; background: var(--charcoal-2); border: none;
    border-radius: 0; padding: 0; max-height: 0; overflow: hidden;
    transition: max-height 0.2s ease;
  }
  .nav-dropdown-open .nav-dropdown-menu { max-height: 600px; overflow-y: auto; }
  .nav-dropdown-menu a { padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }


  /* --- Typography: tighter scale and rhythm for small screens --- */
  body { font-size: 16px; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  h3 { font-size: 1.15rem; }
  .hero p.lead { font-size: 1.02rem; max-width: none; }
  .plate-value { font-size: 1.35rem; }

  /* --- Spacing: less vertical padding, tighter containers --- */
  .container { padding: 0 18px; }
  .section { padding: 40px 0; }
  .section-tight { padding: 26px 0; }
  .hero-inner { padding: 36px 0 32px; gap: 28px; }
  .footer-grid { gap: 28px; }

  /* --- Layout fixes for components not covered by the generic grid collapse --- */
  .town-list-grid { grid-template-columns: repeat(2, 1fr); max-height: 320px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .footer-trust { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* --- Touch targets: bigger tap areas on chips, socials, footer links --- */
  .chip { padding: 11px 16px; font-size: 0.82rem; }
  .footer-social a { padding: 6px; }
  .card { padding: 20px; }
  .step-card { padding: 20px 16px; }
  .plate { padding: 18px 20px; }
  .quote-widget { padding: 20px; max-width: none; }

  /* --- Safety net: prevent long words/links from overflowing narrow screens --- */
  p, li, .small, .footer-serving { overflow-wrap: break-word; word-break: break-word; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }
  .btn { padding: 13px 20px; font-size: 0.88rem; }
  .plate-grid, .grid-4 { gap: 12px; }
  .size-card-body, .plate { padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
