/* ==========================================================================
   Texan Home Additions — Kitchen Remodeling Google Ads Landing Page
   Brand tokens verified against BRIEF.md / live-site extraction.
   Mobile-first. Breakpoints: 640px, 900px, 1100px.
   ========================================================================== */

/* ---------- Self-hosted variable fonts ---------- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/montserrat.woff2') format('woff2');
}
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/overpass.woff2') format('woff2');
}

:root {
  --red: #ae1c29;
  --red-dark: #8f1621;
  --crimson: #bc0a3e;
  --indigo: #3e4095;
  --indigo-dark: #313370;
  --beige: #e2dbd4;
  --beige-light: #ede9e5;
  --body-text: #4b4f58;
  --heading-dark: #3a3a3a;
  --white: #ffffff;
  --container: 1170px;
  --font-heading: 'Montserrat', 'Trebuchet MS', sans-serif;
  --font-body: 'Overpass', Georgia, sans-serif;
  --sticky-h: 62px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-text);
  background: var(--white);
  /* room for the fixed mobile call bar */
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.22;
  color: var(--heading-dark);
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

section { padding: 56px 0; }
@media (min-width: 900px) { section { padding: 84px 0; } }

/* Anchored form targets clear the sticky bar / viewport edge */
#consult, #free-consultation { scroll-margin-top: 24px; }

/* Spam honeypot: off-screen, NOT display:none (smarter bots skip display:none fields) */
.hp-field { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }

/* ---------- Kicker + section headings ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 14px;
}
.kicker::before { content: ''; width: 34px; height: 2px; background: var(--crimson); }

.section-title {
  font-size: clamp(26px, 2.2vw + 16px, 38px);
  color: var(--heading-dark);
  margin-bottom: 14px;
  max-width: 21em;
}
.section-intro { max-width: 46em; font-size: 17px; margin-bottom: 8px; }

.center { text-align: center; }
.center .section-title, .center .section-intro { margin-left: auto; margin-right: auto; }
.center .kicker::after { content: ''; width: 34px; height: 2px; background: var(--crimson); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: .02em;
  padding: 16px 30px;
  border: 2px solid transparent;
  border-radius: 0;                 /* brand: square corners */
  cursor: pointer;
  text-align: center;
  transition: background-color .25s, color .25s, border-color .25s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn-red { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-indigo { background: var(--indigo); border-color: var(--indigo); color: var(--white); }
.btn-indigo:hover { background: var(--indigo-dark); border-color: var(--indigo-dark); color: var(--white); }
.btn-ghost { background: transparent; border-color: var(--white); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--heading-dark); }
.btn-outline-indigo { background: transparent; border-color: var(--indigo); color: var(--indigo); }
.btn-outline-indigo:hover { background: var(--indigo); color: var(--white); }

/* ==========================================================================
   HEADER — beige band (logo, call) + thin red band. NO navigation.
   ========================================================================== */
.site-header { background: var(--beige); }
.header-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo img { width: 168px; height: auto; }
.header-call { text-align: right; }
.header-call .btn { padding: 12px 20px; font-size: 14px; white-space: nowrap; }
.header-call .micro {
  display: block;
  font-size: 12px;
  color: var(--body-text);
  margin-top: 5px;
  line-height: 1.4;
}
.header-band {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
  line-height: 1.5;
}
.header-band .sep { margin: 0 10px; opacity: .55; }
@media (max-width: 639px) {
  .header-logo img { width: 132px; }
  .header-band .band-extra { display: none; }
  .header-top { padding: 10px 14px; gap: 10px; }
  .header-call .btn { padding: 10px 12px; font-size: 12.5px; }
  .header-call .micro { font-size: 11px; }
}
@media (max-width: 374px) {
  .header-logo img { width: 112px; }
}
@media (min-width: 900px) { .header-logo img { width: 190px; } }

/* Desktop keeps a persistent call path: sticky header ≥900px (mobile has the sticky bar instead).
   Anchor targets get extra scroll margin so the stuck header never covers the form heading. */
@media (min-width: 900px) {
  .site-header { position: sticky; top: 0; z-index: 150; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
  #consult, #free-consultation { scroll-margin-top: 160px; }
}

/* ==========================================================================
   HERO — full-bleed photo, content left, indigo consultation card right
   ========================================================================== */
.hero { position: relative; padding: 0; background: var(--heading-dark); }
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(24,20,19,.88) 0%, rgba(24,20,19,.72) 42%, rgba(24,20,19,.38) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 20px 48px;
  display: grid;
  gap: 36px;
}
.hero-copy { color: var(--white); }
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(29px, 3.4vw + 14px, 50px);
  line-height: 1.14;
  margin-bottom: 16px;
  text-wrap: balance;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--beige);
  box-shadow: inset 0 -3px 0 var(--crimson);
}
.hero-sub {
  font-size: clamp(16px, .5vw + 14px, 19px);
  line-height: 1.65;
  max-width: 34em;
  color: rgba(255,255,255,.92);
  margin-bottom: 24px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-start; }
.hero-ctas .cta-call { display: inline-block; }
.hero-ctas .micro {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,.78);
  margin-top: 6px;
  text-align: center;
}
.hero-bullets { margin-top: 26px; display: grid; gap: 10px; }
.hero-bullets li {
  display: flex;
  gap: 11px;
  align-items: baseline;
  font-size: 15.5px;
  color: rgba(255,255,255,.94);
  line-height: 1.5;
}
.hero-bullets .tick { color: var(--beige); flex: none; transform: translateY(2px); }
.hero-bullets strong { color: var(--white); }

/* Indigo consultation card (brand form treatment) */
.form-card {
  background: var(--indigo);
  color: var(--white);
  padding: 30px 26px 26px;
  box-shadow: 0 24px 48px -18px rgba(0,0,0,.45);
}
.form-card h2, .form-card h3 {
  color: var(--white);
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.form-card .form-note { font-size: 13.5px; color: rgba(255,255,255,.82); margin-bottom: 16px; }
.form-card label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  margin: 14px 0 6px;
}
.form-card label .opt { font-weight: 400; opacity: .75; letter-spacing: 0; }
.form-card input, .form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 16px;               /* ≥16px prevents iOS zoom-on-focus */
  color: #333;
  background: var(--white);
}
.form-card input:focus-visible, .form-card textarea:focus-visible {
  outline: 3px solid var(--beige);
  outline-offset: 1px;
}
.form-card textarea { resize: vertical; min-height: 74px; }
.form-card .btn-submit {
  width: 100%;
  margin-top: 20px;
  background: var(--red);
  border: 2px solid var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .03em;
  padding: 15px 20px;
  border-radius: 0;
  cursor: pointer;
  transition: background-color .25s, border-color .25s;
}
.form-card .btn-submit:hover { background: var(--red-dark); border-color: var(--red-dark); }
.form-card .reassure {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.8);
  margin-top: 12px;
}
.form-card .reassure a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.form-card .alt-path { font-size: 14.5px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.22); }
.form-card .alt-path a { color: var(--white); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 400px;
    align-items: center;
    gap: 56px;
    padding-top: 56px;
    padding-bottom: 64px;
    min-height: 620px;
  }
}
@media (max-width: 1099px) {
  /* keep H1 + call + anchor CTA above the mobile fold; card follows */
  .hero-inner { padding-top: 34px; }
  .hero-bullets { margin-top: 20px; }
}

/* ==========================================================================
   TRUST BAR — crimson strip
   ========================================================================== */
.trust-bar { background: var(--crimson); color: var(--white); padding: 18px 0; }
.trust-bar ul {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 44px;
  row-gap: 10px;
}
.trust-bar li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.4;
}
.trust-bar svg { flex: none; opacity: .9; }

/* ==========================================================================
   WHY US — centered header (same pattern as Packages) over an editorial
   split: framed project photo (sticky ≥1100px) with an overlapping "60+"
   stat card, beside staggered numbered benefit cards
   ========================================================================== */
.why { background: var(--white); }
.why-layout { margin-top: 46px; display: grid; gap: 44px; text-align: left; }
.why-media { position: relative; max-width: 560px; margin: 0 auto; } /* centered while stacked; ≥1100px the grid takes over */
.why-media::before {
  /* offset beige plate behind the photo — keeps it from "just sitting there" */
  content: '';
  position: absolute;
  top: 18px;
  right: -14px;
  bottom: -14px;
  left: 18px;
  background: var(--beige);
}
.why-media::after {
  /* crimson corner bar, echoes the kicker rule */
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 64px;
  height: 8px;
  background: var(--crimson);
}
.why-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.why-stat {
  position: absolute;
  left: 14px;
  bottom: -24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
  background: var(--red);
  color: var(--white);
  padding: 16px 20px;
  box-shadow: 0 18px 34px -16px rgba(143,22,33,.65);
}
.why-stat .stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
}
.why-stat .stat-label { font-size: 13px; line-height: 1.45; }
.why-stat strong { color: var(--white); }
.why-grid { display: grid; gap: 18px; counter-reset: why; }
.why-item {
  counter-increment: why;
  position: relative;
  background: var(--beige-light);
  padding: 58px 24px 26px;
}
.why-item::before {
  content: counter(why, decimal-leading-zero);
  position: absolute;
  top: 16px;
  left: 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  color: var(--beige);
}
@supports (-webkit-text-stroke: 1px black) {
  .why-item::before { color: transparent; -webkit-text-stroke: 1.5px rgba(188,10,62,.4); }
  .why-item:nth-child(even)::before { -webkit-text-stroke-color: rgba(62,64,149,.38); }
}
.why-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 5px;
  background: var(--crimson);
}
.why-item:nth-child(even)::after { background: var(--indigo); }
.why-item h3 { font-size: 18px; color: var(--red); margin-bottom: 8px; }
.why-item p { font-size: 15px; line-height: 1.7; }
@media (min-width: 640px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-media { margin-bottom: 24px; } /* room for the overlapping stat card */
}
@media (max-width: 639px) {
  .why-media { margin-bottom: 34px; }
  .why-stat .stat-num { font-size: 36px; }
}
@media (min-width: 1100px) {
  .why-layout { grid-template-columns: minmax(320px, 430px) 1fr; gap: 64px; align-items: start; }
  .why-media { position: sticky; top: 150px; max-width: none; margin-bottom: 0; }
  .why-media img { aspect-ratio: 4 / 5; } /* taller editorial crop beside the card column */
  /* stagger the second column of cards */
  .why-grid { padding-bottom: 30px; }
  .why-item:nth-child(even) { transform: translateY(30px); }
}

/* ==========================================================================
   PACKAGES — Standard / Preferred / Premier (photo-headed cards)
   ========================================================================== */
.packages { background: var(--beige-light); }
.tier-grid { margin-top: 40px; display: grid; gap: 26px; align-items: stretch; }
.tier {
  background: var(--white);
  border-top: 5px solid var(--red);
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 34px -20px rgba(58,58,58,.35);
}
.tier-photo { line-height: 0; }
.tier-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.tier-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}
.tier-flag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--indigo);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 7px 12px 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.tier .tier-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 10px;
}
.tier h3 { font-size: 20px; line-height: 1.35; margin-bottom: 16px; }
.tier ul { display: grid; gap: 11px; margin-top: auto; }
.tier li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
}
.tier li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 3px;
  background: var(--red);
}
.tier-featured {
  border-top-color: var(--indigo);
  outline: 2px solid var(--indigo);
  position: relative;
}
.tier-featured .tier-name { color: var(--indigo); }
.tier-featured li::before { background: var(--indigo); }
.packages-cta { margin-top: 40px; text-align: center; }
.packages-cta p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--heading-dark);
  margin-bottom: 18px;
}
.cta-fork { display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: center; align-items: center; }
.cta-fork .or { font-size: 15px; color: var(--body-text); }
.cta-fork .call-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}
.cta-fork .call-link:hover { color: var(--red-dark); }
@media (min-width: 900px) {
  .tier-grid { grid-template-columns: 1fr 1fr 1fr; }
  .tier-featured { transform: translateY(-10px); }
}

/* ==========================================================================
   PROCESS — clean, airy five-step row (redone per client review): modest
   crimson numerals over a light rule, generous whitespace, no spine or
   alternating cards. Stacks on mobile, five across ≥900px.
   (thanks.html reuses .steps/.step with its own column-count override.)
   ========================================================================== */
.process { background: var(--white); }
.steps {
  margin: 48px auto 0;
  max-width: 520px;              /* stacked: keep the column narrow and airy */
  display: grid;
  gap: 38px;
  text-align: left;
}
.step { border-top: 2px solid var(--beige); padding-top: 20px; }
.step-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: var(--crimson);
  margin-bottom: 12px;
}
.step h3 { font-size: 17px; color: var(--heading-dark); margin-bottom: 8px; }
.step p { font-size: 15px; line-height: 1.7; }
@media (min-width: 900px) {
  .steps {
    max-width: none;
    margin-top: 56px;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 30px;
  }
}

/* ==========================================================================
   SHARED SCROLL-SNAP SLIDER (gallery + reviews) — native CSS scrolling;
   the tiny inline script only powers the prev/next arrows.
   Overflow lives on the track itself, so the page never scrolls sideways.
   ========================================================================== */
.slider { position: relative; }
.slider-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;             /* arrows + swipe replace the scrollbar */
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > * { flex: 0 0 auto; scroll-snap-align: start; }
.slider-track:focus-visible { outline: 3px solid var(--crimson); outline-offset: 2px; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  display: none;                     /* touch swipes; arrows appear ≥900px */
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 0;                  /* brand: square corners */
  color: var(--red);
  cursor: pointer;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.4);
  transition: background-color .2s, border-color .2s, color .2s;
}
.slider-btn svg { width: 20px; height: 20px; fill: currentColor; }
.slider-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.slider-btn:focus-visible { outline: 3px solid var(--crimson); outline-offset: 2px; }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
@media (min-width: 900px) { .slider-btn { display: flex; } }

/* ==========================================================================
   GALLERY — full-bleed filmstrip slider, no captions (client request);
   mixed portrait/landscape photos share one height
   ========================================================================== */
.gallery { background: var(--beige-light); }
.gallery-slider { margin-top: 40px; }
.gallery-track {
  /* full-bleed with the first slide aligned to the container's left edge */
  padding: 6px max(20px, calc((100% - var(--container)) / 2 + 20px));
  scroll-padding-inline: max(20px, calc((100% - var(--container)) / 2 + 20px));
}
.gallery-slide {
  height: clamp(280px, 52vw, 500px);
  margin: 0;
  overflow: hidden;
  background: var(--beige);
  box-shadow: 0 14px 30px -22px rgba(58,58,58,.55);
}
.gallery-slide img {
  height: 100%;
  width: auto;
  max-width: min(86vw, 780px);       /* wide shots never exceed the viewport */
  object-fit: cover;
  transition: transform .5s ease;
}
@media (hover: hover) {
  .gallery-slide:hover img { transform: scale(1.03); }
}
/* CTA band under the slider (copy unchanged from the old mosaic tile) */
.gallery-cta {
  margin-top: 38px;
  background: var(--red);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 30px;
  padding: 26px 28px;
}
.gallery-cta p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  color: var(--white);
}
.gallery-cta .tile-links { display: flex; flex-wrap: wrap; gap: 8px 28px; font-size: 15px; }
.gallery-cta a { color: var(--white); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.gallery-cta a:hover { color: var(--beige); }

/* ==========================================================================
   REVIEWS — indigo band, centered heading over the oversized "60+",
   Google-style cards in the shared scroll-snap slider
   ========================================================================== */
.reviews { background: var(--indigo); color: var(--white); position: relative; overflow: hidden; }
.reviews::before {
  /* giant 60+ sits centered behind the (now centered) heading */
  content: '60+';
  position: absolute;
  left: 50%;
  top: -36px;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(150px, 20vw, 300px); /* "60+" is three glyphs — sized down from the old two-glyph "61" */
  line-height: 1;
  color: rgba(255,255,255,.055);
  pointer-events: none;
}
.reviews .container { position: relative; z-index: 2; }
.reviews .kicker { color: var(--beige); }
.reviews .kicker::before, .reviews .kicker::after { background: var(--beige); }
.reviews .section-title { color: var(--white); }
.reviews .section-intro { color: rgba(255,255,255,.88); }
/* ---- Review slider: 1 card per view on phones, 2 ≥700px, 3 ≥1000px ---- */
.rev-slider { margin-top: 36px; }
.rev-track { gap: 16px; padding: 6px 2px 8px; align-items: stretch; }
.rev-track .rev-card { flex: 0 0 min(88%, 420px); }
@media (min-width: 700px)  { .rev-track .rev-card { flex-basis: calc((100% - 16px) / 2); } }
@media (min-width: 1000px) { .rev-track .rev-card { flex-basis: calc((100% - 32px) / 3); } }
.rev-slider .slider-prev { left: -10px; }
.rev-slider .slider-next { right: -10px; }
/* ---- Google-style review cards (real reviews, verbatim; no external requests) ---- */
.rev-card {
  position: relative;
  background: var(--white);
  border-radius: 8px;
  padding: 18px 18px 16px;
  box-shadow: 0 1px 2px rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15); /* Google card elevation */
  font-family: Roboto, Arial, 'Helvetica Neue', sans-serif;  /* Google review typography; system fallback, nothing fetched */
  text-align: left;
}
.rev-g { position: absolute; top: 16px; right: 16px; width: 20px; height: 20px; }
.rev-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; padding-right: 30px; }
.rev-avatar {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  user-select: none;
}
.rev-id { display: grid; gap: 3px; }
.rev-name {
  font-size: 14px;
  font-weight: 500;
  color: #202124;                 /* Google card dark gray */
  line-height: 1.3;
}
.rev-stars { display: inline-flex; gap: 1px; }
.rev-stars svg { width: 15px; height: 15px; fill: #FBBC04; }   /* Google review-star yellow */
.rev-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: #3c4043;
  overflow-wrap: break-word;
}
/* Zero-JS "Read more": visually-hidden checkbox toggles the line clamp */
.rev-toggle { position: absolute; opacity: 0; pointer-events: none; }
.rev-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rev-toggle:checked ~ .rev-clamp { display: block; -webkit-line-clamp: unset; }
.rev-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1a73e8;                 /* Google link blue */
  cursor: pointer;
}
.rev-more:hover { text-decoration: underline; }
.rev-more .less { display: none; }
.rev-toggle:checked ~ .rev-more .more { display: none; }
.rev-toggle:checked ~ .rev-more .less { display: inline; }
.rev-toggle:focus-visible ~ .rev-more { outline: 2px solid #1a73e8; outline-offset: 2px; border-radius: 2px; }

.reviews-cta { margin-top: 34px; text-align: center; }
.reviews-cta p { color: rgba(255,255,255,.88); }
.reviews-cta a { color: var(--white); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   SERVICE AREA — symmetrical composition (per client review): two matching
   framed panels — city chips left, Google Maps embed right — equal columns
   and equal heights ≥900px, clean stack below.
   ========================================================================== */
.areas { background: var(--white); }
.areas-layout { margin-top: 34px; display: grid; gap: 28px; align-items: stretch; }
@media (min-width: 900px) {
  .areas-layout { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.areas-panel {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--beige);
  border-top: 5px solid var(--red);
  box-shadow: 0 18px 40px -26px rgba(58,58,58,.55);
}
.areas-content { padding: 28px 26px 26px; }
.areas-map { padding: 10px 10px 0; }
.areas-map iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 0;
  background: var(--beige-light);
}
@media (min-width: 900px) {
  /* fill the panel so both columns finish at the same height */
  .areas-map iframe { flex: 1 1 auto; aspect-ratio: auto; min-height: 320px; }
}
.areas-map .map-caption {
  font-size: 13.5px;
  line-height: 1.5;
  text-align: center;
  padding: 11px 12px;
}
.areas-map .map-caption strong { color: var(--heading-dark); }
.city-list { display: flex; flex-wrap: wrap; gap: 10px; }
.city-list li {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--heading-dark);
  background: var(--beige-light);
  border: 1px solid var(--beige);
  padding: 9px 16px;
  line-height: 1.4;
}
.city-list li.home-base { background: var(--red); border-color: var(--red); color: var(--white); }
.areas .micro-cta { margin-top: auto; padding-top: 26px; font-size: 16px; }
.areas .micro-cta a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }

/* ==========================================================================
   FAQ — native <details> accordion, zero JS; section centered per client
   review (accordion column centered, question/answer text stays left)
   ========================================================================== */
.faq { background: var(--beige-light); }
.faq-list { margin: 36px auto 0; max-width: 820px; text-align: left; }
.faq-item { background: var(--white); border: 1px solid var(--beige); margin-bottom: 10px; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 17px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--red);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex: none;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: var(--crimson);
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { color: var(--red-dark); }
.faq-item .faq-a { padding: 0 20px 18px; font-size: 15.5px; }

/* ==========================================================================
   FINAL CTA — full-bleed project photo behind indigo form card
   ========================================================================== */
.final-cta { position: relative; background: var(--heading-dark); overflow: hidden; }
.final-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.final-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(24,20,19,.9) 0%, rgba(24,20,19,.74) 48%, rgba(24,20,19,.45) 100%);
}
.final-cta .container { position: relative; z-index: 2; }
.final-grid { display: grid; gap: 40px; align-items: center; }
.final-copy .kicker { color: var(--beige); }
.final-copy .kicker::before { background: var(--beige); }
.final-copy .section-title { font-size: clamp(28px, 2.6vw + 16px, 42px); color: var(--white); }
.final-copy .section-intro { font-size: 17.5px; color: rgba(255,255,255,.92); }
.final-copy .call-big {
  margin-top: 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: rgba(255,255,255,.92);
}
.final-copy .call-big a {
  display: inline-block;
  font-size: clamp(24px, 2vw + 12px, 32px);
  color: var(--white);
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-color: var(--crimson);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.final-copy .call-big a:hover { color: var(--beige); }
.final-copy .call-big .hours { display: block; font-family: var(--font-body); font-weight: 400; font-size: 14.5px; color: rgba(255,255,255,.78); }
@media (min-width: 1100px) { .final-grid { grid-template-columns: minmax(0,1fr) 440px; gap: 64px; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--beige-light); }
.footer-accent { height: 8px; background: var(--crimson); }
.footer-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 44px 20px;
  display: grid;
  gap: 26px;
}
.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--heading-dark);
  max-width: 26em;
  line-height: 1.5;
}
.footer-info { font-style: normal; font-size: 15px; line-height: 1.8; }
.footer-info strong { color: var(--heading-dark); }
.footer-info a { font-family: var(--font-heading); font-weight: 700; font-size: 17px; }
.footer-bottom {
  background: var(--crimson);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  padding: 13px 20px;
}
.footer-bottom a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
@media (min-width: 900px) {
  .footer-main { grid-template-columns: 1.4fr 1fr; align-items: center; }
}

/* ==========================================================================
   STICKY MOBILE CALL BAR
   ========================================================================== */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  height: var(--sticky-h);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -6px 18px rgba(0,0,0,.22);
}
.sticky-bar a {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
  padding: 8px 6px;
}
.sticky-call { background: var(--red); }
.sticky-call:active { background: var(--red-dark); }
.sticky-form { background: var(--indigo); }
.sticky-form:active { background: var(--indigo-dark); }
@media (min-width: 900px) {
  .sticky-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- Small-screen safety (360px) ---------- */
@media (max-width: 420px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .form-card { padding: 26px 20px 22px; }
  .sticky-bar a { font-size: 13px; }
}

/* ---------- Motion: single restrained load reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *, .hero-inner .form-card {
    animation: rise .7s cubic-bezier(.22,.9,.3,1) both;
  }
  .hero-copy > :nth-child(2) { animation-delay: .08s; }
  .hero-copy > :nth-child(3) { animation-delay: .16s; }
  .hero-copy > :nth-child(4) { animation-delay: .24s; }
  .hero-inner .form-card { animation-delay: .2s; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
  }
}
