/* ============================================================
   The Reasonable Roofers — design system
   Ink + sage (brand) + copper accent. Bricolage Grotesque / Public Sans.
   ============================================================ */

:root {
  --ink: #161813;
  --ink-2: #22251d;
  --ink-3: #2e3227;
  --sage: #AEB39F;
  --sage-deep: #7d836c;
  --sage-dark: #565c48;
  --sage-tint: #e9ebe2;
  --sage-tint-2: #f3f4ee;
  --white: #ffffff;
  --copper: #A8481B;
  --copper-deep: #8a3a14;
  --copper-bright: #c25620;
  --line: #d8dacf;
  --shadow-1: 0 1px 2px rgb(22 24 19 / .08), 0 4px 14px rgb(22 24 19 / .08);
  --shadow-2: 0 2px 6px rgb(22 24 19 / .12), 0 14px 34px rgb(22 24 19 / .16);
  --radius: 10px;
  --step--1: clamp(.83rem, .8rem + .17vw, .94rem);
  --step-0: clamp(1rem, .95rem + .25vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.15rem + .5vw, 1.5rem);
  --step-2: clamp(1.55rem, 1.4rem + .8vw, 2rem);
  --step-3: clamp(1.95rem, 1.7rem + 1.3vw, 2.7rem);
  --step-4: clamp(2.4rem, 2rem + 2.2vw, 3.7rem);
  --step-5: clamp(2.9rem, 2.3rem + 3.2vw, 4.9rem);
  --wrap: 1180px;
  --z-drop: 40;
  --z-sticky: 50;
  --z-modal: 60;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: "Public Sans", "Segoe UI", Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", "Arial Black", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); font-weight: 800; }
h2 { font-size: var(--step-3); font-weight: 800; }
h3 { font-size: var(--step-1); font-weight: 700; }
p { margin: 0 0 1em; max-width: 72ch; text-wrap: pretty; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--copper); }
a:hover { color: var(--copper-deep); }
ul { padding-left: 1.2em; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }

:focus-visible { outline: 3px solid var(--copper-bright); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: .6rem 1rem;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700; font-size: 1.02rem; line-height: 1.1;
  padding: .85rem 1.4rem; border-radius: 8px;
  text-decoration: none; border: 2px solid transparent;
  transition: background-color .18s ease-out, transform .18s ease-out, box-shadow .18s ease-out;
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-call { background: var(--copper); color: #fff; box-shadow: var(--shadow-1); }
.btn-call:hover { background: var(--copper-deep); color: #fff; }
.btn-estimate { background: var(--ink); color: #fff; }
.btn-estimate:hover { background: var(--ink-3); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.on-dark .btn-estimate { background: var(--sage); color: var(--ink); }
.on-dark .btn-estimate:hover { background: #c3c7b4; color: var(--ink); }
.on-dark .btn-ghost { color: #fff; border-color: rgb(255 255 255 / .55); }
.on-dark .btn-ghost:hover { background: #fff; color: var(--ink); }
.btn svg { flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgb(255 255 255 / .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease-out;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgb(22 24 19 / .12); }
.header-inner {
  display: flex; align-items: center; gap: .75rem;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.brand-logo { width: 46px; height: 46px; flex: none; }
.brand-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: 1rem; line-height: 1.05; letter-spacing: -.01em; white-space: nowrap;
}
.brand-name small {
  display: block; font-family: "Public Sans", sans-serif;
  font-weight: 600; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--sage-dark);
}

.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0; padding: 0; }
.main-nav a, .nav-trigger {
  display: inline-flex; align-items: center; gap: .3rem;
  font: 600 .85rem/1.2 "Public Sans", sans-serif;
  white-space: nowrap;
  color: var(--ink); text-decoration: none;
  padding: .5rem .55rem; border-radius: 7px;
  background: none; border: 0; cursor: pointer;
}
.main-nav a:hover, .nav-trigger:hover { background: var(--sage-tint); color: var(--ink); }
.chev { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }

.has-drop { position: relative; }
.drop-menu {
  position: absolute; top: 100%; left: 0; z-index: var(--z-drop);
  margin: 0; padding: .5rem 0 0; list-style: none; min-width: 250px;
}
.drop-menu[hidden] { display: none; }
.drop-inner {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-2); padding: .45rem; margin: 0; list-style: none;
}
.drop-inner a { display: block; padding: .55rem .8rem; border-radius: 7px; font-weight: 600; }
@media (hover: hover) and (pointer: fine) {
  .has-drop:hover .drop-menu { display: block; }
}

.header-cta { display: flex; align-items: center; gap: .5rem; }
.header-cta .btn-estimate { padding: .7rem 1rem; font-size: .92rem; }
.header-phone {
  display: inline-flex; align-items: center; gap: .4rem;
  font: 700 .95rem/1 "Bricolage Grotesque", sans-serif;
  white-space: nowrap;
  color: var(--ink); text-decoration: none; padding: .5rem .55rem; border-radius: 8px;
}
.header-phone:hover { background: var(--sage-tint); color: var(--ink); }
.header-phone svg { color: var(--copper); }
.nav-toggle {
  display: none; background: none; border: 2px solid var(--ink); border-radius: 8px;
  padding: .45rem .6rem; cursor: pointer; font: 700 .9rem "Public Sans", sans-serif; color: var(--ink);
}

@media (max-width: 1100px) {
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-2);
    padding: .8rem 1rem 1.2rem; margin: 0; max-height: calc(100dvh - 72px); overflow: auto;
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a, .nav-trigger { width: 100%; justify-content: space-between; font-size: 1.05rem; padding: .8rem .6rem; }
  .drop-menu { position: static; padding: 0 0 0 .8rem; min-width: 0; }
  .drop-inner { border: 0; box-shadow: none; padding: 0; }
  .nav-toggle { display: inline-block; margin-left: auto; }
  .header-cta .btn-estimate { display: none; }
}
@media (max-width: 560px) {
  .header-phone span { display: none; }
}

/* ---------- Mobile bottom bar ---------- */
.mobile-bar {
  position: fixed; inset: auto 0 0 0; z-index: var(--z-sticky);
  display: none; grid-template-columns: 1fr 1fr 1fr;
  background: var(--ink); box-shadow: 0 -4px 18px rgb(0 0 0 / .3);
  padding: .5rem .5rem calc(.5rem + env(safe-area-inset-bottom));
  gap: .5rem;
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  font: 700 .88rem/1.1 "Bricolage Grotesque", sans-serif;
  color: #fff; text-decoration: none; padding: .7rem .3rem; border-radius: 8px;
}
.mobile-bar .mb-call { background: var(--copper); }
.mobile-bar .mb-text { background: var(--ink-3); }
.mobile-bar .mb-est { background: var(--sage); color: var(--ink); }
@media (max-width: 760px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 70px; }
}

/* ---------- Hero (home) ---------- */
.hero-home {
  position: relative; color: #fff; background: var(--ink);
  overflow: clip;
}
.hero-home::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgb(13 15 11 / .93) 0%, rgb(13 15 11 / .82) 44%, rgb(13 15 11 / .35) 100%);
}
.hero-home .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-home .wrap { position: relative; z-index: 1; padding-block: clamp(4rem, 9vw, 7.5rem); }
.hero-kicker {
  font: 600 .85rem/1.3 "Public Sans", sans-serif; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage); margin: 0 0 1rem;
}
.hero-home h1 { font-size: var(--step-5); max-width: 14ch; margin-bottom: .35em; }
.hero-home h1 em { font-style: normal; color: var(--sage); }
.hero-sub { font-size: var(--step-1); max-width: 44ch; color: rgb(255 255 255 / .88); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.1rem; }
.hero-phone-line { color: rgb(255 255 255 / .82); font-size: .98rem; }
.hero-phone-line a { color: #fff; font-weight: 700; text-decoration-color: var(--sage); }
.hero-points { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin: 1.4rem 0 0; padding: 0; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .95rem; color: rgb(255 255 255 / .92); }
.hero-points svg { color: var(--sage); flex: none; }

/* ---------- Trust band ---------- */
.trust-band { background: var(--sage); color: var(--ink); }
.trust-band .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .6rem 2rem; padding-block: .85rem;
}
.trust-band span { display: inline-flex; align-items: center; gap: .5rem; font: 700 .92rem/1.25 "Public Sans", sans-serif; }
.trust-band svg { flex: none; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.2rem, 7vw, 5.5rem); }
.section-tight { padding-block: clamp(2.2rem, 5vw, 3.6rem); }
.band-sage { background: var(--sage-tint); }
.band-sage-2 { background: var(--sage-tint-2); }
.band-ink { background: var(--ink); color: #fff; }
.band-ink h2, .band-ink h3 { color: #fff; }
.section-intro { max-width: 62ch; }
.section-head { margin-bottom: clamp(1.6rem, 4vw, 2.8rem); }
.section-head .lede { font-size: var(--step-1); color: var(--ink-3); max-width: 56ch; }
.band-ink .lede { color: rgb(255 255 255 / .85); }

/* ---------- Services (home) : split feature + index ---------- */
.svc-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.svc-feature { position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-2); }
.svc-feature img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.4; }
.svc-feature figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.6rem 1.4rem 1.2rem;
  background: linear-gradient(transparent, rgb(13 15 11 / .88) 55%);
  color: #fff; font-weight: 600;
}
.svc-feature figcaption strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.2rem; display: block; }
.svc-index { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.svc-index li { border-bottom: 1px solid var(--line); }
.svc-index a {
  display: flex; align-items: baseline; gap: 1rem; justify-content: space-between;
  padding: 1.02rem .35rem; text-decoration: none; color: var(--ink);
  transition: background-color .15s ease-out, padding-left .15s ease-out;
}
.svc-index a:hover { background: var(--sage-tint-2); padding-left: .8rem; }
.svc-index .svc-name { font: 700 var(--step-1)/1.15 "Bricolage Grotesque", sans-serif; }
.svc-index .svc-blurb { font-size: .9rem; color: var(--ink-3); text-align: right; max-width: 24ch; }
.svc-index .arrow { color: var(--copper); font-weight: 700; }
@media (max-width: 900px) {
  .svc-split { grid-template-columns: 1fr; }
  .svc-index .svc-blurb { display: none; }
}

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); gap: clamp(1.2rem, 3vw, 2.2rem); }
.why-item { border-top: 3px solid var(--sage-deep); padding-top: 1rem; }
.why-item h3 { margin-bottom: .3em; }
.why-item p { font-size: .97rem; color: var(--ink-3); margin: 0; }
.band-ink .why-item { border-top-color: var(--sage); }
.band-ink .why-item p { color: rgb(255 255 255 / .8); }

/* ---------- Reviews ---------- */
.review-quote {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 600;
  font-size: var(--step-2); line-height: 1.28; letter-spacing: -.01em;
  max-width: 30ch; margin: 0 0 1rem;
}
.review-quote::before { content: "“"; color: var(--sage-deep); }
.review-quote::after { content: "”"; color: var(--sage-deep); }
.review-widget-shell { margin-top: 2rem; }

/* ---------- Service area ---------- */
.area-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.area-links { display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 0 0 1.2rem; list-style: none; }
.area-links a {
  display: inline-block; padding: .55rem 1rem; border-radius: 999px;
  background: var(--ink); color: #fff; text-decoration: none; font-weight: 700; font-size: .95rem;
}
.area-links a:hover { background: var(--ink-3); }
.area-text { color: var(--ink-3); font-size: .97rem; max-width: 60ch; }
.area-map { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-1); border: 1px solid var(--line); }
.area-map iframe { display: block; width: 100%; height: 340px; border: 0; }
@media (max-width: 860px) { .area-grid { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process-flow { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.6rem; }
.process-step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.2rem 1.1rem; box-shadow: var(--shadow-1); }
.process-step h3 { font-size: 1.12rem; }
.process-step p { font-size: .94rem; color: var(--ink-3); margin: 0; }
.process-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -0.9rem; left: 1.1rem;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: var(--copper); color: #fff; font: 800 .95rem/1.9rem "Bricolage Grotesque", sans-serif;
  text-align: center; box-shadow: var(--shadow-1);
}

/* ---------- Offer band ---------- */
.offer-band { background: var(--ink); color: #fff; }
.offer-band .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2.5rem; padding-block: 1.6rem; }
.offer-band strong { font-family: "Bricolage Grotesque", sans-serif; font-size: var(--step-1); }
.offer-band p { margin: 0; color: rgb(255 255 255 / .85); }

/* ---------- About teaser ---------- */
.about-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.about-split img { border-radius: 14px; box-shadow: var(--shadow-2); }
@media (max-width: 860px) { .about-split { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.1rem; }
.gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--ink); box-shadow: var(--shadow-1); }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-grid figcaption { padding: .7rem .9rem .85rem; color: rgb(255 255 255 / .9); font-size: .88rem; line-height: 1.45; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); max-width: 60rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: none; border: 0; text-align: left; cursor: pointer;
  font: 700 var(--step-1)/1.3 "Bricolage Grotesque", sans-serif; color: var(--ink);
  padding: 1.05rem .2rem;
}
.faq-q:hover { color: var(--copper-deep); }
.faq-q .faq-icon { flex: none; width: 1.5rem; height: 1.5rem; position: relative; }
.faq-q .faq-icon::before, .faq-q .faq-icon::after {
  content: ""; position: absolute; inset: 50% auto auto 50%; translate: -50% -50%;
  background: var(--copper); transition: transform .2s ease-out;
}
.faq-q .faq-icon::before { width: 15px; height: 2.5px; }
.faq-q .faq-icon::after { width: 2.5px; height: 15px; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); }
.faq-a { padding: 0 2.6rem 1.25rem .2rem; }
.faq-a[hidden] { display: none; }
.faq-a p { margin-bottom: .6em; color: var(--ink-2); }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--ink); color: #fff; position: relative; overflow: clip; }
.final-cta::before {
  content: ""; position: absolute; inset: -40% -10% auto auto; width: 60%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgb(174 179 159 / .16), transparent);
}
.cta-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.cta-grid h2 { font-size: var(--step-4); max-width: 14ch; }
.cta-grid .lede { color: rgb(255 255 255 / .85); }
.form-shell { background: #fff; border-radius: 14px; box-shadow: var(--shadow-2); padding: .8rem; }
.form-shell iframe { width: 100%; min-height: 760px; border: 0; border-radius: 10px; }
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: #0e100c; color: rgb(255 255 255 / .82); font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-block: 3.2rem 2rem; }
.site-footer h3 { color: #fff; font-size: 1.02rem; margin-bottom: .7em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .45em; }
.site-footer a { color: rgb(255 255 255 / .82); text-decoration: none; }
.site-footer a:hover { color: var(--sage); }
.footer-brand p { color: rgb(255 255 255 / .7); max-width: 34ch; }
.footer-phone { font: 700 1.25rem "Bricolage Grotesque", sans-serif; color: #fff !important; }
.footer-legal { border-top: 1px solid rgb(255 255 255 / .14); padding-block: 1.2rem; font-size: .84rem; color: rgb(255 255 255 / .62); display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; }
.footer-legal a { color: rgb(255 255 255 / .72); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--ink); color: #fff; position: relative; overflow: clip; }
.page-hero .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(13 15 11 / .5), rgb(13 15 11 / .75)); }
.page-hero .wrap { position: relative; z-index: 1; padding-block: clamp(3.4rem, 7vw, 5.6rem); }
.page-hero h1 { max-width: 20ch; }
.page-hero .lede { font-size: var(--step-1); color: rgb(255 255 255 / .88); max-width: 46ch; }
.crumbs { font-size: .85rem; margin: 0 0 1.1rem; color: rgb(255 255 255 / .7); }
.crumbs a { color: rgb(255 255 255 / .85); text-decoration: none; }
.crumbs a:hover { color: var(--sage); }
.crumbs span[aria-current] { color: var(--sage); }

/* ---------- Service page layout ---------- */
.svc-body { display: grid; grid-template-columns: 1.5fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.svc-article h2 { font-size: var(--step-2); margin-top: 1.6em; }
.svc-article h2:first-child { margin-top: 0; }
.svc-article ul li { margin-bottom: .4em; }
.svc-aside { position: sticky; top: 90px; display: grid; gap: 1.2rem; }
.aside-card { background: var(--sage-tint); border-radius: 14px; padding: 1.4rem 1.3rem; }
.aside-card.dark { background: var(--ink); color: #fff; }
.aside-card.dark h3 { color: #fff; }
.aside-card h3 { margin-bottom: .5em; }
.aside-card .btn { width: 100%; margin-top: .6rem; }
.aside-card ul { list-style: none; padding: 0; margin: 0; }
.aside-card li { border-bottom: 1px solid rgb(22 24 19 / .12); }
.aside-card.dark li { border-color: rgb(255 255 255 / .14); }
.aside-card li a { display: block; padding: .5rem .1rem; text-decoration: none; color: inherit; font-weight: 600; }
.aside-card li a:hover { color: var(--copper); }
.aside-card.dark li a:hover { color: var(--sage); }
.svc-photo { border-radius: 12px; box-shadow: var(--shadow-1); }
@media (max-width: 900px) { .svc-body { grid-template-columns: 1fr; } .svc-aside { position: static; } }

/* ---------- City page ---------- */
.city-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 1.1rem; margin: 1.8rem 0; }
.city-fact { background: #fff; border-left: 0; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.1rem; box-shadow: var(--shadow-1); }
.city-fact strong { display: block; font-family: "Bricolage Grotesque", sans-serif; font-size: 1.05rem; margin-bottom: .2em; }
.city-fact span { font-size: .92rem; color: var(--ink-3); }
.storm-note { background: var(--sage-tint); border-radius: 14px; padding: 1.5rem 1.5rem 1.2rem; margin: 2rem 0; }
.storm-note h3 { margin-top: 0; }
.neigh-list { columns: 2; column-gap: 2.5rem; padding-left: 1.1em; }
@media (max-width: 640px) { .neigh-list { columns: 1; } }

/* ---------- Utility ---------- */
.checklist { list-style: none; padding: 0; }
.checklist li { display: flex; gap: .6rem; align-items: baseline; margin-bottom: .55em; }
.checklist li::before { content: "✓"; color: var(--copper); font-weight: 800; flex: none; }
.eyeline { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.legal-body h2 { font-size: var(--step-1); margin-top: 1.8em; }
.legal-body h3 { font-size: 1.05rem; margin-top: 1.4em; }
.legal-body p, .legal-body li { max-width: 78ch; }

/* ---------- Reveal motion (progressive enhancement only) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; translate: 0 18px; transition: opacity .6s cubic-bezier(.22,1,.36,1), translate .6s cubic-bezier(.22,1,.36,1); }
  .js .reveal.in { opacity: 1; translate: 0 0; }
  .js .reveal-d1.in { transition-delay: .08s; }
  .js .reveal-d2.in { transition-delay: .16s; }
}


/* ---------- Interaction layer ---------- */
@media (prefers-reduced-motion: no-preference) {
  /* Buttons: lift on hover, settle on press */
  .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgb(22 24 19 / .22); }
  .btn:active { transform: translateY(0); box-shadow: var(--shadow-1); }

  /* Hero: one orchestrated load reveal + slow Ken Burns on the photo */
  .hero-home .hero-bg { animation: kenburns 26s cubic-bezier(.22,1,.36,1) forwards; }
  .hero-home .hero-kicker { animation: riseIn .7s cubic-bezier(.22,1,.36,1) both .05s; }
  .hero-home h1 { animation: riseIn .7s cubic-bezier(.22,1,.36,1) both .15s; }
  .hero-home .hero-sub { animation: riseIn .7s cubic-bezier(.22,1,.36,1) both .28s; }
  .hero-home .hero-ctas { animation: riseIn .7s cubic-bezier(.22,1,.36,1) both .4s; }
  .hero-home .hero-phone-line, .hero-home .hero-points { animation: riseIn .7s cubic-bezier(.22,1,.36,1) both .52s; }
  .page-hero h1, .page-hero .crumbs { animation: riseIn .6s cubic-bezier(.22,1,.36,1) both .05s; }
  .page-hero .lede { animation: riseIn .6s cubic-bezier(.22,1,.36,1) both .16s; }
  .page-hero .hero-ctas { animation: riseIn .6s cubic-bezier(.22,1,.36,1) both .27s; }

  /* Service index: arrow slides toward the page you're about to visit */
  .svc-index .arrow { transition: translate .2s ease-out; }
  .svc-index a:hover .arrow { translate: 6px 0; }

  /* Photos breathe on hover */
  .gallery-grid figure { overflow: hidden; }
  .gallery-grid img, .svc-feature img { transition: scale .6s cubic-bezier(.22,1,.36,1); }
  .gallery-grid figure:hover img, .svc-feature:hover img { scale: 1.045; }
  .svc-photo { transition: scale .5s cubic-bezier(.22,1,.36,1), box-shadow .3s ease-out; }
  .svc-photo:hover { scale: 1.015; box-shadow: var(--shadow-2); }

  /* Cards raise to meet the cursor */
  .process-step, .city-fact { transition: transform .25s ease-out, box-shadow .25s ease-out; }
  .process-step:hover, .city-fact:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }

  /* Area chips */
  .area-links a { transition: background-color .18s ease-out, transform .18s ease-out; }
  .area-links a:hover { transform: translateY(-2px); }

  /* FAQ answers ease open */
  .faq-a:not([hidden]) { animation: faqIn .32s cubic-bezier(.22,1,.36,1); }

  /* Trust band items tick in on load */
  .trust-band span { animation: riseIn .6s cubic-bezier(.22,1,.36,1) both; }
  .trust-band span:nth-child(2) { animation-delay: .08s; }
  .trust-band span:nth-child(3) { animation-delay: .16s; }
  .trust-band span:nth-child(4) { animation-delay: .24s; }
}

@keyframes riseIn {
  from { opacity: 0; translate: 0 16px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes kenburns {
  from { scale: 1; }
  to { scale: 1.07; }
}
@keyframes faqIn {
  from { opacity: 0; translate: 0 -6px; }
  to { opacity: 1; translate: 0 0; }
}
