/* build 2026-08-22e — tbody th row-label style; ul.trust-strip pills; — nav base rules scoped to top-level ul (mega-list columns were flex rows) */
/* ══════════════════════════════════════════════════════════════════
   Air Con Surrey — Cool / Clean / Technical
   Deep cool navy + sky cyan · Source Serif 4 + Inter
   (Variable names kept from the shared engine theme; values re-pointed
    to the ACS "climate" palette so the whole stylesheet re-themes.)
   ══════════════════════════════════════════════════════════════════ */

:root {
  --navy: #0b3050;          /* deep cool navy — primary brand */
  --navy-dark: #07223a;
  --navy-mid: #14507e;
  --slate: #475569;
  --slate-light: #94a3b8;
  --paper: #fafcfe;
  --paper-soft: #eff5fa;
  --white: #ffffff;
  --line: #e2e8f0;
  --line-dark: #cbd5e1;
  --gold: #0aa5e0;          /* sky-cyan accent — "cool air" */
  --gold-dark: #0785b8;
  --gold-soft: rgba(10, 165, 224, 0.12);
  --text: #14202a;
  --text-soft: #44566a;
  --text-muted: #64748b;
  --text-on-dark: #b9cfdf;
  --green: #15803d;
  --red: #be123c;
  --radius: 4px;
  --container-max: 1180px;
  --container-narrow: 760px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color .15s, border-color .15s;
}
a:hover {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

p { margin: 0 0 16px 0; }
p:last-child { margin-bottom: 0; }

img { max-width: 100%; height: auto; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* Contain full-bleed generated sections to the standard column (matches CIE). */
main section:not(:has(> .container)):not(:has(> .container-narrow)) {
  padding-left: max(24px, calc((100% - var(--container-max)) / 2 + 24px));
  padding-right: max(24px, calc((100% - var(--container-max)) / 2 + 24px));
}

/* ── HERO QUOTE WIDGET (Quotezone affiliate CTA, injected below the hero) ─── */
.hero-quote-band { background: #f0f7fc; border-bottom: 1px solid #d7e6f2; }
.hero-quote { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start; gap: 12px 18px; padding: 15px 0; }
.hero-quote-head { margin: 0; }
.hero-quote-label { font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.hero-quote-row { display: flex; gap: 10px; }
.hero-quote-row input { width: 210px; padding: 12px 14px; border: 1px solid #c0d8e8; border-radius: 8px; font-size: 15px; color: var(--navy); background: #fff; }
.hero-quote-row input:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.hero-quote-row button { background: var(--gold); color: #fff; border: 0; padding: 12px 22px; border-radius: 8px; font-weight: 800; font-size: 15px; cursor: pointer; white-space: nowrap; }
.hero-quote-row button:hover { background: var(--gold-dark); }
@media (max-width: 620px) {
  .hero-quote { flex-direction: column; align-items: stretch; text-align: center; }
  .hero-quote-row { width: 100%; }
  .hero-quote-row input { flex: 1; width: auto; min-width: 0; }
}

/* ── UTILITY BAR ─────────────────────────────────────────────── */
.utility-bar {
  background: var(--navy-dark);
  color: var(--text-on-dark);
  font-size: 12px;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── SITE HEADER ─────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 22px 0;
  border-bottom: 3px solid var(--gold);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Source Serif 4', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo-chevron { width: 28px; height: 28px; flex-shrink: 0; }
.logo-text { line-height: 1; }

.main-nav > ul {
  list-style: none;
  display: flex;
  gap: 28px;
}
.main-nav > ul > li > a {
  color: var(--text-on-dark);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .15s;
  text-decoration: none;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
  text-decoration: none;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 760px; position: relative; }
.hero h1 { font-size: 48px; margin-bottom: 18px; color: var(--white); }
.hero .lead { font-size: 18px; color: var(--text-on-dark); margin-bottom: 32px; max-width: 620px; }

/* Links on dark surfaces. The Keyword auto-linker injects <a> tags anywhere in
   the page HTML — including the hero lead — where they would otherwise inherit
   the global dark `a { color: var(--navy) }` and disappear against the dark
   background. `:not(.btn)` keeps the hero CTA buttons on their own styling. */
.hero a:not(.btn),
.utility-bar a:not(.btn) {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.hero a:not(.btn):hover,
.utility-bar a:not(.btn):hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid rgba(10, 165, 224, 0.4);
  border-radius: 2px;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 2px;
  transition: all .15s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { background: var(--gold-dark); color: var(--white); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--text-on-dark); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); text-decoration: none; }
.btn-outline { background: var(--white); color: var(--navy); border: 1px solid var(--line-dark); }
.btn-outline:hover { border-color: var(--navy); text-decoration: none; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ── STATS STRIP ──────────────────────────────────────────────── */
.stats-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.stats-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Source Serif 4', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── SECTIONS ─────────────────────────────────────────────────── */
section { padding: 72px 0; }
section.section--alt { background: var(--paper-soft); }
section.section--surface { background: var(--white); }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  display: inline-block;
}
.section-title { font-size: 32px; margin-bottom: 14px; color: var(--navy); }
.section-intro {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 640px;
  margin-bottom: 40px;
}

/* ── HUB CARDS ────────────────────────────────────────────────── */
.hubs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hub {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .15s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.hub:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.06);
  text-decoration: none;
}
.hub-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 16px;
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: 20px;
}
.hub h3 { font-size: 18px; margin-bottom: 8px; color: var(--navy); }
.hub p { font-size: 14px; color: var(--text-soft); margin-bottom: 14px; }
.hub-meta {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 600;
}

/* ── CONTENT TABLES (Dataset / Cost Index) ───────────────────── */
.data-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  overflow-x: auto;
}
.data-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table th {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 2px solid var(--navy);
  color: var(--navy);
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 14px;
}
.data-table td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
}
/* row-header th inside tbody (brand "in numbers", spec tables): label cell, NOT a column heading */
.data-table tbody th { border-bottom: 1px solid var(--line); background: var(--paper-soft); width: 32%; vertical-align: top; font-size: 13.5px; }
.data-table tr:last-child td, .data-table tr:last-child th { border-bottom: none; }
.data-table td.price {
  color: var(--gold-dark);
  font-weight: 600;
}
.data-table .source-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-soft);
}
.data-table .increase { color: var(--red); font-weight: 500; }
.data-table .decrease { color: var(--green); font-weight: 500; }

/* ── TRUST STRIP ──────────────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
/* ul variant (homepage): centred check-pills instead of a bordered bullet list */
ul.trust-strip { list-style: none; margin: 0; padding: 0; border: 0; background: transparent; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; }
ul.trust-strip li { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-size: 14px; font-weight: 600; color: var(--navy); box-shadow: 0 1px 2px rgba(11,48,80,.05); }
ul.trust-strip li::before { content: "\2713"; color: var(--gold); font-weight: 700; font-size: 15px; line-height: 1; }
@media (max-width: 600px) { ul.trust-strip { gap: 8px; } ul.trust-strip li { padding: 7px 12px; font-size: 13px; } }
.trust-label {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-sources {
  display: flex;
  gap: 32px;
  align-items: center;
  color: var(--slate);
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 15px;
  flex-wrap: wrap;
}

/* ── GUIDES / ARTICLE CARDS ───────────────────────────────────── */
.guides {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.guide {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius);
}
.guide-meta {
  font-size: 12px;
  color: var(--slate-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.guide h3 { font-size: 19px; margin-bottom: 8px; }
.guide h3 a { color: var(--navy); }
.guide p { font-size: 14px; color: var(--text-soft); }

/* ── FAQ ACCORDION (matches BB pattern) ───────────────────────── */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  transition: transform .15s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease-out; }
.faq-item.open .faq-a { max-height: 800px; }
.faq-a-inner { padding: 0 0 18px 0; color: var(--text-soft); font-size: 15px; line-height: 1.7; }

/* ── SOURCES BLOCK ────────────────────────────────────────────── */
.sources-block {
  background: var(--paper-soft);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.sources-block h3 { font-size: 18px; margin-bottom: 12px; }
.sources-block ul {
  list-style: none;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
}
.sources-block li::before {
  content: '·';
  margin-right: 8px;
  color: var(--gold);
  font-weight: 700;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: var(--text-on-dark);
  padding: 56px 0 32px;
  font-size: 14px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--slate-light);
  max-width: 360px;
}
.site-footer h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer li { padding: 5px 0; }
.site-footer a { color: var(--text-on-dark); font-size: 14px; }
.site-footer a:hover { color: var(--gold); text-decoration: none; }

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: var(--radius);
  font-size: 12px;
  margin-top: 32px;
  color: var(--slate-light);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--slate-light);
  gap: 16px;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero h1 { font-size: 32px; }
  .stats-band .container,
  .hubs,
  .guides,
  .footer-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .site-header .container { padding: 0 16px; }
  .container { padding: 0 16px; }
}

@media (max-width: 600px) {
  .utility-bar .container { font-size: 11px; gap: 8px; flex-direction: column; align-items: flex-start; }
  .hero { padding: 48px 0 56px; }
  .hero h1 { font-size: 28px; }
  section { padding: 48px 0; }
}

/* ══ Service-silo structure (rendered from dbo.PageSilo by CatchAllController) ══
   [#SILO_BREADCRUMB#] / [#SILO_CHILDREN#] / [#SILO_UP#] — structural; never edited by
   the content routine. Ported from BestBuilders, re-pointed to the ACS tokens. */
.silo-crumbs { background: var(--paper-soft); border-bottom: 1px solid var(--line); padding: 9px 0; font-size: 12.5px; color: var(--text-muted); }
.silo-crumbs a { color: var(--gold-dark); text-decoration: none; font-weight: 600; }
.silo-crumbs a:hover { text-decoration: underline; }
.silo-crumbs b { color: var(--navy); }
.silo-children { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; margin: 18px 0; }
.silo-card { display: flex; flex-direction: column; gap: 5px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 17px; text-decoration: none; transition: border-color .15s ease, box-shadow .15s ease; color: inherit; }
.silo-card:hover { border-color: var(--gold); box-shadow: 0 4px 14px rgba(10, 37, 64, 0.06); text-decoration: none; }
.silo-card__t { font-family: 'Source Serif 4', serif; font-size: 16px; color: var(--navy); font-weight: 700; }
.silo-card__b { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.silo-card__p { font-size: 13px; font-weight: 700; color: var(--green); }
.silo-card__go { font-size: 12.5px; font-weight: 700; color: var(--gold-dark); margin-top: 2px; }
.silo-up { background: var(--paper-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; margin: 26px 0 0; }
.silo-up__lead { margin: 0; font-size: 14px; color: var(--text-soft); }
.silo-up__lead a { color: var(--gold-dark); text-decoration: none; }
.silo-up__sibs { list-style: none; margin: 9px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.silo-up__sibs li { margin: 0; }
.silo-up__sibs a { display: inline-block; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 5px 13px; font-size: 12.5px; font-weight: 600; color: var(--navy); text-decoration: none; }
.silo-up__sibs a:hover { border-color: var(--gold); text-decoration: none; }
main section .silo-children { margin-top: 0; }

/* ══ Mega menu (click-to-open, like BestBuilders; no hover timers — see BB 2026-08-09) ══ */
.main-nav > ul { align-items: center; }
.nav-item { position: relative; }
.nav-link { background: none; border: 0; cursor: pointer; font: inherit; color: var(--text-on-dark); font-size: 14px; font-weight: 500; padding: 8px 0; border-bottom: 2px solid transparent; display: inline-flex; align-items: center; gap: 4px; }
.nav-link svg { width: 14px; height: 14px; opacity: .7; transition: transform .15s; }
.nav-item.open .nav-link, .nav-link:hover { color: var(--white); border-bottom-color: var(--gold); }
.nav-item.open .nav-link svg { transform: rotate(180deg); }
.nav-cta { background: var(--gold); color: var(--navy-dark) !important; padding: 9px 16px !important; border-radius: 3px; font-weight: 700 !important; border-bottom: 0 !important; }
.nav-cta:hover { background: var(--gold-dark); color: var(--white) !important; }
.mega-panel { position: absolute; top: calc(100% + 14px); left: -20px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 18px 50px rgba(11, 48, 80, .18); padding: 22px 24px; min-width: 640px; display: none; z-index: 900; text-align: left; }
.mega-panel--right { left: auto; right: -20px; }
.mega-panel--narrow { min-width: 300px; }
.nav-item.open .mega-panel { display: block; animation: megaFade .16s ease; }
@keyframes megaFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .nav-item.open .mega-panel { animation: none; } }
.mega-cols { display: grid; gap: 20px; }
.mega-cols--2 { grid-template-columns: 1fr 1fr; }
.mega-cols--3 { grid-template-columns: 1fr 1fr 1fr; }
.mega-heading { font-size: 10.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-muted); margin: 0 0 8px; padding-bottom: 6px; border-bottom: 1px solid var(--line); }
.mega-list { list-style: none; margin: 0; padding: 0; }
.mega-list li { margin: 0; }
.mega-list a { display: block; padding: 6px 8px; border-radius: 5px; color: var(--navy); font-size: 13.5px; font-weight: 500; text-decoration: none; line-height: 1.35; }
.mega-list a:hover { background: var(--paper-soft); color: var(--gold-dark); text-decoration: none; }
.mega-list a small { display: block; font-size: 11.5px; color: var(--text-muted); font-weight: 400; }
.mega-footer { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-soft); gap: 12px; flex-wrap: wrap; }
.mega-footer a { font-weight: 700; color: var(--gold-dark); }
.nav-backdrop { position: fixed; inset: 0; background: rgba(7, 34, 58, .35); z-index: 850; display: none; }
.nav-backdrop.show { display: block; }
.burger { display: none; background: none; border: 1px solid rgba(255,255,255,.35); color: var(--white); border-radius: 4px; padding: 7px 10px; font: inherit; font-size: 13px; cursor: pointer; }
.mobile-nav { display: none; background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.08); }
.mobile-nav.open { display: block; }
.mobile-nav .container { padding: 10px 16px 18px; }
.mob-section > button { width: 100%; text-align: left; background: none; border: 0; border-bottom: 1px solid rgba(255,255,255,.08); color: var(--white); font: inherit; font-size: 15px; font-weight: 600; padding: 12px 0; cursor: pointer; display: flex; justify-content: space-between; }
.mob-section ul { display: none; list-style: none; margin: 0; padding: 4px 0 10px 12px; }
.mob-section.open ul { display: block; }
.mob-section li a { display: block; color: var(--text-on-dark); font-size: 14px; padding: 6px 0; text-decoration: none; }
.mob-section li a:hover { color: var(--white); }
.mobile-nav .btn { margin-top: 14px; display: block; text-align: center; }
@media (max-width: 900px) {
  .main-nav { display: none; }
  .burger { display: inline-block; }
}

/* ══ Mobile sticky quote CTA (silo pages only; set by CatchAllController) ══ */
.silo-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 700; background: var(--navy); color: var(--white); padding: 10px 0; box-shadow: 0 -6px 18px rgba(0,0,0,.18); }
.silo-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.silo-cta span { font-size: 13px; font-weight: 600; }
@media (max-width: 900px) { .silo-cta { display: block; } body { padding-bottom: 56px; } }
.footer-areas { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-areas p { font-size: 12.5px; color: var(--slate-light); line-height: 2; margin: 0; }
.footer-areas a { font-size: 12.5px; }
section.silo-children-band { padding: 34px 0 10px; }
section.silo-children-band .section-label { margin-bottom: 6px; }
ul.silo-children--compact { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 14px 0 18px; padding: 0; }
ul.silo-children--compact li { margin: 0; }
ul.silo-children--compact a { display: inline-block; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; }
ul.silo-children--compact a:hover { border-color: var(--gold); color: var(--gold-dark); text-decoration: none; }
