@import url('colors_and_type.css');
@import url('source-design-system.css');

/* ============================================================
   TOKEN OVERRIDES / EXTENSIONS
   ============================================================ */
:root {
  /* Accessible green â€” passes 4.8:1 on --color-white for small text (WCAG AA) */
  --color-accent-strong: #4a642d;
  --color-grey-50: #f8f5ed;
  --color-grey-200: #d5cdbc;

  /* Border tint on dark surfaces â€” derived from --color-wood-tan (#8a7658) */
  --border-on-dark: rgba(138, 118, 88, 0.25);
  --border-on-dark-soft: rgba(138, 118, 88, 0.15);
  --border-on-dark-strong: rgba(138, 118, 88, 0.35);
  --texture-on-dark: rgba(138, 118, 88, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--color-grey-500); background: var(--color-white); -webkit-font-smoothing: antialiased; font-kerning: normal; font-optical-sizing: auto; }
img { display: block; max-width: 100%; }
button { font: inherit; }

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 16px; }

/* ============================================================
   GLOBAL FOCUS VISIBLE
   ============================================================ */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 3px;
}
/* Override outline on form inputs â€” border-color change is the visible indicator */
.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(74, 100, 45, 0.2);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--space-container-max); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--cream { background: var(--color-cream); }
.section--white { background: var(--color-white); }

/* ============================================================
   TOP ACCENT BAR
   ============================================================ */
.accent-bar { position: fixed; top: 0; left: 0; right: 0; height: 4px; background: var(--color-accent); z-index: 100; }

/* ============================================================
   HEADER
   ============================================================ */
/* Uses design-system tokens â€” no hardcoded warm-brown */
.header {
  background: linear-gradient(135deg, var(--color-wood-dark) 0%, var(--color-charcoal) 50%, var(--color-wood-mid) 100%);
  position: sticky;
  top: 4px;
  z-index: 50;
  border-bottom: 1px solid var(--border-on-dark-soft);
}
.header__inner {
  max-width: var(--space-container-max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { font-family: var(--font-heading); font-size: 28px; color: var(--color-white); letter-spacing: 3px; text-decoration: none; line-height: 1; cursor: default; }
.logo__accent { color: var(--color-accent-display); }

/* Logo image (newlogo.png) */
.header__logo-link { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.header__logo-img  { height: 65px; width: auto; display: block; }
.footer__logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.footer__logo-img  { height: 65px; width: auto; display: block; }

/* Desktop nav */
.nav--desktop { display: flex; gap: 24px; align-items: center; }
.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-grey-300);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast);
}
.nav-link:hover { color: var(--color-white); }
/* Active section indicator â€” set by IntersectionObserver */
.nav-link--active {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
}

/* Phone link in header */
.header-phone {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-grey-300);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding-left: 16px;
  border-left: 1px solid var(--border-on-dark-soft);
  margin-left: 4px;
  transition: color var(--transition-fast);
}
.header-phone:hover { color: var(--color-white); }

/* Mobile hamburger â€” hidden on desktop */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--color-grey-300);
  cursor: pointer;
  padding: 11px;               /* 22px icon + 11px pad = 44px touch target */
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
}
.nav-hamburger:hover { color: var(--color-white); }

/* Mobile nav drawer */
.nav-drawer {
  background:
    linear-gradient(135deg, rgba(23, 17, 8, 0.98) 0%, rgba(27, 27, 24, 0.98) 55%, rgba(42, 33, 19, 0.98) 100%);
  border-top: 1px solid var(--border-on-dark-strong);
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}
.nav-drawer__link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-grey-300);
  background: rgba(255, 255, 255, 0.035);
  border: none;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px transparent;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  padding: 12px 14px;
  transition: color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-drawer__link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px var(--border-on-dark-soft);
}
/* Active page indicator in mobile drawer */
.nav-drawer__link--active {
  color: var(--color-white);
  background: rgba(95, 127, 58, 0.13);
  box-shadow: inset 0 0 0 1px rgba(95, 127, 58, 0.32);
}
.nav-drawer__actions {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border-on-dark-soft);
}
.nav-drawer__button,
.nav-drawer__call {
  width: 100%;
  justify-content: center;
}
.nav-drawer__call {
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--color-accent);
  color: var(--color-white);
  background: rgba(95, 127, 58, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.nav-drawer__call:hover {
  background: rgba(95, 127, 58, 0.22);
  border-color: var(--color-accent-display);
}
.nav-drawer__call svg {
  color: var(--color-accent-display);
}
.nav-drawer__call-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.7px;
  color: var(--color-wood-pale);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { max-width: 720px; margin-bottom: 56px; }
.section-header--center { text-align: center; margin-left: auto; margin-right: auto; }

/* Section label â€” accessible green on light, pale on dark */
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-strong);   /* #4a642d — passes 4.8:1 on white */
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}
.section-label--light { color: var(--color-wood-pale); }

.section-title { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 56px); color: var(--color-charcoal); letter-spacing: 0.04em; line-height: 1.18; margin: 0 0 24px; text-wrap: balance; }
.section-title--light { color: var(--color-white); }
.section-desc { font-family: var(--font-body); font-size: 17px; color: var(--color-grey-500); line-height: 1.7; max-width: 640px; margin: 0; text-wrap: pretty; }
/* Dark surface compensation: DM Sans reads thinner on dark — bump weight + open tracking slightly */
.section-desc--light { color: var(--color-grey-300); font-weight: 500; letter-spacing: 0.01em; }
.text-accent { color: var(--color-accent-display); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { font-family: var(--font-body); font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 8px; cursor: pointer; transition: all var(--transition-base); letter-spacing: 0.3px; border: none; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; min-height: 44px; }
.btn--primary { background: var(--color-accent); color: var(--color-white); }
.btn--primary:hover { background: var(--color-accent-hover); }
.btn--secondary { background: transparent; color: var(--color-white); border: 1.5px solid var(--color-grey-300); }
.btn--secondary:hover { background: rgba(255,255,255,0.15); }
.btn--dark { background: var(--color-charcoal); color: var(--color-white); }
.btn--dark:hover { background: var(--color-slate); }
.btn--sm { padding: 10px 20px; font-size: 13px; min-height: 38px; }

/* ============================================================
   DARK SECTIONS â€” token-based, no hardcoded warm-brown
   ============================================================ */
.section-dark {
  background: linear-gradient(135deg, var(--color-wood-dark) 0%, var(--color-charcoal) 50%, var(--color-wood-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.section-dark--alt { background: linear-gradient(135deg, var(--color-wood-dark) 0%, var(--color-charcoal) 100%); }

/* Texture overlays â€” wood-tan based, not warm-tan */
.section-dark__texture {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    var(--texture-on-dark) 2px,
    var(--texture-on-dark) 4px
  );
  pointer-events: none;
}
.section-dark__texture--vertical {
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(138, 118, 88, 0.06) 60px,
    rgba(138, 118, 88, 0.06) 61px
  );
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0 0;
  background:
    linear-gradient(135deg,
      rgba(23, 17, 8, 0.90) 0%,
      rgba(27, 27, 24, 0.90) 50%,
      rgba(42, 33, 19, 0.90) 100%
    ),
    url('assets/herobackground.png') center / cover no-repeat;
}
.hero__inner { display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px; align-items: center; }
.hero__title { font-family: var(--font-heading); font-size: clamp(48px, 6.5vw, 82px); color: var(--color-white); letter-spacing: 0.03em; line-height: 1.18; margin: 16px 0 36px; text-wrap: balance; }
/* Dark surface: weight + letter-spacing compensate for perceived thinning on dark brown */
.hero__desc { font-family: var(--font-body); font-size: 17px; font-weight: 500; color: var(--color-grey-300); line-height: 1.75; letter-spacing: 0.01em; max-width: 520px; margin: 0 0 36px; text-wrap: pretty; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero panel */
.hero__panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-on-dark);
  border-radius: 12px;
  padding: 28px;
}
.hero__panel-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.hero__panel-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-wood-pale);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
.hero__panel-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-grey-300);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.hero__panel-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5a9e6f;
  box-shadow: 0 0 0 3px rgba(90, 158, 111, 0.12);
  flex-shrink: 0;
}
.hero__panel-row { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--border-on-dark-soft); }
.hero__panel-row:last-child { border: none; }
.hero__panel-row-label { font-family: var(--font-mono); font-size: 11px; color: var(--color-wood-pale); letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; }
.hero__panel-row-value { font-family: var(--font-body); font-size: 14px; color: var(--color-white); font-weight: 600; white-space: nowrap; margin-left: 16px; }
/* Stock status variants - scannable at a glance */
.hero__panel-row-value--stock { color: var(--color-white); }
.hero__panel-row-value::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 8px;
  transform: translateY(-1px);
}
.hero__panel-row-value--stock::before {
  background: #5a9e6f;
}
.hero__panel-row-value--lead { color: var(--color-wood-pale); }
.hero__panel-row-value--lead::before {
  width: 7px;
  height: 7px;
  background: transparent;
  border: 1.5px solid var(--color-wood-pale);
}
.hero__coverage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-grey-500);
  letter-spacing: 0.8px;
}
.hero__coverage-group {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hero__coverage-sep {
  color: var(--color-wood-tan);
  padding: 0 14px;
}

/* Manifest strip â€” replaces symmetric 4-block stats bar */
.hero-manifest {
  border-top: 1px solid var(--border-on-dark-soft);
  margin-top: 72px;
  padding: 28px 0 48px;
}
.hero-manifest__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-wood-pale);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
}
.hero-manifest__line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
}
.hero-manifest__datum {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-grey-300);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.hero-manifest__val {
  color: var(--color-accent-strong);
  font-weight: 600;
}
.hero-manifest__label {
  font-weight: 400;
}
.hero-manifest__sep {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-wood-tan);
  padding: 0 20px;
}

/* ============================================================
   PRODUCTS â€” 3-TIER LAYOUT
   ============================================================ */

/* Tier 1: Featured â€” 3-col full detail */
.products-featured { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 16px; }

/* Tier 2: Compact â€” 2-col horizontal layout */
.products-compact { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }

/* Card base */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: 12px;
  padding: 28px;
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  cursor: default;
  text-align: left;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: var(--color-accent); box-shadow: var(--shadow-card-hover); }

.card__icon { width: 44px; height: 44px; border-radius: 8px; background: var(--color-accent-muted); color: var(--color-accent-display); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; flex-shrink: 0; }
.card__icon--sm { width: 36px; height: 36px; margin-bottom: 0; flex-shrink: 0; }
.card__subtitle { font-family: var(--font-mono); font-size: var(--text-label); color: var(--color-accent-strong); letter-spacing: var(--tracking-label); text-transform: uppercase; display: block; margin-bottom: 4px; font-weight: 500; }
.card__title { font-family: var(--font-heading); font-size: 24px; color: var(--color-charcoal); letter-spacing: 0.04em; line-height: 1.18; margin: 0 0 10px; text-wrap: balance; }
.card__title--sm { font-size: 20px; margin-bottom: 6px; }
.card__body { font-family: var(--font-body); font-size: 15px; line-height: 1.68; color: var(--color-grey-500); margin: 0; flex: 1; text-wrap: pretty; }
.card__specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.card__cta { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--color-accent-strong); margin-top: 16px; padding: 8px 0; display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.3px; text-decoration: none; transition: color var(--transition-fast); }
.card__cta:hover { color: var(--color-accent); }
.inline-quote-cta {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--color-grey-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.inline-quote-cta__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent-strong);
  margin-bottom: 8px;
}
.inline-quote-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--color-charcoal);
  margin: 0 0 8px;
}
.inline-quote-cta__body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-grey-500);
  max-width: 620px;
  margin: 0;
}
.inline-quote-cta__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Card image — product photo at top of card */
.card__img {
  margin: -28px -28px 20px;
  height: 180px;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Inline card — left-side thumbnail */
.card__img--inline {
  margin: -20px 0 -20px -24px;
  width: 140px;
  height: auto;
  align-self: stretch;
  flex-shrink: 0;
}
.card__img--inline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Compact/inline card */
.card--inline {
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
}
.card--inline .card__icon { margin-bottom: 0; }
.card__inline-body { display: flex; flex-direction: column; min-width: 0; }

/* Tags */
.tag { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--color-grey-700); background: var(--color-cream); padding: 4px 12px; border-radius: var(--radius-pill); display: inline-block; white-space: nowrap; }

/* Services strip â€” dark charcoal, visually distinct from product cards */
.services-strip {
  background: var(--color-charcoal);
  border-radius: 12px;
  padding: 36px;
}
.services-strip__header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-on-dark-soft);
}
.services-strip__sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-grey-300);
  margin: 6px 0 0;
  line-height: 1.6;
}
.services-strip__items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-item { }
.service-item__icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(95, 127, 58, 0.15); color: var(--color-accent-display); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-item__title { font-family: var(--font-heading); font-size: 20px; color: var(--color-white); letter-spacing: var(--tracking-heading); margin: 0 0 8px; text-wrap: balance; }
.service-item__body { font-family: var(--font-body); font-size: 15px; color: var(--color-grey-300); line-height: 1.65; margin: 0; }
/* CTA link inside services strip */
.service-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  margin-top: 16px;
  transition: opacity var(--transition-fast);
}
.service-item__cta:hover { opacity: 0.75; }

/* Service item image — photo at top of service card */
.service-item__img {
  width: 100%;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.service-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   WHY SWITCH
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: flex-start; }
.why-props { display: flex; flex-direction: column; gap: 0; }
.why-prop { padding: 24px 0; border-bottom: 1px solid var(--color-grey-100); display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start; }
.why-prop:first-child { padding-top: 0; }
.why-prop:last-child { border: none; }
/* Why-prop: warm charcoal box â€” distinct from the green-muted used in product cards */
.why-prop__icon { width: 44px; height: 44px; border-radius: 8px; background: var(--color-charcoal); border: 1px solid var(--color-grey-100); color: var(--color-accent-display); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-prop__title { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--color-charcoal); margin: 0 0 4px; }
.why-prop__body { font-family: var(--font-body); font-size: 15px; color: var(--color-grey-500); line-height: 1.6; margin: 0; }

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.calc-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-on-dark);
  border-radius: 12px;
  padding: 36px;
}
.calc-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 24px; }
.calc-label { font-family: var(--font-body); font-size: 14px; color: var(--color-grey-300); font-weight: 500; }
.calc-value { font-family: var(--font-mono); font-size: 15px; color: var(--color-white); font-weight: 600; letter-spacing: 0.5px; }
.calc-slider {
  width: 100%;
  accent-color: var(--color-accent);
  height: 4px;
  background: var(--border-on-dark-strong);
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  margin: 12px 0 24px;
  cursor: pointer;
}
.calc-slider:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 4px; }
.calc-slider::-webkit-slider-thumb { appearance: none; width: 20px; height: 20px; background: var(--color-accent); border-radius: 50%; cursor: pointer; border: 3px solid var(--color-white); }
.calc-slider::-moz-range-thumb { width: 20px; height: 20px; background: var(--color-accent); border-radius: 50%; cursor: pointer; border: 3px solid var(--color-white); }
/* Calculator CTA wrapper â€” enables full-width on mobile */
.calc-ctas { display: flex; gap: 12px; }
.calc-rate-btns { display: flex; gap: 8px; }
.calc-rate-btn { font-family: var(--font-mono); font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 6px; cursor: pointer; border: 1px solid var(--border-on-dark); background: transparent; color: var(--color-grey-300); transition: all 0.15s ease; letter-spacing: 0.5px; min-height: 44px; }
.calc-rate-btn--active { background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); }
.calc-divider { border: none; border-top: 1px solid var(--border-on-dark); margin: 28px 0; }
.calc-result { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.calc-result-label { font-family: var(--font-body); font-size: 14px; color: var(--color-grey-300); }
.calc-result-value { font-family: var(--font-heading); font-size: 36px; color: var(--color-white); letter-spacing: 0.03em; line-height: 1.18; }
.calc-result-value--big { font-size: 48px; color: var(--color-accent-display); }

/* ============================================================
   INDUSTRIES â€” 4-item vignette grid (replaces generic tag cloud)
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.industry-item {
  padding: 40px;
  border-bottom: 1px solid var(--color-grey-100);
}
.industry-item:nth-child(odd) {
  border-right: 1px solid var(--color-grey-100);
  padding-left: 0;
}
.industry-item:nth-child(even) {
  padding-right: 0;
}
.industry-item:nth-last-child(-n+2) { border-bottom: none; }
.industry-item__num {
  font-family: var(--font-heading);
  font-size: 64px;
  color: var(--color-grey-100);
  line-height: 1;
  letter-spacing: 0;
  display: block;
  margin-bottom: 14px;
}
.industry-item__name {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-charcoal);
  margin: 0 0 8px;
}
.industry-item__detail {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-grey-500);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: flex-start; margin-top: 48px; }
.area-map { background: var(--color-cream); border: 1px solid var(--color-grey-100); border-radius: 12px; padding: 32px; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; }
.area-blocks { display: flex; flex-direction: column; gap: 24px; }
.area-block { background: var(--color-white); border: 1px solid var(--color-grey-100); border-radius: 12px; padding: 24px; }
.area-block__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-accent-strong);   /* accessible green */
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-grey-100);
  margin-bottom: 16px;
}
.area-block__list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 20px; }
.area-block__list li { font-family: var(--font-body); font-size: 14px; color: var(--color-charcoal); font-weight: 500; padding: 5px 0; display: flex; align-items: center; gap: 8px; break-inside: avoid; }
.area-block__list li::before { content: ''; display: block; width: 5px; height: 5px; background: var(--color-accent); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   HOW IT WORKS â€” numbered flow (no card boxes)
   ============================================================ */
.steps-flow {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  align-items: start;
  gap: 0;
  margin-top: 64px;
  list-style: none;
  padding: 0;
}
.step-item { }
.step-item__num {
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--color-grey-100);
  line-height: 1;
  letter-spacing: 0;
  display: block;
  margin-bottom: 16px;
}
.step-item__title { font-family: var(--font-heading); font-size: 22px; color: var(--color-charcoal); letter-spacing: var(--tracking-heading); line-height: 1.2; margin: 0 0 12px; text-wrap: balance; }
.step-item__body { font-family: var(--font-body); font-size: 15px; color: var(--color-grey-500); line-height: 1.65; margin: 0; }
.step-item__connector {
  height: 1px;
  background: var(--color-grey-100);
  margin-top: 40px;
  align-self: start;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--color-grey-100); }
.faq-item__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  /* Button reset */
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-item__head:hover .faq-question { color: var(--color-accent-strong); }
.faq-question { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--color-charcoal); flex: 1; transition: color var(--transition-fast); }
.faq-toggle { font-family: var(--font-heading); font-size: 28px; color: var(--color-accent); line-height: 1; transition: transform var(--transition-base); width: 28px; text-align: center; flex-shrink: 0; }
.faq-toggle--open { transform: rotate(45deg); }
.faq-answer { font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: var(--color-grey-500); max-width: 640px; padding: 0 0 22px; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
/* Photo overlay variant — layered gradient over hero background image */
.contact-section--photo {
  background:
    linear-gradient(135deg, rgba(23, 17, 8, 0.90) 0%, rgba(27, 27, 24, 0.78) 55%, rgba(42, 33, 19, 0.88) 100%),
    url('/assets/herobackground.png') center / cover no-repeat;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: flex-start; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 28px; }
/* Contact info: no box â€” floating icon reads cleaner on the dark contact surface */
.contact-info-icon { width: 40px; height: 40px; color: var(--color-accent-display); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-label { font-family: var(--font-mono); font-size: 10px; color: var(--color-wood-pale); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2px; }
.contact-info-value { font-family: var(--font-body); font-size: 15px; color: var(--color-white); font-weight: 500; }
.contact-info-value--link { text-decoration: none; transition: color var(--transition-fast); }
.contact-info-value--link:hover { color: var(--color-accent); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-row--full { grid-column: 1 / -1; }
.form-row { display: flex; flex-direction: column; }
.form-label { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--color-grey-300); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 7px; }
.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-on-dark);
  border-radius: 8px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(160, 160, 168, 0.45); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(74, 100, 45, 0.2);
}
.form-textarea { min-height: 110px; resize: vertical; }

/* Form error â€” non-destructive, keeps form visible */
.form-error {
  font-family: var(--font-body);
  font-size: 14px;
  color: #c9b98f;
  background: rgba(95, 127, 58, 0.12);
  border: 1px solid rgba(95, 127, 58, 0.3);
  border-radius: 8px;
  padding: 14px 16px;
  line-height: 1.6;
}
.form-error a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 3px; }

/* Submit row â€” replaces inline style */
.form-submit-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.form-submit-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #c9b98f;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER â€” token-based gradients
   ============================================================ */
.footer {
  background: linear-gradient(135deg, var(--color-wood-dark) 0%, var(--color-charcoal) 100%);
  padding: 64px 0 0;
  color: var(--color-grey-300);
}
.footer__main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer__col h4 { font-family: var(--font-mono); font-size: var(--text-label); color: var(--color-wood-pale); letter-spacing: var(--tracking-label); text-transform: uppercase; font-weight: 500; margin: 0 0 16px; }
.footer__col a { font-family: var(--font-body); font-size: 14px; color: var(--color-grey-300); text-decoration: none; display: block; padding: 3px 0; cursor: pointer; transition: color var(--transition-fast); min-height: 44px; line-height: 44px; }
.footer__col a:hover { color: var(--color-white); }
.footer__col a.footer__quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  line-height: 1;
  padding: 0 16px;
  margin: 0 0 12px;
  border-radius: 8px;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
}
.footer__col a.footer__quote-link:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
}
.footer__about { font-family: var(--font-body); font-size: 14px; color: var(--color-grey-300); line-height: 1.7; margin: 14px 0 0; max-width: 320px; }
.trust-bar { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid var(--border-on-dark-soft); }
.trust-bar__item { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 13px; color: var(--color-grey-300); font-weight: 500; }
.trust-bar__item svg, .trust-bar__item i { color: var(--color-accent-display); }
.footer__legal { border-top: 1px solid var(--border-on-dark-soft); padding: 18px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--font-mono); font-size: 10px; color: var(--color-grey-500); letter-spacing: 1px; text-transform: uppercase; }

/* ============================================================
   PAGE HEADER (interior pages — shorter than hero)
   ============================================================ */
.section-dark.page-header {
  padding: 56px 0 68px;
  background:
    linear-gradient(135deg,
      rgba(23, 17, 8, 0.88) 0%,
      rgba(27, 27, 24, 0.92) 50%,
      rgba(42, 33, 19, 0.88) 100%
    ),
    url('assets/herobackground.png') center / cover no-repeat;
}
.page-header__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--color-white);
  letter-spacing: 0.03em;
  line-height: 1.18;
  margin: 14px 0 26px;
  max-width: 800px;
  text-wrap: balance;
}
.page-header__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-grey-300);
  line-height: 1.75;
  letter-spacing: 0.01em;
  max-width: 680px;
  margin: 0 0 36px;
  text-wrap: pretty;
}

/* ============================================================
   WHY STRIP (condensed 3-col for interior pages)
   ============================================================ */
.why-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.why-strip__item {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--color-grey-100);
}
.why-strip__item:last-child { border-right: none; padding-right: 0; }
.why-strip__item:first-child { padding-left: 0; }
.why-strip__item + .why-strip__item { padding-left: 40px; }
.why-strip__icon { color: var(--color-accent-display); margin-bottom: 18px; }
.why-strip__title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-charcoal);
  letter-spacing: var(--tracking-heading);
  line-height: 1.2;
  margin: 0 0 10px;
  text-wrap: balance;
}
.why-strip__body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-grey-500);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   PALLETS HUB CTA (bottom of pallets page)
   ============================================================ */
.pallets-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.pallets-cta__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-accent-strong);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.pallets-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--color-charcoal);
  letter-spacing: var(--tracking-heading);
  line-height: 1.18;
  margin: 0 0 18px;
  text-wrap: balance;
}
.pallets-cta__body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-grey-500);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-hero {
  background:
    linear-gradient(135deg,
      rgba(23, 17, 8, 0.9) 0%,
      rgba(27, 27, 24, 0.94) 52%,
      rgba(42, 33, 19, 0.9) 100%
    ),
    url('assets/herobackground.png') center / cover no-repeat;
}
.contact-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 72px;
  align-items: start;
}
.contact-details .section-title { max-width: 660px; }
.contact-detail-list {
  display: grid;
  gap: 12px;
  margin: 42px 0 32px;
}
.contact-detail-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 20px;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--color-grey-100);
}
.contact-detail-item:first-child { border-top: 1px solid var(--color-grey-100); }
.contact-detail-item:hover .contact-detail-item__value { color: var(--color-accent-strong); }
.contact-detail-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--color-charcoal);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-item__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-accent-strong);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-detail-item__value {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-charcoal);
  font-weight: 600;
  line-height: 1.45;
  transition: color var(--transition-fast);
}
.contact-detail-item__arrow {
  color: var(--color-grey-300);
  display: flex;
  justify-content: flex-end;
}
.contact-map {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--color-grey-100);
  background: var(--color-grey-50);
  aspect-ratio: 16 / 9;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-actions {
  background: var(--color-charcoal);
  color: var(--color-white);
  border-radius: 12px;
  padding: 32px;
  position: sticky;
  top: 112px;
}
.contact-actions__head {
  padding-bottom: 22px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-on-dark-soft);
}
.contact-actions__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-wood-pale);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-actions__title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-white);
  letter-spacing: var(--tracking-heading);
  line-height: 1.18;
  margin: 0;
  text-wrap: balance;
}
.contact-action-links { display: grid; gap: 0; }
.contact-action-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--color-grey-300);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-on-dark-soft);
  transition: color var(--transition-fast);
}
.contact-action-link:hover { color: var(--color-white); }
.contact-action-link svg { color: var(--color-accent); }
#contact-form {
  scroll-margin-top: 96px;
}
.contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
  align-items: start;
}
.contact-page-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}
.contact-page-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}
.contact-page-input,
.contact-page-textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: 8px;
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.contact-page-input:focus-visible,
.contact-page-textarea:focus-visible {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(74, 100, 45, 0.14);
}
.contact-page-textarea {
  min-height: 136px;
  resize: vertical;
}
.contact-page-submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}
.contact-page-submit span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-grey-500);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   PALLET PICKUP & REMOVAL PAGE
   ============================================================ */

.pickup-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--color-charcoal);
  margin-top: 48px;
}
.pickup-spec {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--color-grey-100);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pickup-spec:first-child { padding-left: 0; }
.pickup-spec:last-child { border-right: none; padding-right: 0; }
.pickup-spec + .pickup-spec { padding-left: 32px; }
.pickup-spec__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 2px;
  font-weight: 500;
}
.pickup-spec__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-grey-400);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.pickup-spec__value {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-charcoal);
  letter-spacing: 0.5px;
  line-height: 1.2;
  font-weight: 400;
}
.pickup-spec__detail {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-grey-500);
  line-height: 1.65;
  margin: 0;
}
.who-uses-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.who-uses-layout__left .section-title { margin-bottom: 16px; }
.who-uses-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.who-uses-pill {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-charcoal);
  background: var(--color-grey-50);
  border: 1px solid var(--color-grey-100);
  padding: 10px 18px;
  border-radius: 100px;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.who-uses-pill:hover {
  background: oklch(0.95 0.02 55);
  border-color: oklch(0.88 0.06 55);
}
.needs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--color-grey-100);
  margin-top: 48px;
}
.need-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 40px 32px 0;
  border-bottom: 1px solid var(--color-grey-100);
}
.need-item:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
  border-left: 1px solid var(--color-grey-100);
}
.need-item__num {
  font-family: var(--font-mono);
  font-size: 28px;
  color: var(--color-accent);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 4px;
  letter-spacing: -1px;
}
.need-item__title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-charcoal);
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 6px;
  font-weight: 400;
}
.need-item__detail {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-grey-500);
  line-height: 1.65;
  margin: 0;
}
.buyback-callout {
  background: var(--color-charcoal);
  border-radius: 16px;
  overflow: hidden;
}
.buyback-callout__inner { padding: 56px 64px; }
.buyback-callout__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  background: oklch(0.18 0.02 55 / 0.6);
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-weight: 500;
}
.buyback-callout__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--color-white);
  letter-spacing: var(--tracking-heading);
  line-height: 1.18;
  margin: 0 0 20px;
  max-width: 680px;
  font-weight: 400;
  text-wrap: balance;
}
.buyback-callout__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-grey-300);
  line-height: 1.75;
  margin: 0 0 40px;
  max-width: 620px;
}
.buyback-callout__facts {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.buyback-fact { display: flex; flex-direction: column; gap: 4px; }
.buyback-fact__num {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-accent);
  letter-spacing: 0.5px;
  line-height: 1;
}
.buyback-fact__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-grey-400);
  line-height: 1.4;
  max-width: 160px;
}
.buyback-callout__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid oklch(0.6 0.01 260 / 0.4);
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.buyback-callout__link:hover { color: var(--color-accent); border-color: var(--color-accent); }
.buyback-callout__button {
  display: flex;
  width: fit-content;
  margin-top: 22px;
}
.pickup-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pickup-area__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--color-charcoal);
  letter-spacing: var(--tracking-heading);
  line-height: 1.2;
  margin: 12px 0 16px;
  text-wrap: balance;
}
.pickup-area__body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-grey-500);
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 380px;
}
.pickup-area__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.pickup-area__link:hover { color: var(--color-accent); }
.pickup-area__button {
  display: flex;
  width: fit-content;
  margin-top: 22px;
}
.pickup-area__cities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
  padding-top: 8px;
}
.pickup-area__city {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-grey-500);
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  padding: 7px 14px;
  border-radius: 6px;
}

/* ============================================================
   SERVICE AREAS PAGE
   ============================================================ */

/* -- Map container -- */
.sa-map {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px oklch(0.2 0.01 260 / 0.06);
  border: 1px solid var(--color-grey-100);
}
.sa-map__svg {
  width: 100%;
  height: auto;
  display: block;
}

/* -- Zone label -- */
.sa-zone__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent-strong);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: oklch(0.96 0.02 55);
  border-radius: 6px;
  font-weight: 500;
}
.sa-zone__label--muted {
  color: var(--color-grey-500);
  background: var(--color-grey-50);
}

/* -- City cards -- */
.sa-cities {
  display: grid;
  gap: 16px;
}
.sa-cities--sameday {
  grid-template-columns: repeat(2, 1fr);
}
.sa-cities--nextday {
  grid-template-columns: repeat(3, 1fr);
}
.sa-city {
  padding: 24px 28px;
  background: var(--color-grey-50);
  border-radius: 10px;
  border: 1px solid var(--color-grey-100);
  transition: border-color var(--transition-fast);
}
.sa-city:hover {
  border-color: var(--color-grey-200);
}
.sa-city--home {
  grid-column: 1 / -1;
  background: oklch(0.97 0.015 55);
  border-color: oklch(0.88 0.06 55);
}
.sa-city__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.sa-city__name {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-charcoal);
  letter-spacing: 0.5px;
  margin: 0;
}
.sa-city__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.sa-city__badge--home {
  background: var(--color-accent);
  color: var(--color-white);
}
.sa-city__badge--sameday {
  background: oklch(0.93 0.04 55);
  color: var(--color-accent-strong);
}
.sa-city__badge--nextday {
  background: var(--color-grey-100);
  color: var(--color-grey-500);
}
.sa-city__body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-grey-500);
  line-height: 1.65;
  margin: 0;
}

/* -- Product links grid -- */
.sa-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sa-product {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid var(--color-grey-100);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}
.sa-product:hover {
  border-color: var(--color-accent);
  box-shadow: 0 2px 8px oklch(0.2 0.01 260 / 0.06);
}
.sa-product:hover .sa-product__arrow {
  color: var(--color-accent);
  transform: translateX(3px);
}
.sa-product__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0.96 0.02 55);
  border-radius: 8px;
  color: var(--color-accent);
}
.sa-product__title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-charcoal);
  letter-spacing: 0.5px;
  margin: 0 0 6px;
}
.sa-product__body {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-grey-500);
  line-height: 1.6;
  margin: 0;
}
.sa-product__arrow {
  flex-shrink: 0;
  margin-left: auto;
  color: var(--color-grey-300);
  align-self: center;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

/* -- CTA section -- */
.sa-cta-section {
  padding: 80px 0;
  background:
    linear-gradient(135deg,
      rgba(23, 17, 8, 0.92) 0%,
      rgba(27, 27, 24, 0.95) 50%,
      rgba(42, 33, 19, 0.92) 100%
    ),
    url('assets/herobackground.png') center / cover no-repeat;
}
.sa-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.sa-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--color-white);
  letter-spacing: 1.5px;
  line-height: 1.18;
  margin: 16px 0 20px;
}
.sa-cta__body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-grey-300);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.sa-cta__contact {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.sa-cta__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-grey-200);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}
.sa-cta__contact-item:hover {
  color: var(--color-accent);
}
.sa-cta__contact-item span[aria-hidden] {
  color: var(--color-accent);
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-featured { grid-template-columns: repeat(2, 1fr); }
  /* Steps: 2Ã—2 grid, hide connectors */
  .steps-flow { grid-template-columns: 1fr 1fr; gap: 48px; }
  .step-item__connector { display: none; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  /* Service areas */
  .sa-products { grid-template-columns: repeat(2, 1fr); }
  /* Pallet pickup */
  .pickup-specs { grid-template-columns: repeat(2, 1fr); }
  .pickup-spec { border-right: none; border-bottom: 1px solid var(--color-grey-100); padding: 28px 0; }
  .pickup-spec + .pickup-spec { padding-left: 0; }
  .pickup-spec:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--color-grey-100); }
  .pickup-spec:nth-child(even) { padding-left: 40px; }
  .pickup-spec:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 900px) {
  .step-item__num { font-size: 56px; }
}

@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .nav--desktop { display: none; }
  .nav-hamburger { display: flex; align-items: center; justify-content: center; }

  /* Stacked layouts */
  .hero__inner,
  .why-grid,
  .calc-grid,
  .area-grid,
  .contact-grid,
  .contact-page-layout,
  .contact-form-section { grid-template-columns: 1fr; gap: 40px; }

  /* Products */
  .products-featured { grid-template-columns: 1fr; }
  .products-compact { grid-template-columns: 1fr; }
  .services-strip__items { grid-template-columns: 1fr; }

  /* Card & service images — reduce height on mobile */
  .card__img { height: 160px; }
  .service-item__img { height: 120px; }

  /* Steps â€” full stack */
  .steps-flow { grid-template-columns: 1fr 1fr; gap: 36px; }
  .step-item__connector { display: none; }
  .step-item__num { font-size: 48px; }

  /* Footer */
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Contact form */
  .contact-form { grid-template-columns: 1fr; }
  .contact-actions { position: static; }
  .contact-page-form { grid-template-columns: 1fr; }
  .contact-hero-actions,
  .contact-page-submit { flex-direction: column; align-items: stretch; }
  .contact-hero-actions .btn,
  .contact-page-submit .btn { width: 100%; justify-content: center; }

  /* Inline quote CTAs */
  .inline-quote-cta { flex-direction: column; align-items: stretch; gap: 20px; }
  .inline-quote-cta__actions { justify-content: stretch; }
  .inline-quote-cta__actions .btn,
  .buyback-callout__button,
  .pickup-area__button { width: 100%; justify-content: center; }

  /* Section spacing */
  .section { padding: 64px 0; }

  /* Hero */
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* Coverage strip â€” collapse to stacked on mobile */
  .hero__coverage { flex-direction: column; gap: 6px; }
  .hero__coverage-sep { display: none; }

  /* Calculator CTA full-width on mobile */
  .calc-ctas { flex-direction: column; }
  .calc-ctas .btn { width: 100%; justify-content: center; }

  /* Industries grid â€” 1 column on mobile */
  .industries-grid { grid-template-columns: 1fr; }
  .industry-item { border-right: none !important; padding-left: 0 !important; padding-right: 0 !important; padding: 32px 0; border-bottom: 1px solid var(--color-grey-100); }
  .industry-item:last-child { border-bottom: none; }

  /* Why strip — stack on mobile */
  .why-strip { grid-template-columns: 1fr; }
  .why-strip__item { padding: 32px 0; border-right: none; border-bottom: 1px solid var(--color-grey-100); }
  .why-strip__item:last-child { border-bottom: none; padding-bottom: 0; }
  .why-strip__item + .why-strip__item { padding-left: 0; }

  /* Contact submit row */
  .form-submit-row { flex-direction: column; align-items: flex-start; }
  .form-submit-row .btn { width: 100%; justify-content: center; }

  /* Manifest â€” wrap gracefully */
  .hero-manifest__sep { padding: 0 12px; }

  /* Hide phone number in header on mobile â€” it's in the contact section */
  .header-phone { display: none; }

  /* Service areas -- stack city grids */
  .sa-cities--sameday { grid-template-columns: 1fr; }
  .sa-cities--nextday { grid-template-columns: 1fr; }
  .sa-city--home { grid-column: auto; }
  .sa-products { grid-template-columns: 1fr; }
  .sa-map { padding: 20px; }
  .sa-cta__contact { flex-direction: column; gap: 16px; align-items: center; }

  /* Pallet pickup -- stack layouts */
  .pickup-specs { grid-template-columns: 1fr; }
  .pickup-spec { border-right: none; border-bottom: 1px solid var(--color-grey-100); padding: 28px 0; }
  .pickup-spec + .pickup-spec { padding-left: 0; }
  .pickup-spec:last-child { border-bottom: none; }
  .who-uses-layout { grid-template-columns: 1fr; gap: 40px; }
  .needs-list { grid-template-columns: 1fr; }
  .need-item:nth-child(even) { padding-left: 0; border-left: none; }
  .buyback-callout__inner { padding: 40px 32px; }
  .buyback-callout__facts { gap: 28px; }
  .pickup-area { grid-template-columns: 1fr; gap: 40px; }

  /* ── Mobile hero ─────────────────────────────────────────── */
  /* Dark sections: match .section spacing on mobile */
  .section-dark { padding: 64px 0; }
  /* Hero top pad reduced — no need to burn 80px before headline */
  .hero { padding: 48px 0 0; }
  /* Stack gap: 32px vertical space between headline block and panel */
  .hero__inner { gap: 32px; }
  /* Hide stock panel on mobile — manifest strip carries the same
     operational signals without the layout cost */
  .hero__panel { display: none; }
  /* Manifest: tighter top margin + less bottom padding */
  .hero-manifest { margin-top: 40px; padding-bottom: 32px; }

  /* ── Calculator ─────────────────────────────────────────── */
  /* Rate buttons wrap on narrow screens instead of overflowing */
  .calc-rate-btns { flex-wrap: wrap; }
  /* Reduce panel padding on mobile */
  .calc-panel { padding: 24px; }
  /* Result row: allow wrap so big number doesn't clip */
  .calc-result { flex-wrap: wrap; gap: 8px 16px; }

  /* Mobile hero copy: new SEO headline needs tighter type and real wrapping */
  .hero__title {
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1.08;
    letter-spacing: 0.02em;
    margin: 12px 0 22px;
    max-width: 100%;
  }
  .hero__desc {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.62;
    margin-bottom: 26px;
  }
  .hero__ctas {
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
  .hero__ctas .btn {
    max-width: 100%;
    min-width: 0;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }
  .hero__ctas .btn > span { flex-shrink: 0; }
  .hero__coverage {
    align-items: flex-start;
    max-width: 100%;
    overflow: visible;
  }
  .hero__coverage-group {
    max-width: 100%;
    align-items: flex-start;
    white-space: normal;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }
  .hero-manifest__kicker {
    line-height: 1.5;
    white-space: normal;
  }
  .hero-manifest__datum {
    max-width: 100%;
    white-space: normal;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .steps-flow { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .products-compact .card--inline { flex-direction: column; }
  /* Inline card image — converts to top image when card stacks */
  .card--inline .card__img--inline {
    margin: -20px -24px 16px;
    width: auto;
    height: 160px;
    align-self: auto;
  }
  .services-strip { padding: 24px; }
  .hero-manifest__line { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-manifest__sep { display: none; }
  .hero-manifest__datum { display: block; }
  .why-grid { gap: 32px; }
  /* Annual credit figure — prevent overflow on very small screens */
  .calc-result-value--big { font-size: 36px; }
  .contact-detail-item { grid-template-columns: 40px minmax(0, 1fr); }
  .contact-detail-item__icon { width: 40px; height: 40px; }
  .contact-detail-item__arrow { display: none; }
  .contact-page-form,
  .contact-actions { padding: 24px; }
  /* Hero: tightest screens get less top pad */
  .hero { padding: 36px 0 0; }
  .hero__title {
    font-size: clamp(31px, 10.2vw, 39px);
    margin-bottom: 18px;
  }
  .hero__desc {
    font-size: 15px;
    line-height: 1.58;
    margin-bottom: 22px;
  }
  .hero__coverage {
    font-size: 10.5px;
    letter-spacing: 0.3px;
  }
  .hero-manifest__kicker {
    font-size: 9.5px;
    letter-spacing: 1.7px;
  }
  .hero-manifest__datum { font-size: 12px; }
  /* Manifest: tightest screens, trim further */
  .hero-manifest { margin-top: 28px; }
  /* Calculator: very small calc panel */
  .calc-panel { padding: 20px; }
}
