/* Guardian Roofing & Gutters
   Industry-conventional layout, modern execution.
   Refs: Graber Roofing, Bone Dry (Fort Wayne). */

:root {
  --paper: #ffffff;
  --bone: #f4f4f4;          /* very light neutral grey */
  --bone-2: #e8e8e8;
  --ink: #0d0d0d;
  --jet: #1a1a1a;
  --slate: #3a3a3a;
  --body: #2d2d2d;
  --mute: #6a6a6a;
  --line: #e5e5e5;
  --line-dark: #2a2a2a;
  --accent: #0d0d0d;         /* black as accent, strict B&W brand */
  --accent-hover: #2a2a2a;
  --gold: #1a1a1a;           /* preserved var name; resolved to near-black for stars */
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --t: cubic-bezier(.2,.7,.1,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--body);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- type ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 0;
}
h1 { font-size: clamp(40px, 5.2vw, 64px); }
h2 { font-size: clamp(32px, 3.8vw, 48px); }
h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 700; letter-spacing: -.01em; }
h4 { font-size: 18px; font-weight: 700; letter-spacing: -.005em; margin-bottom: 6px; }
p  { margin: 0 0 1em; }
.lead { font-size: 18px; color: #444; line-height: 1.6; max-width: 65ch; }

.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.dark .kicker { color: #c8c8c8; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { max-width: 1380px; margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(60px, 7vw, 96px) 0; }
.section-tight { padding: clamp(48px, 5vw, 72px) 0; }

.dark { background: var(--ink); color: #d9d9d9; }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark p { color: #c2c2c2; }
.dark .lead { color: #d4d4d4; }

.bone { background: var(--bone); }

/* ---------- top utility bar ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  overflow: hidden;
  position: relative;
}

/* scrolling offer marquee */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.marquee { display: flex; overflow: hidden; }
.marquee-track {
  display: flex; align-items: center; flex: 0 0 auto; white-space: nowrap;
  will-change: transform;
  animation: mq-scroll 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.mq-item {
  display: inline-flex; align-items: center;
  padding: 9px 0; font-size: 13px; font-weight: 600;
  letter-spacing: .03em; color: #fff; opacity: .82;
}
.mq-offer { opacity: 1; font-weight: 800; }
.mq-sep { padding: 0 26px; font-size: 8px; color: #fff; opacity: .38; transform: translateY(-1px); }
@keyframes mq-scroll { from { transform: translateX(0); } to { transform: translateX(-25%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.topbar-inner {
  max-width: 1380px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px var(--gutter);
  gap: 24px; flex-wrap: wrap;
}
.topbar .left, .topbar .right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar a { color: #fff; opacity: .85; transition: opacity .2s var(--t); }
.topbar a:hover { opacity: 1; }
.topbar .pill {
  background: #fff;
  color: #0d0d0d;
  padding: 4px 12px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
}
.topbar .ico { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 760px) {
  .topbar .right { display: none; }
  .topbar-inner { justify-content: center; }
}

/* ---------- header ---------- */
.header {
  background: #fff;
  position: sticky; top: 0; z-index: 90;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0);
  transition: background .3s var(--t), box-shadow .3s var(--t),
              backdrop-filter .3s var(--t), border-color .3s var(--t);
}
/* frosted-glass header once the page is scrolled */
.header.scrolled {
  background: rgba(255, 255, 255, .68);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: rgba(0, 0, 0, .07);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .header.scrolled { background: rgba(255, 255, 255, .96); }
}
.header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.header-inner {
  max-width: 1380px; margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.brand img { height: 52px; width: auto; }
.brand .brand-name { height: 40px; }
.brand .text { display: flex; flex-direction: column; line-height: 1; }
.brand .name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.01em;
}
.brand .tag {
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent);
}

/* --- Services dropdown --- */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-item .caret {
  width: 15px; height: 15px; margin-top: 1px;
  transition: transform .25s var(--t);
}
.nav-item:hover .caret,
.nav-item:focus-within .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 236px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
  padding: 8px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity .22s var(--t), transform .22s var(--t), visibility .22s var(--t);
  z-index: 300;
}
/* invisible bridge so the 8px gap doesn't drop the hover */
.dropdown::before {
  content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 14px;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(4px);
}
.dropdown a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 5px;
  white-space: nowrap;
}
.dropdown a::after { display: none !important; }
.dropdown a:hover { background: var(--bone); color: var(--accent); }

/* wide grouped mega-menu */
.dropdown.mega {
  left: 0;
  transform: translateY(8px);
  display: grid;
  grid-template-columns: repeat(3, minmax(178px, 1fr));
  gap: 2px 14px;
  padding: 16px;
}
.nav-item:hover .dropdown.mega,
.nav-item:focus-within .dropdown.mega { transform: translateY(4px); }
.mega-col { display: flex; flex-direction: column; }
.mega-h {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mute);
  padding: 10px 14px 5px; margin-top: 4px;
}
.mega-col > .mega-h:first-child { margin-top: 0; }

/* mobile sub-links + group labels under Services */
.mobile-menu nav .mm-group {
  padding-left: 22px; margin-top: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mute);
}
.mobile-menu nav .mm-sub {
  padding-left: 34px;
  font-size: 15px;
  color: var(--mute);
}
.mobile-menu nav .mm-sub:hover { color: var(--accent); }

/* keep anchor jumps clear of the fixed header */
.svc-row { scroll-margin-top: 112px; }

/* service-page highlight cards */
.hl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.hl { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 26px 24px; }
.hl h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.hl p { font-size: 15px; color: var(--body); line-height: 1.62; }

/* service-page related links */
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.rel-card {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  padding: 20px 22px; font-weight: 700; font-size: 16px; color: var(--ink);
  transition: border-color .2s var(--t), transform .2s var(--t), box-shadow .2s var(--t);
}
.rel-card .arr { color: var(--accent); transition: transform .2s var(--t); }
.rel-card:hover { border-color: #d0ccc0; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.07); }
.rel-card:hover .arr { transform: translateX(4px); }

@media (max-width: 860px) {
  .hl-grid, .rel-grid { grid-template-columns: 1fr; }
}

.header-cta {
  display: flex; align-items: center; gap: 16px;
}
.header-phone {
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.header-phone:hover { color: var(--accent); }
.header-phone svg { width: 18px; height: 18px; color: var(--accent); }

.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.menu-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1020px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .header-inner { height: 72px; }
  .brand img { height: 44px; }
  .brand .brand-name { height: 34px; }
  .header-phone span:last-child { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s var(--t), color .2s var(--t), transform .15s var(--t), border-color .2s var(--t);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #3a3a3a; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 12px 24px;
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
  padding: 12px 24px;
}
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn .arr { transition: transform .2s var(--t); }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: #1a1a1a;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  min-height: clamp(680px, 82vh, 860px);
}
.hero-bg {
  position: absolute; inset: 0;
  background: #1a1a1a;
  background-image: url('../img/hero-house.png');
  background-size: cover;
  background-position: 60% 95%;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    /* strong left vignette so copy reads clean, photo opens up on right */
    linear-gradient(100deg,
      rgba(0,0,0,.92) 0%,
      rgba(0,0,0,.74) 28%,
      rgba(0,0,0,.42) 50%,
      rgba(0,0,0,.18) 70%,
      rgba(0,0,0,.05) 100%),
    /* subtle top + bottom edge darkening for cinematic anchoring */
    linear-gradient(180deg,
      rgba(0,0,0,.35) 0%,
      rgba(0,0,0,0) 18%,
      rgba(0,0,0,0) 78%,
      rgba(0,0,0,.55) 100%);
  z-index: 1;
}
/* lift the form card */
.hero-form-card {
  position: relative;
  isolation: isolate;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(56px, 6vw, 96px) var(--gutter) clamp(56px, 6vw, 96px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero-copy { color: #fff; max-width: 640px; }
.hero-copy .kicker { color: #c8c8c8; }
.hero-copy h1 {
  color: #fff;
  font-size: clamp(40px, 5vw, 60px);
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero-copy p.lead {
  color: rgba(255,255,255,.85);
  font-size: 18px;
  max-width: 56ch;
  margin: 0 0 28px;
}
.hero-trust {
  display: flex; align-items: center; gap: 14px;
  margin: 0 0 28px;
  flex-wrap: wrap;
}
.hero-trust .stars { color: #fff; font-size: 18px; letter-spacing: 2px; }
.hero-trust .label { font-size: 14px; color: rgba(255,255,255,.85); }
.hero-trust .label strong { color: #fff; }
.hero-trust .bbb-badge {
  height: 32px; width: auto;
  box-sizing: content-box;
  background: #fff;
  padding: 6px 10px;
  border-radius: 7px;
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
}
.hero-bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; gap: 12px;
}
.hero-bullets li {
  padding-left: 32px;
  position: relative;
  color: #e5e5e5;
  font-size: 15.5px;
}
.hero-bullets li::before {
  content: ""; position: absolute;
  left: 0; top: 3px;
  width: 22px; height: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
}
.hero-bullets li::after {
  content: "✓"; position: absolute;
  left: 6px; top: 2px;
  color: #fff; font-weight: 700; font-size: 13px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* form card */
.btn-light { background: #fff; color: #0d0d0d; }
.btn-light:hover { background: #e8e8e8; }
.btn-block { width: 100%; justify-content: center; padding-top: 16px; padding-bottom: 16px; }

.hero-form-card {
  background: #fff;
  border-radius: 4px;
  padding: clamp(28px, 3vw, 36px);
  box-shadow: 0 24px 60px rgba(0,0,0,.32), 0 4px 16px rgba(0,0,0,.18);
  position: relative;
}
.hero-form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: #0d0d0d;
  border-radius: 4px 4px 0 0;
}
.hero-form-card .form-header { margin-bottom: 20px; }
.hero-form-card .form-kicker {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #6a6a6a;
  margin-bottom: 8px;
}
.hero-form-card h3 {
  font-size: 26px; line-height: 1.1; margin-bottom: 8px; letter-spacing: -.01em;
}
.hero-form-card .form-sub {
  font-size: 14px; color: #555; margin: 0;
}
.hero-form-card .form { gap: 14px; }
.hero-form-card .field input,
.hero-form-card .field textarea,
.hero-form-card .field select {
  padding: 12px 14px;
  font-size: 15px;
}
.hero-form-card .field textarea { min-height: 86px; }
.hero-form-card .form-disclaimer { margin: 4px 0 0; }
.hero-form-card .form-foot {
  margin-top: 12px;
  text-align: center;
  font-size: 12px; color: #6a6a6a;
}
.hero-form-card .form-foot strong { color: #0d0d0d; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 100%; }
}
@media (max-width: 560px) {
  .hero-form-card { padding: 22px; }
  .hero-form-card h3 { font-size: 22px; }
}

/* ---------- trust strip ---------- */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.trust-strip .row {
  display: flex; align-items: center; justify-content: space-around; gap: 32px;
  flex-wrap: wrap;
}
.trust-strip .item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #444;
}
.trust-strip .item strong { color: var(--ink); font-weight: 700; }
.trust-strip .ico {
  width: 28px; height: 28px;
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.trust-strip .ico svg { width: 24px; height: 24px; }

/* ---------- section intros ---------- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 4vw, 60px);
}
.intro p { font-size: 17px; color: #444; }
@media (max-width: 820px) { .intro { grid-template-columns: 1fr; align-items: start; } }

/* ---------- service cards ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .25s var(--t), box-shadow .25s var(--t), border-color .25s var(--t);
  display: flex; flex-direction: column;
  text-align: left;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  border-color: #d0ccc0;
}
.service-card .photo {
  aspect-ratio: 16/10;
  background: #1a1a1a center/cover no-repeat;
  position: relative;
}
.service-card .photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55));
}
.service-card .photo .tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(13,13,13,.85);
  color: #fff;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
}
.service-card .photo .title {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.01em;
  z-index: 2;
}
.service-card .body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex; flex-direction: column;
}
.service-card .body p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 18px;
  flex: 1;
}
.service-card .more {
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.service-card:hover .more { gap: 12px; }

@media (max-width: 920px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }

/* ---------- why us / 4-up ---------- */
.why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why .item { text-align: left; }
.why .icon {
  width: 56px; height: 56px;
  background: var(--bone);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.dark .why .icon { background: rgba(255,255,255,.06); color: #c8c8c8; }
.why .icon svg { width: 26px; height: 26px; }
.why h4 { color: var(--ink); margin-bottom: 8px; font-size: 17px; }
.dark .why h4 { color: #fff; }
.why p { font-size: 14.5px; color: #4a4a4a; margin: 0; }
.dark .why p { color: #b8b8b8; }

@media (max-width: 920px) { .why { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 540px) { .why { grid-template-columns: 1fr; } }

/* ---------- offers banner ---------- */
.offers {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.offers::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.06), transparent 60%);
}
.offers-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  padding: 48px 0;
}
.offers .lead-copy h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 8px;
}
.offers .lead-copy p { color: #c2c2c2; margin: 0; max-width: 38ch; }
.offer-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid #ffffff;
  padding: 24px 24px 24px 22px;
  border-radius: 2px;
}
.offer-card .amt {
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
}
.offer-card .amt small { font-size: 16px; color: #c2c2c2; font-weight: 600; letter-spacing: 0; }
.offer-card .for {
  font-size: 14px;
  color: #d4d4d4;
  margin: 10px 0 4px;
  font-weight: 600;
}
.offer-card .fine { font-size: 12px; color: #888; }
@media (max-width: 880px) {
  .offers-grid { grid-template-columns: 1fr; padding: 32px 0; }
}

/* ---------- about / founder split ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: #111 center/cover no-repeat;
  border-radius: 4px;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .stamp {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,.95);
  padding: 12px 16px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
}
.about-photo .stamp .sub { font-weight: 500; color: #555; margin-top: 2px; font-size: 11px; }
.about-copy h2 { margin-bottom: 22px; }
.about-copy .sig {
  margin-top: 32px;
  display: flex; align-items: center; gap: 14px;
}
.about-copy .sig img { width: 44px; height: 44px; }
.about-copy .sig .who { font-weight: 800; font-size: 16px; color: var(--ink); }
.about-copy .sig .role { font-size: 13px; color: var(--mute); }

@media (max-width: 880px) { .about-split { grid-template-columns: 1fr; } }

/* ---------- certifications strip ---------- */
.certs {
  background: var(--bone);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.certs-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.certs-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mute);
  max-width: 180px;
  line-height: 1.4;
}
.certs-label strong { color: var(--ink); display: block; font-size: 15px; }
.certs-logos {
  display: flex; align-items: center; gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}
.cert {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #555;
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.cert .big { font-size: 22px; color: var(--ink); }
.cert .small { font-size: 11px; color: var(--mute); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }
.cert.bbb { font-size: 28px; color: var(--ink); }
@media (max-width: 760px) {
  .certs-inner { grid-template-columns: 1fr; gap: 20px; }
  .certs-label { max-width: 100%; }
}

/* ---------- reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.review::before {
  content: "\201C";
  position: absolute;
  top: 18px; right: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--bone-2);
  font-weight: 800;
}
.review .stars { color: #0d0d0d; font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; position: relative; z-index: 2; }
.review blockquote {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  color: #333;
  flex: 1;
  position: relative; z-index: 2;
}
.review .who {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.review .who .svc { display: block; font-weight: 500; font-size: 13px; color: var(--mute); margin-top: 2px; }
.review .ggl {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--mute);
  margin-top: 8px;
}
.review .ggl::before {
  content: "G";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px;
}
@media (max-width: 920px) { .reviews { grid-template-columns: 1fr; } }

/* ---------- service area ---------- */
.coverage {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.cities .city {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  display: flex; align-items: center; gap: 8px;
  transition: background .2s var(--t), color .2s var(--t);
}
.cities .city:hover { background: var(--bone); color: var(--accent); }
.cities .city.home { background: var(--ink); color: #fff; font-weight: 700; }
.cities .city.home::before { content: "★"; color: #ffffff; }
@media (max-width: 880px) { .coverage { grid-template-columns: 1fr; } .cities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cities { grid-template-columns: 1fr; } }

/* ---------- final CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.06), transparent 60%);
}
.cta-band-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: 72px 0;
}
.cta-band h2 { color: #fff; font-size: clamp(32px, 3.6vw, 44px); margin-bottom: 14px; }
.cta-band p { color: #c2c2c2; max-width: 50ch; margin: 0 0 24px; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .shield {
  display: flex; justify-content: flex-end;
}
.cta-band .shield img {
  height: 260px; width: auto;
  filter: invert(1);
  opacity: .15;
}
@media (max-width: 880px) {
  .cta-band-inner { grid-template-columns: 1fr; padding: 56px 0; }
  .cta-band .shield { display: none; }
}

/* ---------- footer ---------- */
.footer {
  background: #0a0a0a;
  color: #c4c4c4;
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer .brand-block .brand-name {
  font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px;
}
.footer .brand-block .tag {
  font-size: 11px; letter-spacing: .14em; color: #c8c8c8; font-weight: 700; text-transform: uppercase; margin-bottom: 16px;
}
.footer .brand-block p { font-size: 14px; color: #999; max-width: 38ch; }
.footer .brand-block .socials { display: flex; gap: 10px; margin-top: 20px; }
.footer .brand-block .socials a {
  width: 36px; height: 36px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s var(--t), border-color .2s var(--t);
}
.footer .brand-block .socials a:hover { background: #fff; border-color: #fff; color: #0d0d0d; }
.footer .brand-block .socials svg { width: 14px; height: 14px; }
.footer h5 {
  font-size: 14px; color: #fff; font-weight: 800; margin: 0 0 16px;
  letter-spacing: 0;
}
.footer a { font-size: 14px; color: #aaa; display: block; padding: 5px 0; }
.footer a:hover { color: #fff; }
.footer .contact-line { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 14px; color: #aaa; }
.footer .contact-line svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: #777;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- mobile sticky call ---------- */
.callbar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--ink);
  z-index: 95;
  padding: 12px 14px;
  border-top: 1px solid #222;
}
.callbar a {
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px;
  font-weight: 700;
  border-radius: 2px;
}
@media (max-width: 720px) {
  .callbar { display: block; }
  body { padding-bottom: 72px; }
}

/* ---------- mobile menu drawer ---------- */
.mobile-menu {
  position: fixed; inset: 0;
  background: #fff;
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-head .brand-name { font-weight: 800; font-size: 18px; color: var(--ink); }
.mobile-menu-close { background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.mobile-menu-close svg { width: 26px; height: 26px; }
.mobile-menu nav { display: flex; flex-direction: column; padding-top: 8px; }
.mobile-menu nav a {
  padding: 18px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu .actions {
  margin-top: auto; padding-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
}

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 7vw, 96px) 0 clamp(56px, 7vw, 96px);
}
.page-hero .breadcrumbs {
  font-size: 13px; color: var(--mute);
  margin-bottom: 18px;
}
.page-hero .breadcrumbs a { color: var(--mute); }
.page-hero .breadcrumbs a:hover { color: var(--accent); }
.page-hero h1 { font-size: clamp(38px, 5vw, 60px); max-width: 18ch; margin-bottom: 18px; }
.page-hero p { font-size: 18px; color: #444; max-width: 60ch; margin: 0; }
.page-hero .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- service detail rows ---------- */
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--line);
}
.svc-row.flip > div:first-child { order: 2; }
.svc-row .img {
  aspect-ratio: 4/3;
  background: #1a1a1a center/cover no-repeat;
  border-radius: 4px;
}
.svc-row h2 { margin: 8px 0 18px; }
.svc-row ul.checks { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.svc-row ul.checks li {
  padding-left: 32px; position: relative; font-size: 15.5px; color: #3a3a3a;
}
.svc-row ul.checks li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px;
  background: var(--bone);
  border-radius: 50%;
}
.svc-row ul.checks li::after {
  content: "✓";
  position: absolute; left: 6px; top: 3px;
  color: var(--accent);
  font-weight: 700; font-size: 14px;
}
@media (max-width: 880px) {
  .svc-row, .svc-row.flip { grid-template-columns: 1fr; }
  .svc-row.flip > div:first-child { order: 0; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 24px;
  color: var(--accent);
  font-weight: 400;
  transition: transform .25s var(--t);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 14px; color: #4a4a4a; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 44px);
}
.form-card h2 { margin-bottom: 8px; font-size: clamp(26px, 3vw, 32px); }
.form-card .sub { color: var(--mute); margin: 0 0 24px; font-size: 15px; }
.form { display: grid; gap: 18px; }
.form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form .two { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px; font-weight: 600; color: #333;
}
.field input, .field textarea, .field select {
  background: var(--bone);
  border: 1px solid transparent;
  padding: 13px 14px;
  font-family: inherit; font-size: 15px;
  color: var(--ink);
  outline: none;
  border-radius: 2px;
  transition: border-color .2s var(--t), background .2s var(--t);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent); background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.form-disclaimer { font-size: 12px; color: var(--mute); margin: 8px 0 0; }

.contact-side .info-card {
  background: var(--ink);
  color: #fff;
  padding: 32px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.contact-side .info-card::after {
  content: "";
  position: absolute; right: -40px; bottom: -40px;
  width: 220px; height: 220px;
  background: url('../img/shield.png') center/contain no-repeat;
  filter: invert(1); opacity: .07;
  pointer-events: none;
}
.contact-side h3 { color: #fff; margin-bottom: 20px; }
.contact-side .info-item {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.contact-side .info-item:first-of-type { border-top: 0; padding-top: 0; }
.contact-side .info-item .label {
  font-size: 12px; color: #999;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-side .info-item .value { font-size: 17px; color: #fff; font-weight: 600; }
.contact-side .info-item .value a:hover { color: #c8c8c8; }

.contact-side .promo-card {
  margin-top: 16px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 26px 28px;
  border-radius: 4px;
  position: relative; overflow: hidden;
}
.contact-side .promo-card h4 { color: var(--mute); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; font-weight: 700; }
.contact-side .promo-card .big { font-size: 28px; font-weight: 800; margin: 0 0 4px; letter-spacing: -.01em; color: var(--ink); }
.contact-side .promo-card p { font-size: 13px; color: #555; margin: 0; }

/* ---------- value grid (about page) ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.values .val {
  background: #fff;
  padding: 40px;
}
.values .val .num {
  font-size: 13px; font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.values .val h3 { margin-bottom: 12px; }
.values .val p { color: #4a4a4a; font-size: 15px; margin: 0; }
@media (max-width: 720px) { .values { grid-template-columns: 1fr; } }

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery .tile {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: #1a1a1a center/cover no-repeat;
}
.gallery .tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.62));
}
.gallery .tile .cap {
  position: absolute; bottom: 14px; left: 16px; right: 16px; z-index: 2;
  color: #fff;
}
.gallery .tile .cap .t { font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.gallery .tile .cap .s { font-size: 12px; color: #cfcfcf; margin-top: 2px; }
.gallery .tile .badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(13,13,13,.82);
  color: #fff;
  padding: 4px 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 2px;
}
.gallery .tile .ph {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: .12;
}
.gallery .tile .ph img { width: 38%; filter: invert(1); }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } }

/* ---------- legal / prose ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: clamp(22px, 2.4vw, 28px); margin: 40px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { font-size: 16px; color: #3a3a3a; line-height: 1.7; }
.legal ul { padding-left: 22px; margin: 0 0 1em; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal .updated { font-size: 14px; color: var(--mute); margin-bottom: 32px; }

/* ---------- utilities ---------- */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.no-pad { padding: 0; }
.no-bb { border-bottom: 0; }

/* =========================================================
   Rounded theme (ROVEN-style reference)
   Pills + large radii. Structure unchanged, visual only.
   ========================================================= */

/* pill buttons + circular arrow badge */
.btn { border-radius: 999px; padding: 15px 28px; }
.btn .arr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 12px; line-height: 1; flex: 0 0 auto;
}
.btn-primary .arr, .btn-dark .arr, .btn-ghost-light .arr { background: rgba(255,255,255,.22); }
.btn-light .arr, .btn-ghost .arr, .btn-outline .arr { background: rgba(0,0,0,.10); }

/* rounded cards + panels */
.hero-form-card, .form-card { border-radius: 24px; }
.hero-form-card::before { display: none; }
.service-card { border-radius: 20px; }
.about-photo, .review, .offer-card,
.contact-side .info-card, .contact-side .promo-card,
.hl, .rel-card { border-radius: 18px; }
.dropdown { border-radius: 18px; }
.dropdown a { border-radius: 12px; }
.faq details { border-radius: 14px; }

/* rounded media */
.svc-row .img, .gallery .tile { border-radius: 22px; }
.hero-trust .bbb-badge { border-radius: 10px; }

/* rounded form fields */
.field input, .field textarea, .field select { border-radius: 12px; }

/* fully-rounded small tags */
.service-card .photo .tag, .gallery .tile .badge, .about-photo .stamp { border-radius: 999px; }

/* pill navigation with filled active state (desktop only) */
@media (min-width: 861px) {
  .nav-links {
    background: var(--bone);
    border-radius: 999px;
    padding: 5px 6px;
    gap: 2px;
  }
  .nav-links > a,
  .nav-item > a {
    padding: 9px 14px;
    border-radius: 999px;
    white-space: nowrap;
    transition: background .2s var(--t), color .2s var(--t);
  }
  .nav-links > a:hover,
  .nav-item > a:hover { background: rgba(0,0,0,.06); }
  .nav-links a.active { color: #fff; background: var(--ink); }
  .nav-links a.active::after { display: none; }
}

.header-phone { white-space: nowrap; }

/* =========================================================
   Bento layout — every section floats as its own rounded card
   Structure unchanged; page background shows in the gaps.
   ========================================================= */
body { background: #e7e5e0; }

section, .trust-strip, .certs, .footer {
  margin: 16px clamp(10px, 1.6vw, 24px);
  border-radius: clamp(22px, 2.4vw, 34px);
}
section { background: var(--paper); }        /* plain sections -> white surface */

/* drop the old flush-seam borders now that cards float apart */
.hero, .trust-strip, .certs { border-top: 0; border-bottom: 0; }

/* keep inner content off the rounded top edge even where padding was zeroed */
section[style*="padding-top: 0"],
section[style*="padding-top:0"] { padding-top: clamp(40px, 5vw, 72px) !important; }

/* bento — mobile refinement so cards + hero copy fit small screens */
/* let the stacked hero column shrink below its children's min-content,
   otherwise the form card's width overflows the narrower bento card */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy, .hero-form-card { min-width: 0; }
}
@media (max-width: 560px) {
  section, .trust-strip, .certs, .footer {
    margin-left: 8px; margin-right: 8px;
    border-radius: 20px;
  }
  .hero-content { padding-left: 20px; padding-right: 20px; }
  .hero-copy h1 { font-size: 34px; }
  .hero-copy, .hero-copy p, .hero-bullets li { overflow-wrap: break-word; }
}

/* =========================================================
   Floating rounded header card (matches bento sections)
   ========================================================= */
.header {
  top: 14px;
  margin: 14px clamp(10px, 1.6vw, 24px) 0;
  border: 1px solid var(--line);
  border-radius: clamp(18px, 2vw, 26px);
  box-shadow: 0 6px 22px rgba(0,0,0,.06);
}
.header.scrolled { border-color: rgba(0,0,0,.07); }
.header-inner { padding: 0 clamp(16px, 2vw, 26px); }
@media (max-width: 560px) {
  .header { margin-left: 8px; margin-right: 8px; }
}

/* ---- Lead form: success + error states ---- */
.form-success {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bone);
}
.form-success-mark {
  width: 56px; height: 56px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--ink); color: #fff;
  font-size: 28px; font-weight: 800; line-height: 1;
}
.form-success h3 { margin: 0 0 8px; font-size: 22px; color: var(--ink); }
.form-success p { margin: 0; color: var(--body); font-size: 15px; line-height: 1.6; }
.form-success a { color: var(--ink); font-weight: 700; }
.form-error {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid #e5b4b4;
  background: #fbeaea;
  border-radius: 10px;
  color: #8a1f1f;
  font-size: 14px; line-height: 1.5;
}
.form-error a { color: #8a1f1f; font-weight: 700; }
