/* =========================================================
   Bellwoods Removals & Storage — Furniture Storage site
   Palette derived from the brand: pillar-box red (van),
   door-yellow (storage facility), charcoal ink, clean white.
   ========================================================= */

:root {
  --red:        #d6232e;   /* Bellwoods brand red */
  --red-dark:   #a8141d;
  --yellow:     #f6b40e;   /* storage door yellow */
  --ink:        #1c2128;   /* primary text */
  --ink-soft:   #4b5563;   /* secondary text */
  --line:       #e6e8ec;   /* hairlines / borders */
  --paper:      #ffffff;
  --paper-soft: #f6f7f9;   /* section tint */
  --paper-warm: #fdf8ec;   /* warm tint behind route */
  --green:      #1a9e57;   /* checklist ticks */
  --shadow:     0 10px 30px rgba(28, 33, 40, 0.08);
  --shadow-sm:  0 4px 14px rgba(28, 33, 40, 0.07);
  --radius:     16px;
  --radius-sm:  10px;
  --maxw:       1120px;
  --font-body:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-disp:  "Bricolage Grotesque", var(--font-body);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-disp);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { margin: 0 0 1rem; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
section[id] { scroll-margin-top: 84px; }
.section--soft { background: var(--paper-soft); }
.section--ink { background: var(--ink); color: #e9ebef; }
.section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 .8rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--red-dark); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--big { padding: 17px 34px; font-size: 1.06rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 12px 22px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--red); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-disp); font-weight: 800; font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.brand-name { font-family: var(--font-disp); font-weight: 800; font-size: 1.18rem; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.brand-sub { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: var(--ink); font-weight: 600; font-size: .96rem;
  padding: 9px 13px; border-radius: 8px;
}
.nav a:hover { background: var(--paper-soft); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--red); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.phone-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 800; color: var(--ink); font-size: 1rem; white-space: nowrap;
}
.phone-link:hover { color: var(--red); text-decoration: none; }
.phone-link svg { color: var(--red); }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle svg { width: 26px; height: 26px; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, #fff 0%, var(--paper-soft) 100%); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding: 64px 0 56px;
}
.hero h1 { margin-bottom: .35em; }
.hero .lead { margin-bottom: 1.6rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.5rem; }
.hero-assure { display: flex; flex-wrap: wrap; gap: 16px 22px; font-size: .92rem; color: var(--ink-soft); font-weight: 600; }
.hero-assure span { display: inline-flex; align-items: center; gap: 7px; }
.hero-assure svg { color: var(--green); flex: none; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute; left: -14px; bottom: -14px;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  padding: 12px 16px; display: flex; align-items: center; gap: 11px;
}
.hero-badge .price { font-family: var(--font-disp); font-weight: 800; font-size: 1.5rem; color: var(--red); line-height: 1; }
.hero-badge .price small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .72rem; color: var(--ink-soft); letter-spacing: .02em; }
.hero-badge .coffee { font-size: 1.6rem; }

/* ---------- Route signature: We Collect / Store / Deliver ---------- */
.route { background: var(--paper-warm); }
.route-head { text-align: center; max-width: 60ch; margin: 0 auto 44px; }
.route-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  position: relative; counter-reset: step;
}
.route-line {
  position: absolute; top: 46px; left: 16%; right: 16%; height: 3px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 16px, transparent 16px 28px);
  z-index: 0;
}
.route-step { position: relative; z-index: 1; text-align: center; padding: 0 18px; }
.route-dot {
  width: 92px; height: 92px; margin: 0 auto 18px; border-radius: 50%;
  background: #fff; border: 3px solid var(--red);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  position: relative;
}
.route-dot svg { width: 40px; height: 40px; color: var(--red); }
.route-dot::after {
  counter-increment: step; content: counter(step);
  position: absolute; top: -8px; right: -8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-family: var(--font-disp); font-weight: 800; font-size: .95rem;
  display: grid; place-items: center;
}
.route-step h3 { margin-bottom: .25em; }
.route-step h3 span { color: var(--red); }
.route-step p { color: var(--ink-soft); font-size: .98rem; margin: 0; }

/* ---------- Generic two-column ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split--media-first .split-media { order: -1; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

/* highlight callout */
.callout {
  border-left: 4px solid var(--yellow);
  background: var(--paper-warm);
  padding: 18px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 22px 0;
}
.callout strong { color: var(--ink); }

/* ---------- Feature / security grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.card .ico {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 14px;
  background: #fde9ea; color: var(--red); display: grid; place-items: center;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.18rem; }
.card p { color: var(--ink-soft); font-size: .97rem; margin: 0; }

/* checklist */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.checklist li { display: grid; grid-template-columns: 26px 1fr; gap: 11px; align-items: start; }
.checklist svg { color: var(--green); margin-top: 3px; }
.checklist b { color: var(--ink); }

/* ---------- House sizes ---------- */
.sizes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.size-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
}
.size-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.size-card img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
.size-card .body { padding: 16px 18px; }
.size-card h3 { font-size: 1.1rem; margin-bottom: .15em; }
.size-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
table.compare th, table.compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .97rem; vertical-align: top; }
table.compare thead th { font-family: var(--font-disp); font-size: 1rem; background: var(--paper-soft); }
table.compare thead th.bell { background: var(--red); color: #fff; }
table.compare tbody th { font-weight: 700; color: var(--ink); width: 30%; }
table.compare td.yes { color: var(--green); font-weight: 700; }
table.compare td.no  { color: var(--ink-soft); }
table.compare .bellcol { background: #fff7f7; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 20px; margin-bottom: 12px; background: #fff;
}
.faq details[open] { border-color: var(--red); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-family: var(--font-disp); font-weight: 700; font-size: 1.1rem;
  padding: 14px 0; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 1.6rem; line-height: 1; font-family: var(--font-body); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); margin: 0 0 16px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffe3e5; max-width: 56ch; margin: 0 auto 1.6rem; font-size: 1.12rem; }
.cta-band .btn--light { color: var(--red); }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .phone-big { color: #fff; font-family: var(--font-disp); font-weight: 800; font-size: 1.5rem; }
.cta-band .phone-big:hover { color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.contact-line { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; }
.contact-line .ico { width: 42px; height: 42px; flex: none; border-radius: 11px; background: #fde9ea; color: var(--red); display: grid; place-items: center; }
.contact-line h3 { font-size: 1.05rem; margin: 0 0 2px; }
.contact-line p, .contact-line a { margin: 0; color: var(--ink-soft); }
.chat-placeholder {
  border: 2px dashed var(--line); border-radius: var(--radius);
  background: var(--paper-soft); padding: 40px 28px; text-align: center; min-height: 360px;
  display: grid; place-content: center; gap: 10px;
}
.chat-placeholder .bubble { width: 60px; height: 60px; margin: 0 auto; border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--red); }
.chat-placeholder code { background: #fff; padding: 3px 8px; border-radius: 6px; border: 1px solid var(--line); font-size: .85rem; color: var(--ink-soft); }

/* ---------- Areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.areas span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; font-size: .9rem; font-weight: 600; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #aeb4bd; padding: 56px 0 28px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer a { color: #aeb4bd; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: #8b929c; }
.footer-brand p { color: #8b929c; max-width: 38ch; margin: 14px 0 0; font-size: .92rem; }
.footer-bottom { border-top: 1px solid #2c333d; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #8b929c; font-size: .85rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 9px; background: #2c333d; color: #fff; }
.footer-social a:hover { background: var(--red); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--paper-soft); border-bottom: 1px solid var(--line); padding: 52px 0; }
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 12px; }
.breadcrumb a { color: var(--ink-soft); font-weight: 600; }
.page-hero h1 { margin-bottom: .3em; }
.page-hero .lead { margin: 0; }

/* utility */
.center { text-align: center; }
.mb0 { margin-bottom: 0; }
.section-head { max-width: 62ch; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; padding: 44px 0; }
  .hero-media { order: -1; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split--media-first .split-media { order: 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .sizes { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav, .header-cta .phone-link span { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 66px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 16px; gap: 2px; box-shadow: var(--shadow);
  }
  .nav.open a { padding: 12px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .route-track { grid-template-columns: 1fr; gap: 30px; }
  .route-line { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .sizes { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { position: static; margin-top: 16px; display: inline-flex; }
}