/* =====================================================================
   Robin Hood Roofing style.css
   Design system cloned from bonedry.com structure/typography.
   Industrial font stack: Big Shoulders Display (headlines) + Barlow Condensed (labels/nav) + Barlow (body).
   Palette derived from bonedry CSS: ink #222021, gold #CEBE9C, gray #707070,
   red #CF2131. Primary accent shifted to Robin Hood brand green (logo).
   ===================================================================== */

:root {
  /* Brand palette */
  --ink: #222021;          /* charcoal base + dark sections */
  --ink-90: #2c2a2b;
  --ink-soft: #34312f;
  --green: #1c7d34;        /* Robin Hood brand green (logo), primary accent */
  --green-dark: #145a25;
  --green-deep: #0f3f1b;
  --gold: #cebe9c;         /* warm tan/gold secondary (matches reference) */
  --gold-deep: #b6a075;
  --red: #cf2131;          /* urgent storm/insurance accent (reference red + logo feather) */
  --red-dark: #a8141f;
  --gray: #707070;
  --gray-soft: #8a8a8a;
  --line: #e3e1dd;
  --off: #f5f4f2;          /* light section background */
  --off-2: #efece7;
  --white: #ffffff;

  /* Type */
  --font: "Barlow", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Big Shoulders Display", sans-serif;
  --font-label: "Barlow Condensed", sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 1040px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 8px rgba(34, 32, 33, 0.08);
  --shadow: 0 12px 30px rgba(34, 32, 33, 0.12);
  --shadow-lg: 0 26px 60px rgba(34, 32, 33, 0.22);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --utility-h: 40px;
  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--green); }
ul { margin: 0; padding: 0; }
li { list-style: none; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.08; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; }

h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); text-transform: uppercase; letter-spacing: 0.005em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); text-transform: uppercase; letter-spacing: 0.01em; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.narrow { max-width: var(--container-narrow); }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-label); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--gold); }
.lead { font-size: 1.18rem; color: var(--gray); max-width: 62ch; }
.center .lead { margin-inline: auto; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 16px; top: -120px;
  background: var(--green-dark); color: #fff; padding: 12px 20px;
  border-radius: var(--radius); z-index: 2000; font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; outline: 3px solid var(--gold); }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}
.on-dark :focus-visible, .footer :focus-visible, .hero :focus-visible, .inspection-bar :focus-visible { outline-color: var(--gold); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-label); font-weight: 700; font-size: 0.98rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 15px 30px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    box-shadow 0.2s var(--ease), color 0.2s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(28, 125, 52, 0.28); }
.btn-primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(28, 125, 52, 0.38); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(207, 33, 49, 0.28); }
.btn-red:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-deep); color: var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Utility bar ---------- */
.utility {
  background: var(--ink); color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem; height: var(--utility-h);
  display: flex; align-items: center;
}
.utility .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.utility a { color: rgba(255, 255, 255, 0.82); font-weight: 600; }
.utility a:hover { color: var(--gold); }
.utility-left { display: flex; align-items: center; gap: 22px; }
.utility-tag { font-family: var(--font-label); color: var(--gold); font-weight: 700; letter-spacing: 0.04em; }
.utility-right { display: flex; align-items: center; gap: 16px; }
.utility-socials { display: flex; gap: 12px; align-items: center; }
.utility-socials a { display: inline-flex; }
.utility-socials svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; height: var(--header-h);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease), height 0.25s var(--ease);
}
.header.shrink { box-shadow: var(--shadow-sm); }
.header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-name { font-family: var(--font-display); font-weight: 900; font-size: 1.2rem; line-height: 1; color: var(--ink); text-transform: uppercase; letter-spacing: 0.02em; white-space: nowrap; }
.brand-name span { display: block; font-family: var(--font-label); font-size: 0.72rem; font-weight: 700; color: var(--green); letter-spacing: 0.1em; margin-top: 5px; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 22px; flex: 1; justify-content: flex-end; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  font-family: var(--font-label); color: var(--ink); font-weight: 700; font-size: 0.95rem; white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.03em; position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--green); transition: width 0.25s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--green-dark); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { font-family: var(--font-label); font-weight: 700; color: var(--ink); font-size: 1.05rem; white-space: nowrap; }
.header-phone:hover { color: var(--green); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: var(--radius); cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink);
  position: relative; transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--ink); }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,18,18,0.78) 0%, rgba(20,18,18,0.5) 45%, rgba(20,18,18,0.82) 100%),
    linear-gradient(90deg, rgba(15,13,13,0.85) 0%, rgba(15,13,13,0.25) 65%);
}
.hero-inner {
  padding-top: clamp(96px, 16vw, 200px);
  padding-bottom: clamp(80px, 12vw, 150px);
  /* horizontal padding inherited from .container (padding-inline: 24px) */
}
.hero-inner > * { min-width: 0; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(206,190,156,0.5); color: var(--gold);
  padding: 8px 16px; border-radius: 999px; font-family: var(--font-label); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 { color: #fff; text-shadow: 0 2px 26px rgba(0,0,0,0.45); margin-bottom: 18px; }
.hero h1 .hl { color: var(--gold); }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,0.92); max-width: 52ch; margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-proof { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; font-weight: 700; }
.hero-proof .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.hero-proof small { display: block; font-weight: 600; color: rgba(255,255,255,0.78); font-size: 0.8rem; letter-spacing: 0.02em; }

/* Contact form fields */
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 6px; color: var(--ink); }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--off); transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); background: #fff;
  box-shadow: 0 0 0 3px rgba(28,125,52,0.16);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 0.9rem; font-weight: 700; margin-top: 10px; min-height: 1.2em; }
.form-status.ok { color: var(--green-dark); }
.form-status.err { color: var(--red-dark); }
.form-fineprint { font-size: 0.78rem; color: var(--gray-soft); margin-top: 10px; }

/* ---------- Free inspection capture bar ---------- */
.inspection-bar { background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; padding: 16px 0; }
.inspect-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px 28px; flex-wrap: wrap; }
.inspect-lead { display: flex; align-items: center; gap: 12px; min-width: 0; }
.ib-icon { flex: 0 0 auto; color: var(--gold); }
.inspect-lead-text { min-width: 0; }
.inspect-lead-text strong { display: block; font-family: var(--font-display); font-size: 1.04rem; font-weight: 800; line-height: 1.2; }
.inspect-lead-text small { display: block; font-weight: 600; color: rgba(255,255,255,0.82); font-size: 0.82rem; }
.inspect-form { flex: 1 1 520px; min-width: 0; }
.inspect-step[hidden] { display: none; }
.ib-fields { display: flex; align-items: stretch; gap: 8px; min-width: 0; }
.ib-field { flex: 1 1 140px; min-width: 0; }
.ib-field-zip { flex: 0 1 130px; }
.ib-field input { width: 100%; height: 46px; padding: 0 14px; border: 1px solid rgba(255,255,255,0.4); border-radius: var(--radius); background: #fff; color: var(--ink); font-size: 0.95rem; font-family: inherit; }
.ib-field input::placeholder { color: #6f6f6c; }
.ib-submit { flex: 0 0 auto; white-space: nowrap; height: 46px; padding: 0 22px; }
.ib-back { flex: 0 0 auto; align-self: center; background: transparent; border: 1px solid rgba(255,255,255,0.55); color: #fff; border-radius: var(--radius); height: 46px; padding: 0 16px; font-weight: 700; font-family: inherit; cursor: pointer; }
.ib-back:hover { background: rgba(255,255,255,0.12); }
.ib-progress { margin: 6px 0 0; font-size: 0.74rem; font-weight: 600; color: rgba(255,255,255,0.78); text-align: right; }
.inspect-status { margin: 8px 0 0; font-size: 0.86rem; font-weight: 700; }
.inspect-status:empty { display: none; }
.inspect-status.ok { color: #d9f7df; }
.inspect-status.err { color: #ffd9dc; }

/* ---------- Trust strip ---------- */
.trust { background: var(--ink); color: #fff; padding: 26px 0; }
.trust .container { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 28px; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 12px; font-weight: 700; }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,0.18); }
.trust-item .big { font-family: var(--font-display); font-size: 1.7rem; font-weight: 900; color: var(--gold); line-height: 1; }
.trust-item small { display: block; font-weight: 600; color: rgba(255,255,255,0.72); font-size: 0.8rem; }

/* ---------- Promo offers ---------- */
.offers { background: var(--off); }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.offer {
  background: #fff; border-radius: var(--radius-lg); padding: 34px 30px; text-align: center;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.offer:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.offer .offer-icon {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(28,125,52,0.1);
}
.offer .offer-icon svg { width: 32px; height: 32px; fill: var(--green); }
.offer h3 { text-transform: uppercase; letter-spacing: 0.02em; }
.offer p { color: var(--gray); margin-bottom: 0; font-size: 0.98rem; }
.offer.accent { background: var(--green); color: #fff; border-color: var(--green); }
.offer.accent .offer-icon { background: rgba(255,255,255,0.16); }
.offer.accent .offer-icon svg { fill: #fff; }
.offer.accent p { color: rgba(255,255,255,0.9); }

/* ---------- Award highlight ---------- */
.award { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.award::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(28,125,52,0.35), transparent 55%);
}
.award .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.award h2 { color: #fff; }
.award h2 .hl { color: var(--gold); }
.award p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }
.award-seal {
  justify-self: center; width: min(330px, 80%); aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  display: grid; place-items: center; text-align: center; padding: 30px;
  box-shadow: var(--shadow-lg); border: 6px solid var(--gold);
}
.award-seal .seal-top { font-family: var(--font-label); font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.award-seal .seal-main { font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 900; line-height: 1; margin: 10px 0; color: #fff; }
.award-seal .seal-sub { font-size: 0.85rem; color: rgba(255,255,255,0.85); }

/* ---------- Services photo tiles ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.svc-tile {
  position: relative; isolation: isolate; display: block; overflow: hidden;
  border-radius: var(--radius-lg); aspect-ratio: 4 / 5; min-height: 360px;
  box-shadow: var(--shadow-sm); color: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.svc-tile:hover, .svc-tile:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform 0.6s var(--ease);
}
.svc-tile:hover .svc-img, .svc-tile:focus-visible .svc-img { transform: scale(1.07); }
.svc-tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,18,18,0) 28%, rgba(20,18,18,0.55) 62%, rgba(15,46,24,0.92) 100%);
  transition: background 0.3s var(--ease);
}
.svc-tile:hover::after, .svc-tile:focus-visible::after {
  background: linear-gradient(180deg, rgba(20,18,18,0.05) 18%, rgba(20,18,18,0.6) 52%, rgba(13,52,26,0.96) 100%);
}
.svc-body { position: absolute; inset: auto 0 0 0; padding: 24px 24px 26px; }
.svc-ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(2px); margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.25);
}
.svc-ico svg { width: 24px; height: 24px; fill: var(--gold); }
.svc-body h3 { color: #fff; margin-bottom: 0; font-size: 1.3rem; text-shadow: 0 1px 12px rgba(0,0,0,0.35); }
.svc-desc { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.svc-desc > p {
  overflow: hidden; color: rgba(255,255,255,0.88); font-size: 0.95rem; margin: 0;
  opacity: 0; transition: opacity 0.35s var(--ease); transition-delay: 0.05s;
}
.svc-tile:hover .svc-desc, .svc-tile:focus-visible .svc-desc { grid-template-rows: 1fr; }
.svc-tile:hover .svc-desc > p, .svc-tile:focus-visible .svc-desc > p { opacity: 1; padding-top: 10px; }
.svc-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-family: var(--font-label); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold);
}
.svc-cta svg { width: 14px; height: 14px; fill: currentColor; transition: transform 0.2s var(--ease); }
.svc-tile:hover .svc-cta svg, .svc-tile:focus-visible .svc-cta svg { transform: translateX(4px); }

/* ---------- Inspection / value split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split-media .stamp {
  position: absolute; bottom: -22px; right: -10px; background: var(--green);
  color: #fff; padding: 16px 22px; border-radius: var(--radius); box-shadow: var(--shadow);
  font-family: var(--font-display); font-weight: 900; text-align: center; line-height: 1.1;
}
.split-media .stamp small { display: block; font-family: var(--font-label); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--gold); }
.check-list { margin: 22px 0 28px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; }
.check-list svg { flex: none; width: 24px; height: 24px; fill: var(--green); margin-top: 1px; }

/* ---------- Why us ---------- */
.why { background: var(--off); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 46px; }
.why-card { background: #fff; border-radius: var(--radius-lg); padding: 30px 26px; text-align: center; border: 1px solid var(--line); }
.why-card .why-icon { width: 66px; height: 66px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; margin: 0 auto 18px; }
.why-card .why-icon svg { width: 32px; height: 32px; fill: var(--gold); }
.why-card h3 { font-size: 1.12rem; }
.why-card p { color: var(--gray); font-size: 0.94rem; margin-bottom: 0; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; margin-top: 44px; }
.gallery-item { overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-cap {
  position: absolute; inset: auto 0 0 0; padding: 26px 16px 12px;
  background: linear-gradient(transparent, rgba(20,18,18,0.85)); color: #fff;
  font-family: var(--font-label); font-size: 0.82rem; font-weight: 700; opacity: 0; transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: none; }
.gallery-note { text-align: center; margin-top: 24px; color: var(--gray); font-size: 0.92rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; isolation: isolate; text-align: center; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(15,63,27,0.92), rgba(20,18,18,0.82)); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.15rem; max-width: 60ch; margin-inline: auto; }
.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Service areas ---------- */
.areas { background: var(--ink); color: #fff; }
.areas h2 { color: #fff; }
.areas .lead { color: rgba(255,255,255,0.82); }
.area-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; max-width: 880px; margin-inline: auto; }
.area-chips li {
  font-family: var(--font-label); border: 1px solid rgba(206,190,156,0.4); color: var(--gold); border-radius: 999px;
  padding: 10px 22px; font-weight: 700; font-size: 0.95rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.area-chips li:hover { background: var(--gold); color: var(--ink); }

/* ---------- Testimonials ---------- */
.reviews { background: var(--off); }
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 8px; }
.reviews-rating { text-align: right; }
.reviews-rating .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 900; color: var(--ink); line-height: 1; }
.reviews-rating .stars { color: #d99a2b; letter-spacing: 2px; font-size: 1.15rem; }
.reviews-rating small { display: block; color: var(--gray); font-weight: 600; }

/* Animated two-row review marquee */
.reviews-marquee {
  margin-top: 38px; display: flex; flex-direction: column; gap: 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-row { overflow: hidden; }
.marquee-track {
  display: flex; gap: 22px; width: max-content; padding: 8px 0;
  animation: marquee-left 64s linear infinite; will-change: transform;
}
.marquee-track.reverse { animation: marquee-right 76s linear infinite; }
.reviews-marquee:hover .marquee-track,
.marquee-track:focus-within { animation-play-state: paused; }
@keyframes marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.review {
  position: relative; flex: 0 0 380px; width: 380px;
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px 28px 26px; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.review .g-badge {
  position: absolute; top: 22px; right: 24px; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 900; font-size: 1rem; color: #fff;
  background: conic-gradient(from -45deg, #ea4335, #fbbc05, #34a853, #4285f4, #ea4335);
}
.review .stars { color: #d99a2b; letter-spacing: 2px; margin-bottom: 12px; font-size: 1.02rem; }
.review p { color: var(--ink-soft); font-size: 0.96rem; flex: 1; margin: 0; }
.review blockquote { margin: 0; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.review .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(140deg, var(--green), var(--green-dark)); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 1.02rem; flex: none; }
.review .who strong { display: block; font-size: 0.95rem; }
.review .who small { color: var(--gray); font-size: 0.82rem; }
.reviews-disclaimer { text-align: center; margin-top: 26px; font-size: 0.8rem; color: var(--gray-soft); }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; transform: none !important; }
  .marquee-row { overflow-x: auto; scrollbar-width: none; }
  .marquee-row::-webkit-scrollbar { display: none; }
  .reviews-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ---------- Final CTA / contact ---------- */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info .lead { margin-bottom: 26px; }
.contact-list { display: grid; gap: 18px; margin-bottom: 26px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ci-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(28,125,52,0.1); display: grid; place-items: center; flex: none; }
.contact-list .ci-icon svg { width: 22px; height: 22px; fill: var(--green); }
.contact-list strong { display: block; }
.contact-list a, .contact-list span { color: var(--gray); }
.contact-card { background: var(--off); border-radius: var(--radius-lg); padding: 34px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.contact-card h2 { font-size: 1.5rem; text-transform: none; }

/* ---------- Footer ---------- */
.footer { background: #16140f; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand img { height: 92px; width: auto; margin-bottom: 16px; background: #fff; border-radius: 12px; padding: 8px; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; }
.footer-brand .tagline { color: var(--gold); font-style: italic; font-weight: 700; }
.footer h4 { font-family: var(--font-label); color: #fff; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.92rem; margin-bottom: 18px; }
.footer-col li { margin-bottom: 10px; font-size: 0.93rem; }
.footer-socials { display: flex; gap: 12px; margin-top: 8px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; }
.footer-socials a:hover { background: var(--green); border-color: var(--green); }
.footer-socials svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0; font-size: 0.84rem; }
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Legal / content pages ---------- */
.page-hero { background: var(--ink); color: #fff; padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 60px); }
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.8); margin: 0; }
.legal { padding: clamp(48px, 7vw, 84px) 0; }
.legal .container { max-width: 820px; }
.legal h2 { text-transform: none; letter-spacing: -0.01em; font-size: 1.5rem; margin-top: 38px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin-top: 24px; font-size: 1.15rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { margin: 0 0 1rem; padding-left: 1.2rem; }
.legal ul li { list-style: disc; margin-bottom: 8px; }
.legal a { font-weight: 700; }
.legal .updated { color: var(--gray); font-size: 0.92rem; font-style: italic; }
.legal .flag { background: #fff8e6; border-left: 4px solid var(--gold-deep); padding: 14px 18px; border-radius: 6px; font-size: 0.92rem; color: var(--ink-soft); }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-label); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; margin-top: 30px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .svc-tile:hover, .svc-tile:hover .svc-img, .offer:hover, .gallery-item:hover img { transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (min-width: 1025px) and (max-width: 1180px) {
  .header .container { gap: 12px; }
  .nav { gap: 14px; }
  .nav-links { gap: 15px; }
  .nav-links a { font-size: 0.86rem; letter-spacing: 0.02em; }
  .header-cta { gap: 10px; }
  .header-phone { font-size: 0.95rem; }
  .header-cta .btn { padding-left: 16px; padding-right: 16px; }
  .brand-name { font-size: 1rem; }
}

@media (max-width: 1024px) {
  .utility-left { display: none; }
  .utility .container { justify-content: center; }
  .utility-right { gap: 14px; }
  .utility-right a[href^="tel"] { white-space: nowrap; }
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; background: #fff; flex-direction: column;
    align-items: stretch; gap: 0; padding: 8px 0 18px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform 0.3s var(--ease);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .nav.open { transform: none; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid var(--off); white-space: normal; }
  .nav-links a::after { display: none; }
  .header-cta { flex-direction: column; padding: 14px 24px 0; gap: 10px; }
  .header-cta .btn { width: 100%; }
  .nav-toggle { display: inline-flex; }
  .brand-name { font-size: 1rem; }
  .brand-name span { font-size: 0.65rem; }
  .svc-grid, .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .award .container, .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  :root { --header-h: 68px; }
  /* Hero mobile: pull in vertical padding, shrink headline + sub-copy */
  .hero-inner { padding-top: 64px; padding-bottom: 44px; }
  .hero h1 { font-size: 1.55rem; line-height: 1.12; margin-bottom: 12px; }
  .hero-sub { font-size: 0.9rem; line-height: 1.5; margin-bottom: 16px; max-width: 100%; }
  .hero-badge { font-size: 0.68rem; letter-spacing: 0.05em; padding: 5px 11px; margin-bottom: 12px; }
  .hero-actions { gap: 10px; margin-bottom: 16px; }
  .hero-proof { gap: 14px; font-size: 0.9rem; }
  .svc-grid, .offers-grid, .why-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.wide { grid-column: span 2; }
  .review { flex-basis: 300px; width: 300px; padding: 24px; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .reviews-rating { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust .container { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .trust-item { justify-content: flex-start; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid rgba(255,255,255,0.18); padding-top: 18px; }
  .inspect-inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .inspect-form { flex: none; width: 100%; }
  .inspect-lead { justify-content: flex-start; gap: 10px; }
  .ib-icon { display: none; }
  .ib-fields { flex-wrap: wrap; gap: 8px; }
  .ib-field { flex: 1 1 calc(50% - 4px); }
  .ib-field-zip { flex: 1 1 calc(50% - 4px); }
  .ib-submit { width: 100%; margin-top: 2px; }
  .ib-back { width: 100%; align-self: stretch; }
  .ib-progress { text-align: center; margin-top: 4px; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .reviews-rating { text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .hero-actions .btn { width: 100%; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--off); }
.faq-list {
  max-width: 820px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-item[open] { border-color: var(--green); box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-weight: 800;
  font-size: 1.06rem;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover,
.faq-item[open] summary { color: var(--green-dark); }
.faq-item summary:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.faq-mark { position: relative; flex: 0 0 auto; width: 20px; height: 20px; }
.faq-mark::before, .faq-mark::after {
  content: "";
  position: absolute;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.faq-mark::before { top: 9px; left: 2px; right: 2px; height: 2px; }
.faq-mark::after { left: 9px; top: 2px; bottom: 2px; width: 2px; }
.faq-item[open] .faq-mark::after { transform: scaleY(0); opacity: 0; }
.faq-answer { padding: 0 24px 22px; color: var(--gray); }
.faq-answer p { margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item, .faq-mark::before, .faq-mark::after { transition: none; }
}
@media (max-width: 560px) {
  .faq-item summary { padding: 16px 18px; font-size: 1rem; }
  .faq-answer { padding: 0 18px 18px; }
}
