/* =========================================================================
   TC Dumpster Rental — design system
   Approved /design canvas: navy + orange, Space Grotesk + Work Sans.
   CASCADE RULE: desktop base first; all @media blocks at the BOTTOM.
   ========================================================================= */

:root {
  --navy: #0B2942;
  --navy-dark: #081B2C;
  --orange: #E8590C;
  --orange-dark: #C94A08;
  --orange-light: #FDEBDD;
  --cream: #FBFAF7;
  --panel: #F3EFE4;
  --border: #E7E2D6;
  --ink: #16212B;
  --ink-soft: #3C4650;
  --muted: #55606B;
  --muted-2: #7C8894;
  --white: #ffffff;
  --check: #3FA968;
  --check-on-dark: #5FD68A;
  --shadow-sm: 0 4px 14px rgba(11, 41, 66, 0.08);
  --shadow-md: 0 10px 26px rgba(232, 89, 12, 0.26);
  --wrap: 1240px;
  --font-head: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Work Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--orange-dark); text-decoration: none; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.1px;
  line-height: 1.2;
}
h1 { font-size: 46px; line-height: 1.12; }
h2 { font-size: 32px; margin-bottom: 14px; }
h3 { font-size: 22px; margin-bottom: 8px; font-weight: 600; }
h4 { font-size: 19px; font-weight: 600; }

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 6px; }

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

.section { padding: 68px 0; }
.section--tight { padding: 44px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--panel { background: var(--panel); }
.section--navy { background: var(--navy); color: #C8D3DD; }
.section--navy h2, .section--navy h3 { color: var(--white); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 10px;
  display: block;
}
.rule { display: inline-block; height: 2px; width: 64px; background: var(--orange); margin: 8px 0 4px; }
.lead { font-size: 18px; line-height: 1.55; color: var(--ink-soft); max-width: 640px; }
.section-head { max-width: 720px; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px; letter-spacing: 0.2px;
  padding: 15px 26px; border-radius: 9px; border: 2px solid transparent; cursor: pointer;
  white-space: nowrap; transition: background .15s, color .15s, border-color .15s, transform .12s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--orange-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); color: var(--white); }
.btn-block { width: 100%; }

/* ---------- chips / cards / callouts ---------- */
.chip {
  background: var(--white); border: 1px solid var(--border); color: var(--navy);
  padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 600; display: inline-block;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-sm); }
.feature-box {
  background: var(--panel); border-left: 3px solid var(--orange); border-radius: 6px;
  padding: 22px 24px; margin: 22px 0;
}
.feature-box h3, .feature-box h4 { margin-top: 0; }
.sample-badge {
  background: var(--panel); color: var(--navy); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 4px 9px; border-radius: 4px;
  border: 1px solid var(--border); display: inline-block;
}
.authority-note { font-size: 13px; color: var(--muted-2); border-top: 1px solid var(--border); padding-top: 12px; margin-top: 22px; }
.authority-note a { text-decoration: underline; }

/* ---------- check lists ---------- */
.check-list { list-style: none; padding: 0; margin: 16px 0; }
.check-list li {
  position: relative; padding-left: 32px; margin-bottom: 12px; font-weight: 500; color: var(--ink);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
  background: no-repeat center/20px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233FA968' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.section--navy .check-list li, .hero .check-list li { color: #EAF1F8; }
.section--navy .check-list li::before, .hero .check-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235FD68A' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* ---------- utility bar + header ---------- */
.topbar { background: var(--navy-dark); color: #EAF1F8; font-size: 13.5px; font-weight: 500; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; }
.topbar span { display: inline-flex; align-items: center; gap: 8px; }
.topbar .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { font-weight: 700; letter-spacing: .2px; }
.topbar svg { flex: none; }

.site-header {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 10px; background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head);
  font-weight: 700; font-size: 17px; flex: none;
}
.brand-name { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--navy); letter-spacing: .1px; line-height: 1.15; white-space: nowrap; }
.brand-tag { font-size: 12px; letter-spacing: .3px; color: var(--muted-2); font-weight: 600; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 20px; font-weight: 600; font-size: 14.5px; }
.nav > a, .nav-trigger { color: var(--navy); cursor: pointer; display: inline-block; padding: 6px 0; white-space: nowrap; }
.nav > a:hover, .has-sub:hover > .nav-trigger { color: var(--orange-dark); }
.has-sub { position: relative; }
.nav-trigger::after { content: "\25BE"; font-size: 10px; color: var(--orange); margin-left: 5px; vertical-align: 1px; }
.has-sub > .sub {
  position: absolute; top: 100%; left: -14px; min-width: 250px; width: max-content; background: var(--white);
  border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 12px 30px rgba(11,41,66,.16);
  padding: 8px; display: none; z-index: 60;
}
.has-sub:hover { z-index: 70; }
.has-sub:hover > .sub, .has-sub:focus-within > .sub, .has-sub.sub-open > .sub { display: block; }
.sub a { display: block; padding: 9px 12px; border-radius: 5px; font-size: 14.5px; white-space: normal; }
.sub a:hover { background: var(--panel); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-call { display: flex; align-items: center; gap: 7px; white-space: nowrap; font-weight: 700; font-size: 15.5px; color: var(--navy); }
.header-call svg { flex: none; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }
.nav-scrim { display: none; position: fixed; inset: 0; background: rgba(11,41,66,.45); z-index: 55; }

/* fixed bottom call bar (mobile only) */
.mobile-call-bar { display: none; }

/* ---------- trust strip ---------- */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-strip .wrap { padding: 24px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { flex: none; }
.trust-item span { font-size: 14.5px; font-weight: 600; color: var(--ink); }

/* ---------- hero ---------- */
.hero { background: var(--navy); background-image: linear-gradient(180deg, var(--navy) 0%, #0E3358 100%); }
.hero .wrap { display: flex; gap: 52px; align-items: flex-start; padding-top: 56px; padding-bottom: 0; }
.hero-copy { flex: 1 1 0; min-width: 0; padding-bottom: 56px; }
.hero-badge {
  display: inline-block; background: rgba(232,89,12,0.16); color: #FFA46B; border: 1px solid rgba(232,89,12,0.4);
  font-weight: 700; font-size: 12.5px; letter-spacing: .4px; padding: 6px 12px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero-sub { font-size: 18px; line-height: 1.55; color: #C8D3DD; max-width: 520px; margin-bottom: 20px; }
.hero-points { margin: 4px 0 26px; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-actions .phone-link { color: var(--white); font-weight: 700; font-size: 15px; border-bottom: 2px solid var(--orange); padding-bottom: 2px; }

/* ---------- quote form ---------- */
.quote-card {
  flex: 0 0 400px; background: var(--white); border-radius: 14px;
  box-shadow: 0 20px 45px rgba(6,20,35,.28); padding: 28px; margin-bottom: 56px;
}
.quote-card h2 { font-size: 21px; margin-bottom: 4px; }
.quote-card .quote-intro { font-size: 13.5px; color: var(--muted-2); margin-bottom: 18px; }
.quote-form { display: flex; flex-direction: column; gap: 13px; }
.quote-input, .quote-select, .quote-textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid #D8D2C4; border-radius: 8px; background: var(--white);
}
.quote-input:focus, .quote-select:focus, .quote-textarea:focus {
  outline: 2px solid var(--orange); outline-offset: 1px;
}
.quote-textarea { min-height: 84px; resize: vertical; }
.quote-note { font-size: 12.5px; color: var(--muted-2); margin: 2px 0 0; }
.remarck { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.quote-label { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted-2); margin-bottom: 5px; }
.quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ---------- size picker ---------- */
.size-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.size-card {
  text-align: left; border-radius: 12px; padding: 22px; background: var(--white); border: 2px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.size-card.is-selected { background: var(--orange-light); border-color: var(--orange); }
.size-card .size-yardage { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--navy); }
.size-card .size-dims { font-size: 12.5px; color: var(--muted-2); font-weight: 600; }
.size-card .size-best { font-size: 14px; color: var(--ink-soft); line-height: 1.45; }
.size-card .size-loads { font-size: 12.5px; color: var(--orange); font-weight: 700; margin-top: 4px; }
.size-note {
  display: flex; align-items: center; justify-content: space-between; margin-top: 26px;
  background: var(--panel); border-radius: 12px; padding: 18px 24px; gap: 16px; flex-wrap: wrap;
}
.size-note span { font-size: 15px; color: var(--ink-soft); }

/* ---------- process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: var(--white);
  font-family: var(--font-head); font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step h3 { font-size: 19px; }
.step p { font-size: 15px; color: var(--ink-soft); max-width: 300px; margin: 0 auto; }

/* ---------- service / feature cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card { display: flex; flex-direction: column; overflow: hidden; }
.svc-card img { width: 100%; height: 190px; object-fit: cover; }
.svc-card .svc-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.svc-card .svc-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--orange-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.svc-card h3 { font-size: 18px; }
.svc-card p { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.svc-card .svc-link { font-weight: 700; color: var(--orange-dark); font-size: 14.5px; margin-top: 8px; }
.svc-card .svc-link::after { content: " \2192"; }

/* ---------- why us (feature tiles) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-tile {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 22px;
}
.feature-tile .f-icon { color: #FFA46B; margin-bottom: 14px; }
.feature-tile h3 { font-size: 16.5px; color: var(--white); }
.feature-tile p { font-size: 14px; color: #B9C6D1; margin: 0; }

/* ---------- why-grid (light-bg variant, used on inner pages) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 40px; }
.why-item h3 { font-size: 19px; display: flex; gap: 10px; align-items: flex-start; }
.why-item h3 svg { flex: none; margin-top: 3px; }
.why-item p { font-size: 15px; color: var(--ink-soft); }

/* ---------- cost tiers ---------- */
.cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cost-card { padding: 24px 22px; }
.cost-card .tier { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--navy); }
.cost-card .price { font-size: 15px; font-weight: 700; color: var(--orange-dark); margin: 4px 0 10px; }
.cost-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- areas ---------- */
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.areas-grid a, .areas-grid span.chip { background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--navy); }
.areas-grid a:hover { border-color: var(--orange); }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; margin-bottom: 24px; }
.area-list-item { display: flex; align-items: center; gap: 9px; padding: 7px 0; }
.area-list-item svg { flex: none; }
.area-list-item span { font-size: 14.5px; color: var(--ink-soft); }
.area-map { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.area-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { padding: 24px; }
.review-card .stars { display: flex; gap: 3px; color: var(--orange); margin-bottom: 12px; }
.review-card blockquote { margin: 0 0 16px; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }
.review-card .who { font-size: 13.5px; color: var(--navy); font-weight: 700; }
.review-disclaimer { font-size: 13px; color: var(--muted-2); margin-top: 18px; text-align: center; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; background: var(--white); overflow: hidden; margin-bottom: 12px; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--navy); padding: 18px 44px 18px 20px;
  position: relative;
}
.faq-q::after {
  content: ""; position: absolute; right: 18px; top: 50%; transform: translateY(-50%) rotate(0deg);
  width: 20px; height: 20px; transition: transform .15s ease;
  background: no-repeat center/20px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23E8590C' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}
.faq-q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(180deg); }
.faq-a { display: none; padding: 0 20px 20px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.faq-a p:first-child { margin-top: 0; }
.faq-q[aria-expanded="true"] + .faq-a { display: block; }

/* ---------- final CTA ---------- */
.final-cta { background: var(--orange); }
.final-cta .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding: 48px 24px; }
.final-cta h2 { color: var(--white); font-size: 26px; margin-bottom: 6px; }
.final-cta p { color: #FFE3D1; margin: 0; }
.final-cta .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- inner page hero + breadcrumbs ---------- */
.page-hero { background: var(--navy-dark); color: #C8D3DD; }
.page-hero .wrap { padding-top: 40px; padding-bottom: 40px; }
.page-hero h1 { color: var(--white); margin: 6px 0 8px; font-size: 36px; }
.page-hero p { max-width: 640px; color: #C8D3DD; }
.crumbs { font-size: 13px; color: #8FA4B8; margin-bottom: 6px; }
.crumbs a { color: #C8D3DD; }
.crumbs span { color: var(--orange); }

/* ---------- article layout (service / city / blog) ---------- */
.inner { padding: 52px 0 64px; }
.inner .wrap { display: flex; gap: 46px; align-items: flex-start; }
.content-main { flex: 1 1 0; min-width: 0; max-width: 760px; }
.content-main h2 { margin-top: 34px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin-top: 24px; }
.content-main img { border-radius: 10px; margin: 8px 0 18px; }
.content-main table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px; }
.content-main th, .content-main td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.content-main th { background: var(--panel); color: var(--navy); font-family: var(--font-head); font-weight: 700; }
.post-meta { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.content-main img.article-lead-img { float: left; max-width: 340px; margin: 6px 34px 22px 0; }

.sidebar { flex: 0 0 340px; position: sticky; top: 84px; }
.sidebar .quote-card { flex: none; box-shadow: var(--shadow-sm); margin-bottom: 0; }
.sidebar-note { margin-top: 16px; font-size: 13.5px; color: var(--muted); }

/* ---------- blog listing ---------- */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.post-card { overflow: hidden; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.post-card img { height: 170px; object-fit: cover; width: 100%; }
.post-card .pc-body { padding: 20px 22px 24px; }
.post-card h3 { font-size: 17.5px; margin: 6px 0 8px; }
.post-card .pc-date { font-size: 12px; color: var(--muted-2); font-weight: 600; }
.post-card .pc-link { font-size: 13.5px; font-weight: 700; color: var(--orange); }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-dark); color: #C8D3DD; font-size: 14.5px; }
.site-footer .wrap { padding-top: 52px; padding-bottom: 26px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: var(--muted-2); font-size: 13px; margin-bottom: 14px; letter-spacing: .5px; text-transform: uppercase; font-weight: 700; }
.site-footer a { color: #C8D3DD; }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-mark { width: 38px; height: 38px; font-size: 14px; }
.footer-brand .brand-name { color: var(--white); font-size: 17px; }
.footer-brand p { max-width: 260px; color: #90A0AE; font-size: 13.5px; line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom .wrap { padding-top: 20px; padding-bottom: 20px; text-align: center; font-size: 12.5px; color: #6E7C89; display: block; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* =========================================================================
   RESPONSIVE — media queries LAST (per docs/MOBILE_DESIGN_STANDARDS.md)
   ========================================================================= */

@media (max-width: 1200px) {
  .nav { gap: 16px; font-size: 14px; }
  .header-call { display: none; }
}

@media (max-width: 991px) {
  h1 { font-size: 38px; }
  h2 { font-size: 29px; }
  .section { padding: 52px 0; }
  .hero .wrap { flex-direction: column; gap: 34px; }
  .quote-card { flex: none; width: 100%; max-width: 520px; margin-bottom: 40px; }
  .inner .wrap { flex-direction: column; }
  .sidebar { position: static; flex: none; width: 100%; max-width: 520px; }
  .svc-grid, .review-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .trust-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .size-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .cost-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .burger { display: flex; }
  .site-footer .wrap { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 12px; }
  .topbar .wrap { justify-content: center; }
  .topbar .topbar-right { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 18px; }
  .wrap { padding: 0 10px; }

  h1 { font-size: 35px !important; line-height: 1.12 !important; }
  h2 { font-size: 29px !important; line-height: 1.18 !important; margin: 0 0 8px !important; }
  h3 { font-size: 23px !important; line-height: 1.25 !important; }
  h4 { font-size: 19px !important; line-height: 1.3 !important; }
  p, .content-main li { font-size: 18.5px !important; line-height: 1.45 !important; }
  .content-main li { margin-bottom: 10px !important; }
  .lead, .hero-sub, .page-hero p { font-size: 18.5px !important; line-height: 1.4 !important; }

  .section { padding: 24px 0 !important; }
  .section--tight { padding: 20px 0 !important; }
  .inner { padding: 18px 0 32px !important; }
  .page-hero .wrap { padding-top: 14px !important; padding-bottom: 16px !important; }
  .hero .wrap { padding-top: 8px !important; padding-bottom: 24px !important; }
  .content-main h2:first-child { margin-top: 0 !important; padding-top: 0 !important; }

  .site-header .wrap { padding: 9px 10px !important; }
  .brand-mark { width: 36px !important; height: 36px !important; font-size: 14px !important; }
  .brand-name { font-size: 17px !important; }
  .brand-tag { display: none; }
  .header-call { display: none; }
  .header-cta .btn { display: none; }

  .quote-card, .card, .review-card, .cost-card, .svc-card .svc-body, .size-card { padding: 18px 14px !important; }
  .feature-box { padding: 16px 14px !important; margin: 16px 0 !important; }
  .quote-input, .quote-select, .quote-textarea { font-size: 16.5px !important; padding: 14px 12px !important; }

  .svc-grid, .review-grid, .post-grid, .why-grid, .steps, .cost-grid, .size-grid, .feature-grid, .trust-strip .wrap { grid-template-columns: 1fr !important; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .final-cta .btn, .content-main .btn { width: 100% !important; font-size: 18px !important; padding: 16px 20px !important; margin: 6px 0 !important; }
  .final-cta .wrap { flex-direction: column; text-align: center; }
  .final-cta .cta-actions { width: 100%; flex-direction: column; }

  .content-main img.article-lead-img { float: none; max-width: 100%; margin: 0 0 16px; }
  .quote-row { grid-template-columns: 1fr; }
  .size-note { flex-direction: column; align-items: stretch; text-align: center; }

  /* mobile nav drawer */
  .nav {
    display: flex; position: fixed; top: 0; right: 0; height: 100%; width: 82%; max-width: 340px;
    background: var(--white); flex-direction: column; align-items: stretch; gap: 0; padding: 74px 22px 24px;
    transform: translateX(100%); transition: transform .25s ease; z-index: 60; overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav a, .nav-trigger { font-size: 18px !important; padding: 14px 0 !important; border-bottom: 1px solid var(--border); width: 100%; display: block; }
  .has-sub, .has-sub > .sub { width: 100%; }
  .has-sub > .sub { position: static; display: block; border: 0; box-shadow: none; padding: 4px 0 10px 14px; min-width: 0; }
  .sub a { border-bottom: 0 !important; padding: 10px 0 !important; font-size: 16px !important; }
  .nav-trigger::after { content: ""; }
  .nav-scrim.open { display: block; }

  /* fixed bottom call bar */
  .mobile-call-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
    background: var(--orange); color: var(--white); align-items: center; justify-content: center; gap: 8px;
    padding: 12px 16px; font-weight: 700; font-size: 16px; box-shadow: 0 -4px 16px rgba(0,0,0,.18);
  }
  .mobile-call-bar a { color: var(--white); }
  body { padding-bottom: 56px; }

  .site-footer .wrap { grid-template-columns: 1fr !important; gap: 24px; padding-top: 32px; }
}
