/* ============================================================
   Jacuzzi Bath Remodel × Yancey Home Improvements
   Conversion landing page — design system
   ============================================================ */

:root {
  --ink: #010101;
  --ink-80: rgba(1, 1, 1, 0.80);
  --ink-60: rgba(1, 1, 1, 0.60);
  --ink-45: rgba(1, 1, 1, 0.45);

  --orange: #E48E25;
  --orange-dk: #C2741A;
  --orange-soft: #FBEAD2;

  --paper: #FBF8F3;
  --sand: #F1E8DB;
  --sand-deep: #E7DAC7;
  --charcoal: #161310;
  --charcoal-2: #211C17;

  --line: rgba(1, 1, 1, 0.12);
  --line-soft: rgba(1, 1, 1, 0.07);

  --shadow-sm: 0 1px 2px rgba(1,1,1,.06), 0 2px 8px rgba(1,1,1,.04);
  --shadow-md: 0 4px 14px rgba(1,1,1,.08), 0 18px 40px rgba(1,1,1,.08);
  --shadow-lg: 0 10px 30px rgba(1,1,1,.12), 0 30px 70px rgba(1,1,1,.14);

  --maxw: 1200px;
  --r: 14px;
  --r-lg: 22px;

  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

/* anchored targets clear the sticky header */
#quote, #final, #top { scroll-margin-top: 96px; }
.ico-i { width: 1.05em; height: 1.05em; display: inline-block; vertical-align: -2px; flex: none; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

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

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; }
.serif-i { font-style: italic; }

.display {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h2 { font-size: clamp(30px, 4vw, 50px); letter-spacing: -0.015em; text-wrap: balance; }
.h3 { font-size: clamp(22px, 2.4vw, 28px); }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-80); line-height: 1.6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 800; font-size: 17px;
  border: none; cursor: pointer; border-radius: 12px;
  padding: 17px 26px; min-height: 56px;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  text-align: center; line-height: 1.1;
}
.btn:active { transform: translateY(1px); }
.btn-orange { background: var(--orange); color: #1a1205; box-shadow: 0 6px 18px rgba(228,142,37,.38); }
.btn-orange:hover { background: var(--orange-dk); color: #fff; box-shadow: 0 10px 26px rgba(228,142,37,.46); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #2c2620; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-block { width: 100%; }
.btn .sub { display: block; font-weight: 600; font-size: 12.5px; opacity: .82; letter-spacing: .02em; margin-top: 2px; }
.btn-stack { flex-direction: column; gap: 0; padding-top: 12px; padding-bottom: 12px; }

/* ---------- Placeholders ---------- */
.ph {
  position: relative;
  background-color: var(--sand);
  background-image: repeating-linear-gradient(45deg, rgba(1,1,1,.045) 0 14px, rgba(1,1,1,0) 14px 28px);
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-45); text-align: center; padding: 10px 14px; line-height: 1.4;
}
.ph.on-dark { background-color: #2a2520; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 14px, rgba(255,255,255,0) 14px 28px); border-color: rgba(255,255,255,.08); }
.ph.on-dark::after { color: rgba(255,255,255,.4); }
.ph-rounded { border-radius: var(--r); }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14.5px;
  background: #fff; border: 1px solid var(--line);
  padding: 9px 14px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.chip .dot { color: var(--orange); font-weight: 900; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange-soft); color: #7a4d0c;
  border: 1px solid rgba(228,142,37,.35);
  font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  padding: 8px 15px; border-radius: 999px;
}
.badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(228,142,37,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(228,142,37,.5);} 70%{box-shadow:0 0 0 8px rgba(228,142,37,0);} 100%{box-shadow:0 0 0 0 rgba(228,142,37,0);} }

/* ---------- Image fills ---------- */
.shot { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Sections ---------- */
section { position: relative; }
.sect { padding: clamp(56px, 8vw, 104px) 0; }
.sect-sm { padding: clamp(40px, 5vw, 64px) 0; }
.sect-head { max-width: 760px; }
.sect-head.center { margin: 0 auto; text-align: center; }
.sect-dark { background: var(--charcoal); color: #f4efe8; }
.sect-dark .lead { color: rgba(244,239,232,.78); }
.sect-sand { background: var(--sand); }

.kicker { color: var(--orange); }

/* ============================================================
   TOP OFFER BAR
   ============================================================ */
.offerbar {
  background: var(--ink); color: #fff;
  font-size: 14.5px; font-weight: 600;
  position: relative; z-index: 60;
}
.offerbar .wrap { display: flex; align-items: center; justify-content: center; gap: 16px; padding-top: 10px; padding-bottom: 10px; text-align: center; flex-wrap: wrap; }
.offerbar strong { color: var(--orange); font-weight: 800; }
.offerbar .ob-call { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; border-bottom: 1.5px solid rgba(255,255,255,.4); padding-bottom: 1px; white-space: nowrap; }
.offerbar .ob-call:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   HEADER
   ============================================================ */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,243,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 14px; padding-bottom: 14px; }

/* co-brand lockup */
.cobrand { display: flex; align-items: center; gap: 18px; }
.cobrand .yancey-logo { height: 50px; width: auto; }
.cobrand .divider { width: 1px; height: 44px; background: var(--line); }
.cobrand .jac { height: 25px; width: auto; }
.cobrand.on-dark .yancey-logo { filter: brightness(0) invert(1); }

.head-cta { display: flex; align-items: center; gap: 18px; }
.head-phone { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; }
.head-phone .lbl { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-60); }
.head-phone .num { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.head-phone .num:hover { color: var(--orange); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background-color: #15100c;
  background-image: url("photos/imgi_4.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(96deg, rgba(8,6,4,.86) 0%, rgba(8,6,4,.58) 42%, rgba(8,6,4,.30) 66%, rgba(8,6,4,.12) 100%);
}
/* desktop framing of the hero scene */
@media (min-width: 821px) {
  .hero { background-position: center 42%; }
}
.hero .wrap { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; padding: clamp(40px,6vw,76px) 0 clamp(48px,6vw,88px); }
.hero-copy .badge { margin-bottom: 22px; }
.hero h1 { margin-bottom: 20px; color: #fff; text-shadow: 0 1px 30px rgba(0,0,0,.25); }
.hero h1 em { color: var(--orange); font-style: italic; }
.hero .lead { max-width: 540px; margin-bottom: 24px; color: rgba(255,255,255,.9); text-shadow: 0 1px 14px rgba(0,0,0,.5); }

.hero-offer {
  display: flex; align-items: stretch; gap: 0; margin-bottom: 26px;
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm); max-width: 540px;
}
.hero-offer .ho-main { padding: 16px 20px; flex: 1; }
.hero-offer .ho-main .t { font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.15; }
.hero-offer .ho-main .t b { color: var(--orange); }
.hero-offer .ho-main .s { font-size: 13.5px; color: var(--ink-60); margin-top: 3px; }
.hero-offer .ho-side { background: var(--ink); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 14px 20px; text-align: center; }
.hero-offer .ho-side .big { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--orange); line-height: 1; }
.hero-offer .ho-side .lbl { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-top: 5px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-ctas .btn { flex: 1; min-width: 210px; }
.hero-ctas .btn-ink { border: 1.5px solid rgba(255,255,255,.55); box-shadow: 0 8px 24px rgba(0,0,0,.42); }
.hero-ctas .btn-ink:hover { border-color: rgba(255,255,255,.8); }
.hero-trust { display: flex; flex-wrap: nowrap; gap: 8px 22px; align-items: center; }
.hero-trust .it { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.94); text-shadow: 0 1px 10px rgba(0,0,0,.45); white-space: nowrap; }
.hero-trust .it .ck { color: var(--orange); font-weight: 900; }

/* hero form */
.lead-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.lead-card .lc-head { background: var(--ink); color: #fff; padding: 20px 24px 18px; text-align: center; }
.lead-card .lc-head .t { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.18; }
.lead-card .lc-head .s { font-size: 13.5px; color: rgba(255,255,255,.72); margin-top: 8px; line-height: 1.4; }
.lead-card .lc-head .s b { color: var(--orange); }
.lead-card form { padding: 20px 24px 24px; }
.field { margin-bottom: 12px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 5px; }
.field input, .field select {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--paper);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(228,142,37,.18); background: #fff; }
.lead-card .btn { margin-top: 6px; }
.lc-fine { font-size: 11.5px; color: var(--ink-45); line-height: 1.45; margin-top: 12px; text-align: center; }
.lc-secure { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--ink-60); margin-top: 12px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { background: #fff; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust-strip .wrap { padding-top: 26px; padding-bottom: 24px; }
.logo-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 30px 44px; }
.trust-logo { height: 48px; width: auto; max-width: 150px; object-fit: contain; flex: none; }
/* per-logo optical balancing so differing proportions read at one weight */
.trust-logo[alt^="NARI"]        { height: 56px; }
.trust-logo[alt^="BBB"]         { height: 40px; }
.trust-logo[alt^="Owens"]       { height: 44px; }
.trust-logo[alt^="HomeAdvisor"] { height: 64px; }
.trust-logo[alt^="Yelp"]        { height: 34px; }
.trust-logo[alt^="Google"]      { height: 42px; }
.logo-row-note { text-align: center; font-size: 13px; color: var(--ink-60); margin-top: 20px; }
.logo-row-note b { color: var(--ink); font-weight: 800; }
.stars { color: var(--orange); letter-spacing: 1px; font-size: 14px; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.prod-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; display: flex; flex-direction: column; }
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prod-card .ph { height: 220px; }
.prod-card .pc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.prod-card h3 { margin-bottom: 8px; }
.prod-card p { font-size: 15px; color: var(--ink-60); margin-bottom: 16px; flex: 1; }
.prod-card .pc-link { font-weight: 800; color: var(--orange); display: inline-flex; align-items: center; gap: 7px; font-size: 15px; }
.prod-card:hover .pc-link { gap: 11px; }

/* ============================================================
   WHY / BENEFITS (dark)
   ============================================================ */
.ben-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
.ben {
  display: flex; gap: 18px; padding: 26px;
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r);
}
.ben .ico { width: 52px; height: 52px; border-radius: 12px; background: rgba(228,142,37,.16); color: var(--orange); display: flex; align-items: center; justify-content: center; flex: none; }
.ben .ico svg { width: 26px; height: 26px; }
.ben h3 { font-size: 21px; color: #fff; margin-bottom: 7px; }
.ben p { font-size: 14.5px; color: rgba(244,239,232,.66); line-height: 1.55; }
.why-media { margin-top: 48px; border-radius: var(--r-lg); overflow: hidden; }
.why-media .ph { height: clamp(240px, 34vw, 420px); }

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .n {
  font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--orange);
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--orange);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; background: var(--orange-soft);
}
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-60); }
.step::before { content: ""; position: absolute; top: 34px; left: 64px; right: -12px; height: 1.5px; background: repeating-linear-gradient(90deg, var(--orange) 0 6px, transparent 6px 12px); opacity: .5; }
.step:last-child::before { display: none; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; margin-top: 44px; grid-auto-flow: dense; }
.gallery .ph { width: 100%; height: 100%; border-radius: var(--r); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

/* ============================================================
   REVIEWS
   ============================================================ */
.rev-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 44px; }
.rev-scores { display: flex; gap: 14px; flex-wrap: wrap; }
.score-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px 20px; box-shadow: var(--shadow-sm); text-align: center; min-width: 140px; }
.score-card .num { font-family: var(--serif); font-size: 34px; font-weight: 600; line-height: 1; }
.score-card .stars { font-size: 15px; margin: 6px 0 4px; }
.score-card .src { font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-60); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r); padding: 26px; display: flex; flex-direction: column; }
.review .stars { font-size: 15px; margin-bottom: 12px; }
.review p { font-family: var(--serif); font-size: 18px; line-height: 1.45; color: var(--ink); flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--sand-deep); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: var(--ink-80); flex: none; }
.review .who .nm { font-weight: 800; font-size: 15px; }
.review .who .vf { font-size: 12.5px; color: var(--ink-60); }

/* ============================================================
   FINANCING
   ============================================================ */
.fin { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.fin .fin-media .ph { height: clamp(260px, 30vw, 380px); border-radius: var(--r-lg); }
.fin ul { list-style: none; margin: 22px 0 26px; display: grid; gap: 14px; }
.fin ul li { display: flex; gap: 13px; font-size: 16px; }
.fin ul li .ck { color: var(--orange); font-weight: 900; flex: none; }
.fin-pill { display: inline-flex; align-items: baseline; gap: 10px; background: var(--ink); color: #fff; border-radius: var(--r); padding: 16px 22px; margin-bottom: 22px; }
.fin-pill .big { font-family: var(--serif); font-size: 27px; color: var(--orange); font-weight: 600; }
.fin-pill .sm { font-size: 14px; color: rgba(255,255,255,.8); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { background: var(--charcoal); color: #fff; }
.final-inner { display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: center; }
.final h2 { color: #fff; margin-bottom: 18px; }
.final h2 em { color: var(--orange); font-style: italic; }
.final .lead { color: rgba(255,255,255,.78); margin-bottom: 26px; max-width: 520px; }
.final-trust { display: grid; gap: 13px; }
.final-trust .it { display: flex; gap: 12px; font-size: 16px; color: rgba(255,255,255,.9); }
.final-trust .it .ck { color: var(--orange); font-weight: 900; flex: none; }
.final .lead-card { color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: #0c0a08; color: rgba(255,255,255,.7); padding: 56px 0 30px; font-size: 14.5px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot .cobrand .divider { background: rgba(255,255,255,.22); }
.foot h4 { font-family: var(--sans); font-weight: 800; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.foot p { margin-bottom: 12px; line-height: 1.6; }
.foot a:hover { color: var(--orange); }
.foot .f-phone { font-family: var(--serif); font-size: 24px; color: #fff; font-weight: 600; }
.foot .areas { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.5); }

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.mobar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: #fff; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px; border-top: 1px solid var(--line-soft); box-shadow: 0 -6px 24px rgba(0,0,0,.12); }
.mobar .btn { flex: 1; min-height: 52px; font-size: 16px; box-shadow: none; }
.mobar .btn-orange { box-shadow: 0 4px 14px rgba(228,142,37,.32); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 38px; }
  .lead-card { max-width: 540px; }
  .grid-3 { grid-template-columns: 1fr; }
  .ben-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .step::before { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: 1fr; }
  .fin { grid-template-columns: 1fr; gap: 30px; }
  .fin .fin-media { order: -1; }
  .final-inner { grid-template-columns: 1fr; gap: 36px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ---- Tablet & mobile: simplify header, sticky bottom bar, tidy trust strip ---- */
@media (max-width: 820px) {
  .site-head { position: static; }
  .site-head .wrap { justify-content: center; }
  .head-cta { display: none; }
  .cobrand { gap: 18px; }

  body { padding-bottom: 80px; }
  .mobar { display: flex; }

  /* hero stacks: use a fuller, even scrim so both copy & form sit on dark */
  .hero { background-position: center center; }
  .hero::before { background: linear-gradient(180deg, rgba(8,6,4,.82) 0%, rgba(8,6,4,.66) 50%, rgba(8,6,4,.78) 100%); }

  /* center the hero copy on mobile */
  .hero-copy { text-align: center; }
  .hero-copy .badge { margin-left: auto; margin-right: auto; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-offer { margin-left: auto; margin-right: auto; text-align: left; }
  .hero-trust { justify-content: center; flex-wrap: wrap; }

  /* the sticky bottom bar already provides Call + Free Quote,
     so drop the duplicate in-hero buttons to declutter */
  .hero-ctas { display: none; }

  /* trust strip → tighter logo wrap on mobile */
  .logo-row { gap: 22px 30px; }
  .trust-logo { height: 40px; }
  .trust-logo[alt^="NARI"]        { height: 46px; }
  .trust-logo[alt^="HomeAdvisor"] { height: 54px; }
  .trust-logo[alt^="Yelp"]        { height: 28px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; padding-bottom: 80px; }
  .wrap { padding: 0 18px; }
  .offerbar { font-size: 13px; }
  .offerbar .wrap { gap: 6px 14px; }
  .cobrand { gap: 14px; }
  .cobrand .yancey-logo { height: 38px; }
  .cobrand .jac { height: 19px; }
  .cobrand .divider { height: 34px; }

  .hero-trust { gap: 12px 20px; }

  .field-row { grid-template-columns: 1fr; }

  /* How It Works → centered single column */
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .step { text-align: center; }
  .step .n { margin-left: auto; margin-right: auto; }

  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .foot-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .logo-row { gap: 20px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}
