/* =========================================================
   North Haul Movers — Site styles (Direction A: Midnight & Amber)
   ========================================================= */

:root {
  --bg: #0c1220;
  --bg-2: #0a0f1b;
  --surface: #121a2c;
  --surface-2: #0f1626;
  --border: rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.16);
  --fg: #f3f5f9;
  --fg-soft: #b7c0d2;
  --fg-muted: #7e8aa3;
  --fg-faint: #586079;
  --accent: #f0a23b;
  --accent-2: #f6b860;
  --accent-text: #f6b860;
  --on-accent: #1a1206;
  --input-bg: #0e1626;
  --ph-bg: #0f1626;
  --ph-stripe: rgba(255,255,255,0.05);

  --font-display: 'Archivo', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  --maxw: 1180px;
  --pad: 56px;
  --radius: 14px;
  --chev: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237e8aa3' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
section { position: relative; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 14.5px;
  padding: 13px 22px; border-radius: 8px;
  text-decoration: none; cursor: pointer; border: 0; white-space: nowrap;
  transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-text); }
.btn-dark { background: var(--on-accent); color: #fff; }
.btn-dark:hover { transform: translateY(-1px); filter: brightness(1.15); }
.btn-lg { padding: 16px 28px; font-size: 15.5px; }
.btn-block { width: 100%; }

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-text);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--accent); display: inline-block; }
.eyebrow.center { justify-content: center; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); background: color-mix(in srgb, var(--bg) 92%, transparent); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 20px var(--pad); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .mark { width: 38px; height: 38px; display: block; flex-shrink: 0; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark b {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  letter-spacing: -0.01em; color: var(--fg); white-space: nowrap;
}
.brand .wordmark > span {
  font-family: var(--font-body); font-size: 9.5px; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--fg-muted); margin-top: 4px; font-weight: 600;
}
.brand .wordmark b .hl { color: #ef4b3c; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { color: var(--fg-soft); text-decoration: none; font-size: 14.5px; font-weight: 500; letter-spacing: 0.01em; position: relative; padding: 4px 0; transition: color .15s ease; }
.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--fg); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--accent); border-radius: 2px; }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-phone { color: var(--fg); text-decoration: none; font-size: 14.5px; font-weight: 700; display: flex; align-items: center; gap: 9px; }
.nav-phone svg { width: 17px; height: 17px; color: var(--accent); }
.nav-phone small { color: var(--fg-muted); font-weight: 500; display: block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.nav-toggle { display: none; background: transparent; border: 1px solid var(--border-strong); border-radius: 8px; width: 42px; height: 42px; cursor: pointer; align-items: center; justify-content: center; color: var(--fg); }
.nav-toggle svg { width: 20px; height: 20px; }

/* mobile nav panel */
.mobile-nav { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -200px; right: -120px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(240,162,59,0.16), transparent 62%);
  pointer-events: none; z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.03em; line-height: 1.04; font-weight: 800; }
.hero h1 { font-size: clamp(38px, 5vw, 62px); }
.lead { color: var(--fg-soft); font-size: 18px; line-height: 1.6; }
.hero-stats { display: flex; gap: 26px; align-items: center; }
.hero-stats b { font-family: var(--font-display); font-size: 24px; color: var(--fg); display: block; letter-spacing: -0.02em; }
.hero-stats .lbl { color: var(--fg-muted); font-size: 12.5px; }
.hero-stats .divider { width: 1px; height: 34px; background: var(--border); }

/* ---------- trust strip ---------- */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.trust .row { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust .cell { padding: 26px 28px; display: flex; align-items: center; gap: 14px; border-left: 1px solid var(--border); }
.trust .cell:first-child { border-left: 0; padding-left: 0; }
.trust .ic { width: 30px; height: 30px; flex-shrink: 0; color: var(--accent); }
.trust .cell b { font-family: var(--font-display); font-size: 14.5px; font-weight: 700; display: block; color: var(--fg); letter-spacing: -0.01em; }
.trust .cell span { font-size: 12.5px; color: var(--fg-muted); }

/* ---------- placeholders ---------- */
.ph {
  position: relative; overflow: hidden; background: var(--ph-bg);
  background-image: repeating-linear-gradient(135deg, transparent 0 13px, var(--ph-stripe) 13px 14px);
  border: 1px solid var(--border); display: flex; align-items: flex-end; justify-content: flex-start;
  border-radius: var(--radius);
}
.ph .lab {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--fg-muted); background: var(--bg); padding: 6px 10px; margin: 12px; border-radius: 5px;
  border: 1px solid var(--border);
}

/* ---------- real photos ---------- */
.photo { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface-2); }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(12,18,32,0.10) 0%, rgba(12,18,32,0.06) 45%, rgba(12,18,32,0.50) 100%); }
.photo .cap { position: absolute; left: 0; bottom: 0; z-index: 2; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; color: var(--fg); background: rgba(12,18,32,0.62); backdrop-filter: blur(4px); padding: 8px 13px; margin: 14px; border-radius: 7px; border: 1px solid var(--border); }

/* ---------- section heading ---------- */
.sec { padding: 80px 0; }
.sec-head h2 { font-size: clamp(30px, 3.6vw, 42px); }
.sec-head p { color: var(--fg-soft); font-size: 16px; line-height: 1.6; }
.sec-head.split { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.sec-head.center { text-align: center; max-width: 720px; margin: 0 auto; }

/* ---------- service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.svc-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.svc-card .n { font-family: var(--font-mono); font-size: 12px; color: var(--accent-text); letter-spacing: 0.1em; }
.svc-card .svc-ic { width: 34px; height: 34px; color: var(--accent); margin-bottom: 18px; }
.svc-card h3 { font-size: 19px; font-weight: 700; color: var(--fg); margin: 14px 0 8px; letter-spacing: -0.01em; }
.svc-card p { color: var(--fg-soft); font-size: 14px; line-height: 1.55; }
.svc-card ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.svc-card ul li { color: var(--fg-muted); font-size: 13px; display: flex; gap: 8px; align-items: center; }
.svc-card ul li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ---------- feature list (why us) ---------- */
.feat { display: flex; gap: 16px; }
.feat .fic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; background: rgba(240,162,59,0.12); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.feat .fic svg { width: 22px; height: 22px; }
.feat h3 { font-size: 17px; color: var(--fg); margin-bottom: 6px; letter-spacing: -0.01em; }
.feat p { color: var(--fg-soft); font-size: 14px; line-height: 1.55; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 30px 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.step .num { font-family: var(--font-display); font-size: 44px; font-weight: 800; color: rgba(240,162,59,0.28); line-height: 1; letter-spacing: -0.03em; }
.step h3 { font-size: 18px; margin: 10px 0 8px; color: var(--fg); }
.step p { color: var(--fg-soft); font-size: 14px; line-height: 1.55; }

/* ---------- location cards ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.loc-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); transition: border-color .2s ease, transform .2s ease; }
.loc-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.loc-card .loc-img { height: 150px; }
.loc-card .loc-body { padding: 22px 24px; }
.loc-card h3 { font-size: 20px; color: var(--fg); margin-bottom: 7px; }
.loc-card p { color: var(--fg-soft); font-size: 14px; line-height: 1.55; }
.loc-card .loc-link { color: var(--accent-text); font-weight: 700; font-size: 13.5px; margin-top: 14px; display: inline-flex; gap: 6px; align-items: center; text-decoration: none; }

.area-list { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chip { border: 1px solid var(--border); border-radius: 100px; padding: 9px 18px; font-size: 14px; color: var(--fg-soft); font-weight: 500; background: var(--surface); display: inline-flex; align-items: center; gap: 8px; }
.area-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---------- quote form ---------- */
.quote-card { background: var(--surface); border: 1px solid var(--border-strong); border-radius: 16px; padding: 30px; }
.quote-card .qh { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--fg); letter-spacing: -0.01em; }
.quote-card .qs { color: var(--fg-muted); font-size: 13.5px; margin-top: 5px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  background: var(--input-bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 13px; color: var(--fg); font-family: var(--font-body); font-size: 14px; width: 100%;
  outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-faint); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(240,162,59,0.12); }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #e0635b; box-shadow: 0 0 0 3px rgba(224,99,91,0.12); }
.field select { appearance: none; cursor: pointer; background-image: var(--chev); background-repeat: no-repeat; background-position: right 12px center; }
.field textarea { resize: vertical; min-height: 92px; }
.form-note { font-size: 12px; color: var(--fg-muted); margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.form-note svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .check { width: 60px; height: 60px; border-radius: 50%; background: rgba(240,162,59,0.14); color: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.form-success .check svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 23px; color: var(--fg); margin-bottom: 10px; }
.form-success p { color: var(--fg-soft); font-size: 15px; max-width: 40ch; margin: 0 auto; line-height: 1.6; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); overflow: hidden; position: relative; }
.cta-band .wrap { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 50px var(--pad); flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(28px, 3.2vw, 36px); color: var(--on-accent); }
.cta-band p { color: var(--on-accent); opacity: .82; font-size: 16px; margin-top: 8px; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-outline-dark { background: rgba(0,0,0,0.10); color: var(--on-accent); border: 1px solid rgba(0,0,0,0.22); }
.cta-band .btn-outline-dark:hover { background: rgba(0,0,0,0.18); }

/* ---------- page header (inner pages) ---------- */
.page-header { padding: 64px 0 56px; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-header::before { content: ""; position: absolute; top: -180px; right: -100px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(240,162,59,0.14), transparent 62%); pointer-events: none; }
.page-header .wrap { position: relative; }
.page-header h1 { font-size: clamp(36px, 4.6vw, 56px); margin: 18px 0 0; }
.page-header p { color: var(--fg-soft); font-size: 18px; line-height: 1.6; max-width: 56ch; margin-top: 18px; }
.crumbs { font-size: 13px; color: var(--fg-muted); display: flex; gap: 8px; align-items: center; }
.crumbs a { text-decoration: none; color: var(--fg-muted); }
.crumbs a:hover { color: var(--accent-text); }

/* ---------- prose / about ---------- */
.prose p { color: var(--fg-soft); font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.stat b { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--fg); display: block; letter-spacing: -0.03em; }
.stat span { color: var(--fg-muted); font-size: 13.5px; }

.value-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; background: var(--surface); }
.value-card .vic { width: 46px; height: 46px; border-radius: 11px; background: rgba(240,162,59,0.12); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 18px; }
.value-card .vic svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 18px; color: var(--fg); margin-bottom: 8px; }
.value-card p { color: var(--fg-soft); font-size: 14px; line-height: 1.6; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 64px 0 28px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand p { color: var(--fg-muted); font-size: 14px; line-height: 1.65; margin-top: 18px; max-width: 30ch; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 16px; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { color: var(--fg-soft); text-decoration: none; font-size: 14px; transition: color .15s ease; }
.footer-col ul li a:hover { color: var(--accent-text); }
.footer-contact a { color: var(--fg-soft); text-decoration: none; font-size: 14px; display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact a svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--accent-text); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom small { color: var(--fg-muted); font-size: 13px; }
.footer-badges { display: flex; gap: 10px; align-items: center; }
.footer-badge { font-size: 11px; color: var(--fg-muted); border: 1px solid var(--border); border-radius: 100px; padding: 6px 12px; display: inline-flex; align-items: center; gap: 6px; }
.footer-badge svg { width: 13px; height: 13px; color: var(--accent); }

/* ---------- helpers ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mt-0 { margin-top: 0; }
.hide-mobile { }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  :root { --pad: 32px; }
  .nav-links, .nav-phone, .nav-right .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-right { gap: 12px; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .svc-grid, .steps, .loc-grid, .stat-row { grid-template-columns: 1fr 1fr; }
  .trust .row { grid-template-columns: 1fr 1fr; }
  .trust .cell:nth-child(3) { border-left: 0; padding-left: 0; }
  .trust .cell:nth-child(odd) { border-left: 0; padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sec-head.split { flex-direction: column; align-items: flex-start; gap: 16px; }
  /* collapse inline two-column grids (hero, estimate, quote split) to one column */
  .stack-mobile { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  :root { --pad: 22px; }
  .sec { padding: 56px 0; }
  .svc-grid, .steps, .loc-grid, .stat-row, .form-grid { grid-template-columns: 1fr; }
  .trust .row { grid-template-columns: 1fr; }
  .trust .cell { border-left: 0; padding-left: 0; }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .quote-card { padding: 22px; }
}

/* ---------- mobile nav open state ---------- */
body.nav-open { overflow: hidden; }
.mobile-nav.open { display: block; position: fixed; inset: 0; top: 0; z-index: 200; background: var(--bg); padding: 22px; animation: fade .2s ease; }
.mobile-nav .mclose { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-nav .mclose button { background: transparent; border: 1px solid var(--border-strong); border-radius: 8px; width: 42px; height: 42px; color: var(--fg); cursor: pointer; }
.mobile-nav .mlinks { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav .mlinks a { color: var(--fg); text-decoration: none; font-family: var(--font-display); font-size: 28px; font-weight: 700; padding: 14px 0; border-bottom: 1px solid var(--border); letter-spacing: -0.02em; }
.mobile-nav .mlinks a.active { color: var(--accent-text); }
.mobile-nav .mfoot { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 19px 24px; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--fg); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; color: var(--accent); font-weight: 400; line-height: 1; flex-shrink: 0; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px 20px; color: var(--fg-soft); font-size: 14.5px; line-height: 1.65; }
