/* Alabama HVAC Help — shared styles */

:root {
  --navy: #0E2A47;
  --navy-2: #0a1f36;
  --navy-3: #163657;
  --orange: #E8762B;
  --orange-hover: #d2641c;
  --teal: #2A8A86;
  --teal-soft: #E6F2F1;
  --bg: #F7F5F1;
  --bg-2: #efeae0;
  --surface: #ffffff;
  --ink: #1c2331;
  --ink-2: #44505f;
  --muted: #6c7888;
  --line: #e6e0d4;
  --line-2: #d5cdbd;
  --warn: #b7421a;
  --max: 1200px;
  --radius: 6px;
  --shadow-sm: 0 1px 2px rgba(14,42,71,.06), 0 1px 1px rgba(14,42,71,.04);
  --shadow-md: 0 4px 14px rgba(14,42,71,.08), 0 1px 3px rgba(14,42,71,.05);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Public Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }

/* ───── Photo placeholder system (swap for real photography pre-launch) ───── */
.photo-ph {
  position: relative;
  background-color: #1d3958;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.04) 0 12px,
      rgba(255,255,255,.0) 12px 24px),
    linear-gradient(160deg, #1d3958 0%, #0e2a47 60%, #0a1f36 100%);
  overflow: hidden;
}
.photo-ph::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 280px at 80% 110%, rgba(232,118,43,.18), transparent 60%),
    radial-gradient(500px 220px at 10% -10%, rgba(42,138,134,.18), transparent 60%);
}
.photo-ph .ph-label {
  position: absolute; left: 14px; bottom: 14px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px; letter-spacing: .04em;
  color: #cfd9e6;
  background: rgba(10,31,54,.7);
  border: 1px solid rgba(255,255,255,.14);
  padding: 5px 9px; border-radius: 4px;
  backdrop-filter: blur(4px);
}
.photo-ph .ph-label::before {
  content: "● photo · ";
  color: var(--orange);
  margin-right: 2px;
}
.photo-ph .ph-mark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  color: rgba(255,255,255,.18);
}
.photo-ph.has-image {
  background-color: #0e2a47;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.photo-ph.has-image::before {
  display: none;
}
.photo-ph.has-image > .ph-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-ph.has-image .ph-mark,
.photo-ph.has-image .ph-label {
  display: none;
}
.photo-ph.has-image .tag {
  z-index: 2;
}
.bham-hero .hero-photo.has-image::after {
  z-index: 1;
  pointer-events: none;
}
.bham-hero .container {
  z-index: 2;
}
/* Variants — vary placeholder color hint for visual rhythm */
.photo-ph.warm {
  background-color: #2c1d10;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 12px, rgba(255,255,255,0) 12px 24px),
    linear-gradient(160deg, #4a2a13 0%, #2c1d10 100%);
}
.photo-ph.warm::before {
  background:
    radial-gradient(700px 280px at 80% 110%, rgba(232,118,43,.32), transparent 60%),
    radial-gradient(500px 220px at 10% -10%, rgba(255,180,120,.10), transparent 60%);
}
.photo-ph.teal {
  background-color: #0d2f2d;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 12px, rgba(255,255,255,0) 12px 24px),
    linear-gradient(160deg, #144d49 0%, #0d2f2d 100%);
}
.photo-ph.teal::before {
  background:
    radial-gradient(700px 280px at 80% 110%, rgba(42,138,134,.35), transparent 60%),
    radial-gradient(500px 220px at 10% -10%, rgba(255,255,255,.05), transparent 60%);
}
.photo-ph.cream {
  background-color: #efe7d6;
  background-image:
    repeating-linear-gradient(135deg, rgba(14,42,71,.05) 0 12px, rgba(14,42,71,0) 12px 24px),
    linear-gradient(160deg, #efe7d6 0%, #e2d5b6 100%);
}
.photo-ph.cream::before {
  background:
    radial-gradient(700px 280px at 80% 110%, rgba(232,118,43,.18), transparent 60%);
}
.photo-ph.cream .ph-label { background: rgba(255,255,255,.85); color: #5a4a26; border-color: rgba(14,42,71,.1); }
.photo-ph.cream .ph-label::before { color: var(--orange); }
.photo-ph.cream .ph-mark { color: rgba(14,42,71,.18); }

/* Specificity boost: when .photo-ph is on a section-scoped .photo block,
   make sure its gradient + decorations beat the section's own background rule. */
.birmingham .photo.photo-ph,
.call-help .photo.photo-ph,
.photo.photo-ph {
  background-color: #1d3958;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 12px, rgba(255,255,255,0) 12px 24px),
    linear-gradient(160deg, #1d3958 0%, #0e2a47 60%, #0a1f36 100%);
}
a { color: inherit; }
a.txt { color: var(--navy); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a.txt:hover { color: var(--orange); }
button { font-family: inherit; cursor: pointer; }

h1,h2,h3,h4 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.05; }
h2 { font-size: clamp(26px, 2.8vw, 36px); line-height: 1.15; }
h3 { font-size: 19px; line-height: 1.3; }
p { margin: 0 0 12px; color: var(--ink-2); text-wrap: pretty; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }

/* ───── Header ───── */
.trust-strip {
  background: var(--navy-2);
  color: #d6e2f0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-strip .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 24px; max-width: var(--max); margin: 0 auto;
  gap: 16px;
}
.trust-strip .left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.trust-strip .dot { width: 6px; height: 6px; border-radius: 999px; background: #5fc6a5; box-shadow: 0 0 0 4px rgba(95,198,165,.18); }
.trust-strip .right { color: #9bb3cf; font-size: 12.5px; }

.header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header .row {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 14px 24px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand-mark {
  width: 44px; height: 44px; border-radius: 6px;
  background: var(--navy);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  display: grid; place-items: center;
  font-size: 17px; letter-spacing: .02em;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--orange) 0 50%, var(--teal) 50% 100%);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--navy); }
.brand-text .sub { font-size: 12px; color: var(--muted); margin-top: 3px; letter-spacing: .02em; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: 15px; }
.nav a:hover { color: var(--orange); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-weight: 600; font-size: 15px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--orange-hover); }
.btn-primary.call-cta { background: var(--orange); color: #fff; cursor: pointer; }
.btn-primary.call-cta:hover { background: var(--orange-hover); }
.btn-primary[aria-disabled="true"], .btn-primary.is-disabled {
  background: #c5c1ba; color: #fff; cursor: not-allowed; box-shadow: none;
}
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--line-2); }
.btn-secondary:hover { border-color: var(--navy); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }
.btn-lg { padding: 16px 24px; font-size: 16px; }

.btn .ico { width: 18px; height: 18px; }

.menu-toggle { display: none; background: transparent; border: 1px solid var(--line-2); border-radius: 6px; padding: 8px 10px; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }

.mobile-call-bar {
  display: none;
}

/* ───── Hero ───── */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.55) saturate(1.05);
}
.hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,31,54,.92) 0%, rgba(10,31,54,.65) 45%, rgba(10,31,54,.35) 100%);
}
.hero .container { position: relative; padding-top: 88px; padding-bottom: 96px; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px; font-weight: 500;
  color: #f8d3b4;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero .eyebrow .pin { width: 6px; height: 6px; border-radius: 999px; background: var(--orange); }
.hero h1 { color: #fff; max-width: 820px; }
.hero .lead {
  color: #d8e3f1; font-size: clamp(17px, 1.6vw, 19px); line-height: 1.5;
  max-width: 620px; margin-top: 18px;
}
.hero .ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero .pending {
  margin-top: 14px; font-size: 13px; color: #b3c4dc;
}
.hero .trust-cues {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 880px;
}
.hero .cue {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex; gap: 12px; align-items: flex-start;
  backdrop-filter: blur(6px);
}
.hero .cue .ico { flex-shrink: 0; width: 22px; height: 22px; color: #9ad9d4; margin-top: 2px; }
.hero .cue strong { display: block; color: #fff; font-size: 14.5px; font-weight: 600; margin-bottom: 2px; }
.hero .cue span { color: #b9c8dc; font-size: 13px; line-height: 1.4; }

/* ───── Trust / disclosure strip ───── */
.disclosure { background: var(--surface); border-bottom: 1px solid var(--line); }
.disclosure .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.disclosure .panel {
  padding: 28px 28px;
  border-right: 1px solid var(--line);
  display: flex; gap: 16px;
}
.disclosure .panel:last-child { border-right: none; }
.disclosure .panel .ico {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.disclosure h3 { font-size: 15.5px; margin-bottom: 4px; }
.disclosure p { font-size: 14px; color: var(--ink-2); margin: 0; }

/* ───── Section heads ───── */
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head .kicker {
  font-family: 'Sora', sans-serif;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}
.section-head h2 { margin-bottom: 12px; }
.section-head .sub { color: var(--ink-2); font-size: 17px; max-width: 620px; }

/* ───── Service grid ───── */
.services { background: var(--bg); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none; color: inherit;
}
.svc-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.svc-card .img-wrap {
  aspect-ratio: 4/3;
  background: var(--bg-2) center/cover no-repeat;
  position: relative;
}
.svc-card .tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(14,42,71,.92); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: .03em;
  padding: 5px 10px; border-radius: 4px;
}
.svc-card .tag.urgent { background: var(--orange); }
.svc-card .body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card h3 { font-size: 19px; }
.svc-card p { font-size: 14.5px; margin: 0; color: var(--ink-2); }
.svc-card .open {
  margin-top: auto; padding-top: 12px;
  font-weight: 600; font-size: 14px; color: var(--navy);
  display: inline-flex; gap: 6px; align-items: center;
}
.svc-card:hover .open { color: var(--orange); }
.svc-card .open .arr { transition: transform .15s ease; }
.svc-card:hover .open .arr { transform: translateX(3px); }

/* ───── Seasonal ───── */
.seasonal { background: var(--surface); }
.seasonal .layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.seasonal .copy h2 { margin-bottom: 16px; }
.seasonal .copy p { font-size: 16.5px; }
.seasonal ul.checks { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; }
.seasonal ul.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.seasonal ul.checks li .ck {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px;
  background: var(--teal-soft); color: var(--teal);
  display: grid; place-items: center; margin-top: 1px;
}
.seasonal .pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.seasonal .pair-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
}
.seasonal .pair-card .img-wrap { aspect-ratio: 1/1; background: var(--bg-2) center/cover no-repeat; }
.seasonal .pair-card .body { padding: 16px 18px 18px; }
.seasonal .pair-card h3 { font-size: 16px; margin-bottom: 4px; }
.seasonal .pair-card p { font-size: 13.5px; margin: 0; }

/* ───── Service areas / Birmingham local ───── */
.service-areas { background: var(--bg); }
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.market-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.market-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}
.market-card .market-map {
  aspect-ratio: 16/9;
}
.market-card .body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px 22px;
}
.market-card h3 {
  font-size: 19px;
}
.market-card p {
  color: var(--ink-2);
  font-size: 14.5px;
  margin: 0;
}
.market-card .open {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
}
.market-card:hover .open {
  color: var(--orange);
}
.area-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  margin: 24px 0 0;
  padding-top: 18px;
}
.birmingham { background: var(--bg); }
.birmingham .layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.birmingham .photo {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4;
  background: var(--bg-2) center/cover no-repeat;
  border: 1px solid var(--line);
}
.birmingham .points { display: grid; gap: 14px; margin-top: 22px; }
.birmingham .point {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; display: flex; gap: 14px;
}
.birmingham .point .ico {
  width: 32px; height: 32px; border-radius: 6px;
  background: var(--teal-soft); color: var(--teal);
  display: grid; place-items: center; flex-shrink: 0;
}
.birmingham .point h4 { font-size: 15.5px; margin: 0 0 2px; }
.birmingham .point p { font-size: 14px; margin: 0; }

/* ───── How it works ───── */
.how { background: var(--surface); }
.how .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how .step {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px 26px;
  position: relative;
}
.how .step .num {
  width: 38px; height: 38px; border-radius: 6px;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px;
  margin-bottom: 14px;
}
.how .step h3 { font-size: 18px; margin-bottom: 6px; }
.how .step p { font-size: 14.5px; margin: 0; }
.how .step .icon-art {
  position: absolute; top: 22px; right: 22px;
  width: 38px; height: 38px;
  color: var(--teal); opacity: .4;
}

/* ───── Common situations ───── */
.situations { background: var(--bg); }
.sit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sit-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
}
.sit-card .img-wrap { aspect-ratio: 16/9; background: var(--bg-2) center/cover no-repeat; }
.sit-card .body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sit-card h3 { font-size: 18px; }
.sit-card p { font-size: 14.5px; margin: 0; }
.sit-card .mention {
  margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line);
  font-size: 13.5px; color: var(--ink-2);
}
.sit-card .mention strong { color: var(--navy); display: block; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }

/* ───── FAQ ───── */
.faq { background: var(--surface); }
.faq .wrap { max-width: 820px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  margin-bottom: 12px;
  transition: border-color .15s ease, background .15s ease;
}
.faq details[open] { background: var(--surface); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  width: 26px; height: 26px; border-radius: 6px;
  background: var(--teal-soft); color: var(--teal);
  display: grid; place-items: center;
  flex-shrink: 0; transition: transform .2s ease, background .2s ease;
  font-family: 'Sora'; font-size: 18px; line-height: 1;
}
.faq details[open] summary .plus { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq .answer { padding: 0 22px 20px; color: var(--ink-2); font-size: 15px; }
.faq .answer p { margin: 0 0 8px; }

/* ───── Final CTA band ───── */
.cta-band {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 320px at 90% 0%, rgba(232,118,43,.18), transparent 60%),
    radial-gradient(700px 260px at 0% 100%, rgba(42,138,134,.18), transparent 60%);
}
.cta-band .container { position: relative; padding-top: 80px; padding-bottom: 80px; }
.cta-band .layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.cta-band h2 { color: #fff; max-width: 560px; }
.cta-band p.lead { color: #c8d4e6; font-size: 17px; margin-top: 14px; max-width: 560px; }
.cta-band .actions { display: flex; flex-direction: column; gap: 12px; }
.cta-band .actions .note { color: #94a8c0; font-size: 13px; }

/* ───── Footer ───── */
.footer { background: var(--navy-2); color: #b3c4dc; padding: 56px 0 32px; }
.footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; font-family: 'Sora', sans-serif; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer ul a { color: #b3c4dc; text-decoration: none; font-size: 14.5px; }
.footer ul a:hover { color: #fff; }
.footer .about p { color: #9bb3cf; font-size: 14px; margin: 12px 0 0; max-width: 360px; }
.footer .legal {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #8aa1bd;
}
.footer .legal .disclosure-block {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 13px; line-height: 1.55; color: #9bb3cf;
  margin-top: 24px;
  max-width: 100%;
}

/* ───── Vetting section (NEW v2) ───── */
.vetting { background: var(--surface); }
.vet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vet-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 24px; position: relative;
}
.vet-num {
  font-family: 'Sora'; font-size: 12px; letter-spacing: .14em; font-weight: 700;
  color: var(--teal); margin-bottom: 12px;
}
.vet-card h3 { font-size: 18px; margin: 0 0 8px; }
.vet-card p { font-size: 14.5px; color: var(--ink-2); margin: 0 0 16px; line-height: 1.55; }
.vet-tag {
  display: inline-block; font-family: 'Sora'; font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 600;
  padding: 5px 9px; border-radius: 4px;
}
.vet-tag.good { background: rgba(42,138,134,.12); color: var(--teal); border: 1px solid rgba(42,138,134,.3); }
.vet-foot {
  margin-top: 28px;
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg); border: 1px solid var(--line); border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 14.5px; line-height: 1.6; color: var(--ink-2);
}
.vet-foot strong { color: var(--ink); }
.vet-foot-ico {
  width: 32px; height: 32px; border-radius: 6px;
  background: rgba(232,118,43,.12); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ───── About section (NEW v2) ───── */
.about { background: var(--bg); }
.about-layout {
  display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center;
}
.about-photo {
  aspect-ratio: 1 / 1; border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.about-copy h2 { margin-top: 10px; }
.about-copy p { color: var(--ink-2); font-size: 16px; margin: 0 0 14px; max-width: 620px; }
.about-list {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: grid; gap: 8px;
  font-size: 14.5px; color: var(--ink-2);
}
.about-list strong { color: var(--ink); margin-right: 4px; }

/* ───── Homeowner-side checks (NEW v2) ───── */
.checks { background: var(--surface); }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.check-card {
  display: flex; gap: 18px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px;
  text-decoration: none; color: inherit;
  transition: border-color .15s, transform .15s;
}
.check-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.check-card.static { cursor: default; }
.check-card.static:hover { border-color: var(--line); transform: none; }
.check-mark {
  width: 48px; height: 48px; border-radius: 6px; flex-shrink: 0;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora'; font-weight: 700; font-size: 16px; letter-spacing: .04em;
}
.check-mark.alt { background: var(--orange); }
.check-mark.teal { background: var(--teal); font-size: 22px; }
.check-body h3 { font-size: 16.5px; margin: 0 0 6px; line-height: 1.35; }
.check-body p { font-size: 14px; color: var(--ink-2); margin: 0 0 12px; line-height: 1.55; }
.check-cta {
  font-family: 'Sora'; font-size: 13px; font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
}
.check-cta.muted { color: var(--ink-2); font-weight: 500; }
.check-cta .arr { transition: transform .15s; }
.check-card:hover .check-cta .arr { transform: translateX(3px); }

/* ───── Legal expandable (footer v2) ───── */
.footer .legal-details {
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 16px;
}
.footer .legal-details > summary {
  list-style: none; cursor: pointer;
  font-size: 13px; color: #b3c4dc;
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
}
.footer .legal-details > summary::-webkit-details-marker { display: none; }
.footer .legal-details > summary .plus {
  font-family: 'Sora'; font-weight: 600; color: #b3c4dc;
  transition: transform .2s;
}
.footer .legal-details[open] > summary .plus { transform: rotate(45deg); }
.footer .legal-details .disclosure-block { margin-top: 12px; }

/* ───── Mobile (NEW v2 sections) ───── */
@media (max-width: 860px) {
  .vet-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 24px; }
  .about-photo { aspect-ratio: 16 / 10; max-width: 100%; }
}

/* ───── SERVICE PAGE ───── */
.svc-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.svc-hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.5) saturate(1.05);
}
.svc-hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,31,54,.95) 0%, rgba(10,31,54,.55) 70%, rgba(10,31,54,.4) 100%);
}
.svc-hero .container { position: relative; padding-top: 76px; padding-bottom: 84px; }
.svc-hero .crumbs { font-size: 13.5px; color: #b3c4dc; margin-bottom: 20px; }
.svc-hero .crumbs a { color: #b3c4dc; text-decoration: none; }
.svc-hero .crumbs a:hover { color: #fff; }
.svc-hero .crumbs .sep { margin: 0 8px; color: #5b7395; }
.svc-hero .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,118,43,.16); color: #f8d3b4;
  border: 1px solid rgba(232,118,43,.35);
  padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 500;
  margin-bottom: 20px;
}
.svc-hero h1 { color: #fff; max-width: 760px; }
.svc-hero p.intro { color: #d8e3f1; font-size: 18px; max-width: 640px; margin-top: 18px; }
.svc-hero .ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.svc-status {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.svc-status .container { padding-top: 22px; padding-bottom: 22px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.svc-status .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-soft); color: var(--teal);
  border: 1px solid #c4e2e0;
  padding: 7px 13px; border-radius: 999px; font-size: 13px; font-weight: 600;
}
.svc-status .pill.warn { background: #fdeede; color: var(--warn); border-color: #f5c8a5; }
.svc-status p { margin: 0; font-size: 14px; }

.two-col {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: flex-start;
}
.panel-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px;
}
.panel-card h3 { font-size: 17px; margin-bottom: 8px; }
.panel-card p { font-size: 14.5px; margin: 0 0 8px; }
.panel-card .label {
  display: inline-block; font-family: 'Sora', sans-serif;
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); font-weight: 600; margin-bottom: 8px;
}

.symptom-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.symptom-list li {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px;
}
.symptom-list li .b {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--bg-2); color: var(--navy);
  display: grid; place-items: center; flex-shrink: 0;
  font-family: 'Sora'; font-weight: 600; font-size: 13.5px;
}
.symptom-list li strong { display: block; color: var(--navy); margin-bottom: 2px; font-size: 15px; }
.symptom-list li span { color: var(--ink-2); font-size: 14px; }

.call-help {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch;
}
.call-help .photo {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4;
  background: var(--bg-2) center/cover no-repeat;
  border: 1px solid var(--line);
}
.call-help .copy h2 { margin-bottom: 14px; }
.call-help ul { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.call-help ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.call-help ul li .ck {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px;
  background: var(--teal-soft); color: var(--teal);
  display: grid; place-items: center; margin-top: 1px;
}

.safety {
  background: #fff7ee;
  border: 1px solid #f3d4a8;
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex; gap: 16px;
}
.safety .ico {
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.safety h3 { font-size: 16.5px; margin-bottom: 6px; color: #6b3514; }
.safety p { font-size: 14px; color: #6b3514; margin: 0 0 6px; }
.safety ul { margin: 6px 0 0; padding-left: 18px; color: #6b3514; font-size: 14px; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; text-decoration: none; color: inherit;
  display: flex; align-items: center; gap: 14px;
  transition: border-color .15s ease, transform .15s ease;
}
.related-card:hover { border-color: var(--navy); transform: translateY(-1px); }
.related-card .thumb {
  width: 64px; height: 64px; border-radius: 6px;
  background: var(--bg-2) center/cover no-repeat;
  flex-shrink: 0;
}
.related-card h4 { font-size: 15px; margin: 0 0 2px; }
.related-card span { font-size: 13px; color: var(--muted); }

/* ───── BIRMINGHAM PAGE ───── */
.bham-hero {
  position: relative; background: var(--navy); color: #fff; overflow: hidden;
}
.bham-hero .bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(.55);
}
.bham-hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,31,54,.7) 0%, rgba(10,31,54,.92) 100%);
}
.bham-hero .container { position: relative; padding-top: 84px; padding-bottom: 92px; }
.bham-hero .pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 26px; }
.bham-hero .pill {
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; padding: 6px 14px; font-size: 13.5px; color: #d8e3f1;
}

.routing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.routing-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px 24px; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.routing-card:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.routing-card .top { display: flex; gap: 12px; align-items: center; }
.routing-card .ico {
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--teal-soft); color: var(--teal);
  display: grid; place-items: center; flex-shrink: 0;
}
.routing-card h3 { font-size: 17px; }
.routing-card p { margin: 0; font-size: 14px; }
.routing-card .open { margin-top: auto; padding-top: 8px; font-size: 13.5px; color: var(--orange); font-weight: 600; }

.urgent-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.urgent-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 14px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.urgent-list li .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--orange);
  margin-top: 8px; flex-shrink: 0;
}
.urgent-list li span { font-size: 14.5px; color: var(--ink); }

/* ───── Responsive ───── */
@media (max-width: 920px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .nav { display: none; }
  .menu-toggle { display: block; }
  .header .cta-desktop { display: none; }
  .nav.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 16px 16px;
    box-shadow: var(--shadow-md);
  }
  .nav.open a { padding: 12px 6px; border-bottom: 1px solid var(--line); }
  .nav.open .cta-desktop { display: inline-flex; justify-content: center; margin-top: 10px; }
  .nav.open .btn { margin-top: 10px; }

  .mobile-call-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 14px rgba(14,42,71,.10);
  }
  .mobile-call-bar .btn {
    width: 100%;
    min-height: 54px;
  }

  .trust-strip .row { flex-direction: column; align-items: flex-start; gap: 6px; padding: 10px 16px; }

  .hero .container { padding-top: 56px; padding-bottom: 64px; }
  .hero .trust-cues { grid-template-columns: 1fr; margin-top: 36px; }

  .disclosure .grid { grid-template-columns: 1fr; }
  .disclosure .panel { border-right: none; border-bottom: 1px solid var(--line); }
  .disclosure .panel:last-child { border-bottom: none; }

  .svc-grid, .how .steps, .sit-grid, .related-grid, .routing-grid, .market-grid { grid-template-columns: 1fr; }
  .seasonal .layout, .birmingham .layout, .cta-band .layout, .two-col, .call-help { grid-template-columns: 1fr; gap: 32px; }
  .seasonal .pair { grid-template-columns: 1fr 1fr; }
  .urgent-list { grid-template-columns: 1fr; }
  .footer .grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 56px 0; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero .ctas .btn { width: 100%; }
  .footer .grid { grid-template-columns: 1fr; }
  .seasonal .pair { grid-template-columns: 1fr; }
}
