/* ============================================================
   NORTHWORK GARAGE — Brand Stylesheet
   Colors: Forest #2D4A3E | Charcoal #3A3535 | Birch #EEE8DC
   Fonts: Work Sans (display) + Inter (body) via Google Fonts
============================================================ */

:root {
  --forest:       #2D4A3E;
  --forest-dark:  #1e3229;
  --forest-light: #3a5f50;
  --charcoal:     #3A3535;
  --birch:        #EEE8DC;
  --accent:       #D6E4DD;
  --sage:         #E8F0EB;
  --cream:        #F6F2E8;
  --stone:        #C5C0B6;
  --stone-light:  #E0DDD6;

  --font-display: 'Work Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --r:    8px;
  --r-lg: 16px;
  --r-xl: 24px;

  --shadow:    0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);

  --w: 1200px;
  --nav-h: 72px;

  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--birch);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
ul, ol { list-style: none; }

/* ── Skip link ── */
.skip { position: absolute; top: -100%; left: 16px; background: var(--forest); color: #fff;
  padding: 8px 16px; border-radius: var(--r); font-weight: 600; z-index: 9999; transition: top .2s; }
.skip:focus { top: 8px; }

/* ── Container ── */
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ── Typography helpers ── */
.eyebrow {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--forest); margin-bottom: 12px;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(28px,4vw,42px); font-weight: 800;
  color: var(--charcoal); line-height: 1.15; letter-spacing: -.02em;
}
.lead { font-size: 17px; color: #6b6565; line-height: 1.65; max-width: 560px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-family: var(--font-body); font-size: 14px; font-weight: 600; line-height: 1;
  border: 2px solid transparent; transition: all .18s var(--ease); white-space: nowrap; cursor: pointer;
}
.btn svg { width: 16px; height: 16px; }

.btn-primary   { background: var(--forest); color: #fff; }
.btn-primary:hover   { background: var(--forest-dark); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(45,74,62,.35); }

.btn-outline   { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover   { background: var(--forest); color: #fff; transform: translateY(-1px); }

.btn-ghost     { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost:hover     { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }

.btn-white     { background: #fff; color: var(--forest); }
.btn-white:hover     { background: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-lg  { padding: 17px 34px; font-size: 16px; }
.btn-sm  { padding: 9px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ========================================================
   HEADER
======================================================== */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  background: var(--forest);
  transition: box-shadow .3s;
}
#hdr.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.22); }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; color: #fff; }
.logo-mark { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display); font-size: 17px; font-weight: 800;
  letter-spacing: -.01em; line-height: 1.1;
}
.logo-text small { display: block; font-size: 10px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; opacity: .65; }

/* Desktop nav */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,.78); font-size: 13.5px; font-weight: 500;
  padding: 7px 11px; border-radius: 6px; transition: all .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }

.nav-end { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; color: #fff; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile overlay */
.mob-menu {
  display: none; position: fixed; inset: 0;
  background: var(--forest); z-index: 800;
  flex-direction: column; padding: 100px 32px 48px;
  overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  display: block; color: #fff; font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .15s;
}
.mob-menu a:hover { color: var(--accent); }
.mob-cta { margin-top: 32px; }

/* ========================================================
   HERO
======================================================== */
#hero {
  min-height: 100vh;
  background: var(--forest);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&auto=format&fit=crop&q=60') center/cover no-repeat;
  opacity: .12;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px; padding: 5px 14px;
  color: rgba(255,255,255,.88); font-size: 12.5px; font-weight: 500; margin-bottom: 28px;
}
.badge-dot { width: 7px; height: 7px; background: #6ee7b7; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.9)} }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px,5.5vw,66px); font-weight: 800;
  color: #fff; line-height: 1.06; letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero-h1 em { color: var(--accent); font-style: normal; }

.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.65; max-width: 510px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 36px; margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.stat-v { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.stat-l { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 3px; }

/* Hero quick-quote card */
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl); padding: 32px 28px; backdrop-filter: blur(8px);
}
.hero-card-title {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}
.hero-card-sub { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 24px; }
.hc-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.hc-pill {
  padding: 8px 14px; border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 100px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8);
  cursor: pointer; transition: all .15s;
}
.hc-pill:hover, .hc-pill.sel { background: var(--forest-light); border-color: rgba(255,255,255,.5); color: #fff; }
.hc-sep { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.35); margin: 16px 0 12px; }
.hc-price {
  font-family: var(--font-display); font-size: 36px; font-weight: 800; color: #fff;
  margin: 16px 0 8px; transition: all .3s var(--ease);
}
.hc-price-note { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 20px; }

/* ========================================================
   TRUST BAR
======================================================== */
.trust-bar {
  background: #fff; border-bottom: 1px solid var(--stone-light); padding: 18px 0;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--charcoal);
}
.t-icon { color: var(--forest); font-size: 15px; }

/* ========================================================
   CHOOSE PATH
======================================================== */
#path { background: var(--cream); }
.path-header { margin-bottom: 48px; }

.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.path-card {
  background: #fff; border: 2px solid var(--stone-light); border-radius: var(--r-xl);
  padding: 44px 36px; cursor: pointer; transition: all .22s var(--ease);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 16px;
}
.path-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--forest); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.path-card:hover { border-color: var(--forest); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.path-card:hover::after { transform: scaleX(1); }

.path-icon {
  width: 56px; height: 56px; background: var(--sage); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.path-tag {
  display: inline-block; background: var(--forest); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; width: fit-content;
}
.path-h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--charcoal); }
.path-p { font-size: 14px; color: #777; line-height: 1.6; }
.path-link { color: var(--forest); font-size: 13.5px; font-weight: 600;
  display: flex; align-items: center; gap: 6px; margin-top: auto; }

/* ========================================================
   PACKAGES
======================================================== */
#packages { background: var(--birch); }
.pkg-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; gap: 20px; flex-wrap: wrap;
}
.pkg-tabs {
  display: flex; gap: 4px; background: var(--sage);
  border-radius: 10px; padding: 4px;
}
.pkg-tab {
  padding: 8px 22px; border-radius: 7px;
  font-size: 13.5px; font-weight: 600; color: var(--charcoal);
  cursor: pointer; transition: all .18s; border: none;
  background: none; font-family: var(--font-body);
}
.pkg-tab.on { background: #fff; color: var(--forest); box-shadow: 0 1px 4px rgba(0,0,0,.10); }

.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.pkg-panel { display: none; }
.pkg-panel.on { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.pkg-card {
  background: #fff; border: 2px solid var(--stone-light); border-radius: var(--r-xl);
  padding: 30px 26px; transition: all .22s var(--ease);
  display: flex; flex-direction: column; position: relative;
}
.pkg-card.featured { border-color: var(--forest); }
.pkg-card:hover { border-color: var(--forest); box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--forest); color: #fff; font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.pkg-name { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--charcoal); margin-bottom: 2px; }
.pkg-size { font-size: 11px; font-weight: 700; color: var(--forest); text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 18px; }
.pkg-price {
  font-family: var(--font-display); font-size: 38px; font-weight: 800;
  color: var(--charcoal); line-height: 1; margin-bottom: 22px;
}
.pkg-price sup { font-size: 20px; font-weight: 600; vertical-align: super; }

.pkg-features { flex: 1; margin-bottom: 24px; display: flex; flex-direction: column; gap: 0; }
.pkg-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--charcoal);
  padding: 8px 0; border-bottom: 1px solid var(--stone-light);
}
.pkg-feat:last-child { border-bottom: none; }
.feat-check {
  width: 18px; height: 18px; background: var(--sage); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; font-size: 10px; color: var(--forest);
}

.pkg-note {
  font-size: 11.5px; color: #999; margin-bottom: 16px; padding: 10px 12px;
  background: var(--cream); border-radius: var(--r); border-left: 3px solid var(--accent);
}

/* ========================================================
   BUILD YOUR OWN CONFIGURATOR
======================================================== */
#build { background: var(--cream); }
.build-header { margin-bottom: 48px; }

.cfg-wrap {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 28px; align-items: start;
}

/* Steps */
.cfg-steps { display: flex; flex-direction: column; gap: 12px; }

.cfg-step {
  background: #fff; border: 2px solid var(--stone-light); border-radius: var(--r-lg);
  overflow: hidden; transition: border-color .2s;
}
.cfg-step.active  { border-color: var(--forest); }
.cfg-step.done    { border-color: var(--accent); }

.step-hdr {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; cursor: pointer; user-select: none;
}
.step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--sage); color: var(--forest);
  font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .2s;
}
.cfg-step.active .step-num, .cfg-step.done .step-num { background: var(--forest); color: #fff; }
.step-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--charcoal); }
.step-sel { font-size: 12.5px; color: #999; margin-left: auto; }
.step-chev { color: #bbb; font-size: 14px; transition: transform .2s; flex-shrink: 0; }
.cfg-step.active .step-chev { transform: rotate(180deg); }

.step-body { display: none; padding: 0 22px 22px; }
.cfg-step.active .step-body { display: block; }

/* Option cards */
.opt-grid { display: grid; gap: 10px; }
.og-2 { grid-template-columns: 1fr 1fr; }
.og-3 { grid-template-columns: repeat(3,1fr); }

.opt-card {
  border: 2px solid var(--stone-light); border-radius: var(--r);
  padding: 16px 14px; cursor: pointer;
  transition: all .15s; position: relative;
}
.opt-card:hover { border-color: var(--forest); background: var(--sage); }
.opt-card.sel  { border-color: var(--forest); background: var(--sage); }
.opt-card.sel::after {
  content: '✓';
  position: absolute; top: 9px; right: 10px;
  width: 20px; height: 20px;
  background: var(--forest); color: #fff;
  border-radius: 50%; font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  line-height: 20px; text-align: center;
}
.opt-label { font-weight: 700; font-size: 14px; color: var(--charcoal); margin-bottom: 3px; }
.opt-desc  { font-size: 12px; color: #888; line-height: 1.45; }
.opt-price { font-family: var(--font-display); font-size: 14.5px; font-weight: 800; color: var(--forest); margin-top: 8px; }

/* Shelving qty */
.shelf-list { display: flex; flex-direction: column; gap: 10px; }
.shelf-row {
  display: flex; align-items: center;
  padding: 13px 16px; background: #fff;
  border: 2px solid var(--stone-light); border-radius: var(--r);
  transition: border-color .15s; gap: 12px;
}
.shelf-row.has-qty { border-color: var(--accent); }
.shelf-info { flex: 1; }
.shelf-n { font-weight: 700; font-size: 14px; color: var(--charcoal); }
.shelf-d { font-size: 11.5px; color: #999; }
.shelf-p { font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--forest); white-space: nowrap; }
.qty-ctrl {
  display: flex; align-items: center;
  border: 2px solid var(--stone-light); border-radius: var(--r); overflow: hidden;
}
.qty-btn {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; color: var(--charcoal); background: var(--birch);
  cursor: pointer; transition: all .15s; border: none; font-family: var(--font-body);
}
.qty-btn:hover { background: var(--forest); color: #fff; }
.qty-val {
  width: 38px; text-align: center; font-weight: 700;
  font-size: 14px; color: var(--charcoal); background: #fff;
  padding: 6px 0; line-height: 34px;
}

/* Add-ons */
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.addon-card {
  border: 2px solid var(--stone-light); border-radius: var(--r);
  padding: 13px 14px; cursor: pointer; transition: all .15s;
  display: flex; align-items: flex-start; gap: 11px;
}
.addon-card:hover, .addon-card.sel { border-color: var(--forest); background: var(--sage); }
.addon-cb {
  width: 18px; height: 18px; border: 2px solid var(--stone);
  border-radius: 4px; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; font-size: 10px;
}
.addon-card.sel .addon-cb { background: var(--forest); border-color: var(--forest); color: #fff; }
.addon-n { font-size: 13.5px; font-weight: 600; color: var(--charcoal); }
.addon-tag { font-size: 11px; color: #999; margin-top: 2px; }

/* Contact form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ff { display: flex; flex-direction: column; gap: 5px; }
.ff.full { grid-column: 1/-1; }
.ff label { font-size: 12.5px; font-weight: 600; color: var(--charcoal); }
.ff input, .ff select, .ff textarea {
  padding: 11px 13px; border: 2px solid var(--stone-light);
  border-radius: var(--r); font-family: var(--font-body); font-size: 14px;
  color: var(--charcoal); background: #fff; outline: none; transition: border-color .15s;
}
.ff input:focus, .ff select:focus, .ff textarea:focus { border-color: var(--forest); }
.ff textarea { resize: vertical; min-height: 80px; }

.step-nav { display: flex; gap: 10px; margin-top: 20px; justify-content: flex-end; }

/* ── Quote panel ── */
.quote-panel {
  position: sticky; top: calc(var(--nav-h) + 16px);
  background: #fff; border: 2px solid var(--stone-light);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
}
.qp-head { background: var(--forest); color: #fff; padding: 20px 22px; }
.qp-title { font-family: var(--font-display); font-size: 15px; font-weight: 800; margin-bottom: 2px; }
.qp-sub { font-size: 11.5px; opacity: .65; }
.qp-lines { padding: 18px 22px; min-height: 110px; }
.qp-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 7px 0; border-bottom: 1px solid var(--stone-light); font-size: 13px; gap: 10px;
}
.qp-row:last-child { border-bottom: none; }
.qp-row-label { color: #666; flex: 1; }
.qp-row-val { font-weight: 700; color: var(--charcoal); white-space: nowrap; }
.qp-empty { text-align: center; color: #bbb; font-size: 13px; padding: 16px 0; }

.qp-total {
  padding: 18px 22px; background: var(--sage);
  border-top: 2px solid var(--stone-light);
  display: flex; justify-content: space-between; align-items: center;
}
.qp-total-label { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--charcoal); }
.qp-total-val {
  font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--forest);
  transition: all .3s var(--ease);
}
@keyframes priceUp { from{transform:translateY(6px);opacity:0} to{transform:translateY(0);opacity:1} }
.price-anim { animation: priceUp .25s var(--ease); }

.qp-foot { padding: 16px 22px; }
.qp-foot .btn { margin-bottom: 10px; }
.qp-disc { font-size: 11px; color: #bbb; text-align: center; line-height: 1.55; }

.qp-addons { padding: 10px 22px; background: #fffdf5; border-top: 1px solid var(--stone-light); }
.qp-addons-label { font-size: 11.5px; color: #888; }
.qp-addon-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.qp-tag {
  background: var(--sage); color: var(--forest); font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 100px;
}

/* ── Success state ── */
.success-wrap {
  display: none; text-align: center; padding: 56px 32px;
}
.success-wrap.show { display: block; }
.s-icon {
  width: 72px; height: 72px; background: var(--sage); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 20px; color: var(--forest);
}
.s-h2 { font-family: var(--font-display); font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.s-next { margin-top: 28px; text-align: left; border: 1px solid var(--stone-light);
  border-radius: var(--r-lg); padding: 20px 24px; background: var(--cream); }
.s-next-title { font-weight: 700; font-size: 13px; margin-bottom: 12px; color: var(--charcoal); }
.s-steps { display: flex; flex-direction: column; gap: 10px; }
.s-step { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #555; }
.s-dot { width: 22px; height: 22px; background: var(--forest); color: #fff; border-radius: 50%;
  font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; }

/* Mobile quote bar — shown via JS when total > 0, only on mobile */
.mob-quote {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--forest); color: #fff; padding: 12px 20px;
  z-index: 600; align-items: center; justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
@media (min-width: 769px) {
  .mob-quote { display: none !important; }
}
.mq-left { }
.mq-total { font-family: var(--font-display); font-weight: 900; font-size: 22px; }
.mq-label { font-size: 11px; opacity: .65; }

/* ========================================================
   HOW IT WORKS
======================================================== */
#how { background: var(--forest); }
#how .eyebrow { color: var(--accent); }
#how .h2, #how .lead { color: rgba(255,255,255,.9); }
#how .lead { color: rgba(255,255,255,.6); }
.how-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.how-grid::before {
  content: ''; position: absolute; top: 27px; left: 12%; right: 12%;
  height: 1px; background: rgba(255,255,255,.14); z-index: 0;
}
.how-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.how-num {
  width: 56px; height: 56px; margin: 0 auto 18px;
  background: rgba(255,255,255,.09); border: 2px solid rgba(255,255,255,.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 17px; color: #fff;
}
.how-title { font-family: var(--font-display); font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.how-desc { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.55; }

/* ========================================================
   BEFORE / AFTER GALLERY
======================================================== */
#gallery { background: var(--birch); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px;
}
.gallery-card {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-md); background: #fff;
  cursor: pointer; transition: box-shadow .2s, transform .2s;
}
.gallery-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.ba-container {
  position: relative; height: 240px; overflow: hidden; cursor: ew-resize; user-select: none;
}
.ba-before, .ba-after {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.ba-after { clip-path: inset(0 50% 0 0); transition: clip-path 0s; }
.ba-handle {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 3px; height: 100%; background: rgba(255,255,255,.9); z-index: 10; pointer-events: none;
}
.ba-handle::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 36px; height: 36px;
  background: #fff; border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 1L1 5l4 4M13 1l4 4-4 4' stroke='%232D4A3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 18px;
}
.ba-labels {
  position: absolute; top: 10px; left: 0; right: 0;
  display: flex; justify-content: space-between; padding: 0 10px; pointer-events: none; z-index: 11;
}
.ba-tag {
  background: rgba(0,0,0,.55); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}
.gallery-info { padding: 14px 16px; }
.gal-suburb { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--forest); margin-bottom: 3px; }
.gal-pkg { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.gal-price { font-size: 12.5px; color: #888; margin-top: 1px; }

/* ========================================================
   TESTIMONIALS
======================================================== */
#reviews { background: var(--cream); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px;
}
.rev-card {
  background: #fff; border: 1px solid var(--stone-light);
  border-radius: var(--r-xl); padding: 26px 24px;
}
.stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.rev-text { font-size: 14.5px; color: var(--charcoal); line-height: 1.68; margin-bottom: 18px; font-style: italic; }
.rev-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--stone-light);
}
.rev-av {
  width: 42px; height: 42px; border-radius: 50%; background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--forest);
  flex-shrink: 0;
}
.rev-name { font-weight: 700; font-size: 13.5px; color: var(--charcoal); }
.rev-meta { font-size: 12px; color: #999; }
.rev-g { margin-left: auto; font-size: 11px; color: #bbb; font-weight: 600;
  display: flex; align-items: center; gap: 4px; }

/* ========================================================
   SERVICE AREA
======================================================== */
#area { background: var(--birch); }
.suburb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 48px;
}
.suburb-chip {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--stone-light);
  border-radius: var(--r); padding: 13px 16px;
  font-size: 14px; font-weight: 600; color: var(--charcoal);
  transition: all .15s;
}
.suburb-chip:hover { border-color: var(--forest); box-shadow: var(--shadow); }
.suburb-chip--ask {
  background: var(--sage); border-style: dashed;
  font-weight: 400; color: #888;
}
.sub-dot {
  width: 8px; height: 8px; background: var(--forest); border-radius: 50%; flex-shrink: 0;
}
.sub-dot--dim { background: var(--stone); }
.area-note {
  font-size: 14px; color: #777; line-height: 1.7;
  margin-top: 28px; padding: 20px 24px;
  background: #fff; border-radius: var(--r);
  border-left: 3px solid var(--forest);
}
/* Gallery note */
.gallery-note {
  font-size: 13.5px; color: #888; margin: 16px 0 32px;
  display: flex; align-items: center; gap: 6px;
}
.gallery-note::before { content: '↔'; font-size: 16px; color: var(--forest); }

/* ========================================================
   FAQ
======================================================== */
#faq { background: var(--cream); }
.faq-wrap { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  border: 1px solid var(--stone-light); border-radius: var(--r);
  margin-bottom: 8px; overflow: hidden; background: #fff;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--forest); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 14.5px;
  color: var(--charcoal); user-select: none; gap: 14px;
}
.faq-chev { color: var(--forest); font-size: 16px; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a {
  display: none; padding: 0 22px 18px;
  font-size: 14px; color: #555; line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ========================================================
   CTA BANNER
======================================================== */
.cta-section { background: var(--forest); padding: 96px 0; text-align: center; }
.cta-section .h2 { color: #fff; max-width: 600px; margin: 0 auto 14px; }
.cta-section .lead { color: rgba(255,255,255,.65); margin: 0 auto 40px; text-align: center; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========================================================
   FOOTER
======================================================== */
#contact { background: var(--charcoal); color: #fff; padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.foot-brand-desc {
  font-size: 13.5px; color: rgba(255,255,255,.48); line-height: 1.75;
  margin: 14px 0 20px; max-width: 260px;
}
.foot-socials { display: flex; gap: 10px; }
.foot-social {
  width: 34px; height: 34px; background: rgba(255,255,255,.08);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 14px; transition: all .2s;
}
.foot-social:hover { background: var(--forest); color: #fff; }
.foot-h { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 14px; }
.foot-links { display: flex; flex-direction: column; gap: 8px; }
.foot-links a { font-size: 13.5px; color: rgba(255,255,255,.6); transition: color .15s; }
.foot-links a:hover { color: #fff; }
.foot-bot {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 10px;
}
.foot-tagline { font-style: italic; }

/* ========================================================
   RESPONSIVE
======================================================== */
@media (max-width: 1024px) {
  .cfg-wrap { grid-template-columns: 1fr; }
  .quote-panel { position: static; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .pkg-panel.on { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .how-grid { grid-template-columns: repeat(3,1fr); }
  .how-grid::before { display: none; }
  .suburb-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-end { display: none; }
  .hamburger { display: flex; }
  .path-grid { grid-template-columns: 1fr; }
  .pkg-panel.on { grid-template-columns: 1fr; }
  .og-3, .og-2 { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-items { gap: 20px; justify-content: flex-start; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .suburb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 34px; }
  .hero-actions { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-stats { gap: 16px; }
  .how-grid { grid-template-columns: 1fr; }
  .suburb-grid { grid-template-columns: 1fr 1fr; }
}
