/* ==========================================================================
   Granbury Electrician — design system
   Aesthetic: Texas trade craftsman. Warm cream paper, midnight-navy panels,
   high-voltage amber reserved for CTAs, copper-wire accents.
   ========================================================================== */

/* ---- Fonts (self-hosted, latin subset) ---------------------------------- */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('fonts/BarlowCondensed-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('fonts/BarlowCondensed-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('fonts/Barlow-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: italic; font-weight: 400; font-display: swap;
  src: url('fonts/Barlow-400i.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('fonts/Barlow-600.woff2') format('woff2');
}

/* ---- Tokens -------------------------------------------------------------- */
:root {
  --paper:    #F7F2E9;
  --paper-2:  #EFE7D8;
  --ink:      #141D25;
  --navy:     #16242F;
  --navy-2:   #0E1820;
  --volt:     #FFB81C;
  --volt-hot: #FFC94A;
  --copper:   #B4653A;
  --steel:    #55636E;
  --mist:     #A3B4C0;
  --line:     rgba(20, 29, 37, .14);
  --line-dark: rgba(255, 255, 255, .12);
  --star:     #F2A71B;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Segoe UI', sans-serif;
  --shadow-card: 0 1px 2px rgba(20,29,37,.06), 0 10px 28px -12px rgba(20,29,37,.22);
  --shadow-lift: 0 2px 4px rgba(20,29,37,.08), 0 18px 40px -14px rgba(20,29,37,.32);
  --wrap: 1140px;
}

/* ---- Reset / base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}
img, svg { max-width: 100%; vertical-align: middle; }
a { color: var(--copper); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--ink); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6.5vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); letter-spacing: .02em; }
h4 { font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; margin: 0 0 .4em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--navy); color: #EDF2F6; }
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--copper);
  margin: 0 0 .9rem;
}
.eyebrow::before { content: ''; width: 2rem; height: 2px; background: var(--copper); }
.section--dark .eyebrow { color: var(--volt); }
.section--dark .eyebrow::before { background: var(--volt); }

.lede { font-size: 1.2rem; color: var(--steel); max-width: 46rem; margin: 0 0 1rem; }
.section--dark .lede { color: var(--mist); }

/* ---- Buttons: chamfered corner = electrical panel plate ------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  padding: .8rem 1.7rem; border: 0; cursor: pointer; line-height: 1.1;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-volt { background: var(--volt); color: var(--navy-2); }
.btn-volt:hover { background: var(--volt-hot); color: var(--navy-2); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); color: #fff; }
.btn-ghost {
  background: transparent; color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.55);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px #fff; color: #fff; }
.btn-lg { font-size: 1.45rem; padding: 1rem 2.2rem; }
.btn svg { flex: none; }

/* ---- Top bar -------------------------------------------------------------- */
.topbar { background: var(--navy-2); color: var(--mist); font-size: .85rem; }
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 2.1rem; flex-wrap: wrap; padding-top: .25rem; padding-bottom: .25rem;
}
.topbar span { display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.topbar .dot { color: var(--volt); }
@media (max-width: 640px) { .topbar .hide-sm { display: none; } }

/* ---- Header --------------------------------------------------------------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.site-header .wrap {
  display: flex; align-items: center; gap: 1.5rem; min-height: 4.5rem;
}
.brand {
  display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink);
  margin-right: auto;
}
.brand-bolt {
  width: 2.4rem; height: 2.4rem; flex: none;
  background: var(--navy); color: var(--volt);
  display: grid; place-items: center;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}
.brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  letter-spacing: .04em; text-transform: uppercase; line-height: 1;
}
.brand-name small {
  display: block; font-size: .68rem; font-weight: 600; letter-spacing: .3em;
  color: var(--copper); margin-top: .2rem;
}
.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; padding: .3rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { border-bottom-color: var(--volt); }
.nav-drop { position: relative; }
.nav-drop > a::after { content: ' \25BE'; font-size: .75em; color: var(--copper); }
.drop-menu {
  display: none; position: absolute; top: 100%; left: -1rem; min-width: 15.5rem;
  background: #FFFDF8; border: 1px solid var(--line); border-top: 3px solid var(--volt);
  box-shadow: var(--shadow-lift); padding: .4rem 0; z-index: 60;
  list-style: none; margin: 0;
}
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { display: block; }
.drop-menu a {
  display: block; padding: .5rem 1.1rem; border-bottom: 0;
  font-size: .98rem; letter-spacing: .05em;
}
.drop-menu a:hover { background: var(--paper-2); }
.header-phone { text-align: right; line-height: 1.15; }
.header-phone .label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--steel); }
.header-phone a {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.55rem;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.header-phone a:hover { color: var(--copper); }
.header-phone .ph-ico { color: var(--copper); flex: none; }
.header-phone a:hover .ph-ico { color: var(--ink); }

/* Mobile nav (checkbox hack, no JS) */
.nav-toggle { display: none; }
.nav-burger { display: none; }
@media (max-width: 920px) {
  .nav-drop > a { display: none; }
  .drop-menu { display: block; position: static; border: 0; box-shadow: none; background: transparent; padding: 0; min-width: 0; }
  .drop-menu a { padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: 1.2rem; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1rem;
    box-shadow: var(--shadow-card);
  }
  .site-nav a { padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: 1.2rem; }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .nav-burger {
    display: grid; place-items: center; width: 2.6rem; height: 2.6rem;
    cursor: pointer; color: var(--ink); order: 3;
  }
  .header-phone .label { display: none; }
  .header-phone a { font-size: 1.35rem; }
}
@media (max-width: 560px) {
  .site-header .wrap { gap: .7rem; min-height: 3.9rem; }
  .brand { gap: .5rem; }
  .brand-bolt { width: 2rem; height: 2rem; }
  .brand-bolt svg { width: 15px; height: 15px; }
  .brand-name { font-size: 1.25rem; white-space: nowrap; }
  .brand-name small { display: none; }
  .nav-burger { width: 2.2rem; }
  /* Collapse the header number to an amber call button; the full number
     stays visible in the hero and the sticky bottom callbar. */
  .header-phone .ph-num { display: none; }
  .header-phone a {
    background: var(--volt); color: var(--navy-2);
    width: 2.5rem; height: 2.5rem; justify-content: center;
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  }
  .header-phone .ph-ico, .header-phone a:hover .ph-ico { color: var(--navy-2); }
}

/* ---- Hero ------------------------------------------------------------------ */
.hero {
  background:
    radial-gradient(80rem 40rem at 85% -20%, rgba(255,184,28,.14), transparent 55%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.025) 0 22px, transparent 22px 44px),
    linear-gradient(175deg, var(--navy) 55%, var(--navy-2));
  color: #EDF2F6;
  padding: clamp(3.2rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 8px;
  background: repeating-linear-gradient(-45deg, var(--volt) 0 16px, var(--navy-2) 16px 32px);
}
.hero .wrap { position: relative; }
.hero h1 { color: #fff; max-width: 17ch; }
.hero h1 .hl { color: var(--volt); }
.hero .lede { font-size: clamp(1.15rem, 2.2vw, 1.35rem); max-width: 42rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.8rem 0 1.6rem; }
.hero-note { font-size: .95rem; color: var(--mist); }

/* Page-load reveal (CSS only, once) */
@media (prefers-reduced-motion: no-preference) {
  .reveal > * { opacity: 0; transform: translateY(14px); animation: rise .6s ease forwards; }
  .reveal > *:nth-child(2) { animation-delay: .1s; }
  .reveal > *:nth-child(3) { animation-delay: .2s; }
  .reveal > *:nth-child(4) { animation-delay: .3s; }
  .reveal > *:nth-child(5) { animation-delay: .4s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* ---- Trust strip ------------------------------------------------------------ */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: .5rem 1.8rem;
  padding: 1rem 0 0; margin: 1.2rem 0 0;
  border-top: 1px solid var(--line-dark);
  font-weight: 600; font-size: .98rem;
}
.trust-strip span { display: inline-flex; align-items: center; gap: .5rem; }
.trust-strip svg { color: var(--volt); flex: none; }
.stars { color: var(--star); letter-spacing: .1em; white-space: nowrap; }

/* ---- Service cards ----------------------------------------------------------- */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 920px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card-service {
  background: #FFFDF8; border: 1px solid var(--line); border-top: 3px solid var(--copper);
  padding: 1.6rem 1.5rem 1.4rem; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: .55rem;
  text-decoration: none; color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, border-top-color .18s ease;
}
.card-service:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lift);
  border-top-color: var(--volt); color: var(--ink);
}
.card-service .icon { color: var(--copper); }
.card-service:hover .icon { color: var(--navy); }
.card-service h3 { margin: 0; }
.card-service p { margin: 0; color: var(--steel); font-size: .98rem; }
.card-service .more {
  margin-top: auto; padding-top: .5rem;
  font-family: var(--font-display); font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; font-size: .95rem; color: var(--copper);
}
.card-service:hover .more { color: var(--ink); }

.card-service.em { background: var(--navy); border-top-color: var(--volt); color: #EDF2F6; }
.card-service.em h3 { color: #fff; }
.card-service.em p { color: var(--mist); }
.card-service.em .icon, .card-service.em .more { color: var(--volt); }
.card-service.em:hover { color: #EDF2F6; }
.card-service.em:hover .more, .card-service.em:hover .icon { color: var(--volt-hot); }

/* ---- CTA band ------------------------------------------------------------------ */
.cta-band {
  background:
    repeating-linear-gradient(-45deg, rgba(14,24,32,.05) 0 18px, transparent 18px 36px),
    var(--volt);
  color: var(--navy-2);
  border-top: 4px solid var(--navy-2); border-bottom: 4px solid var(--navy-2);
}
.cta-band .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-top: 2.2rem; padding-bottom: 2.2rem; flex-wrap: wrap;
}
.cta-band h2 { margin: 0; color: var(--navy-2); font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.cta-band p { margin: .3rem 0 0; font-weight: 600; }
.cta-band .btn-dark { flex: none; }

/* ---- Testimonials ----------------------------------------------------------------- */
.quote-card {
  background: #FFFDF8; border: 1px solid var(--line);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-card); position: relative;
}
.quote-card::before {
  content: '\201C';
  position: absolute; top: -1.4rem; left: .9rem;
  font-family: var(--font-display); font-size: 4.4rem; font-weight: 700;
  color: var(--volt); line-height: 1;
}
.quote-card p { margin: .3rem 0 .9rem; }
.quote-card footer { font-weight: 600; font-size: .95rem; color: var(--steel); }
.quote-card footer b { color: var(--ink); }

/* ---- Process steps ------------------------------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 1.2rem 1.2rem 1.2rem 4.4rem; background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 1rem; top: 1.05rem;
  font-family: var(--font-display); font-weight: 700; font-size: 2rem;
  color: var(--volt); line-height: 1;
}
.step h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.step p { margin: 0; color: var(--mist); font-size: .97rem; }

/* ---- FAQ ------------------------------------------------------------------------------ */
.faq { max-width: 50rem; }
.faq details {
  border: 1px solid var(--line); background: #FFFDF8; margin-bottom: .7rem;
  box-shadow: var(--shadow-card);
}
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem;
  align-items: center; padding: .95rem 1.2rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
  letter-spacing: .02em; text-transform: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: var(--copper); flex: none; line-height: 1; transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.2rem 1.1rem; color: var(--steel); }
.faq details > div p { margin: 0 0 .6rem; }

/* ---- Article typography (service pages) -------------------------------------------------- */
.page-hero {
  background:
    repeating-linear-gradient(-45deg, rgba(255,255,255,.02) 0 22px, transparent 22px 44px),
    linear-gradient(170deg, var(--navy) 60%, var(--navy-2));
  color: #EDF2F6;
  padding: clamp(2.6rem, 6vw, 4.2rem) 0;
  border-bottom: 6px solid var(--volt);
}
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); max-width: 22ch; }
.page-hero .lede { color: var(--mist); margin-bottom: 0; }
.page-hero .hero-ctas { margin: 1.4rem 0 0; }

.breadcrumbs { font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 1rem; color: var(--mist); }
.breadcrumbs a { color: var(--mist); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { margin: 0 .45rem; color: var(--volt); }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 3rem; align-items: start; }
@media (max-width: 920px) { .article-layout { grid-template-columns: 1fr; } }
.article h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-top: 2.2rem; }
.article h2:first-child { margin-top: 0; }
.article h3 { font-size: 1.3rem; margin-top: 1.6rem; }
.article p { margin: 0 0 1rem; }
.article ul { padding-left: 1.3rem; margin: 0 0 1rem; }
.article li { margin-bottom: .45rem; }
.article li::marker { color: var(--copper); }
.article .callout {
  background: var(--paper-2); border-left: 4px solid var(--volt);
  padding: 1rem 1.2rem; margin: 1.4rem 0; font-weight: 600;
}

/* Sidebar */
.sidebar { position: sticky; top: 5.5rem; display: grid; gap: 1.4rem; }
.sidebar-cta {
  background: var(--navy); color: #EDF2F6; padding: 1.6rem 1.4rem;
  border-top: 4px solid var(--volt); box-shadow: var(--shadow-card);
}
.sidebar-cta h3 { color: #fff; margin-bottom: .4rem; }
.sidebar-cta p { color: var(--mist); font-size: .95rem; margin: 0 0 1rem; }
.sidebar-cta .phone-big {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 1.9rem; color: var(--volt); text-decoration: none; margin-bottom: .9rem;
}
.sidebar-cta .phone-big:hover { color: var(--volt-hot); }
.sidebar-links { background: #FFFDF8; border: 1px solid var(--line); padding: 1.3rem 1.4rem; box-shadow: var(--shadow-card); }
.sidebar-links h3 { font-size: 1.15rem; }
.sidebar-links ul { list-style: none; margin: 0; padding: 0; }
.sidebar-links li { border-bottom: 1px solid var(--line); }
.sidebar-links li:last-child { border-bottom: 0; }
.sidebar-links a { display: block; padding: .55rem 0; text-decoration: none; color: var(--ink); font-weight: 600; font-size: .97rem; }
.sidebar-links a:hover { color: var(--copper); }

/* ---- Service areas ------------------------------------------------------------------------ */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 920px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .area-grid { grid-template-columns: 1fr; } }
.area-card { background: #FFFDF8; border: 1px solid var(--line); padding: 1.4rem 1.4rem 1.2rem; box-shadow: var(--shadow-card); }
.area-card h3 { display: flex; align-items: center; gap: .5rem; }
.area-card h3 svg { color: var(--copper); flex: none; }
.area-card p { margin: 0; color: var(--steel); font-size: .96rem; }

/* ---- Forms ----------------------------------------------------------------------------------- */
.lead-form { display: grid; gap: 1rem; max-width: 34rem; }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: .3rem; }
.field label .req { color: var(--copper); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--ink);
  background: #FFFDF8; border: 1px solid rgba(20,29,37,.3); border-radius: 0;
  padding: .7rem .85rem;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--volt); outline-offset: 0; border-color: var(--navy);
}
.form-msg { padding: 1rem 1.2rem; font-weight: 600; }
.form-msg.ok { background: #E4F2E9; border-left: 4px solid #2E7D4F; color: #1E5236; }
.form-msg.err { background: #F9E7E2; border-left: 4px solid #B4432A; color: #7C2C1A; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---- Footer ------------------------------------------------------------------------------------ */
.site-footer { background: var(--navy-2); color: var(--mist); font-size: .95rem; }
.site-footer .wrap { padding-top: 3rem; padding-bottom: 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 { color: #fff; font-size: 1.1rem; letter-spacing: .08em; margin-bottom: .7rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .4rem; }
.site-footer a { color: var(--mist); text-decoration: none; }
.site-footer a:hover { color: var(--volt); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name small { color: var(--volt); }
.footer-phone {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: 1.7rem; color: var(--volt) !important; margin: .4rem 0;
}
.footer-legal { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.3rem; font-size: .82rem; color: #6E8090; }

/* ---- Sticky mobile call bar ---------------------------------------------------------------------- */
.callbar { display: none; }
@media (max-width: 760px) {
  body { padding-bottom: 4.4rem; }
  .callbar {
    display: grid; grid-template-columns: 1.6fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    box-shadow: 0 -6px 24px rgba(14,24,32,.35);
  }
  .callbar a {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
    letter-spacing: .05em; text-transform: uppercase; text-decoration: none;
    padding: .95rem .5rem;
  }
  .callbar .call { background: var(--volt); color: var(--navy-2); }
  .callbar .quote { background: var(--navy); color: #fff; }
}

/* ---- Utilities -------------------------------------------------------------------------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.section-head { max-width: 46rem; margin-bottom: 2.2rem; }
.section-head.center { margin-left: auto; margin-right: auto; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--volt); color: var(--navy-2);
  padding: .6rem 1rem; z-index: 100; font-weight: 600;
}
.skip-link:focus { left: 0; }
