/* Bin Dumped — Kamloops junk removal
   Visual language: utility-truck industrial. Charcoal + amber.
   Bold display type. Tabular phone numbers. */

:root {
  --bg: #0B0D11;
  --bg-2: #11141A;
  --surface: #161A21;
  --surface-2: #1C212A;
  --border: #262C36;
  --border-strong: #353D49;
  --text: #F5F2EC;
  --text-soft: #B7BAC1;
  --text-muted: #7C8089;
  --accent: #F59E0B;
  --accent-hot: #FBBF24;
  --accent-dim: #92580B;
  --ok: #34D399;
  --maxw: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

.tabular { font-variant-numeric: tabular-nums; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 17, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  display: grid; place-items: center;
  border-radius: 6px;
  color: #1A1206;
  font-size: 18px;
}

.brand-mark svg { width: 18px; height: 18px; }

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
}

.nav a:hover { color: var(--accent); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #1A1206;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 15px;
  transition: background 0.15s ease;
}
.header-cta:hover { background: var(--accent-hot); }
.header-cta svg { width: 16px; height: 16px; }

@media (max-width: 760px) {
  .nav { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 88% 12%, rgba(245, 158, 11, 0.12), transparent 60%),
    radial-gradient(40% 35% at 4% 60%, rgba(245, 158, 11, 0.05), transparent 70%);
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(transparent 22px, rgba(255,255,255,0.018) 22px) 0 0 / 22px 22px,
    linear-gradient(90deg, transparent 22px, rgba(255,255,255,0.018) 22px) 0 0 / 22px 22px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}

.hero .container { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 7px 14px;
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.06);
}

.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

h1.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(44px, 7.5vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 22px 0 22px;
  max-width: 18ch;
}

h1 .accent-word {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-sub {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--text-soft);
  max-width: 56ch;
  margin: 0 0 36px;
  line-height: 1.45;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #1A1206;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
  border: none;
  box-shadow: 0 14px 40px -10px rgba(245, 158, 11, 0.45);
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary:hover { background: var(--accent-hot); transform: translateY(-1px); }
.btn-primary svg { width: 20px; height: 20px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  padding: 17px 22px;
  border-radius: 10px;
  font-size: 16px;
  border: 1px solid var(--border-strong);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.btn-secondary:hover { border-color: var(--accent); background: rgba(245, 158, 11, 0.06); }

.trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 14px;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
}
.stars-glyph { letter-spacing: 0.04em; }
.stars span:last-child { color: var(--text-soft); font-weight: 500; }

.dot-sep {
  width: 4px; height: 4px;
  background: var(--text-muted);
  border-radius: 50%;
  display: inline-block;
}

/* ============ SECTION BASE ============ */
.section {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}
.section-tight { padding: 64px 0; }

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section-header h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 14ch;
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
  max-width: 44ch;
  font-size: 17px;
}

.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

/* ============ WHAT WE HAUL ============ */
.haul-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.haul-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px 32px;
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.haul-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  background: var(--surface-2);
}

.haul-num {
  font-family: 'Archivo Black', sans-serif;
  color: var(--border-strong);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  transition: color 0.15s ease;
}
.haul-card:hover .haul-num { color: var(--accent); }

.haul-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.haul-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ============ HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-2);
}
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-right: none; }
@media (max-width: 820px) {
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
}

.step-num {
  font-family: 'Archivo Black', sans-serif;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  display: block;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

/* ============ PRICING ============ */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) {
  .pricing-wrap { grid-template-columns: 1fr; gap: 40px; }
}

.pricing-card {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.04) 0%, transparent 100%), var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 36px 40px;
}

.pricing-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pricing-card .lead {
  color: var(--text-soft);
  margin: 0 0 28px;
  font-size: 15px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.price-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  gap: 18px;
}
.price-item:last-child { border-bottom: none; }

.price-item .label { font-weight: 600; font-size: 16px; }
.price-item .sub { color: var(--text-muted); font-size: 13px; margin-top: 2px; display: block; }
.price-item .price {
  font-family: 'Archivo Black', sans-serif;
  color: var(--accent);
  font-size: 20px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.note-block h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  max-width: 14ch;
}
.note-block p {
  color: var(--text-soft);
  font-size: 17px;
  margin: 0 0 14px;
  max-width: 42ch;
}

.note-block strong { color: var(--text); font-weight: 700; }

/* ============ WHY US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 26px;
}

.why-icon {
  width: 44px; height: 44px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent);
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.why-icon svg { width: 22px; height: 22px; }

.why-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.why-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ============ SERVICE AREA ============ */
.area-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) {
  .area-grid { grid-template-columns: 1fr; }
}

.area-grid h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  color: var(--text-soft);
}
.area-list li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  font-weight: 500;
}
.area-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.map-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-left: auto;
  width: 100%;
}

.map-svg { width: 100%; height: 100%; }

/* ============ REVIEWS ============ */
.reviews-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.reviews-strip .big-rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.reviews-strip .big-rating .num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.reviews-strip .big-rating .out { color: var(--text-muted); font-weight: 500; }
.reviews-strip .rating-meta { color: var(--text-soft); font-size: 15px; margin-top: 6px; }
.reviews-strip .rating-meta strong { color: var(--text); }

.reviews-strip .google-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  padding: 12px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  transition: border-color 0.15s ease;
}
.reviews-strip .google-link:hover { border-color: var(--accent); }

/* ============ CONTACT ============ */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
}

.contact-left h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 12px 0 18px;
}
.contact-left .lead { color: var(--text-soft); font-size: 17px; margin: 0 0 32px; max-width: 36ch; }

.phone-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.04));
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 16px;
  padding: 26px 28px;
  margin-bottom: 14px;
}
.phone-card .label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.phone-card .num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(30px, 4.5vw, 40px);
  letter-spacing: -0.02em;
  display: block;
  color: var(--text);
}
.phone-card .num:hover { color: var(--accent); }

.hours-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px;
}
.hours-card h4 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.hours-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 15px; color: var(--text-soft); }
.hours-row strong { color: var(--text); font-weight: 600; }

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
}

.form h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.form .sub { color: var(--text-muted); font-size: 14px; margin: 0 0 26px; }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 13px 14px;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg);
}
.field textarea { min-height: 120px; resize: vertical; font-family: inherit; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

.form-submit {
  width: 100%;
  margin-top: 8px;
  background: var(--accent);
  color: #1A1206;
  border: none;
  font-weight: 800;
  font-size: 16px;
  padding: 16px;
  border-radius: 10px;
  letter-spacing: -0.005em;
  transition: background 0.15s ease;
}
.form-submit:hover { background: var(--accent-hot); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; }

.form-status {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-soft);
  min-height: 1.2em;
}
.form-status.ok { color: var(--ok); }
.form-status.err { color: #F87171; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 36px;
  margin-top: 56px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-row .left { display: flex; align-items: center; gap: 14px; }
.footer-row a { color: var(--text-soft); }
.footer-row a:hover { color: var(--accent); }

.footer-cta {
  font-family: 'Archivo Black', sans-serif;
  color: var(--accent);
  font-size: 22px;
  letter-spacing: -0.015em;
}
