/* ==========================================================================
   Sweeney Renewables — Design System
   Plain CSS, no framework. Mobile-first.
   ========================================================================== */

:root {
  /* Brand */
  --blue: #009fe3;          /* logo brand blue */
  --blue-dark: #0a5c85;     /* darkened for accessible text/links on white */
  --blue-darker: #073e5a;   /* headings, high-contrast accents */
  --blue-pale: #e8f6fd;     /* tints, section backgrounds */
  --blue-pale-2: #d3edfa;

  --ink: #17242e;           /* body text */
  --ink-soft: #445766;      /* secondary text */
  --bg: #f7f9fa;            /* page background */
  --surface: #ffffff;       /* card background */
  --border: #dde5ea;
  --border-soft: #eaeff2;

  --amber: #b85c0a;         /* warm accent — calls to action / phone (4.6:1 vs white text) */
  --amber-dark: #96490a;    /* hover state (6.5:1 vs white text) */
  --amber-pale: #fdf1e2;

  --green: #1f8a52;         /* savings / positive numbers */
  --green-pale: #e7f6ee;

  /* Type */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(23, 36, 46, 0.06), 0 1px 1px rgba(23, 36, 46, 0.04);
  --shadow: 0 4px 16px rgba(23, 36, 46, 0.08);
  --shadow-lg: 0 12px 32px rgba(23, 36, 46, 0.12);

  --container: 1180px;
  --container-narrow: 800px;
}

/* --------------------------------------------------------------------- */
/* Reset                                                                  */
/* --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--blue-dark); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:hover { color: var(--blue-darker); }
ul, ol { padding-left: 1.25em; }
table { border-collapse: collapse; width: 100%; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
a.skip-link {
  position: absolute; left: 0; top: -3rem; background: var(--blue-darker); color: #fff;
  padding: var(--sp-3) var(--sp-4); z-index: 200; transition: top .15s ease; border-radius: 0 0 var(--radius-sm) 0;
}
a.skip-link:focus { top: 0; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

/* --------------------------------------------------------------------- */
/* Typography                                                             */
/* --------------------------------------------------------------------- */
h1, h2, h3, h4 { color: var(--blue-darker); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 1.5rem + 2vw, 3.1rem); margin-bottom: var(--sp-5); }
h2 { font-size: clamp(1.5rem, 1.3rem + 1vw, 2.25rem); margin-bottom: var(--sp-4); }
h3 { font-size: 1.3rem; margin-bottom: var(--sp-3); }
h4 { font-size: 1.1rem; margin-bottom: var(--sp-2); }
p { margin-bottom: var(--sp-4); max-width: 68ch; }
p.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 62ch; }
.section-kicker {
  display: inline-block; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue-dark); margin-bottom: var(--sp-2);
}
.text-center { text-align: center; }
.text-center p.lede, .text-center p { margin-left: auto; margin-right: auto; }
.muted { color: var(--ink-soft); }

/* --------------------------------------------------------------------- */
/* Layout                                                                 */
/* --------------------------------------------------------------------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--sp-5); }
.section { padding-block: var(--sp-8); }
.section-tight { padding-block: var(--sp-6); }
.section-alt { background: var(--surface); border-block: 1px solid var(--border-soft); }
.section-blue { background: var(--blue-darker); color: #eaf6fd; }
.section-blue h2, .section-blue h3 { color: #fff; }
.section-blue p { color: #cfe7f4; }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.split {
  display: grid; gap: var(--sp-6); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.1fr 0.9fr; }
  .split.split-reverse > :first-child { order: 2; }
}

/* --------------------------------------------------------------------- */
/* Buttons                                                                */
/* --------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2); justify-content: center;
  font-weight: 700; font-size: 1rem; padding: 0.85em 1.5em; border-radius: 999px;
  border: 2px solid transparent; text-decoration: none; transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--amber); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--amber-dark); color: #fff; }
.btn-secondary { background: var(--surface); color: var(--blue-darker); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue-darker); }
.btn-outline-invert { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-invert:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 1em 1.9em; font-size: 1.05rem; }
.btn-sm { padding: 0.55em 1.1em; font-size: 0.9rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }

/* --------------------------------------------------------------------- */
/* Header / Nav                                                          */
/* --------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  backdrop-filter: saturate(1.4) blur(6px); border-bottom: 1px solid var(--border-soft);
}
.header-bar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding-block: var(--sp-3);
}
.brand { display: flex; align-items: center; gap: var(--sp-2); text-decoration: none; flex-shrink: 0; }
.brand img { height: 38px; width: auto; }
.brand-word { font-weight: 800; font-size: 1.15rem; color: var(--blue-darker); line-height: 1.1; }
.brand-word span { display: block; font-weight: 600; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

.main-nav { display: none; }
.main-nav > ul { display: flex; align-items: center; gap: var(--sp-5); list-style: none; padding: 0; }
.main-nav a { color: var(--ink); font-weight: 600; text-decoration: none; font-size: 0.96rem; padding: var(--sp-2) 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--blue-dark); border-color: var(--blue); }
.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: 100%; left: -1rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: var(--sp-3); min-width: 240px; list-style: none; margin-top: var(--sp-2);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a { display: block; padding: var(--sp-2) var(--sp-3); border-radius: var(--radius-sm); border: none; font-weight: 500; }
.dropdown li a:hover { background: var(--blue-pale); }

.header-cta { display: flex; align-items: center; gap: var(--sp-3); }
.header-phone { display: none; align-items: center; gap: var(--sp-2); font-weight: 700; color: var(--blue-darker); text-decoration: none; }
.header-phone svg { flex-shrink: 0; }
.header-phone .tel-label { font-size: 0.68rem; font-weight: 600; color: var(--ink-soft); display: block; text-transform: uppercase; letter-spacing: .05em; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  background: none; border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--blue-darker); position: relative; transition: transform .15s ease, opacity .15s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: 0; top: 66px; background: var(--surface); z-index: 99;
  overflow-y: auto; padding: var(--sp-5);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--border-soft); }
.mobile-nav a { display: block; padding: var(--sp-4) var(--sp-1); font-weight: 600; color: var(--ink); text-decoration: none; font-size: 1.05rem; }
.mobile-nav .mobile-sub { padding-left: var(--sp-4); display: none; }
.mobile-nav .mobile-sub.is-open { display: block; }
.mobile-nav .mobile-sub a { font-weight: 500; font-size: 0.98rem; padding-block: var(--sp-3); color: var(--ink-soft); }
.mobile-sub-toggle { display: flex; width: 100%; justify-content: space-between; align-items: center; background: none; border: none; text-align: left; padding: var(--sp-4) var(--sp-1); font-weight: 600; font-size: 1.05rem; font-family: var(--font); }
.mobile-nav .btn { margin-top: var(--sp-5); }

@media (min-width: 1080px) {
  .main-nav { display: block; }
  .nav-toggle, .mobile-nav { display: none !important; }
  .header-phone { display: flex; }
}

/* --------------------------------------------------------------------- */
/* Hero                                                                   */
/* --------------------------------------------------------------------- */
.hero {
  /* gradient stays within a range that keeps white text >= 5.5:1 contrast throughout */
  background: linear-gradient(165deg, var(--blue-darker) 0%, #0c6f9c 55%, #0d6690 100%);
  color: #fff; padding-block: var(--sp-9) var(--sp-8); position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image: radial-gradient(circle at 85% 20%, #fff 0, transparent 40%), radial-gradient(circle at 10% 90%, #fff 0, transparent 35%);
}
.hero .container { position: relative; }
.hero h1 { color: #fff; }
.hero p.lede { color: #d7edf8; }
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-block: var(--sp-5); }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2); background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25); padding: var(--sp-2) var(--sp-4); border-radius: 999px; font-size: 0.85rem; font-weight: 600;
}
.page-hero {
  background: linear-gradient(165deg, var(--blue-darker), var(--blue-dark));
  color: #fff; padding-block: var(--sp-7) var(--sp-6);
}
.page-hero h1 { color: #fff; margin-bottom: var(--sp-3); }
.page-hero p.lede { color: #d7edf8; margin-bottom: 0; }

/* --------------------------------------------------------------------- */
/* Breadcrumbs                                                           */
/* --------------------------------------------------------------------- */
.breadcrumbs { padding-block: var(--sp-3); font-size: 0.85rem; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--sp-1); color: var(--ink-soft); }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue-dark); text-decoration: underline; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: var(--sp-1); color: var(--border); }

/* --------------------------------------------------------------------- */
/* Cards                                                                  */
/* --------------------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: var(--sp-5); box-shadow: var(--shadow-sm); height: 100%;
}
.card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease; }
.card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: var(--radius-sm); background: var(--blue-pale); color: var(--blue-dark); margin-bottom: var(--sp-4); flex-shrink: 0;
}
.card h3 { margin-bottom: var(--sp-2); font-size: 1.15rem; }
.card p:last-child { margin-bottom: 0; }
.card-arrow { margin-top: auto; padding-top: var(--sp-3); font-weight: 700; color: var(--blue-dark); font-size: 0.92rem; }

.stat-strip { display: grid; gap: var(--sp-5); grid-template-columns: repeat(2,1fr); text-align: center; }
@media (min-width: 720px) { .stat-strip { grid-template-columns: repeat(4,1fr); } }
.stat { padding: var(--sp-4); }
.stat .num { display: block; font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.6rem); font-weight: 800; color: var(--blue-darker); line-height: 1; margin-bottom: var(--sp-2); }
.stat .label { color: var(--ink-soft); font-size: 0.9rem; font-weight: 600; }

.badge-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: var(--sp-2); background: var(--surface); border: 1px solid var(--border);
  padding: var(--sp-2) var(--sp-4); border-radius: 999px; font-weight: 700; font-size: 0.85rem; color: var(--blue-darker);
}

/* --------------------------------------------------------------------- */
/* Testimonials                                                          */
/* --------------------------------------------------------------------- */
.testimonial {
  background: var(--surface); border: 1px solid var(--border-soft); border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm); padding: var(--sp-5); height: 100%; display: flex; flex-direction: column;
}
.testimonial blockquote { margin: 0 0 var(--sp-4); font-size: 1.02rem; color: var(--ink); }
.testimonial blockquote::before { content: "\201C"; color: var(--blue-dark); font-weight: 800; }
.testimonial cite { font-style: normal; font-weight: 700; color: var(--blue-darker); display: block; font-size: 0.92rem; }
.testimonial .role { color: var(--ink-soft); font-size: 0.85rem; display: block; margin-top: 2px; }
.testimonial-tag {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--blue-dark); background: var(--blue-pale); padding: 2px var(--sp-2); border-radius: 999px; margin-bottom: var(--sp-3);
}

/* --------------------------------------------------------------------- */
/* CTA banner                                                            */
/* --------------------------------------------------------------------- */
.cta-banner {
  background: var(--blue-darker); color: #fff; border-radius: var(--radius-lg); padding: var(--sp-7);
  display: flex; flex-wrap: wrap; gap: var(--sp-5); align-items: center; justify-content: space-between;
}
.cta-banner h2, .cta-banner h3 { color: #fff; margin-bottom: var(--sp-2); }
.cta-banner p { color: #cfe7f4; margin-bottom: 0; }

/* --------------------------------------------------------------------- */
/* FAQ (native details/summary — accessible, no JS)                      */
/* --------------------------------------------------------------------- */
.faq-item { border-bottom: 1px solid var(--border); padding-block: var(--sp-2); }
.faq-item summary {
  cursor: pointer; font-weight: 700; padding: var(--sp-4) var(--sp-2) var(--sp-4) 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4); color: var(--blue-darker);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--blue-dark); flex-shrink: 0; line-height: 1;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-answer { padding-bottom: var(--sp-4); color: var(--ink-soft); max-width: 68ch; }
.faq-item .faq-answer > *:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------- */
/* Tables (specs)                                                        */
/* --------------------------------------------------------------------- */
.spec-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.spec-table tr { border-bottom: 1px solid var(--border-soft); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table th, .spec-table td { text-align: left; padding: var(--sp-3) var(--sp-4); font-size: 0.95rem; }
.spec-table th { color: var(--ink-soft); font-weight: 600; width: 45%; }
.spec-table td { font-weight: 700; color: var(--blue-darker); }

/* --------------------------------------------------------------------- */
/* Forms                                                                  */
/* --------------------------------------------------------------------- */
.form-field { margin-bottom: var(--sp-4); }
.form-field label { display: block; font-weight: 700; margin-bottom: var(--sp-2); font-size: 0.92rem; }
.form-field .hint { font-weight: 400; color: var(--ink-soft); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: var(--sp-3) var(--sp-4); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); font-size: 1rem;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--blue); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: var(--sp-3); }
.required-mark { color: var(--amber-dark); }

/* --------------------------------------------------------------------- */
/* Lists with check icons                                                */
/* --------------------------------------------------------------------- */
.check-list { list-style: none; padding: 0; display: grid; gap: var(--sp-3); }
.check-list li { display: flex; gap: var(--sp-3); align-items: flex-start; }
.check-list li::before {
  content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: var(--green-pale); border: 1.5px solid var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231f8a52' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}

/* --------------------------------------------------------------------- */
/* Numbered steps                                                        */
/* --------------------------------------------------------------------- */
.step-list { list-style: none; padding: 0; counter-reset: step; display: grid; gap: var(--sp-5); }
.step-list li { display: flex; gap: var(--sp-4); }
.step-list li::before {
  counter-increment: step; content: counter(step); flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-darker); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center;
}

/* --------------------------------------------------------------------- */
/* Sector / area chip lists                                              */
/* --------------------------------------------------------------------- */
.chip-list { display: flex; flex-wrap: wrap; gap: var(--sp-2); list-style: none; padding: 0; }
.chip-list li { background: var(--blue-pale); color: var(--blue-darker); font-weight: 600; font-size: 0.88rem; padding: var(--sp-2) var(--sp-4); border-radius: 999px; }

/* --------------------------------------------------------------------- */
/* Footer                                                                 */
/* --------------------------------------------------------------------- */
.site-footer { background: #0b2536; color: #c7d8e2; padding-block: var(--sp-8) var(--sp-6); }
.site-footer a { color: #d7ebf5; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: var(--sp-4); }
.footer-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; margin-bottom: var(--sp-7); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: var(--sp-3); }
.footer-brand img { height: 36px; margin-bottom: var(--sp-4); }
.footer-brand p { color: #9fb7c5; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: var(--sp-5); display: flex; flex-wrap: wrap;
  gap: var(--sp-3); justify-content: space-between; font-size: 0.82rem; color: #8ba5b4;
}
.footer-bottom ul { list-style: none; display: flex; gap: var(--sp-4); padding: 0; flex-wrap: wrap; }
.footer-social { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.footer-social a {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border-radius: 50%;
}
.footer-social a:hover { background: var(--blue-dark); }
.footer-certs { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.footer-certs span {
  border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: var(--sp-1) var(--sp-3); font-size: 0.75rem; font-weight: 700; color: #cfe7f4;
}

/* --------------------------------------------------------------------- */
/* Sticky mobile call bar                                                */
/* --------------------------------------------------------------------- */
.mobile-call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--amber); color: #fff;
  display: flex; box-shadow: 0 -4px 16px rgba(0,0,0,.15);
}
.mobile-call-bar a {
  flex: 1; color: #fff; text-decoration: none; text-align: center; padding: var(--sp-4); font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
}
.mobile-call-bar .secondary { background: rgba(0,0,0,.12); }
@media (min-width: 1080px) { .mobile-call-bar { display: none; } }
body { padding-bottom: 64px; }
@media (min-width: 1080px) { body { padding-bottom: 0; } }

/* --------------------------------------------------------------------- */
/* Misc utility                                                          */
/* --------------------------------------------------------------------- */
.flow > * + * { margin-top: var(--sp-4); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.rounded-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.eyebrow-list { display: grid; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.eyebrow-list li { display: flex; gap: var(--sp-2); align-items: baseline; color: var(--ink-soft); font-weight: 600; font-size: 0.92rem; }
.eyebrow-list li::before { content: "\2014"; color: var(--blue); }

.pagehead-meta { display: flex; flex-wrap: wrap; gap: var(--sp-4); color: #bfe1f0; font-size: 0.88rem; margin-top: var(--sp-3); }

@media print {
  .site-header, .mobile-call-bar, .site-footer { display: none; }
}
