:root {
  --aubergine: #321d3a;
  --aubergine-2: #4a2b50;
  --pine: #294f43;
  --pine-2: #3d6b5b;
  --orange: #e95f2a;
  --orange-dark: #bd4218;
  --sky: #dcecf0;
  --moss: #dce5c7;
  --cream: #fffaf2;
  --paper: #f7f1e7;
  --ink: #201c22;
  --muted: #655f67;
  --line: #d9d0c4;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(50, 29, 58, 0.12);
  --shadow-small: 0 8px 24px rgba(50, 29, 58, 0.1);
  --radius: 14px;
  --radius-lg: 24px;
  --container: 1180px;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/bricolage-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/bricolage-semibold.ttf") format("truetype");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/bricolage-extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Bricolage Grotesque", "Trebuchet MS", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection { color: var(--white); background: var(--aubergine); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .2em; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, p, ul, ol, blockquote { margin-top: 0; }
h1, h2, h3 {
  color: var(--aubergine);
  letter-spacing: -.025em;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(2.55rem, 6vw, 4.75rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); margin-bottom: .65rem; }
p, li { max-width: 72ch; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 790px); margin-inline: auto; }
.section { padding-block: clamp(3.75rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--paper { background: var(--paper); }
.section--sky { background: var(--sky); }
.section--aubergine { color: var(--white); background: var(--aubergine); }
.section--aubergine h2, .section--aubergine h3 { color: var(--white); }
.section-heading { max-width: 720px; margin-bottom: 2.25rem; }
.section-heading p { margin-bottom: 0; color: var(--muted); font-size: 1.1rem; }
.section--aubergine .section-heading p { color: #e5dce8; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  width: fit-content;
  margin-bottom: 1rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  color: var(--aubergine);
  background: var(--moss);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: .75rem; left: .75rem; transform: translateY(-160%); padding: .8rem 1rem; background: var(--white); border-radius: 8px; box-shadow: var(--shadow-small); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 100; top: 0; background: rgba(255,250,242,.96); border-bottom: 1px solid rgba(50,29,58,.1); backdrop-filter: blur(12px); }
.header-inner { display: grid; grid-template-columns: 270px 1fr auto; align-items: center; gap: 1.6rem; min-height: 82px; }
.brand { display: inline-block; line-height: 0; }
.brand img { width: 250px; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(.85rem, 2vw, 1.5rem); }
.site-nav a { position: relative; padding-block: .55rem; font-size: .95rem; font-weight: 700; text-decoration: none; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: .25rem; left: 0; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--orange); transition: transform .2s ease-out; }
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 0; background: transparent; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 50px;
  padding: .85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange-dark);
  box-shadow: 0 8px 20px rgba(189,66,24,.2);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform .2s ease-out, background .2s ease-out, box-shadow .2s ease-out;
}
.button:hover { transform: translateY(-2px); background: #9f3311; box-shadow: 0 12px 26px rgba(159,51,17,.28); }
.button:active { transform: translateY(0); }
.button--small { min-height: 44px; padding: .65rem 1rem; font-size: .9rem; }
.button--dark { background: var(--aubergine); box-shadow: 0 8px 20px rgba(50,29,58,.2); }
.button--dark:hover { background: var(--aubergine-2); }
.button--light { color: var(--aubergine); background: var(--white); }
.button--light:hover { color: var(--aubergine); background: var(--paper); }
.button img { filter: brightness(0) invert(1); }
.button--light img { filter: none; }
:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; box-shadow: 0 0 0 6px #0a4f6a; }
.button:focus-visible { box-shadow: 0 0 0 6px #0a4f6a; }
.text-link { color: var(--orange-dark); font-weight: 800; text-decoration-thickness: 2px; }
.text-link span { display: inline-block; transition: transform .2s ease-out; }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: var(--white); }

.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 6vw, 5.25rem); background: var(--cream); }
.hero::before { content: ""; position: absolute; z-index: 0; top: 7%; right: -9rem; width: 31rem; height: 31rem; border: 2px solid rgba(233,95,42,.18); border-radius: 50%; box-shadow: 0 0 0 34px rgba(41,79,67,.04), 0 0 0 68px rgba(50,29,58,.035); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr); align-items: center; gap: clamp(2.5rem, 5vw, 5rem); }
.hero-copy { max-width: 610px; }
.hero-copy h1 { max-width: 11ch; }
.hero-copy > p { margin-bottom: 1.7rem; font-size: clamp(1.08rem, 1.8vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.25rem; margin-bottom: 1.4rem; }
.hours-line { display: flex; align-items: center; gap: .65rem; margin-bottom: 0; color: var(--muted); font-size: .92rem; }
.hours-line::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--pine-2); box-shadow: 0 0 0 4px var(--moss); }
.hero-media { position: relative; }
.hero-media::before { content: ""; position: absolute; z-index: -1; inset: 1.2rem -1.2rem -1.2rem 1.2rem; border-radius: var(--radius-lg); background: var(--moss); }
.hero-media img { width: 100%; min-height: 530px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.photo-note { position: absolute; right: -1rem; bottom: 2rem; width: min(240px, 60%); padding: 1rem 1.1rem; transform: rotate(-2deg); border-radius: 10px; color: var(--aubergine); background: var(--white); box-shadow: var(--shadow-small); font-size: .84rem; font-weight: 700; line-height: 1.35; }

.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; gap: .85rem; align-items: center; padding: 1.2rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item img { width: 31px; height: 31px; object-fit: contain; filter: brightness(0) saturate(100%); opacity: .78; }
.trust-item strong { display: block; color: var(--aubergine); font-size: .95rem; line-height: 1.25; }
.trust-item span { display: block; color: var(--muted); font-size: .78rem; line-height: 1.3; }

.scope-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
#what-we-take { padding-bottom: clamp(2.5rem, 4vw, 3.75rem); }
#what-we-take + .section { padding-top: clamp(2.5rem, 4vw, 3.75rem); }
.scope-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; list-style: none; padding: 0; margin: 1.6rem 0 0; }
.scope-list li { display: flex; gap: .75rem; align-items: center; min-height: 62px; padding: .8rem 1rem; border-radius: 12px; color: var(--aubergine); background: var(--white); box-shadow: var(--shadow-small); font-weight: 750; }
.scope-list img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) saturate(100%); opacity: .78; }
.scope-note { padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius-lg); color: var(--white); background: var(--pine); box-shadow: var(--shadow); }
.scope-note h3 { color: var(--white); }
.scope-note p { color: #e1eee8; }
.scope-note ul { margin: 1.3rem 0 0; padding-left: 1.2rem; }
.scope-note li + li { margin-top: .5rem; }

.process { position: relative; }
.process::before { content: ""; position: absolute; top: 52px; right: 12%; left: 12%; height: 3px; background: linear-gradient(90deg, var(--pine), var(--orange), #2b7596); }
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step { text-align: center; }
.step-number { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 1.3rem; border: 7px solid var(--paper); border-radius: 50%; color: var(--white); background: var(--pine); font-size: 1.2rem; font-weight: 800; box-shadow: 0 0 0 1px var(--pine); }
.step:nth-child(2) .step-number { background: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.step:nth-child(3) .step-number { background: #2b7596; box-shadow: 0 0 0 1px #2b7596; }
.step p { margin-inline: auto; color: var(--muted); }

.estimate-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 1.2rem; }
.estimate-panel, .coverage-panel { min-height: 100%; padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius-lg); }
.estimate-panel { background: var(--white); box-shadow: var(--shadow); }
.estimate-factors { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-top: 1.5rem; }
.estimate-factor { display: flex; gap: .7rem; align-items: flex-start; padding: 1rem; border-radius: 12px; background: var(--paper); }
.estimate-factor strong { color: var(--aubergine); }
.estimate-factor span { display: block; color: var(--muted); font-size: .88rem; }
.estimate-factor::before { content: ""; flex: 0 0 11px; width: 11px; height: 11px; margin-top: .42rem; border-radius: 50%; background: var(--orange); }
.coverage-panel { position: relative; overflow: hidden; color: var(--aubergine); background: var(--moss); }
.coverage-panel::after { content: ""; position: absolute; right: -38px; bottom: -42px; width: 180px; height: 180px; border: 2px solid rgba(50,29,58,.13); border-radius: 50%; box-shadow: 0 0 0 28px rgba(50,29,58,.06), 0 0 0 56px rgba(50,29,58,.035); }
.coverage-panel > * { position: relative; z-index: 1; }
.county-list { display: flex; flex-wrap: wrap; gap: .55rem; padding: 0; margin: 1.25rem 0 1.4rem; list-style: none; }
.county-list li { padding: .45rem .7rem; border-radius: 999px; background: rgba(255,255,255,.58); font-size: .86rem; font-weight: 750; }

.faq-list { display: grid; gap: .7rem; }
.faq-list details { border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: rgba(255,255,255,.06); }
.faq-list summary { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: 0 0 auto; font-size: 1.3rem; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 1.1rem 1.1rem; margin: 0; color: #e7ddea; }
.page-faq .faq-list details { border-color: var(--line); background: var(--white); }
.page-faq .faq-list details p { color: var(--muted); }

.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.guide-card { overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-small); }
.guide-card__image { display: block; overflow: hidden; aspect-ratio: 3/2; }
.guide-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.guide-card:hover .guide-card__image img { transform: scale(1.035); }
.guide-card__body { padding: 1.25rem; }
.guide-card__meta { margin-bottom: .6rem; color: var(--pine-2); font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.guide-card h2, .guide-card h3 { font-size: 1.35rem; }
.guide-card h2 a, .guide-card h3 a { text-decoration: none; }
.guide-card__body > p:not(.guide-card__meta) { color: var(--muted); }

.closing-call { position: relative; overflow: hidden; color: var(--white); background: var(--orange-dark); }
.closing-call::after { content: ""; position: absolute; right: -5rem; top: -9rem; width: 24rem; height: 24rem; border: 2px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 32px rgba(255,255,255,.1), 0 0 0 64px rgba(255,255,255,.06); }
.closing-call__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: 260px; padding-block: 3rem; }
.closing-call h2 { max-width: 13ch; color: var(--white); margin-bottom: .7rem; }
.closing-call p { margin-bottom: 0; font-size: 1.08rem; }
.closing-call__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; flex: 0 0 auto; }

.site-footer { color: #e9efe9; background: #173d32; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 3rem; padding-block: 4rem 3rem; }
.brand--footer img { width: 260px; }
.footer-brand p { max-width: 48ch; margin-top: 1.2rem; color: #c2d2ca; }
.site-footer h2 { color: var(--white); font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; }
.site-footer nav, .site-footer address { display: grid; gap: .55rem; font-style: normal; }
.site-footer a { color: inherit; }
.footer-hours { margin-top: 1.2rem; color: #c2d2ca; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1.25rem; border-top: 1px solid rgba(255,255,255,.13); color: #c2d2ca; font-size: .85rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 1.2rem; }

.page-hero { position: relative; overflow: hidden; padding-block: clamp(4rem, 8vw, 7rem); background: var(--paper); }
.page-hero::after { content: ""; position: absolute; right: -6rem; top: -9rem; width: 28rem; height: 28rem; border: 2px solid rgba(233,95,42,.17); border-radius: 50%; box-shadow: 0 0 0 38px rgba(41,79,67,.055), 0 0 0 76px rgba(50,29,58,.04); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 14ch; }
.page-hero p { max-width: 62ch; margin-bottom: 0; color: var(--muted); font-size: 1.18rem; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.photo-frame { position: relative; }
.photo-frame::before { content: ""; position: absolute; z-index: -1; inset: 1rem -1rem -1rem 1rem; border-radius: var(--radius-lg); background: var(--sky); }
.photo-frame img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.fact-list { display: grid; gap: .9rem; padding: 0; margin: 1.5rem 0 0; list-style: none; }
.fact-list li { padding-left: 1.6rem; position: relative; }
.fact-list li::before { content: ""; position: absolute; top: .55em; left: 0; width: .7rem; height: .7rem; border-radius: 50%; background: var(--orange); }

.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.4rem; }
.contact-card { padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-small); }
.contact-card--primary { color: var(--white); background: var(--aubergine); }
.contact-card--primary h2, .contact-card--primary h3 { color: var(--white); }
.contact-big { display: block; margin: 1.1rem 0 .7rem; font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 800; line-height: 1.1; }
.contact-card address { display: grid; gap: .7rem; font-style: normal; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: .75rem 0; border-bottom: 1px solid var(--line); text-align: left; }
.hours-table th { color: var(--aubergine); }

.legal { padding-block: clamp(4rem, 8vw, 7rem); }
.legal h2 { margin-top: 2.5rem; font-size: 1.65rem; }
.legal h3 { margin-top: 1.8rem; font-size: 1.2rem; }
.legal p, .legal li { color: #4e4850; }
.legal a { color: var(--orange-dark); }

.blog-hero { padding-block: clamp(4rem, 8vw, 6.5rem); background: var(--sky); }
.blog-hero__inner { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 2rem; }
.blog-hero p { margin-bottom: 0; color: #34555e; font-size: 1.12rem; }
.guide-grid--blog { grid-template-columns: repeat(2, 1fr); }
.guide-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.05fr .95fr; }
.guide-card--featured .guide-card__image { aspect-ratio: auto; min-height: 390px; }
.guide-card--featured .guide-card__body { align-self: center; padding: clamp(1.5rem, 5vw, 3.5rem); }
.guide-card--featured h2 { font-size: clamp(2rem, 4vw, 3rem); }

.article-shell { padding-block: clamp(3.5rem, 7vw, 6rem); }
.article-header { width: min(100%, 920px); margin: 0 auto 2.5rem; }
.article-header h1 { max-width: 15ch; font-size: clamp(2.7rem, 6vw, 5rem); }
.article-dek { max-width: 64ch; color: var(--muted); font-size: 1.18rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; color: var(--pine-2); font-size: .86rem; font-weight: 750; }
.article-hero { width: min(100%, 1120px); margin: 0 auto 3rem; }
.article-hero img { width: 100%; max-height: 660px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.article-hero figcaption { margin-top: .6rem; color: var(--muted); font-size: .82rem; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: clamp(2rem, 5vw, 4rem); width: min(100%, 980px); margin-inline: auto; }
.article-body { min-width: 0; }
.article-body > p:first-child { color: var(--aubergine); font-size: 1.22rem; font-weight: 650; }
.article-body h2 { margin-top: 3rem; font-size: clamp(1.8rem, 3vw, 2.35rem); }
.article-body h3 { margin-top: 2rem; }
.article-body p, .article-body li { color: #49444b; }
.article-body a { color: var(--orange-dark); font-weight: 700; }
.article-body table { display: block; width: 100%; overflow-x: auto; margin: 1.5rem 0; border-collapse: collapse; background: var(--white); }
.article-body th, .article-body td { min-width: 180px; padding: .85rem 1rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-body th { color: var(--aubergine); background: var(--paper); }
.checklist { padding: 1.4rem 1.4rem 1.4rem 2.6rem; border-radius: var(--radius); background: var(--sky); }
.checklist li + li { margin-top: .55rem; }
.source-note { margin-top: 2.5rem; padding: 1.2rem; border-radius: var(--radius); background: var(--paper); color: var(--muted); font-size: .86rem; }
.source-note h2 { margin: 0 0 .75rem; font-size: 1.1rem; }
.article-aside { position: sticky; top: 110px; height: fit-content; padding: 1.2rem; border-radius: var(--radius); background: var(--moss); }
.article-aside h2 { font-size: 1rem; }
.article-aside nav { display: grid; gap: .7rem; }
.article-aside a { color: var(--aubergine); font-size: .9rem; font-weight: 700; }
.article-cta { margin-top: 3rem; padding: 1.5rem; border-radius: var(--radius); color: var(--white); background: var(--pine); }
.article-cta h2 { margin-top: 0; color: var(--white); }
.article-cta p { color: #e1eee8; }

.not-found { min-height: 68vh; display: grid; place-items: center; padding-block: 5rem; text-align: center; background: var(--paper); }
.not-found__code { margin-bottom: .5rem; color: var(--orange); font-size: clamp(5rem, 16vw, 10rem); font-weight: 800; line-height: .9; letter-spacing: -.04em; }
.not-found h1 { margin-inline: auto; max-width: 12ch; }
.not-found p { margin-inline: auto; max-width: 52ch; color: var(--muted); }
.not-found__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.5rem; }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .site-nav { position: absolute; top: calc(100% + 1px); right: 1rem; left: 1rem; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: .7rem; border-radius: 0 0 14px 14px; background: var(--cream); box-shadow: var(--shadow); }
  .site-nav[data-open] { display: flex; }
  .site-nav a { padding: .9rem; }
  .menu-toggle { display: grid; gap: 5px; width: 44px; height: 44px; place-content: center; border-radius: 50%; background: var(--paper); }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: var(--aubergine); }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-media img { min-height: 450px; }
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 1rem; }
  .container, .narrow { width: min(calc(100% - 1.25rem), var(--container)); }
  .header-inner { min-height: 72px; gap: .65rem; }
  .brand img { width: 206px; }
  .header-call { display: none; }
  .hero { padding-top: 2rem; }
  .hero-grid, .scope-grid, .estimate-grid, .two-column, .contact-grid, .blog-hero__inner, .article-layout { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: 12ch; }
  .hero-media { margin-right: .7rem; }
  .hero-media img { min-height: 360px; object-position: 58% center; }
  .photo-note { right: -.4rem; bottom: 1rem; }
  .scope-list, .estimate-factors { grid-template-columns: 1fr; }
  .process::before { top: 0; bottom: 0; left: 28px; width: 3px; height: auto; background: linear-gradient(var(--pine), var(--orange), #2b7596); }
  .process-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .step { display: grid; grid-template-columns: 58px 1fr; column-gap: 1rem; text-align: left; }
  .step-number { grid-row: 1 / 3; margin: 0; }
  .step p { margin-inline: 0; }
  .guide-grid, .guide-grid--blog { grid-template-columns: 1fr; }
  .guide-card--featured { grid-column: auto; display: block; }
  .guide-card--featured .guide-card__image { min-height: 0; aspect-ratio: 3/2; }
  .closing-call__inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .article-aside { position: static; grid-row: 1; }
  .article-header h1 { font-size: clamp(2.15rem, 9.5vw, 3.35rem); line-height: 1.02; }
  .article-hero { margin-bottom: 2rem; }
  .article-hero img { min-height: 280px; object-fit: cover; }
}

@media (max-width: 480px) {
  .brand img { width: 184px; }
  .trust-strip__inner { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .not-found__actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
