﻿:root {
  --paper: #ececea;
  --paper-deep: #dedcd6;
  --ink: #0a0a0a;
  --ink-soft: #1f1f1f;
  --muted: #6e6e6e;
  --orange: #ff6a00;
  --orange-deep: #d95800;
  --steel: #2a2a2a;
  --line: #c8c5bd;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
  background: var(--paper);
}
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100%;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a, button, .size-card, .use-card, .faq-item summary { touch-action: manipulation; }

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
#nav.scrolled {
  background: rgba(236, 236, 234, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.logo {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
  transition: color 0.3s;
}
#nav.scrolled .logo { color: var(--ink); }
.logo span { color: var(--orange); }
.nav-phone { display: flex; align-items: center; gap: 12px; }
.nav-phone-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: color 0.3s;
}
#nav.scrolled .nav-phone-label { color: var(--muted); }
.nav-cta {
  background: var(--orange);
  color: white;
  padding: 10px 18px;
  border-radius: 2px;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-deep); }

/* ===== HERO (FULL BLEED BG â€” image runs behind fixed nav) ===== */
.hero {
  position: relative;
  min-height: 72vh;
  min-height: 72svh;
  padding: 120px 24px 60px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/warehouse-empty.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.78) 0%, rgba(15,15,17,0.62) 42%, rgba(10,10,10,0.88) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.04) 0, rgba(0,0,0,0.04) 1px, transparent 1px, transparent 3px);
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.kicker {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--orange);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.kicker::before, .kicker::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
}
.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.8rem, 9.5vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 1100px;
  color: white;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  max-width: 680px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 40px;
  line-height: 1.5;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  padding: 18px 28px;
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.btn-call { background: var(--orange); box-shadow: 4px 4px 0 var(--ink); }
.btn-call:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); background: var(--orange-deep); }
.btn-quote {
  background: rgba(255,255,255,0.1);
  border: 2px solid white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 26px;
}
.btn-quote:hover { background: white; color: var(--ink); }
.btn .arrow { font-size: 1.1rem; }

.hero-address-tag {
  position: absolute;
  bottom: 32px;
  left: 24px;
  z-index: 5;
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-address-tag .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--ink);
  color: white;
  padding: 0;
  border-bottom: 3px solid var(--orange);
}
.stats {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}
.stat { padding: 32px 24px; border-right: 1px solid #2a2a2a; }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Anton', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.stat-num .unit { font-size: 1.4rem; color: var(--orange); margin-left: 2px; }
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #999;
  font-weight: 700;
}

/* ===== SECTIONS ===== */
section { padding: 96px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--orange);
  font-size: 0.8rem;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--orange); }
.section-h {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}

/* ===== PROBLEM ===== */
.problem { background: var(--ink); color: var(--paper); }
.problem .eyebrow { color: var(--orange); }
.problem .eyebrow::before { background: var(--orange); }
.problem .section-h { color: var(--paper); }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 56px; }
.problem-card { border-left: 3px solid var(--orange); padding: 8px 24px; }
.problem-card h3 { font-family: 'Anton', sans-serif; font-size: 1.7rem; letter-spacing: 0.02em; margin-bottom: 12px; text-transform: uppercase; }
.problem-card p { color: #b8b6b0; line-height: 1.6; font-size: 1.02rem; }
.solution-line {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-top: 64px;
  max-width: 900px;
  line-height: 1.05;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.solution-line strong { font-weight: normal; background: var(--orange); padding: 0 8px; color: var(--ink); }

/* ===== SIZE PICKER ===== */
.sizes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0; margin-top: 56px; border: 3px solid var(--ink); }
.size-card {
  padding: 32px 28px;
  border-right: 1px solid var(--ink);
  background: var(--paper);
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.size-card:last-child { border-right: none; }
.size-card:hover { background: var(--ink); color: var(--paper); }
.size-card:hover .size-card-cta { color: var(--orange); }
.size-card:hover .size-card-unit { color: var(--orange); }
.size-card-num { font-family: 'Anton', sans-serif; font-size: 3rem; line-height: 1; margin-bottom: 4px; }
.size-card-num .unit { font-size: 1.4rem; }
.size-card-unit { font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--orange); margin-bottom: 24px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; }
.size-card-eg { font-size: 0.95rem; margin-bottom: 24px; line-height: 1.5; min-height: 60px; opacity: 0.85; }
.size-card-cta { color: var(--orange); font-family: 'Anton', sans-serif; letter-spacing: 0.04em; font-size: 1rem; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.size-card:hover .size-card-cta { gap: 14px; }

/* ===== USE CASES ===== */
.use-cases { background: var(--paper-deep); }
.use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--ink); margin-top: 56px; border: 3px solid var(--ink); }
.use-card { background: var(--paper); padding: 32px 28px; transition: background 0.2s; }
.use-card:hover { background: var(--paper-deep); }
.use-icon { font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--orange); margin-bottom: 12px; display: block; letter-spacing: 0.02em; }
.use-card h3 { font-family: 'Anton', sans-serif; font-size: 1.4rem; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 10px; }
.use-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 1100px) { .use-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .use-grid { grid-template-columns: 1fr; } }

/* ===== THE SPACE ===== */
.spec-banner {
  position: relative;
  margin-top: 56px;
  aspect-ratio: 16/9;
  max-height: 600px;
  border: 3px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 12px 32px -16px rgba(10,10,10,0.35);
}
.spec-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  filter: contrast(1.08) saturate(0.88) brightness(0.95);
}
.spec-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.18) 0%, transparent 22%, transparent 68%, rgba(10,10,10,0.55) 100%),
    radial-gradient(ellipse at center, transparent 50%, rgba(10,10,10,0.28) 100%);
  pointer-events: none;
}
.spec-banner-caption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  z-index: 2;
  color: white;
  font-family: 'Anton', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0,0,0,0.65);
}
.spec-banner-caption .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
.spec-list-wrap { margin-top: 56px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 56px; }
.spec-list { list-style: none; }
.spec-item { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); align-items: start; }
.spec-item:first-child { padding-top: 0; }
.spec-item:last-child { border-bottom: none; }
.spec-num { font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--orange); letter-spacing: 0.01em; line-height: 1; }
.spec-num .small { font-size: 1rem; color: var(--ink); }
.spec-content h4 { font-family: 'Anton', sans-serif; font-size: 1.3rem; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.02em; }
.spec-content p { color: var(--muted); font-size: 0.98rem; line-height: 1.55; }
.clearance-zones { display: flex; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.zone { background: var(--paper-deep); padding: 8px 14px; border-left: 3px solid var(--orange); font-size: 0.9rem; }
.zone strong { font-family: 'Anton', sans-serif; font-size: 1.2rem; color: var(--orange); margin-right: 6px; }

/* ===== LOCATION ===== */
.location { background: var(--ink); color: var(--paper); }
.location .section-h { color: var(--paper); }
.drive-times-block { margin-top: 56px; max-width: 1100px; padding-right: 8px; }
.drive-times-block h3 { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: 1.4rem; margin-bottom: 24px; color: var(--orange); letter-spacing: 0.04em; }
.drive-item { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 16px 18px 0; border-bottom: 1px solid #2a2722; gap: 16px; }
.drive-place { font-family: 'Manrope', sans-serif; font-size: 1.05rem; font-weight: 600; }
.drive-time { font-family: 'Anton', sans-serif; color: var(--orange); font-size: 1.5rem; letter-spacing: 0.02em; white-space: nowrap; }
.address-block { margin-top: 32px; padding: 24px; background: #1a1a1a; border-left: 4px solid var(--orange); }
.address-block .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--orange); margin-bottom: 8px; font-weight: 800; }
.address-block .addr { font-family: 'Anton', sans-serif; font-size: 1.6rem; line-height: 1.15; text-transform: uppercase; letter-spacing: 0.01em; }

/* ===== FAQ ===== */
.faq-list { margin-top: 56px; max-width: 920px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { padding: 26px 0; cursor: pointer; font-family: 'Anton', sans-serif; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.02em; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px; transition: color 0.2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange); }
.faq-item summary::after { content: '+'; font-size: 2rem; color: var(--orange); font-family: 'Manrope', sans-serif; font-weight: 300; transition: transform 0.3s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 24px; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; max-width: 760px; }

/* ===== CALL BANNER ===== */
.call-banner { background: var(--orange); color: var(--ink); padding: 64px 0; text-align: center; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.call-banner-eyebrow { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 16px; }
.call-banner h2 { font-family: 'Anton', sans-serif; font-size: clamp(2.4rem, 7vw, 5rem); line-height: 0.95; text-transform: uppercase; margin-bottom: 20px; }
.call-banner a.phone-big { font-family: 'Anton', sans-serif; font-size: clamp(2rem, 6vw, 4rem); color: var(--ink); text-decoration: none; letter-spacing: 0.02em; display: inline-block; border-bottom: 4px solid var(--ink); padding-bottom: 4px; }
.call-banner a.phone-big:hover { color: white; border-color: white; }
.call-banner p { font-size: 1.1rem; margin-top: 16px; font-weight: 600; }

/* ===== FORM ===== */
.form-section { background: var(--ink); color: white; }
.form-section .eyebrow { color: var(--orange); }
.form-section .eyebrow::before { background: var(--orange); }
.form-section .section-h { color: white; }
.form-intro { font-size: 1.15rem; max-width: 680px; margin-bottom: 48px; line-height: 1.55; color: #c8c5bd; }
.form-intro strong { color: white; font-weight: 600; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1200px; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; font-weight: 700; color: var(--orange); }
.field input, .field select, .field textarea {
  padding: 14px 16px;
  border: 2px solid #3a3a3a;
  background-color: #1a1a1a;
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  border-radius: 2px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 100%;
  min-height: 50px;
}
.field input::placeholder, .field textarea::placeholder { color: #6e6e6e; opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23ff6a00' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 40px;
  cursor: pointer;
}
.field select option { background: var(--ink); color: white; }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.submit-btn { grid-column: 1 / -1; background: var(--orange); color: var(--ink); padding: 22px 40px; font-family: 'Anton', sans-serif; font-size: 1.3rem; letter-spacing: 0.06em; text-transform: uppercase; border: none; cursor: pointer; margin-top: 16px; justify-self: start; transition: transform 0.15s, background 0.2s; }
.submit-btn:hover { transform: translateY(-2px); background: var(--orange-deep); color: white; }
.submit-btn:disabled { opacity: 0.6; cursor: wait; transform: none; }

/* Honeypot â€” invisible to humans, irresistible to bots */
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }

/* Inline submission status */
.quote-status { grid-column: 1 / -1; margin-top: 24px; padding: 18px 22px; border-left: 3px solid var(--orange); background: rgba(255,106,0,0.10); color: white; font-size: 0.98rem; line-height: 1.55; }
.quote-status.is-error { border-left-color: #ff5a5a; background: rgba(255,90,90,0.10); }
.quote-status[hidden] { display: none !important; }

/* ===== FOOTER ===== */
footer { background: var(--ink); color: var(--paper); padding: 56px 0 32px; border-top: 1px solid #2a2722; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; padding: 0 24px; }
.footer-col h4 { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: 1rem; letter-spacing: 0.06em; margin-bottom: 16px; color: var(--orange); }
.footer-col p, .footer-col a { color: #b8b6b0; font-size: 0.95rem; line-height: 1.7; text-decoration: none; display: block; }
.footer-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 20px;
  background: var(--orange);
  color: var(--ink);
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.footer-cta:hover { background: var(--orange-deep); color: white; transform: translateY(-1px); }
footer .logo a { color: var(--paper); }
footer .logo a span { color: var(--orange); }
.footer-bottom { max-width: 1280px; margin: 48px auto 0; padding: 24px 24px 0; border-top: 1px solid #2a2722; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; color: var(--muted); }
.footer-links {
  max-width: 1280px;
  margin: 20px auto 0;
  padding: 0 24px 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}
.footer-links a {
  font-size: 0.8rem;
  color: #888;
  text-decoration: none;
  font-weight: 600;
}
.footer-links a:hover { color: var(--orange); }

/* ===== CENTERED SECTIONS (balance constrained content within wide container) ===== */
.location .container,
.form-section .container,
.faq-section .container { display: flex; flex-direction: column; align-items: center; text-align: center; }
.location .eyebrow,
.form-section .eyebrow,
.faq-section .eyebrow { align-items: center; }
.location .section-h,
.form-section .section-h,
.faq-section .section-h { text-align: center; max-width: 1000px; }
.location .drive-times-block { margin-left: auto; margin-right: auto; text-align: left; width: 100%; }
.form-section .form-intro { margin-left: auto; margin-right: auto; text-align: center; max-width: 720px; }
.form-section .quote-form { margin-left: auto; margin-right: auto; width: 100%; }
.form-section .submit-btn { justify-self: center; }
.faq-section .faq-list { margin-left: auto; margin-right: auto; text-align: left; width: 100%; }

/* ===== CONTACT PAGE ===== */
body.contact-page { background: var(--ink); }
.contact-page-main { padding-top: 120px; min-height: 100vh; min-height: 100svh; }
.contact-page .contact-details { margin-bottom: 0; }
.contact-page .contact-quote-divider { margin-top: 64px; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 22px; }
  .hero { padding: 100px 22px 80px; min-height: 65vh; min-height: 65svh; }
  .nav-inner { padding: 12px 22px; }
  .nav-phone-label { display: none; }
  .spec-list-wrap { grid-template-columns: 1fr; gap: 0; }
  .quote-form { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid #2a2a2a; padding: 22px 18px; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:last-child, .stat:nth-last-child(2) { border-bottom: none; }
  .stat-num { font-size: 2.1rem; }
  .size-card { border-right: none; border-bottom: 1px solid var(--ink); }
  .size-card:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn { padding: 16px 22px; font-size: 1.05rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-address-tag { bottom: 20px; left: 22px; font-size: 0.85rem; padding: 8px 12px; }
  .spec-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .drive-item { padding-right: 4px; }
  .drive-time { font-size: 1.35rem; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp 0.7s ease-out backwards; }
.hero-content .kicker { animation-delay: 0.1s; }
.hero-content h1 { animation-delay: 0.2s; }
.hero-content .hero-sub { animation-delay: 0.35s; }
.hero-content .hero-ctas { animation-delay: 0.5s; }
.hero-address-tag { animation: fadeUp 0.7s ease-out 0.7s backwards; }
.stats-bar { animation: fadeUp 0.7s ease-out 0.6s backwards; }

/* ===== SUBURB / INNER PAGES ===== */
.logo a { color: inherit; text-decoration: none; }
.hero-compact {
  position: relative;
  min-height: auto;
  padding: 120px 24px 72px;
  color: white;
  overflow: hidden;
}
.hero-compact .hero-bg { opacity: 0.4; }
.hero-compact::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.75) 100%);
}
.hero-compact .hero-content { position: relative; z-index: 5; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--orange); text-decoration: none; }
.content-prose {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 500;
}
.content-prose p { margin-bottom: 1.2em; }
.content-prose ul { margin: 0 0 1.2em 1.2em; }
.content-prose li { margin-bottom: 0.5em; }
.feature-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
}
.feature-list li {
  list-style: none;
  padding: 20px 22px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-size: 0.98rem;
  line-height: 1.5;
}
.feature-list li strong {
  display: block;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.map-embed {
  margin-top: 40px;
  width: 100%;
  border: 3px solid var(--ink);
  aspect-ratio: 16 / 9;
  min-height: 280px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 768px) {
  .hero-compact { padding: 100px 22px 56px; }
}

/* ===== TRUST / PHOTOS ===== */
.trust-section { background: var(--paper-deep); }
.trust-intro {
  max-width: 720px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 40px;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  margin-bottom: 48px;
}
.photo-card {
  margin: 0;
  border: 3px solid var(--ink);
  background: var(--ink);
}
.photo-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-card figcaption {
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: var(--ink);
}
.trust-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  width: 100%;
  text-align: left;
  margin-bottom: 32px;
}
.trust-points li {
  padding: 20px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.trust-points li strong {
  display: block;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.trust-review {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}
.trust-review a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 3px solid var(--ink);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}
.mobile-cta-call {
  background: var(--orange);
  color: var(--ink);
}
.mobile-cta-quote {
  background: var(--ink);
  color: white;
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: grid; }
  body { padding-bottom: 58px; }
  body.contact-page { padding-bottom: 0; }
  .contact-page .mobile-cta-bar { display: none; }
}
