/* ==========================================================================
   IRJ Home Inspections — design system
   design_plan: seed 3120 · Satoshi · Editorial Split ·
                scroll-reveal-hover-physics · density 5 (balanced)
   THEME v5 (2026-08-14, client feedback): LIGHT — the client's own palette.
   THEME v11 (2026-09-01, owner direction): WHITE / BLUE / BLACK + orange accent.
   White ground, his blue #2B79C1, near-black ink, orange #E8762D highlights.
   Beige/cream removed completely; warm low-sat depth via soft blue washes.
   ========================================================================== */

/* ---- Fonts (self-hosted Satoshi; approved stacks only) ---- */
@font-face { font-family:'Satoshi'; src:url('../fonts/satoshi-400.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Satoshi'; src:url('../fonts/satoshi-500.woff2') format('woff2'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Satoshi'; src:url('../fonts/satoshi-700.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Satoshi'; src:url('../fonts/satoshi-900.woff2') format('woff2'); font-weight:900; font-style:normal; font-display:swap; }

/* ---- Tokens ---- */
:root {
  --bg: #FFFFFF;             /* white ground (client: no beige) */
  --bg-deep: #FFFFFF;        /* white footer (owner: more white) */
  --surface: #FFFFFF;        /* cards */
  --surface-2: #FAFBFD;      /* hover, near-white */
  --ink: #1B1F27;            /* near-black */
  --ink-strong: #10141B;
  --muted: #5B6572;
  --accent: #2B79C1;         /* his blue */
  --accent-strong: #1D5C99;  /* darker blue: links, hovers */
  --accent-soft: rgba(43, 121, 193, 0.09);
  --warm: #E8762D;           /* orange: fastest-channel + rating highlights */
  --warm-strong: #C95F1D;
  --warm-soft: rgba(232, 118, 45, 0.12);
  --line: #E2E7EE;
  --line-soft: rgba(16, 20, 27, 0.08);
  --radius: 4px;
  --radius-lg: 6px;
  --font: 'Satoshi', 'Helvetica Neue', Arial, sans-serif;
  --measure: 64ch;
  --section-y: clamp(5rem, 10vw, 9.5rem);
  --tap: 48px;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-strong); text-decoration: none; }
a:hover { color: var(--ink-strong); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--accent); color: #FFFFFF; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #C6CFDB; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ---- Type scale ---- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.12; letter-spacing: -0.015em; color: var(--ink-strong); margin: 0 0 1rem; text-wrap: balance; }
h1 { font-size: clamp(2.2rem, 6vw, 4.4rem); font-weight: 900; letter-spacing: -0.022em; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1.1rem; max-width: var(--measure); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink-strong); font-weight: 700; }
.accent { color: var(--accent-strong); }

.kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-strong); margin: 0 0 1.1rem;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--accent); flex: none; }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 56ch; }

/* ---- Layout ---- */
.container { width: min(92rem, 92vw); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.section + .section { border-top: 1px solid var(--line-soft); }
.section-head { margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.grid { display: grid; gap: 1.1rem; }

.depth { position: relative; }
.depth::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(52rem 30rem at 82% -6%, var(--accent-soft), transparent 62%),
    radial-gradient(40rem 26rem at -12% 108%, rgba(35, 39, 46, 0.05), transparent 58%);
}
.depth > .container { position: relative; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.035;
  background-image: var(--grain); background-size: 160px 160px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: var(--tap); padding: 0.72rem 1.5rem;
  font-family: var(--font); font-weight: 700; font-size: 1rem; letter-spacing: 0.01em;
  border-radius: var(--radius); border: 1px solid transparent; cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}
.btn-primary { background: var(--accent); color: #FFFFFF; }
.btn-primary:hover { background: var(--accent-strong); color: #FFFFFF; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: #C6CFDB; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-strong); transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.tel-link { font-weight: 700; color: var(--ink-strong); white-space: nowrap; }
.tel-link:hover { color: var(--accent-strong); }

.u-slide { position: relative; }
.u-slide::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 240ms ease;
}
.u-slide:hover::after { transform: scaleX(1); }

/* ---- Header / nav (his blue band) ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(43, 121, 193, 0.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.header-inner { display: flex; align-items: center; gap: 1.4rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 0.8rem; margin-right: auto; }
.brand img { width: 46px; height: auto; border-radius: 3px; }
.brand-name { font-weight: 900; font-size: 0.98rem; letter-spacing: 0.05em; color: #FFFFFF; line-height: 1.2; }
.brand-sub { display: block; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.78); }
.site-nav { display: flex; align-items: center; gap: 1.35rem; }
.site-nav a { color: #FFFFFF; font-weight: 500; font-size: 0.95rem; padding-block: 0.7rem; }
.site-nav a:hover { color: #FFFFFF; opacity: 0.82; }
.header-cta { display: none; align-items: center; gap: 1rem; }
.header-cta .tel-link { display: none; font-size: 0.98rem; color: #FFFFFF; }
.header-cta .tel-link:hover { color: #FFFFFF; opacity: 0.82; }
.site-header .btn-primary { background: #FFFFFF; color: var(--accent-strong); }
.site-header .btn-primary:hover { background: #E7F0F8; color: var(--accent-strong); }
.nav-toggle {
  display: none; width: var(--tap); height: var(--tap); border: 1px solid rgba(255,255,255,0.4);
  background: transparent; border-radius: var(--radius); cursor: pointer; position: relative; flex: none;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  position: absolute; left: 50%; width: 20px; height: 2px; background: #FFFFFF;
  transform: translateX(-50%); transition: transform 200ms ease, opacity 150ms ease;
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #FFFFFF; border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(20, 24, 30, 0.14);
    padding: 1rem clamp(1rem, 4vw, 2rem) 1.6rem; gap: 0;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
    max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  body.nav-open .site-nav { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { min-height: var(--tap); display: flex; align-items: center; border-bottom: 1px solid var(--line-soft); color: var(--ink); }
  .site-nav a:hover { color: var(--accent-strong); opacity: 1; }
}
@media (min-width: 1024px) {
  .header-cta { display: flex; }
}
@media (min-width: 1200px) {
  .header-cta .tel-link { display: inline-flex; }
}

/* ---- Hero (photo behind, subject right, text left over a left-heavy scrim) ---- */
.hero { position: relative; border-bottom: 1px solid var(--line-soft); overflow: hidden; background: #16222E; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 1;   /* never merge with .grain::after's 0.035 — that nullified the scrim in v7-v9 */
  background: linear-gradient(90deg, rgba(13, 27, 41, 0.97) 0%, rgba(13, 27, 41, 0.93) 55%, rgba(13, 27, 41, 0.55) 78%, rgba(13, 27, 41, 0.24) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 46rem);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  padding-block: clamp(4.5rem, 10vw, 9rem);
  min-height: min(88vh, 44rem);
}
.hero .kicker { color: #E4EEF8; text-shadow: 0 1px 10px rgba(10, 20, 32, 0.55); }
.hero .kicker::before { background: #E4EEF8; }
.hero h1 { color: #FFFFFF; text-shadow: 0 2px 18px rgba(10, 20, 32, 0.6), 0 0 1px rgba(10, 20, 32, 0.8); }
.hero .lede { color: #FFFFFF; text-shadow: 0 1px 10px rgba(10, 20, 32, 0.55); }
.hero .btn-ghost { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.55); }
.hero .btn-ghost:hover { border-color: #FFFFFF; color: #FFFFFF; }
.hero-caption { display: none; }
.hero-heritage {
  display: flex; flex-wrap: wrap; gap: 0.3rem 1.4rem; margin-top: 0.9rem;
  font-size: 0.85rem; color: #F2F6FA; line-height: 1.4; text-shadow: 0 1px 8px rgba(10, 20, 32, 0.55);
}
.hero-heritage li { list-style: none; display: flex; align-items: center; gap: 0.5rem; }
.hero-heritage ul { display: flex; flex-wrap: wrap; gap: 0.3rem 1.4rem; margin: 0; padding: 0; }
.dot { width: 5px; height: 5px; border-radius: 50%; background: #8FBCE8; flex: none; }
.hero-links {
  display: flex; flex-wrap: wrap; gap: 0.2rem 1.05rem;
  margin-top: 0.7rem; padding-top: 0.5rem; border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.92rem; max-width: 46rem;
}
.hero-links a { color: #F2F6FA; font-weight: 500; min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; padding-inline: 0.3rem; text-shadow: 0 1px 8px rgba(10, 20, 32, 0.55); }
.hero-links a:hover { color: #FFFFFF; }
@media (max-width: 350px) {
  h1 { font-size: 1.9rem; }
}
@media (max-width: 860px) {
  .hero::after {
    background: linear-gradient(180deg, rgba(13, 27, 41, 0.93) 0%, rgba(13, 27, 41, 0.80) 55%, rgba(13, 27, 41, 0.95) 100%);
  }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; padding-block: clamp(2.75rem, 8vw, 6rem); }
}

/* ---- Fact strip ---- */
.fact-strip { border-bottom: 1px solid var(--line-soft); background: #FFFFFF; }
.fact-strip .grid { grid-template-columns: repeat(3, 1fr); }
.fact { padding: 1.5rem clamp(1rem, 2.5vw, 2rem); border-left: 1px solid var(--line-soft); }
.fact:first-child { border-left: 0; }
.fact h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.fact p { font-size: 0.88rem; color: var(--muted); margin: 0; max-width: 30ch; }
@media (max-width: 760px) {
  .fact-strip .grid { grid-template-columns: 1fr; }
  .fact { border-left: 0; border-top: 1px solid var(--line-soft); }
  .fact:first-child { border-top: 0; }
}

/* ---- Split rows ---- */
.split { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
.split .media-frame {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(20, 24, 30, 0.14);
}
.split .media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.media-frame--full img { aspect-ratio: 3 / 2; object-position: 100% 50%; }   /* near-uncropped: face fully shows */
.split .media-frame.media-frame--natural img,
.media-frame.media-frame--natural img {
  aspect-ratio: auto; width: auto; height: auto; max-width: 100%; max-height: 70rem;
  object-fit: initial; margin-inline: auto;
}   /* the FULL picture: ratio-true, never cropped, never stretched - must outrank the split-scoped cover rule */
@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split .media-frame { max-width: 34rem; }
}

/* ---- Cards / bento ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem; position: relative; overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 14px 34px rgba(20, 24, 30, 0.10); }
.card h3 { font-size: 1.08rem; margin-bottom: 0.45rem; }
.card p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.card .num {
  font-weight: 900; font-size: 0.8rem; color: var(--accent); letter-spacing: 0.08em;
  display: block; margin-bottom: 0.7rem;
}

.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.spec { background: var(--surface); padding: 1.3rem 1.4rem; transition: background-color 200ms ease; }
.spec:hover { background: var(--surface-2); }
.spec h3 { font-size: 1rem; margin: 0 0 0.35rem; display: flex; align-items: baseline; gap: 0.6rem; }
.spec h3 .tick { color: var(--accent); font-weight: 900; }
.spec p { font-size: 0.88rem; color: var(--muted); margin: 0; }
@media (max-width: 700px) { .spec-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .cards, .cards.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards, .cards.two, .cards.four { grid-template-columns: 1fr; } }

/* ---- Pricing ---- */
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease; }
.price-card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 14px 34px rgba(20, 24, 30, 0.10); }
.price-card .price-head { padding: 1.4rem 1.4rem 0.9rem; border-bottom: 1px solid var(--line-soft); }
.price-card .price-head h3 { margin-bottom: 0.2rem; }
.price-card .price-head p { font-size: 0.85rem; color: var(--muted); margin: 0; }
.price-rows { padding: 0.9rem 1.4rem 1.2rem; flex: 1; }
.price-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; }
.price-row:last-child { border-bottom: 0; }
.price-row .amount { font-weight: 700; color: var(--ink-strong); white-space: nowrap; }
.price-note { font-size: 0.85rem; color: var(--muted); margin-top: 1.2rem; }
.price-foot { padding: 0 1.4rem 1.4rem; }

.plain-list { margin: 0; padding: 0; list-style: none; }
.plain-list li { padding: 0.55rem 0 0.55rem 1.4rem; position: relative; border-bottom: 1px solid var(--line-soft); }
.plain-list li::before { content: ""; position: absolute; left: 0; top: 1.05rem; width: 7px; height: 2px; background: var(--accent); }

/* ---- FAQ ---- */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); margin-bottom: 0.8rem; overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 1.05rem 1.3rem; font-weight: 700; color: var(--ink-strong);
  min-height: var(--tap); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-weight: 900; color: var(--accent); font-size: 1.25rem; line-height: 1; transition: transform 200ms ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.3rem 1.2rem; color: var(--muted); max-width: 68ch; }
.faq-item .faq-body p { margin: 0; }

/* ---- Maintenance seasons ---- */
.season { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); overflow: hidden; }
.season-head { padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--line-soft); background: linear-gradient(120deg, var(--surface-2), var(--surface)); }
.season-head h3 { margin: 0; font-size: 1.05rem; }
.season-head span { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.06em; }
.season-img { border-bottom: 1px solid var(--line-soft); }
.season-img img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.season-img--person img { object-position: 50% 20%; }   /* S2: head lands at 14-16 percent of height */
.season ol { margin: 0; padding: 1rem 1.4rem 1.2rem 2.6rem; }
.season ol li { padding: 0.4rem 0; font-size: 0.93rem; }
.season ol li::marker { color: var(--accent); font-weight: 700; }
.season ol li strong { display: block; }
.season ol li span { color: var(--muted); }

/* ---- CTA band ---- */
.cta-band { position: relative; border-top: 1px solid var(--line-soft); }
.cta-band .inner { text-align: center; padding-block: clamp(3.6rem, 7vw, 6rem); }
.cta-band .inner > * { margin-inline: auto; }
.cta-band h2 { max-width: 22ch; }
.cta-band .lede { margin-bottom: 2rem; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(38rem 20rem at 50% 0%, var(--accent-soft), transparent 65%);
}

/* ---- Forms ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; font-weight: 700; color: var(--ink-strong); letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: 1rem; color: var(--ink);
  background: #FFFFFF; border: 1px solid #C6CFDB; border-radius: var(--radius);
  padding: 0.78rem 0.9rem; min-height: var(--tap); width: 100%;
  transition: border-color 180ms ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field .hint { font-size: 0.78rem; color: var(--muted); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-status { margin-top: 1rem; font-weight: 700; min-height: 1.4rem; }
.form-status.ok { color: var(--accent-strong); }
.form-status.err { color: #A8442A; }

/* ---- Footer ---- */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--bg-deep); position: relative; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: 2.4rem; padding-block: 3.4rem; }
.footer-grid h3 { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid ul li { padding: 0.3rem 0; }
.footer-grid a { color: var(--ink); font-size: 0.94rem; }
.footer-grid a:hover { color: var(--accent-strong); }
.footer-brand img { width: 52px; border-radius: 3px; margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.88rem; color: var(--muted); max-width: 34ch; }
.footer-bottom { border-top: 1px solid var(--line-soft); padding-block: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between; font-size: 0.82rem; color: var(--muted); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- Sticky contact bar (bottom, ALL viewports): Text on its own row, Call + Email under it ---- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid;
  grid-template-columns: 1fr 1fr; grid-template-areas: "text text" "call mail";
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); box-shadow: 0 -10px 30px rgba(16, 20, 27, 0.12);
}
.action-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 50px; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
}
.action-bar .ab-text { grid-area: text; background: var(--warm); color: #FFFFFF; flex-direction: row; }
.action-bar .ab-text small { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.95; }
.action-bar .ab-call { grid-area: call; background: #FFFFFF; color: var(--ink-strong); }
.action-bar .ab-mail { grid-area: mail; background: var(--accent); color: #FFFFFF; }
body { padding-bottom: 101px; }
@media (min-width: 641px) {
  .action-bar { grid-template-columns: 1.15fr 1fr 1fr; grid-template-areas: "text call mail"; }
  .action-bar .ab-text small { display: block; font-size: 0.66rem; }
  body { padding-bottom: 57px; }
}

/* ---- Reveals ---- */
/* Fail-open: visible by default. .js-motion (added by boot.js, and removed
   again if main.js never signals) is what opts into hidden-then-reveal. */
.reveal { opacity: 1; transform: none; transition: opacity 550ms ease, transform 550ms ease; }
.js-motion .reveal { opacity: 0; transform: translateY(18px); }
.js-motion .reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-d="1"] { transition-delay: 70ms; }
.reveal[data-d="2"] { transition-delay: 140ms; }
.reveal[data-d="3"] { transition-delay: 210ms; }
.reveal[data-d="4"] { transition-delay: 280ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .js-motion .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .price-card:hover { transform: none; }
  .u-slide::after { transform: none; }
}

/* ---- Reviews ---- */
.review-meta { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 0.7rem; }
.stars { color: var(--warm); letter-spacing: 0.12em; font-size: 0.95rem; }
.review-when { font-size: 0.8rem; color: var(--muted); }
.review-text { margin: 0 0 0.9rem; font-size: 0.98rem; line-height: 1.65; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.review-name { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

/* proof strip: his original site's real review screenshots + Angi badge */
.proof-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.8rem; margin-top: 1.8rem; }
.proof-strip figure { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #FFFFFF; }
.proof-strip img { width: 100%; height: auto; }
.proof-badge { margin-top: 1.2rem; display: flex; align-items: center; gap: 0.8rem; }
.proof-badge img { width: 92px; height: auto; }
.proof-badge span { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 900px) { .proof-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .proof-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---- Contact trio (Text / Call / Email cards) ---- */
.contact-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.contact-trio .card { text-align: left; }
.contact-trio .card .chan { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.6rem; }
.contact-trio .card--text { border-color: var(--warm); }
.contact-trio .card--text .chan { color: var(--warm-strong); }
.contact-trio .card--call .chan, .contact-trio .card--mail .chan { color: var(--accent-strong); }
.contact-trio a.big { font-weight: 700; font-size: 1.05rem; color: var(--ink-strong); }
.contact-trio a.big:hover { color: var(--accent-strong); }
.fast-line { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; font-size: 0.9rem; color: var(--warm-strong); }
.fast-line::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--warm); flex: none; }
.owner-line { font-size: 0.95rem; color: var(--muted); max-width: 34rem; }
.hero .owner-line { color: rgba(255,255,255,0.88); text-shadow: 0 1px 8px rgba(10,20,32,0.55); }
.hero .owner-line strong { color: #FFFFFF; }
.owner-line strong { color: var(--ink-strong); }

/* ---- Report highlights (short phrase rows) ---- */
.report-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin: 0; padding: 0; list-style: none; }
.report-list li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.1rem 1.2rem; font-size: 0.93rem; color: var(--muted); }
.report-list li strong { display: block; color: var(--ink-strong); margin-bottom: 0.25rem; font-size: 1rem; }
@media (max-width: 760px) { .report-list { grid-template-columns: 1fr; } .contact-trio { grid-template-columns: 1fr; } }

/* ---- Deeper rhythm bands ---- */
.section--light { background: #FFFFFF; }   /* owner: more white - separation by borders only */
.section--light h2, .section--light h3 { color: #10141B; }
.section--light p { color: #4A443B; }
.section--light .lede { color: #5C564B; }
.section--light .kicker { color: #1D5C99; }
.section--light .kicker::before { background: #2B79C1; }
.section--light .review-text { color: #2A2F38; }
.section--light::before {
  background:
    radial-gradient(48rem 26rem at 85% -4%, rgba(43, 121, 193, 0.08), transparent 60%),
    radial-gradient(38rem 22rem at -8% 112%, rgba(35, 39, 46, 0.05), transparent 55%);
}
.section--light .media-frame { border-color: rgba(35, 39, 46, 0.14); box-shadow: 0 18px 44px rgba(20, 24, 30, 0.12); }
.section--light a { color: #1D5C99; }
.section--light a:hover { color: #14161A; }
.section--light .card { background: #FFFFFF; border-color: rgba(16, 20, 27, 0.10); }
.section--light .card:hover { border-color: #2B79C1; }
.section--light .card h3 { color: #14161A; }
.section--light .card p { color: #5C564B; }
.section--light .review-when, .section--light .review-name { color: #6B655B; }
.section--light .review-text { color: #3A352D; }
.section--light .proof-strip figure { border-color: rgba(16, 20, 27, 0.10); }

/* ---- Misc ---- */
.breadcrumb { font-size: 0.84rem; color: var(--muted); padding-top: 1.6rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent-strong); }
.map-frame { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.map-frame img { width: 100%; }
.not-found { text-align: center; padding-block: clamp(6rem, 14vw, 11rem); }
.not-found h1 { font-size: clamp(4rem, 10vw, 7rem); }
