
/*
  Smith Total Home — Modernized site CSS (v4)
  Design tokens, typography, components.
  Brand colors lifted from actual logo + truck wraps.
*/

:root {
  /* Brand — Kite & Key Electrical (navy + gold) */
  --pink:        #0D1B2A;   /* primary = navy (kept var name for compatibility) */
  --pink-deep:   #081320;   /* darker navy */
  --pink-soft:   #E7EBF0;   /* navy tint surface */
  --pink-tint:   #F2F5F8;   /* lightest navy tint */
  --yellow:      #C9972B;   /* gold accent */
  --yellow-deep: #A87C1F;   /* deep gold */
  --navy:        #0D1B2A;
  --gold:        #C9972B;

  /* Neutrals — cool greys to complement navy */
  --bone:    #F7F8FA;
  --bone-2:  #EDF0F4;
  --ink:     #14181E;
  --ink-2:   #2C333D;
  --muted:   #5B6470;
  --line:    #E0E5EC;
  --surface: #FFFFFF;

  /* Layout */
  --radius:    6px;
  --radius-lg: 12px;
  --container: 1200px;

  /* Type */
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans:  'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; transition: color .15s ease; }
img, svg, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

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

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
}
h3 { font-size: 1.3rem; line-height: 1.3; font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 500; }
p { margin: 0 0 1rem; color: var(--ink-2); }
em.accent, .accent-em { font-style: italic; color: var(--gold); }
ul, ol { color: var(--ink-2); line-height: 1.7; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

/* ============ TOP UTILITY BAR ============ */
.util {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  font-size: 13px;
  padding: 10px 0;
}
.util .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.util .left { font-weight: 500; letter-spacing: 0.02em; }
.util .right { display: flex; gap: 24px; align-items: center; }
.util a { color: rgba(255,255,255,.95); }
.util a:hover { color: var(--yellow); }
.util .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  margin-right: 8px; vertical-align: 1px;
  box-shadow: 0 0 0 4px rgba(13, 27, 42, 0.22);
}
.util .since {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ============ NAV ============ */
nav.primary {
  background: rgba(250, 247, 242, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
}
nav.primary .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-row img {
  height: 44px;
  width: auto;
  display: block;
}
.brand-stack { display: flex; flex-direction: column; }
.brand-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.brand-mark em {
  font-style: italic;
  color: var(--gold);
}
.brand-tagline {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 5px;
}
.brand-tagline em {
  color: var(--gold);
  font-style: normal;
}

.navlinks {
  display: flex;
  gap: 28px;
  align-items: center;
}
.navlinks > a, .navlinks > .nav-dropdown > a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
}
.navlinks > a:hover, .navlinks > .nav-dropdown > a:hover {
  color: var(--gold);
}

/* Nav dropdowns (preserved from original site, restyled) */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after {
  content: "▾";
  font-size: 0.7em;
  line-height: 1;
  opacity: .7;
}
.nav-menu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  min-width: 280px;
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0,0,0,.10), 0 1px 0 rgba(0,0,0,.04);
  border: 1px solid var(--line);
  padding: 12px;
  display: none;
  margin-top: 8px;
}
/* Invisible hover bridge — fills the 8px gap between the nav link and the
   dropdown panel so the panel doesn't close while the cursor crosses it.
   Pseudo-element on the panel itself, so it counts as descendant hover
   and keeps the parent .nav-dropdown:hover state active. */
.nav-menu-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;       /* covers 8px margin-top + 6px buffer for fast cursor moves */
  height: 14px;
  background: transparent;
}
/* Also extend the dropdown trigger's hover area downward so the gap is
   bridged from BOTH ends (works even before the panel renders). */
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  background: transparent;
  pointer-events: auto;
}
.nav-menu-panel.wide { min-width: 360px; }
.nav-dropdown:hover .nav-menu-panel,
.nav-dropdown:focus-within .nav-menu-panel { display: block; }
.nav-menu-panel a {
  display: block;
  color: var(--ink) !important;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.nav-menu-panel a:hover, .nav-menu-panel a:focus {
  background: var(--pink-tint);
  color: var(--pink-deep) !important;
}
.nav-menu-heading {
  display: block;
  padding: 10px 12px 4px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-menu-sep {
  height: 1px;
  background: var(--line);
  margin: 8px 4px;
}

.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.005em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 1px 0 var(--pink-deep), 0 6px 20px rgba(13, 27, 42, 0.20);
}
.btn-primary:hover {
  background: var(--pink-deep);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 var(--pink-deep), 0 8px 24px rgba(13, 27, 42, 0.28);
  color: #fff;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--yellow-deep);
}
.btn-yellow:hover { background: var(--yellow-deep); transform: translateY(-1px); color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--surface);
  color: var(--ink);
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.btn-dark {
  background: var(--ink);
  color: var(--bone);
}
.btn-dark:hover { background: var(--ink-2); color: var(--bone); }

/* ============ HERO PATTERNS ============ */
.hero {
  padding: 76px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--pink-tint) 0%, transparent 65%);
  z-index: 0; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero .grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  margin-bottom: 24px;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p.lead {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  color: var(--muted);
  font-size: 13.5px;
}
.hero-meta strong { color: var(--ink); font-weight: 700; }
.star { color: var(--yellow); letter-spacing: -1px; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pink-tint);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 24px 60px -20px rgba(13, 27, 42, 0.25);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-visual .badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--yellow);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.hero-visual .badge::before {
  content: "★";
  color: var(--ink);
  margin-right: 6px;
}

/* Compact hero variant for service-detail and city pages */
.hero-compact {
  padding: 56px 0 56px;
}
.hero-compact h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.hero-compact p.lead {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* ============ TRUST STRIP ============ */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--surface);
}
.trust .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.trust-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-tinted { background: var(--bone-2); }
.section-intro { max-width: 720px; margin-bottom: 56px; }
.section-intro h2 { margin-bottom: 16px; }
.section-intro p { font-size: 1.1rem; color: var(--muted); }
.section-intro h2 em { font-style: italic; color: var(--gold); }
.section-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============ ABOUT BLOCK ============ */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}
.about-block aside h2 em { font-style: italic; color: var(--gold); }
.about-block .copy p { font-size: 1.08rem; line-height: 1.65; color: var(--ink-2); }
.about-block .copy p + p { margin-top: 1rem; }
.about-block .copy .powered {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  background: var(--pink-tint);
  border: 1px solid rgba(13, 27, 42, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-deep);
  letter-spacing: 0.01em;
}
.about-block .copy .powered em {
  font-style: normal;
  font-weight: 800;
  color: var(--pink-deep);
}

/* ============ CARD GRIDS ============ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.svc-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.svc-card {
  background: var(--surface);
  padding: 32px 28px;
  transition: background .2s;
  position: relative;
  display: block;
  cursor: pointer;
  color: var(--ink);
  text-decoration: none;
}
.svc-card:hover { background: var(--pink-tint); }
.svc-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.svc-card h3 { margin-bottom: 10px; }
.svc-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.55;
}
.svc-card .arrow {
  position: absolute;
  top: 32px; right: 28px;
  color: var(--muted);
  font-size: 14px;
  transition: transform .2s, color .2s;
}
.svc-card:hover .arrow { transform: translate(2px, -2px); color: var(--gold); }

/* Generic card */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.card-tinted { background: var(--bone-2); border-color: var(--line); }
.card h2:first-child, .card h3:first-child { margin-top: 0; }

/* ============ TWO-COL / PROCESS ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.two-col aside h2 { position: sticky; top: 120px; }
.two-col aside h2 em { font-style: italic; color: var(--gold); }
.process-list {
  list-style: none; padding: 0; margin: 0;
  counter-reset: step;
}
.process-list li {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  counter-increment: step;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  align-items: baseline;
}
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}
.process-list h3 { margin: 0 0 8px; }
.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
}

/* ============ FAQ ============ */
.faq-bg {
  background: var(--bone-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  transition: color .15s;
}
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-left: 16px;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 70ch;
}

/* ============ CTA BANNERS ============ */
.cta-banner {
  background: var(--pink);
  color: #fff;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.10), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08), transparent 35%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 {
  color: #fff;
  font-style: italic;
  max-width: 22ch;
  margin: 0 auto 24px;
}
.cta-banner h2 em {
  font-style: italic;
  color: var(--yellow);
}
.cta-banner p {
  color: rgba(255,255,255,0.88);
  max-width: 50ch;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

/* ============ LOCAL FACTS (used by city/service pages) ============ */
.local-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 1rem 0 1.5rem;
}
.local-facts .fact { background: var(--surface); padding: 18px 20px; }
.local-facts .fact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--muted);
}
.local-facts .fact-value {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 4px;
  color: var(--ink);
  line-height: 1.1;
}
.local-facts .fact-suffix {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}

.answer-first {
  border-left: 4px solid var(--yellow);
  background: rgba(251, 190, 46, 0.08);
  padding: 18px 22px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 0 0 24px;
  line-height: 1.55;
  font-size: 1.04rem;
}
.answer-first strong { color: var(--ink); font-weight: 700; }

.source-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 1rem;
  font-style: italic;
}

/* ============ FOOTER ============ */
footer.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
footer.site-footer img.brand-logo { height: 55px; width: 180px; filter: brightness(1.05); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; font-size: 14.5px; }
.footer-grid ul a { color: rgba(255,255,255,0.85); }
.footer-grid ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}

/* ============ MOBILE STICKY CTA ============ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.06);
  z-index: 100;
  gap: 8px;
}
.mobile-cta .btn { flex: 1; padding: 14px; font-size: 14px; }

/* ============ UTILITY ============ */
.spacer { height: 1.5rem; }
.spacer-lg { height: 3rem; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 13.5px; line-height: 1.55; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

/* ============ MOBILE NAV (hamburger) ============ */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 12px 28px 24px;
  z-index: 49;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .mobile-subhead {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 0;
  padding: 8px 0 4px;
}
.mobile-menu .mobile-cta-row {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  border-bottom: 0;
  padding: 0;
}
.mobile-menu .mobile-cta-row .btn { flex: 1; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero { padding: 48px 0 56px; }
  .hero .grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 64px 0; }
  .svc-grid, .svc-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .two-col, .about-block { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .navlinks { display: none; }
  .util .right { gap: 12px; font-size: 12px; }
  .nav-cta .btn-ghost { display: none; }
  .brand-stack .brand-tagline { display: none; }
  .mobile-cta { display: flex; }
  .mobile-toggle { display: inline-flex; }
  .mobile-menu.is-open { display: block; }
  body { padding-bottom: 80px; }
  .local-facts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  .util .left { font-size: 11.5px; }
  nav.primary .row { padding: 12px 0; }
  .container { padding: 0 20px; }
}

/* ============ KEEP UTILITY CLASSES FROM ORIGINAL CSS ============ */
/* Some pages reference these legacy utility classes — preserved for safety */
.site-main { display: block; }
.site-header { display: block; }
.body-tint { background: var(--bone-2); }
.service-page { display: block; }
.kpi { display: flex; gap: 12px; align-items: flex-start; }
.kpi .dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--pink);
  margin-top: .45rem;
  flex-shrink: 0;
}
.lead-tight { line-height: 1.55; }
.check-list { list-style: none; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.stack-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stack-actions .btn { width: 100%; }
.related-links { display: flex; flex-wrap: wrap; gap: 8px; }

/* ============================================
   GENERIC PROSE STYLING — wraps any legacy
   page content in clean editorial typography
   ============================================ */
.prose-wrap {
  max-width: 760px;
}
.prose-wrap.has-sidebar { max-width: none; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) {
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
}

.prose {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.72;
}
.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }
.prose h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--ink);
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.prose h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
  margin: 56px 0 16px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.prose h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.3;
  margin: 36px 0 12px;
  color: var(--ink);
}
.prose h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 28px 0 10px;
  color: var(--ink);
}
.prose p {
  margin: 0 0 16px;
  color: var(--ink-2);
  line-height: 1.72;
}
.prose p.lead, .prose .lead {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 28px;
}
.prose ul, .prose ol {
  margin: 0 0 24px;
  padding-left: 1.5rem;
  color: var(--ink-2);
}
.prose ul li, .prose ol li {
  margin-bottom: 8px;
  line-height: 1.65;
}
.prose ul li::marker { color: var(--gold); }
.prose ol li::marker { color: var(--gold); font-weight: 700; }
.prose a {
  color: var(--pink-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(168, 24, 83, 0.4);
  transition: text-decoration-color .15s, color .15s;
}
.prose a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}
.prose strong { color: var(--ink); font-weight: 700; }
.prose em { font-style: italic; }
.prose blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--pink);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
}
.prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 48px 0;
}
.prose img {
  border-radius: var(--radius-lg);
  margin: 24px 0;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.prose th, .prose td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.prose th {
  font-family: var(--sans);
  font-weight: 700;
  background: var(--bone-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.prose pre, .prose code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 14px;
}
.prose pre {
  background: var(--ink);
  color: var(--bone);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  overflow-x: auto;
}

/* Sidebar cards */
.aside-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin-bottom: 16px;
  position: sticky;
  top: 100px;
}
.aside-card.no-stick { position: static; }
.aside-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
}
.aside-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 16px;
}
.aside-card .actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aside-card .actions .btn { width: 100%; padding: 11px 16px; font-size: 13.5px; }
.aside-card.notice {
  background: var(--pink-tint);
  border-color: rgba(13, 27, 42, 0.18);
}
.aside-card.notice p, .aside-card.notice strong {
  color: var(--pink-deep);
}

/* Old-site widget container backfill — these classes existed in the previous
   site; we restyle them to look clean inside .prose contexts */
.prose .card,
.prose [class*="services-card"] {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
}
.prose .notice {
  background: var(--pink-tint);
  border-left: 3px solid var(--pink);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink);
  margin: 16px 0;
}
.prose .notice strong { color: var(--pink-deep); }

/* Page intro hero for content pages (lighter than full hero) */
.page-intro {
  padding: 64px 0 32px;
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.page-intro::before {
  content: "";
  position: absolute;
  top: -200px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--pink-tint) 0%, transparent 65%);
  z-index: 0; pointer-events: none;
}
.page-intro .container { position: relative; z-index: 1; max-width: 820px; }
.page-intro .eyebrow { margin-bottom: 16px; }
.page-intro h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.page-intro h1 em { font-style: italic; color: var(--gold); }
.page-intro p.lead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 24px;
}
.page-intro .hero-actions { margin-bottom: 0; }

/* Section between page-intro and CTA banner gets clean wrapping */
.content-section {
  padding: 56px 0 80px;
}
.content-section.tinted { background: var(--bone-2); }

/* Reviews/gallery container styling for RealWorkLabs */
.rwl-mount, [class*="rwl-"], #rwl, #realworklabs {
  margin: 24px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Iframe wrapper for Maps + similar */
.iframe-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 24px 0;
}
.iframe-wrap iframe { display: block; width: 100%; }

/* Style override: legacy elements found across various pages */
main.content, main.site-main {
  display: block;
}
main.content .container {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* ============================================
   v5.1 — PERFORMANCE + ACCESSIBILITY POLISH
   ============================================ */

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .btn-primary:hover,
  .btn-yellow:hover,
  .svc-card:hover .arrow { transform: none !important; }
}

/* Focus visible — keyboard navigation accessibility */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}
.btn-primary:focus-visible { outline-color: var(--ink); }

/* Touch behavior — no 300ms tap delay, no double-tap zoom on buttons */
.btn, button, a.btn, [data-scheduler-show], summary, .svc-card, .faq-item summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Print stylesheet */
@media print {
  .util, nav.primary, .mobile-cta, .cta-banner, footer.site-footer { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  a { color: #000; text-decoration: underline; }
  .hero-visual { display: none; }
  .container { max-width: 100%; padding: 0; }
}

/* iOS safe-area awareness for the sticky mobile CTA bar */
.mobile-cta {
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

/* ============ HERO IMAGE — MOBILE OBJECT-POSITION ============ */
/* Eva is on the left half of truck-2.jpg.
   On narrow viewports, anchor the image to keep her in frame. */
.hero-visual img {
  object-position: 35% center;
}
@media (max-width: 640px) {
  .hero-visual img { object-position: 30% center; }
}

/* ============ TYPOGRAPHY — FLUID SCALING ============ */
@media (max-width: 480px) {
  html, body { font-size: 16px; }
  .hero p.lead, .page-intro p.lead { font-size: 1.05rem; }
  .container { padding: 0 18px; }
  .section { padding: 48px 0; }
  .hero { padding: 32px 0 40px; }
  .page-intro { padding: 36px 0 24px; }
  .cta-banner { padding: 64px 0; }
}

/* ============ TOUCH TARGETS — guarantee 44px+ on mobile ============ */
@media (max-width: 980px) {
  .btn {
    min-height: 44px;
    padding: 12px 20px;
    font-size: 15px;
  }
  .mobile-cta .btn {
    min-height: 48px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
  }
  .nav-cta .btn-primary {
    padding: 10px 16px;
    min-height: 40px;
  }
  .navlinks > a, .navlinks > .nav-dropdown > a {
    padding: 8px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .mobile-menu a {
    padding: 14px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .faq-item summary { padding: 8px 0; min-height: 44px; }
}

/* ============ BREAKPOINTS — proper tiered system ============ */
/* Desktop large: 1200px+ — default styles (no media query) */

/* Desktop standard: 980px - 1199px */
@media (max-width: 1199px) {
  :root { --container: 1100px; }
  h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
  .hero { padding: 56px 0 64px; }
  .section { padding: 80px 0; }
}

/* Tablet portrait: 768px - 979px */
@media (max-width: 979px) {
  .hero .grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .svc-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile: 480px - 767px */
@media (max-width: 767px) {
  .hero h1 { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  .hero p.lead, .page-intro p.lead { font-size: 1.05rem; }
  .hero-meta { display: none; } /* hide rating to give CTAs room */
  .hero-actions { gap: 8px; }
  .hero-actions .btn { flex: 1 1 calc(50% - 4px); min-width: 0; }
  .trust .row { gap: 12px; justify-content: flex-start; }
  .trust-item { font-size: 12.5px; }
  .local-facts { grid-template-columns: 1fr 1fr; }
  .about-block { grid-template-columns: 1fr; gap: 28px; }
  .svc-grid, .svc-grid.cols-2, .svc-grid.cols-4 { grid-template-columns: 1fr; }
  .process-list li {
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 20px 0;
  }
  .process-list li::before { font-size: 1.3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; font-size: 12px; }
  .cta-banner h2 { font-size: 1.7rem; max-width: none; }
  .faq-item summary { font-size: 1.1rem; gap: 12px; }
  .iframe-wrap iframe { height: 280px !important; }
  .content-grid { gap: 32px; }
  .aside-card { position: static !important; }
}

/* Small mobile: <480px */
@media (max-width: 479px) {
  .util .left { font-size: 11px; }
  .util .right a { font-size: 12px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-primary { padding: 8px 14px; font-size: 13px; }
  .brand-row img { height: 38px; }
  .brand-stack { display: none; } /* Logo image is enough on tiny screens */
  .local-facts { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .card { padding: 20px; }
  .aside-card { padding: 18px 20px; }
}

/* ============ MOBILE MENU — body lock when open ============ */
body.menu-open { overflow: hidden; }
.mobile-menu {
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ============ SCROLL PERFORMANCE ============ */
.hero-visual, .svc-card, img { will-change: auto; }
.btn-primary, .btn-yellow { will-change: transform; }

/* ============ HERO VISUAL — protect aspect ratio on very wide viewports ============ */
@media (min-width: 1400px) {
  .hero-visual { max-height: 640px; }
}

/* ============ SAFE LINE LENGTH ============ */
.prose p, .prose ul, .prose ol { max-width: 68ch; }
.prose h2, .prose h3 { max-width: 32ch; }
@media (max-width: 767px) {
  .prose p, .prose ul, .prose ol { max-width: none; }
}

/* ============ LAZY IMAGE LOADING STATES ============ */
img[loading="lazy"] {
  background: var(--bone-2);
}

/* ============ NAV DROPDOWN — keyboard accessibility ============ */
.nav-dropdown > a[aria-expanded="true"] + .nav-menu-panel,
.nav-dropdown:focus-within .nav-menu-panel { display: block; }

/* ============ SKIP LINK (a11y) ============ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--ink);
  color: var(--bone);
  padding: 12px 20px;
  z-index: 9999;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  top: 0;
  color: var(--bone);
}

/* ============ SCREEN READER ONLY ============ */
.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;
}

/* ============================================
   v6.1 — SECONDARY NAV STRIP
   ============================================ */
.nav-secondary {
  background: var(--bone-2);
  border-bottom: 1px solid var(--line);
}
.nav-secondary .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.nav-secondary a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  transition: color .15s ease;
  white-space: nowrap;
}
.nav-secondary a:hover { color: var(--gold); }
.nav-secondary a::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-block;
  opacity: 0.65;
}
.nav-secondary a.featured {
  color: var(--pink-deep);
  font-weight: 700;
}
.nav-secondary a.featured::before { opacity: 1; }
@media (max-width: 767px) {
  .nav-secondary { display: none; }
}

/* ============================================
   v6.1 — INSTANT HVAC QUOTE BAND
   ============================================ */
@media (max-width: 767px) {
  .card[style*="linear-gradient"] {
    padding: 28px 24px !important;
  }
  .card[style*="linear-gradient"] > div {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .card[style*="linear-gradient"] > div > div:last-child {
    white-space: normal !important;
  }
  .card[style*="linear-gradient"] .btn {
    width: 100%;
  }
}

/* V3 item 7 — mobile menu must be properly hidden from crawlers when closed.
   The `hidden` attribute is added/removed via JS to match aria-hidden state.
   This rule guarantees [hidden] takes precedence even with .mobile-menu styles. */
.mobile-menu[hidden] { display: none !important; }


/* Hero with image — service hub + brand pages.
   Inherits .hero base styles but adjusts padding to balance the image side. */
.hero-with-image { padding: 56px 0 64px; }
.hero-with-image .grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.hero-with-image .hero-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(13, 27, 42, 0.18), 0 1px 0 rgba(0,0,0,0.04);
}
.hero-with-image .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-with-image .hero-visual .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
@media (max-width: 979px) {
  .hero-with-image .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-with-image .hero-visual { max-width: 600px; margin: 0 auto; }
}

/* ============ KITE & KEY — FOOTER BRAND + BADGES ============ */
footer.site-footer img.brand-logo {
  height: 88px;
  width: auto;
  filter: none;
  margin-bottom: 16px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 14px; }
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.footer-brand-name em { font-style: italic; color: var(--gold); }
.footer-brand-name span {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-top: 4px;
}
.footer-blurb {
  color: rgba(255,255,255,0.72);
  font-size: 14.5px;
  max-width: 42ch;
  margin-top: 18px;
  line-height: 1.6;
}
.footer-contact { margin-top: 20px; font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-contact a { color: rgba(255,255,255,0.95); }
.footer-contact a:hover { color: var(--gold); }
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  padding: 22px 0;
  margin-bottom: 8px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.82);
}

/* Utility bar accent */
.util .pulse { background: var(--gold); box-shadow: 0 0 0 4px rgba(201,151,43,0.22); }
.util .since { color: var(--gold); }

/* Secondary nav featured = gold ⚡ */
.nav-secondary a.featured { color: var(--gold); font-weight: 700; }

@media (max-width: 880px){
  .footer-badges { flex-direction: column; gap: 10px; }
}

/* ============ KITE & KEY — ESTIMATE FORM ============ */
.estimate-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.estimate-card { padding: 32px 34px; }
.kk-form .field { margin-bottom: 18px; }
.kk-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kk-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.kk-form label span { color: var(--gold); }
.kk-form input,
.kk-form select,
.kk-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.kk-form input:focus,
.kk-form select:focus,
.kk-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,42,0.10);
}
.kk-form textarea { resize: vertical; }
.field-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-fine { font-size: 13px; color: var(--muted); margin: 14px 0 0; text-align: center; }
.form-fine a, .kk-form a { color: var(--gold); font-weight: 600; }
.form-success h2 { color: var(--navy); }
.form-error {
  background: #FDECEC;
  border: 1px solid #F3C0C0;
  color: #8A1F1F;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 14.5px;
}
.estimate-aside { padding: 8px 4px; }
.aside-contact { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.aside-contact .fact-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.aside-contact .fact-value { font-family: var(--serif); font-size: 1.5rem; margin-top: 4px; }

@media (max-width: 860px){
  .estimate-grid { grid-template-columns: 1fr; gap: 28px; }
  .kk-form .field-row { grid-template-columns: 1fr; }
}

/* info-grid: plain card grid (distinct from the seamless svc-grid) */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-grid .card { padding: 28px 26px; }
.svc-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px){ .info-grid { grid-template-columns: 1fr; } }

/* ============ KITE & KEY — REVIEW + PROMO CARDS ============ */
.review-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.review-by { margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.promo-card { display: flex; flex-direction: column; align-items: flex-start; }
.promo-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--pink-tint);
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.promo-card h3 { margin-bottom: 8px; }

/* ============ KITE & KEY — VAN GALLERY / PHOTOS ============ */
.van-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.van-shot {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.12);
  border: 1px solid var(--line);
  background: var(--surface);
}
.van-shot img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}
/* Hero photo gets a soft frame too */
.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(13, 27, 42, 0.18);
}
@media (max-width: 767px){
  .van-gallery { grid-template-columns: 1fr; }
}

/* ============ KITE & KEY — CERTIFIED INSTALLER BADGES ============ */
.brand-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.brand-badges li {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 28px;
  box-shadow: 0 4px 14px rgba(13, 27, 42, 0.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.brand-badges li:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(13, 27, 42, 0.10);
}
@media (max-width: 560px){
  .brand-badges li { font-size: 1.02rem; padding: 10px 20px; }
}

/* ============ KITE & KEY — FOOTER CREDIT ============ */
.footer-credit {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.footer-credit a {
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}
.footer-credit a:hover { color: var(--gold); }
