/* ============================================================
   Keystone Basement Waterproofing — landing page styles
   ============================================================ */

/* Fonts are loaded via a non-render-blocking <link rel="stylesheet"> in each page <head>
   (with preconnect). The old render-blocking @import was removed for performance. */

:root {
  /* Brand */
  --ink: #0a2540;
  --navy-900: #06192e;
  --navy-800: #0a2540;
  --navy-700: #103a63;
  --blue: #1d6fd6;
  --blue-700: #155bb0;
  --cta: #ef6c1a;
  --cta-600: #d65d10;
  --cta-glow: rgba(239, 108, 26, 0.35);

  /* Neutrals (cool, low saturation) */
  --paper: #eef2f7;
  --paper-2: #f6f9fc;
  --white: #ffffff;
  --line: #d8e1ec;
  --line-soft: #e7edf4;

  /* Text */
  --text: #14283c;
  --muted: #56697d;
  --muted-2: #7a8b9c;
  --on-dark: #e8eef6;
  --on-dark-muted: #9db2c9;

  /* Status */
  --good: #1f9e6f;

  /* Type */
  --head: 'Archivo', system-ui, sans-serif;
  --body: 'Mulish', system-ui, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06), 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow: 0 10px 30px rgba(10, 37, 64, 0.10), 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-lg: 0 30px 70px rgba(6, 25, 46, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--paper-2);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--head);
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--cta);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.section {
  padding: 96px 0;
}
.section-head {
  max-width: 720px;
}
.section-head.center {
  margin: 0 auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  margin: 16px 0 14px;
}
.section-head p {
  font-size: 18px;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-cta {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 10px 22px var(--cta-glow);
}
.btn-cta:hover { background: var(--cta-600); box-shadow: 0 14px 30px var(--cta-glow); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.32);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); }
.btn-navy {
  background: var(--ink);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: 17px; }
.btn-block { width: 100%; }

.icon { width: 20px; height: 20px; display: inline-block; flex: none; }
/* Default size for any icon SVG placed directly in a button or inline note (prevents huge unsized SVGs) */
.btn > svg { width: 19px; height: 19px; flex: none; }
.btn-lg > svg { width: 21px; height: 21px; }

/* ---------- Top utility bar ---------- */
.utility {
  background: var(--navy-900);
  color: var(--on-dark-muted);
  font-size: 13.5px;
  font-weight: 600;
}
.utility .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
}
.utility .u-left { display: flex; gap: 22px; align-items: center; }
.utility .u-item { display: inline-flex; gap: 7px; align-items: center; }
.utility .u-item svg { width: 15px; height: 15px; opacity: .8; }
.utility .u-right { display: flex; gap: 14px; align-items: center; }
.utility .u-stars { color: #ffc24d; letter-spacing: 1px; }
.utility a:hover { color: #fff; }
@media (max-width: 860px) { .utility .u-left .u-area { display: none; } }
@media (max-width: 620px) { .utility { display: none; } }

/* ---------- Header / nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; min-width: 0; text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: linear-gradient(150deg, var(--navy-700), var(--ink));
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  flex: none;
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-text { display: flex; flex-direction: column; justify-content: center; line-height: 1; min-width: 0; }
.brand-name {
  display: block;
  font-family: var(--head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.04;
  white-space: nowrap;
}
.brand-name span { color: var(--blue); }
.brand-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 4px;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 2px; align-items: center; flex: 1 1 auto; justify-content: center; }
.nav-links > a, .nav-links .has-drop > a {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  padding: 9px 13px;
  border-radius: 9px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-links > a:hover, .nav-links .has-drop > a:hover { background: var(--paper); color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.nav-phone {
  display: flex; flex-direction: column; align-items: flex-end; line-height: 1.05;
}
.nav-phone .lbl { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.nav-phone .num { font-family: var(--head); font-weight: 800; font-size: 20px; color: var(--ink); }
.nav-phone .num:hover { color: var(--blue); }
.nav-toggle {
  display: none; place-items: center;
  width: 44px; height: 44px; flex: none;
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px;
  color: var(--ink); cursor: pointer;
}
.nav-toggle:hover { border-color: var(--blue); color: var(--blue); }
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile menu drawer */
.mobile-menu { display: none; border-top: 1px solid var(--line-soft); background: #fff; box-shadow: var(--shadow); }
.header.menu-open .mobile-menu { display: block; animation: fadeUp .2s ease; }
.mobile-menu .mm-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 14px 28px 22px; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a { padding: 13px 12px; border-radius: 10px; font-family: var(--head); font-weight: 700; font-size: 16px; color: var(--text); display: flex; align-items: center; gap: 10px; }
.mobile-menu a:hover { background: var(--paper); color: var(--blue); }
.mobile-menu a svg { width: 18px; height: 18px; flex: none; }
.mobile-menu .mm-heading { font-size: 12px; color: var(--muted-2); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 16px 12px 6px; }
.mobile-menu .mm-area-grid { display: grid; grid-template-columns: 1fr 1fr; }
.mobile-menu .mm-area-grid a { font-family: var(--body); font-weight: 600; font-size: 14.5px; padding: 10px 12px; }
.mobile-menu .mm-area-grid a svg { width: 14px; height: 14px; stroke: var(--blue); opacity: .7; }
.mobile-menu .mm-call { margin-top: 14px; }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-grid; }
}
@media (max-width: 640px) {
  .nav-phone { display: none; }
}
@media (max-width: 460px) {
  .nav-cta .btn-call { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 78% -8%, rgba(29,111,214,0.18), transparent 60%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: var(--on-dark);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(900px 500px at 20% 30%, #000, transparent 75%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 84px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(29,111,214,0.16);
  border: 1px solid rgba(105,165,235,0.4);
  color: #bcd6f7;
  padding: 8px 15px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .02em;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #58e0a0; box-shadow: 0 0 0 4px rgba(88,224,160,0.22); }
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 900;
  margin: 22px 0 0;
  letter-spacing: -0.03em;
}
.hero h1 .hl { color: #6fb0ff; position: relative; white-space: nowrap; }
.hero-sub {
  font-size: 19px;
  color: var(--on-dark-muted);
  margin-top: 20px;
  max-width: 540px;
  line-height: 1.6;
}
.hero-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.hero-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 16.5px; color: #d7e3f2; }
.hero-list .tick {
  width: 24px; height: 24px; border-radius: 50%; flex: none;
  background: rgba(88,224,160,0.16); display: grid; place-items: center;
}
.hero-list .tick svg { width: 14px; height: 14px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.hero-stars { color: #ffc24d; font-size: 18px; letter-spacing: 2px; }
.hero-proof .pf { font-size: 14px; color: var(--on-dark-muted); font-weight: 600; }
.hero-proof .pf b { color: #fff; }
.hero-proof .sep { width: 1px; height: 30px; background: rgba(255,255,255,0.15); }

/* Hero lead form */
.lead-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: var(--text);
}
.lead-card .lc-top {
  background: linear-gradient(135deg, var(--cta), var(--cta-600));
  color: #fff;
  padding: 20px 26px;
  text-align: center;
}
.lead-card .lc-top .save { font-family: var(--head); font-weight: 900; font-size: 26px; letter-spacing: -0.02em; }
.lead-card .lc-top .lc-sub { font-size: 13.5px; font-weight: 600; opacity: .95; margin-top: 2px; }
.lead-card .lc-body { padding: 24px 26px 26px; }
.lead-card h3 { font-size: 22px; margin-bottom: 4px; }
.lead-card .lc-note { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.field { margin-bottom: 12px; }
.field label { display:block; font-size: 12.5px; font-weight: 700; color: var(--muted); margin-bottom: 5px; letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--text);
  background: var(--paper-2);
  transition: border .15s, box-shadow .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(29,111,214,0.13);
}
.field.error input, .field.error select { border-color: #e0563f; background: #fdf3f1; }
.field .err-msg { color: #c8402a; font-size: 12px; font-weight: 600; margin-top: 4px; display: none; }
.field.error .err-msg { display: block; }
.lc-trust { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 14px; font-size: 12.5px; color: var(--muted-2); font-weight: 600; }
.lc-trust svg { width: 15px; height: 15px; }

@media (max-width: 940px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .lead-card { max-width: 460px; }
}

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink); color: var(--on-dark); border-top: 1px solid rgba(255,255,255,0.06); }
.trustbar .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 26px 28px;
}
.tb-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; padding: 6px 8px; }
.tb-item .tb-num { font-family: var(--head); font-weight: 900; font-size: 30px; color: #fff; letter-spacing: -0.02em; }
.tb-item .tb-num .star { color: #ffc24d; }
.tb-item .tb-lbl { font-size: 13px; font-weight: 600; color: var(--on-dark-muted); }
.tb-divider { width: 1px; background: rgba(255,255,255,0.1); }
@media (max-width: 820px) {
  .trustbar .wrap { grid-template-columns: repeat(2, 1fr); gap: 18px 8px; }
}

/* ---------- Symptoms ---------- */
.symptoms { background: var(--paper-2); }
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.symptom {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.symptom:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c4d6ec; }
.symptom .s-ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(29,111,214,0.10);
  display: grid; place-items: center; margin-bottom: 16px;
}
.symptom .s-ico svg { width: 26px; height: 26px; stroke: var(--blue); }
.symptom h4 { font-size: 18px; margin-bottom: 7px; }
.symptom p { font-size: 14.5px; color: var(--muted); }
@media (max-width: 980px) { .symptom-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .symptom-grid { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.services { background: var(--white); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.svc-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s;
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc-photo { position: relative; aspect-ratio: 16/10; }
.svc-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(10,37,64,0.85); color: #fff;
  font-family: var(--head); font-weight: 700; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 7px; backdrop-filter: blur(4px);
}
.svc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 21px; margin-bottom: 8px; }
.svc-body p { font-size: 14.5px; color: var(--muted); flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 16px; font-family: var(--head); font-weight: 700; font-size: 14.5px; color: var(--blue);
}
.svc-link svg { width: 16px; height: 16px; transition: transform .15s; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Placeholder imagery ---------- */
.ph {
  position: relative;
  width: 100%; height: 100%;
  background-color: #dfe7f0;
  background-image: repeating-linear-gradient(135deg, rgba(10,37,64,0.05) 0 12px, rgba(10,37,64,0.09) 12px 24px);
  display: grid; place-items: center;
  overflow: hidden;
}
.ph span {
  font-family: 'Mulish', monospace;
  font-size: 12px; font-weight: 700;
  letter-spacing: .04em;
  color: #5a708a;
  background: rgba(255,255,255,0.78);
  padding: 6px 12px; border-radius: 6px;
  border: 1px dashed #9fb4cc;
  text-transform: lowercase;
}
.ph.dark { background-color: #16314c; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 12px, rgba(255,255,255,0.08) 12px 24px); }
.ph.dark span { color: #b9cbe0; background: rgba(8,24,42,0.6); border-color: rgba(255,255,255,0.25); }

/* ---------- Before / After ---------- */
.beforeafter { background: var(--paper-2); }
.ba-wrap { margin-top: 48px; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: center; }
.ba-stage {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  user-select: none;
  cursor: ew-resize;
}
.ba-layer { position: absolute; inset: 0; }
.ba-after { z-index: 1; }
.ba-before { z-index: 2; width: 50%; overflow: hidden; border-right: 3px solid #fff; }
.ba-before .ph { width: 100vw; max-width: none; }
.ba-label {
  position: absolute; bottom: 14px; z-index: 3;
  font-family: var(--head); font-weight: 800; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 7px; color: #fff;
}
.ba-label.l-before { left: 14px; background: rgba(200,64,42,0.92); }
.ba-label.l-after { right: 14px; background: rgba(31,158,111,0.92); z-index: 1; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4;
  width: 44px; transform: translateX(-50%);
  display: grid; place-items: center; cursor: ew-resize;
}
.ba-handle::before { content:""; position:absolute; top:0; bottom:0; left:50%; width:3px; transform: translateX(-50%); background:#fff; }
.ba-knob {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow);
  display: grid; place-items: center; position: relative;
}
.ba-knob svg { width: 22px; height: 22px; stroke: var(--ink); }
.ba-copy h3 { font-size: 30px; margin-bottom: 14px; }
.ba-copy p { color: var(--muted); font-size: 16px; margin-bottom: 18px; }
.ba-copy .ba-stat { display: flex; gap: 28px; margin-top: 22px; }
.ba-copy .ba-stat .n { font-family: var(--head); font-weight: 900; font-size: 34px; color: var(--blue); }
.ba-copy .ba-stat .l { font-size: 13px; color: var(--muted); font-weight: 600; }
@media (max-width: 900px) { .ba-wrap { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process { background: var(--ink); color: var(--on-dark); position: relative; overflow: hidden; }
.process::after {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(800px 400px at 80% 120%, #000, transparent 70%);
}
.process .section-head h2 { color: #fff; }
.process .section-head p { color: var(--on-dark-muted); }
.proc-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px; }
.proc-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius); padding: 26px 22px;
  position: relative;
}
.proc-step .p-num {
  font-family: var(--head); font-weight: 900; font-size: 15px;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--cta); color: #fff; display: grid; place-items: center; margin-bottom: 16px;
}
.proc-step h4 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.proc-step p { font-size: 14.5px; color: var(--on-dark-muted); }
@media (max-width: 900px) { .proc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .proc-grid { grid-template-columns: 1fr; } }

/* ---------- Guarantee ---------- */
.guarantee { background: var(--white); }
.guar-card {
  background: linear-gradient(120deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--on-dark);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.guar-seal {
  width: 130px; height: 130px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 30%, #2a7fe0, var(--blue-700));
  display: grid; place-items: center; text-align: center;
  box-shadow: 0 0 0 8px rgba(29,111,214,0.18), var(--shadow);
  color: #fff; font-family: var(--head); font-weight: 900;
}
.guar-seal .gs-yrs { font-size: 40px; line-height: 0.9; }
.guar-seal .gs-lbl { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }
.guar-text h2 { color: #fff; font-size: 32px; margin-bottom: 10px; }
.guar-text p { color: var(--on-dark-muted); font-size: 16px; max-width: 540px; }
@media (max-width: 860px) { .guar-card { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; gap: 24px; } .guar-seal { margin: 0 auto; } }

/* ---------- Reviews ---------- */
.reviews { background: var(--paper-2); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.rev-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.rev-stars { color: #ffb020; font-size: 17px; letter-spacing: 2px; margin-bottom: 14px; }
.rev-card p { font-size: 15.5px; color: var(--text); flex: 1; line-height: 1.62; }
.rev-foot { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.rev-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(140deg, var(--blue), var(--navy-700)); color: #fff; display: grid; place-items: center; font-family: var(--head); font-weight: 800; font-size: 16px; flex: none; }
.rev-meta .nm { font-weight: 800; font-size: 14.5px; color: var(--ink); }
.rev-meta .lc { font-size: 13px; color: var(--muted-2); display: flex; align-items: center; gap: 5px; }
.rev-meta .lc svg { width: 13px; height: 13px; }
@media (max-width: 940px) { .rev-grid { grid-template-columns: 1fr; max-width: 560px; margin-left:auto; margin-right:auto; } }

/* ---------- Financing strip ---------- */
.finance { background: var(--white); }
.fin-card {
  border: 2px dashed #c7d6e8; border-radius: var(--radius-lg);
  background: var(--paper-2);
  padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.fin-left { display: flex; align-items: center; gap: 22px; }
.fin-ico { width: 64px; height: 64px; border-radius: 16px; background: rgba(31,158,111,0.12); display: grid; place-items: center; flex: none; }
.fin-ico svg { width: 34px; height: 34px; stroke: var(--good); }
.fin-text h3 { font-size: 24px; margin-bottom: 4px; }
.fin-text p { color: var(--muted); font-size: 15.5px; }

/* ---------- Service area ---------- */
.area { background: var(--paper-2); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-top: 20px; }
.area-map { aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.area-list { columns: 2; column-gap: 24px; margin-top: 26px; }
.area-list li { list-style: none; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-weight: 600; display: flex; align-items: center; gap: 9px; break-inside: avoid; }
.area-list li svg { width: 16px; height: 16px; stroke: var(--blue); flex: none; }
@media (max-width: 860px) { .area-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-list { max-width: 820px; margin: 46px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left;
  padding: 24px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--head); font-weight: 700; font-size: 19px; color: var(--ink);
}
.faq-q .fq-ico { width: 30px; height: 30px; flex: none; border-radius: 8px; background: var(--paper); display: grid; place-items: center; transition: transform .22s, background .2s; }
.faq-q .fq-ico svg { width: 18px; height: 18px; stroke: var(--blue); }
.faq-item.open .fq-ico { transform: rotate(45deg); background: var(--blue); }
.faq-item.open .fq-ico svg { stroke: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a-inner { padding: 0 4px 24px; color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 700px; }

/* ---------- Final CTA ---------- */
.finalcta { background: linear-gradient(135deg, var(--cta), var(--cta-600)); color: #fff; text-align: center; }
.finalcta h2 { color: #fff; font-size: clamp(34px, 5vw, 56px); }
.finalcta p { font-size: 19px; opacity: .95; margin: 16px auto 0; max-width: 600px; }
.finalcta .fc-actions { display: flex; gap: 16px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.finalcta .btn-white { background: #fff; color: var(--cta-600); }
.finalcta .btn-white:hover { background: #fff8f3; transform: translateY(-2px); }
.finalcta .btn-outline { background: rgba(255,255,255,0.12); color:#fff; border: 1.5px solid rgba(255,255,255,0.6); }
.finalcta .btn-outline:hover { background: rgba(255,255,255,0.22); }
.finalcta .fc-note { margin-top: 22px; font-size: 14.5px; opacity: .9; font-weight: 600; display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 4px; }
.finalcta .fc-note svg { width: 16px; height: 16px; flex: none; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: var(--on-dark-muted); padding: 64px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-brand .brand-name { color: #fff; }
.foot-brand p { margin-top: 16px; font-size: 14.5px; max-width: 300px; line-height: 1.6; }
.foot-col h5 { font-family: var(--head); color: #fff; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a { font-size: 14.5px; color: var(--on-dark-muted); }
.foot-col a:hover { color: #fff; }
.foot-contact .fc-row { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 14px; font-size: 14.5px; }
.foot-contact .fc-row svg { width: 18px; height: 18px; stroke: var(--blue); flex: none; margin-top: 2px; }
.foot-contact .fc-row b { color: #fff; font-weight: 700; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 44px; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 10px; }
.foot-badges { display: flex; gap: 12px; align-items: center; }
.foot-badge { font-family: var(--head); font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.15); padding: 6px 12px; border-radius: 7px; color: var(--on-dark-muted); }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile bar ---------- */
.mobilebar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: none;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -6px 20px rgba(10,37,64,0.1);
}
.mobilebar .btn { flex: 1; }
.mobilebar .btn-call { background: var(--ink); color: #fff; }
@media (max-width: 720px) { .mobilebar { display: flex; } body { padding-bottom: 76px; } }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6,25,46,0.62);
  backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; transition: opacity .2s;
}
.modal-overlay.show { display: flex; opacity: 1; }
.modal {
  background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 540px;
  box-shadow: var(--shadow-lg); overflow: hidden; transform: translateY(14px) scale(.98);
  transition: transform .24s ease; max-height: 92vh; display: flex; flex-direction: column;
}
.modal-overlay.show .modal { transform: none; }
.modal-head { background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); color: #fff; padding: 26px 30px; position: relative; }
.modal-head .save-pill { display: inline-block; background: var(--cta); color: #fff; font-family: var(--head); font-weight: 800; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 12px; }
.modal-head h3 { color: #fff; font-size: 24px; }
.modal-head p { color: var(--on-dark-muted); font-size: 14px; margin-top: 5px; }
.modal-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.12); border: 0; color: #fff; display: grid; place-items: center; }
.modal-close:hover { background: rgba(255,255,255,0.25); }
.modal-close svg { width: 18px; height: 18px; }
.progress { display: flex; gap: 6px; margin-top: 18px; }
.progress .pg { flex: 1; height: 5px; border-radius: 100px; background: rgba(255,255,255,0.18); transition: background .2s; }
.progress .pg.on { background: var(--cta); }
.modal-body { padding: 26px 30px; overflow-y: auto; }
.step { display: none; }
.step.active { display: block; animation: fadeUp .26s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.step h4 { font-size: 21px; margin-bottom: 6px; }
.step .step-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice {
  border: 1.5px solid var(--line); border-radius: 12px; padding: 16px; background: var(--paper-2);
  display: flex; align-items: center; gap: 12px; cursor: pointer; transition: all .14s; font-weight: 700; font-size: 14.5px; color: var(--text);
}
.choice:hover { border-color: var(--blue); background: #fff; }
.choice.sel { border-color: var(--blue); background: rgba(29,111,214,0.07); box-shadow: 0 0 0 3px rgba(29,111,214,0.12); }
.choice .ch-ico { width: 38px; height: 38px; border-radius: 9px; background: rgba(29,111,214,0.1); display: grid; place-items: center; flex: none; }
.choice .ch-ico svg { width: 20px; height: 20px; stroke: var(--blue); }
.choice.sel .ch-ico { background: var(--blue); }
.choice.sel .ch-ico svg { stroke: #fff; }
.modal-foot { padding: 18px 30px 26px; border-top: 1px solid var(--line-soft); display: flex; gap: 12px; }
.modal-foot .btn-back { background: var(--paper); color: var(--muted); }
.modal-foot .btn-back:hover { background: var(--line-soft); }
.modal-success { text-align: center; padding: 50px 36px; display: none; }
.modal-success.show { display: block; animation: fadeUp .3s ease; }
.success-check { width: 84px; height: 84px; border-radius: 50%; background: rgba(31,158,111,0.14); display: grid; place-items: center; margin: 0 auto 22px; }
.success-check svg { width: 44px; height: 44px; stroke: var(--good); }
.modal-success h3 { font-size: 27px; margin-bottom: 10px; }
.modal-success p { color: var(--muted); font-size: 16px; max-width: 360px; margin: 0 auto; }
.success-box { background: var(--paper-2); border-radius: 12px; padding: 18px; margin-top: 24px; font-size: 14.5px; color: var(--text); }
.success-box b { color: var(--ink); }

@media (max-width: 520px) {
  .wrap { padding: 0 18px; }
  .section { padding: 64px 0; }
  .choice-grid { grid-template-columns: 1fr; }
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   MULTI-PAGE ADDITIONS — family-owned, phone-first
   ============================================================ */

/* ---- Logo slot (swappable) ---- */
.logo-slot {
  width: 44px; height: 44px; border-radius: 11px; flex: none; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.logo-slot img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Nav dropdown (Service Areas) ---- */
.has-drop { position: relative; }
.has-drop > a { display: inline-flex; align-items: center; gap: 5px; }
.has-drop > a svg { width: 14px; height: 14px; transition: transform .18s; }
.has-drop:hover > a svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line-soft); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 12px; width: 460px;
  opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s; z-index: 60;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown .dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dropdown a { font-size: 14px !important; padding: 9px 12px !important; border-radius: 8px; color: var(--text) !important; display: flex !important; align-items: center; gap: 8px; }
.dropdown a svg { width: 14px; height: 14px; stroke: var(--blue); opacity: .7; }
.dropdown a:hover { background: var(--paper) !important; color: var(--blue) !important; }
.dropdown .dd-all { grid-column: 1 / -1; margin-top: 6px; border-top: 1px solid var(--line-soft); padding-top: 10px !important; font-family: var(--head); font-weight: 700; color: var(--blue) !important; }

/* ---- Click-to-call pulse button ---- */
.btn-call .ring { display: inline-grid; place-items: center; width: 22px; height: 22px; }
.btn-call svg { width: 19px; height: 19px; }
@keyframes ringpulse { 0%,100% { transform: rotate(0); } 12% { transform: rotate(-12deg); } 24% { transform: rotate(12deg); } 36% { transform: rotate(-8deg); } 48% { transform: rotate(0); } }
.btn-call:hover svg { animation: ringpulse 1s ease; }

/* ---- Hero variant switcher (home only) ---- */
.variant-switch {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 12px 14px; width: 210px;
}
@media (max-width: 720px) { .variant-switch { bottom: 84px; right: 12px; width: 188px; } }
.variant-switch .vs-title { font-family: var(--head); font-weight: 800; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 9px; display: flex; align-items: center; gap: 7px; }
.variant-switch .vs-title svg { width: 14px; height: 14px; stroke: var(--cta); }
.vs-row { display: flex; gap: 6px; }
.vs-btn { flex: 1; border: 1.5px solid var(--line); background: var(--paper-2); border-radius: 9px; padding: 9px 0; font-family: var(--head); font-weight: 800; font-size: 14px; color: var(--muted); transition: all .14s; }
.vs-btn:hover { border-color: var(--blue); color: var(--blue); }
.vs-btn.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.vs-desc { font-size: 11.5px; color: var(--muted-2); margin-top: 8px; line-height: 1.4; font-weight: 600; }

/* ---- Hero media (owner / job site) ---- */
.hero-media { position: relative; }
.hero-media .hm-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; border: 5px solid rgba(255,255,255,0.9);
}
.hero-media .hm-badge {
  position: absolute; left: -18px; bottom: 26px;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 14px 18px; display: flex; align-items: center; gap: 13px; max-width: 250px;
}
.hero-media .hm-badge .hmb-seal { width: 46px; height: 46px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #2a7fe0, var(--blue-700)); display: grid; place-items: center; flex: none; }
.hero-media .hm-badge .hmb-seal svg { width: 24px; height: 24px; stroke: #fff; fill: none; }
.hero-media .hm-badge .hmb-t { font-family: var(--head); font-weight: 900; font-size: 16px; color: var(--ink); line-height: 1.05; }
.hero-media .hm-badge .hmb-s { font-size: 12px; color: var(--muted); font-weight: 600; }

/* ---- Hero variant layouts ---- */
.hero[data-variant] .hv { display: none; }
.hero[data-variant="a"] .hv-a { display: grid; }
.hero[data-variant="b"] .hv-b { display: block; }
.hero[data-variant="c"] .hv-c { display: grid; }

/* Variant A: split + owner portrait */
.hv-a { grid-template-columns: 1.12fr 0.88fr; gap: 56px; align-items: center; padding-top: 70px; padding-bottom: 84px; }
/* Variant B: centered bold */
.hv-b { padding: 78px 0 64px; text-align: center; max-width: 880px; margin: 0 auto; }
.hv-b .hero-list { max-width: 620px; margin-left: auto; margin-right: auto; grid-template-columns: 1fr 1fr; }
.hv-b .hero-actions, .hv-b .hero-proof { justify-content: center; }
.hv-b .hero-sub { margin-left: auto; margin-right: auto; }
.hv-b .hero-band { margin-top: 44px; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 21/7; box-shadow: var(--shadow-lg); border: 5px solid rgba(255,255,255,0.85); }
/* Variant C: copy + lead form */
.hv-c { grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: center; padding-top: 64px; padding-bottom: 78px; }
@media (max-width: 940px) {
  .hv-a, .hv-c { grid-template-columns: 1fr; gap: 38px; }
  .hero-media { max-width: 420px; }
  .hv-c .lead-card { max-width: 460px; }
  .hv-b .hero-list { grid-template-columns: 1fr; }
}

/* ---- Generic breadcrumb / page hero (interior pages) ---- */
.page-hero {
  background: radial-gradient(900px 420px at 80% -20%, rgba(29,111,214,0.16), transparent 60%), linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: var(--on-dark); position: relative; overflow: hidden;
}
.page-hero::after {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px; mask-image: radial-gradient(700px 360px at 20% 20%, #000, transparent 75%); pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; padding: 64px 28px 70px; }
.crumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--on-dark-muted); margin-bottom: 18px; }
.crumb a:hover { color: #fff; }
.crumb svg { width: 13px; height: 13px; opacity: .6; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); max-width: 760px; }
.page-hero .ph-sub { color: var(--on-dark-muted); font-size: 19px; margin-top: 16px; max-width: 600px; }
.page-hero .ph-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* ---- Content prose ---- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 0 0 16px; }
.prose h3 { font-size: 23px; margin: 34px 0 10px; }
.prose p { font-size: 17px; color: var(--text); margin-bottom: 16px; line-height: 1.7; }
.prose ul { padding-left: 0; list-style: none; margin: 18px 0; display: grid; gap: 12px; }
.prose ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; color: var(--text); }
.prose ul li svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.media-left { grid-template-columns: 1fr 1fr; }
.split .media { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } }

/* ---- Feature checklist cards ---- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.feat { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.feat .f-ico { width: 50px; height: 50px; border-radius: 13px; background: rgba(29,111,214,0.1); display: grid; place-items: center; margin-bottom: 16px; }
.feat .f-ico svg { width: 26px; height: 26px; stroke: var(--blue); }
.feat h4 { font-size: 19px; margin-bottom: 7px; }
.feat p { font-size: 14.5px; color: var(--muted); }
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr; } }

/* ---- Areas page grid ---- */
.area-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.area-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-sm); transition: all .16s; display: flex; flex-direction: column; gap: 4px;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c4d6ec; }
.area-card .ac-pin { width: 36px; height: 36px; border-radius: 9px; background: rgba(29,111,214,0.1); display: grid; place-items: center; margin-bottom: 10px; }
.area-card .ac-pin svg { width: 19px; height: 19px; stroke: var(--blue); }
.area-card h4 { font-size: 18px; }
.area-card .ac-sub { font-size: 13px; color: var(--muted-2); font-weight: 600; }
.area-card .ac-link { margin-top: 12px; font-family: var(--head); font-weight: 700; font-size: 13.5px; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.area-card .ac-link svg { width: 15px; height: 15px; transition: transform .15s; }
.area-card:hover .ac-link svg { transform: translateX(3px); }
@media (max-width: 980px) { .area-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .area-cards { grid-template-columns: 1fr; } }

/* ---- About: story / values / owner ---- */
.owner-card { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: center; }
.owner-photo { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.owner-card h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 8px; }
.owner-card .o-role { font-family: var(--head); font-weight: 700; color: var(--blue); font-size: 15px; letter-spacing: .04em; margin-bottom: 18px; }
.owner-card p { color: var(--muted); font-size: 16.5px; margin-bottom: 14px; line-height: 1.7; }
.owner-card .o-sign { font-family: var(--head); font-weight: 800; font-size: 22px; color: var(--ink); margin-top: 8px; }
@media (max-width: 760px) { .owner-card { grid-template-columns: 1fr; gap: 26px; } .owner-photo { max-width: 320px; } }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.value { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.value .v-ico { width: 52px; height: 52px; border-radius: 14px; background: rgba(239,108,26,0.1); display: grid; place-items: center; margin-bottom: 16px; }
.value .v-ico svg { width: 27px; height: 27px; stroke: var(--cta); }
.value h4 { font-size: 19px; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 820px) { .values-grid { grid-template-columns: 1fr; } }

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info .ci-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.contact-info .ci-row:first-child { padding-top: 0; }
.contact-info .ci-ico { width: 48px; height: 48px; border-radius: 12px; background: rgba(29,111,214,0.1); display: grid; place-items: center; flex: none; }
.contact-info .ci-ico svg { width: 24px; height: 24px; stroke: var(--blue); }
.contact-info .ci-t { font-family: var(--head); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 3px; }
.contact-info .ci-v { font-size: 19px; font-weight: 700; color: var(--ink); }
.contact-info .ci-v a:hover { color: var(--blue); }
.contact-info .ci-s { font-size: 14px; color: var(--muted); }
.hours-table { margin-top: 26px; background: var(--paper-2); border-radius: var(--radius); padding: 8px 20px; }
.hours-table .h-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
.hours-table .h-row:last-child { border-bottom: 0; }
.hours-table .h-row .h-day { font-weight: 700; color: var(--text); }
.hours-table .h-row .h-time { color: var(--muted); font-weight: 600; }
.hours-table .h-row.today { color: var(--blue); }
.hours-table .h-row.today .h-day, .hours-table .h-row.today .h-time { color: var(--blue); }
.contact-form { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 24px; margin-bottom: 4px; }
.contact-form .cf-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 460px) { .field-row { grid-template-columns: 1fr; } }

/* ---- Mini reviews strip (interior pages) ---- */
.rev-mini { display: flex; gap: 20px; flex-wrap: wrap; }
.rev-mini .rm { flex: 1; min-width: 240px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }

/* ---- City quick-facts ---- */
.local-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.local-stat { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px; text-align: center; box-shadow: var(--shadow-sm); }
.local-stat .ls-n { font-family: var(--head); font-weight: 900; font-size: 34px; color: var(--blue); }
.local-stat .ls-l { font-size: 14px; color: var(--muted); font-weight: 600; margin-top: 4px; }
@media (max-width: 760px) { .local-grid { grid-template-columns: 1fr; } }

/* ---- Open FAQ page (non-accordion, AI-readable) ---- */
.faq-open { max-width: 820px; margin: 0 auto; }
.faq-open .cat { font-family: var(--head); font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin: 46px 0 6px; padding-bottom: 8px; border-bottom: 2px solid var(--line-soft); }
.faq-open .cat:first-child { margin-top: 0; }
.faq-open .qa { padding: 24px 2px; border-bottom: 1px solid var(--line); }
.faq-open .qa h3 { font-size: 21px; margin-bottom: 9px; }
.faq-open .qa p { color: var(--muted); font-size: 16.5px; line-height: 1.66; }
.faq-open .qa p + p { margin-top: 12px; }

/* ---- Meet the owners (team) ---- */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 880px; margin: 46px auto 0; }
.team-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .16s, box-shadow .16s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-photo { aspect-ratio: 4/5; overflow: hidden; background: var(--paper-2); display: grid; place-items: center; }
.team-photo img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.team-body { padding: 22px 26px 26px; }
.team-body h3 { font-size: 23px; }
.team-body .role { font-family: var(--head); font-weight: 700; color: var(--blue); font-size: 14px; letter-spacing: .04em; margin: 5px 0 12px; }
.team-body p { color: var(--muted); font-size: 15px; line-height: 1.62; }
@media (max-width: 680px) { .team-grid { grid-template-columns: 1fr; max-width: 360px; } }

