/* Reliable Hauling & Junk — design system
   Industrial/signage character on purpose: condensed display type, flat color blocks,
   hard edges over rounded glass, real photography over icon grids. */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #17181a;
  --ink-soft: #3d4046;
  --paper: #f6f4ef;
  --paper-raised: #ffffff;
  --line: #dcd8cd;
  --navy: #182636;
  --navy-deep: #101a26;
  --orange: #d9531e;
  --orange-deep: #b8431a;
  --safety-yellow: #f0b429;
  --ok-green: #2f6f4e;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 3px;
  --radius-lg: 6px;
  --shadow-sm: 0 1px 2px rgba(16,26,38,.08);
  --shadow-md: 0 6px 20px rgba(16,26,38,.14);
  --container: 1180px;
}

:root[data-theme="dark"] {
  --ink: #f0ede4;
  --ink-soft: #c7c2b4;
  --paper: #14181d;
  --paper-raised: #1b2027;
  --line: #2b323b;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ink: #f0ede4;
    --ink-soft: #c7c2b4;
    --paper: #14181d;
    --paper-raised: #1b2027;
    --line: #2b323b;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: .01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .95rem;
  padding: .95em 1.6em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--orange-deep); }
.btn-secondary {
  background: transparent;
  color: var(--paper);
  border-color: currentColor;
}
.btn-secondary:hover { background: rgba(255,255,255,.1); }
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-deep); }
.btn-block { width: 100%; }
.btn-lg { font-size: 1.05rem; padding: 1.05em 2em; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--safety-yellow);
  outline-offset: 2px;
}

/* ---------- Top bar (phone + language) ---------- */
.topbar {
  background: var(--navy-deep);
  color: #cfd6de;
  font-size: .82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
}
.topbar a { text-decoration: none; color: inherit; }
.topbar-phone { font-weight: 600; letter-spacing: .02em; }
.topbar-phone svg { vertical-align: -3px; margin-right: 5px; }
.lang-switch { display: flex; gap: 2px; }
.lang-switch a {
  padding: 3px 9px;
  border-radius: var(--radius);
  font-weight: 600;
}
.lang-switch a[aria-current="true"] { background: rgba(255,255,255,.14); }

/* ---------- Header / nav ---------- */
.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  line-height: 1.1;
}
.brand-mark small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; color: #9fb0c2; letter-spacing: .08em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  text-decoration: none;
  color: #dfe6ec;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
}
.main-nav a:hover { color: #fff; }
.nav-toggle { display: none; }

@media (max-width: 880px) {
  .main-nav { position: fixed; inset: 76px 0 0 0; background: var(--navy); flex-direction: column; padding: 28px 24px; gap: 22px; transform: translateX(100%); transition: transform .2s ease; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.15rem; }
  .nav-toggle { display: inline-flex; background: none; border: none; color: #fff; padding: 8px; cursor: pointer; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, rgba(16,26,38,.78), rgba(16,26,38,.62) 55%, rgba(16,26,38,.86)), var(--navy-deep);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 68px 0 78px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 { color: #fff; margin-bottom: .28em; }
.hero-accent { color: var(--safety-yellow); }
.hero-sub { color: #d7dee5; font-size: 1.15rem; max-width: 46ch; }
.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-points { list-style: none; margin: 30px 0 0; padding: 0; display: flex; gap: 22px; flex-wrap: wrap; font-size: .88rem; color: #cfd8df; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.hero-points svg { color: var(--safety-yellow); flex-shrink: 0; }

.hero-card {
  background: var(--paper-raised);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.hero-card h3 { margin-bottom: 4px; }
.hero-card p { font-size: .92rem; margin-bottom: 16px; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-tight { padding: 52px 0; }
.section-head { max-width: 62ch; margin-bottom: 40px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 10px;
}
.on-dark { background: var(--navy); color: #fff; }
.on-dark p { color: #c6d0d9; }
.on-dark .eyebrow { color: var(--safety-yellow); }

/* Move vs Haul split */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.split-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.split-card .tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .07em;
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.split-card.move .tag { background: #e4ecf3; color: var(--navy); }
.split-card.haul .tag { background: #fbe4d8; color: var(--orange-deep); }
.split-card ul { margin: 16px 0 0; padding-left: 1.15em; color: var(--ink-soft); }
.split-card li { margin-bottom: 6px; }
@media (max-width: 760px) { .split-grid { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* Quote picker cards on homepage */
.quote-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.quote-option {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-option h3 { margin: 0; }
.quote-option .btn { align-self: flex-start; margin-top: auto; }
@media (max-width: 760px) { .quote-picker { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--line); aspect-ratio: 4/3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Service area */
.area-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.area-list li { background: var(--paper-raised); border: 1px solid var(--line); padding: 8px 14px; border-radius: var(--radius); font-weight: 600; font-size: .92rem; }

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

/* Footer */
.site-footer { background: var(--navy-deep); color: #b7c1cb; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-grid h4 { color: #fff; font-size: .82rem; letter-spacing: .06em; margin-bottom: 14px; }
.site-footer a { text-decoration: none; color: #b7c1cb; }
.site-footer a:hover { color: #fff; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: .9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .8rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* Sticky mobile CTA — one, not a cluster */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}
.mobile-cta-row { display: flex; gap: 10px; }
.mobile-cta .btn { flex: 1; }
@media (max-width: 760px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 76px; }
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--orange); color: #fff; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
