/* =========================================================================
   Cutts Glass and Glazing. Site.css
   Design tokens + components. Mirrors ../STYLE-GUIDE.md (the styleguide wins ties).
   ========================================================================= */

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/vendor/fonts/plus-jakarta-sans-variable.woff2") format("woff2");
}

:root {
  /* Brand */
  --primary:        #d33255;   /* crimson. Buttons, accents, CTAs */
  --primary-dark:   #b8284699;
  --logo:           #9b1c38;   /* burgundy. Wordmark, feature panels */
  --primary-light:  #eef4f8;   /* pale blue tint */

  /* Neutrals */
  --black:          #000000;
  --white:          #ffffff;
  --dark-gray:      #4d4d4d;   /* body text */
  --paragraph-gray: #9a9a9a;   /* muted text */
  --soft-gray:      #e6e6e6;   /* borders */
  --light-gray:     #f5f5f5;   /* alt backgrounds */

  /* Utility */
  --text-error:     #db1717;
  --success:        #63ab45;

  /* Radius */
  --r-4:  4px;
  --r-10: 10px;
  --r-60: 60px;

  /* Type */
  --font-primary: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --container: 1280px;
  --container-wide: 1390px;
  --section-pad: 4rem;
  --gap: 2rem;

  --shadow-sm: 0 2px 5px #0003;
  --shadow-md: 0 10px 30px rgba(0,0,0,.08);
  --transition: all .35s;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: -0.48px;
  color: var(--dark-gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: var(--black); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 { color: var(--black); margin: 0 0 .5em; font-weight: 500; line-height: 1.2em; }
h1 { font-size: clamp(2.4rem, 5vw, 60px); letter-spacing: -1.8px; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2rem); letter-spacing: -1.5px; }
h3 { font-size: 24px; letter-spacing: -.8px; }
h4 { font-size: 18px; line-height: 1.3em; }
h5 { font-size: 14px; font-weight: 700; }
h6 { font-size: 12px; font-weight: 700; }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------- */
.container { width: var(--container); max-width: 95%; margin-inline: auto; }
.container--wide { width: var(--container-wide); }
/* Narrow reading column. Sets `width` only, so `.container`'s `max-width: 95%`
   still applies — an inline `style="max-width:820px"` would beat it and overflow phones. */
.container--narrow { width: 820px; }
.section { padding-block: var(--section-pad); }
.section--tint { background: var(--light-gray); }
.section--primary-tint { background: var(--primary-light); }
.section--dark { background: var(--black); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.title-block { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.title-block.left { margin-inline: 0; text-align: left; }
.eyebrow { display: inline-block; color: var(--primary); font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .75rem; }
.lede { font-size: 1.05rem; color: var(--dark-gray); }
.muted { color: var(--paragraph-gray); }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: inherit; font-size: .875rem; font-weight: 500; text-transform: capitalize;
  border-radius: var(--r-4); padding: 16px 30px; cursor: pointer; border: 1px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary-light); }
.btn-primary:hover { background: var(--logo); color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); border-color: #ffffff91; box-shadow: var(--shadow-sm); padding: 14px 26px; }
.btn-dark:hover { background: #1a1a1a; color: var(--white); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--soft-gray); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-pill { border-radius: var(--r-60); min-height: 48px; }
.btn .arrow { width: 1em; height: 1em; }
.btn-arrow {
  width: 46px; height: 46px; padding: 0; justify-content: center;
  background: var(--primary); color: #fff; border-radius: var(--r-4);
}
.btn-submit { width: 46px; height: 46px; padding: 0; justify-content: center; border-radius: 50%; background: var(--primary); color: #fff; border: none; }

/* ---------- Top strip ---------- */
.top-strip { background: var(--logo); color: #fff; font-size: 13px; }
.top-strip .container { display: flex; gap: 1.5rem; align-items: center; justify-content: center; padding-block: 8px; flex-wrap: wrap; }
.top-strip a { color: #fff; display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.top-strip svg { width: 14px; height: 14px; flex: none; }
.top-strip a:hover { color: #ffd9e1; }
.top-strip .sep { opacity: .4; }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--soft-gray); transition: var(--transition); }
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 14px; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links > li > a { font-weight: 500; padding-block: .5rem; position: relative; }
.nav-links > li > a.is-active { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; white-space: nowrap; }
.nav-phone svg { width: 18px; height: 18px; flex: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* Mega-menu */
.has-mega { position: relative; }
.has-mega > a { display: inline-flex; align-items: center; gap: .35rem; }
.has-mega > a .caret { display: inline-flex; }
.has-mega > a .caret .ico { width: 17px; height: 17px; stroke-width: 2; transition: transform .25s; }
.has-mega:hover > a .caret .ico { transform: rotate(180deg); }
.mega {
  position: absolute; top: 100%; left: 0; transform: translateY(8px);
  width: min(640px, 90vw); max-width: calc(100vw - 2rem);
  background: #fff; border: 1px solid var(--soft-gray); border-radius: var(--r-10);
  box-shadow: var(--shadow-md); padding: 1.5rem; display: grid; grid-template-columns: 1fr 1.4fr; gap: 1.75rem;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s, transform .2s, visibility .2s; z-index: 60;
}
/* invisible bridge so the cursor can travel from the trigger into the panel without dropping :hover */
.mega::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
/* A <p>, not a heading: these are decorative nav labels and were polluting the
   document outline (an <h4> above the page's own <h1>). */
.mega .mega-label { color: var(--paragraph-gray); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 .6rem; }
.mega-cats a { display: block; font-weight: 600; padding: .5rem .75rem; border-radius: var(--r-4); transition: var(--transition); }
.mega-cats a:hover { background: var(--primary-light); color: var(--primary); }
.mega-services { columns: 2; column-gap: 1.5rem; }
.mega-services a { display: block; padding: .4rem .5rem; margin-bottom: .1rem; font-size: .9rem; border-radius: var(--r-4); break-inside: avoid; transition: var(--transition); }
.mega-services a:hover { background: var(--primary-light); color: var(--primary); }

/* ---------- Hero ---------- */
.hero { padding-block: 2.5rem 4rem; background: var(--light-gray); border-bottom: 1px solid var(--soft-gray); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero h1 { margin-bottom: .5rem; }
.hero .lede { margin: 1.25rem 0 2rem; max-width: 46ch; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-media img { border-radius: var(--r-10); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.hero-compact { padding-block: 2.5rem 3.25rem; background: var(--light-gray); border-bottom: 1px solid var(--soft-gray); }

/* ---------- Stat / experience band ---------- */
.stat-band { background: var(--logo); color: #fff; }
.stat-band .grid { text-align: center; }
.stat { padding: 1rem; }
.stat .num { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 700; color: #fff; line-height: 1; }
.stat .label { color: #ffd9e1; font-size: .9rem; margin-top: .35rem; }

/* ---------- Cards / pillars ---------- */
.card { background: #fff; border: 1px solid var(--soft-gray); border-radius: var(--r-10); padding: 28px; transition: var(--transition); height: 100%; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
/* Card titles are <h3> for the outline; size pinned to the old <h4> so the design is unchanged. */
.card h3 { margin-bottom: .5rem; font-size: 18px; line-height: 1.3em; letter-spacing: normal; }
.card .card-link { color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; margin-top: .75rem; }
.pillar { border-top: 3px solid var(--primary); }

/* Value props */
.vp { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: #fff; border: 1px solid var(--soft-gray); border-radius: var(--r-10); }
.vp img { width: 44px; height: 44px; flex: none; }
.vp h3 { font-size: 16px; margin: 0; line-height: 1.35; }

/* Service grid (icon tiles) */
.svc-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.svc-tile { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; padding: 18px; border: 1px solid var(--soft-gray); border-radius: var(--r-10); background: #fff; }
.svc-tile:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.svc-tile img { width: 36px; height: 36px; }
.svc-tile span { font-weight: 600; font-size: .92rem; color: var(--black); }

/* ---------- Breadcrumbs ---------- */
/* breadcrumb sits on the same tinted band as the hero below it → one cohesive header block */
.breadcrumbs { background: var(--light-gray); padding-top: 1.5rem; }
.breadcrumbs .bc-inner { display: flex; align-items: center; flex-wrap: wrap; font-size: .85rem; color: var(--paragraph-gray); }
.breadcrumbs a { color: var(--paragraph-gray); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { margin-inline: .4rem; color: var(--soft-gray); }
/* the hero immediately after a breadcrumb shares the band; only a small gap between them */
.breadcrumbs + .hero, .breadcrumbs + .hero-compact { padding-top: 1.25rem; }

/* ---------- Detail layout ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
/* Grid items default to min-width: auto, so a single unbreakable token (the
   contact email) sets a floor on the track and the card overflows a phone.
   `anywhere` — not `break-word` — is the value that actually lowers min-content. */
.detail-grid > * { min-width: 0; }
.info-card a, .info-row { overflow-wrap: anywhere; }
/* Body section headings are <h2> for a correct document outline (they used to be
   <h3> sitting directly under the <h1>, with the page's real <h2>s appearing after
   them). Type size is pinned to the old h3 so the design is unchanged. */
.detail-body h2 { margin-top: 2rem; font-size: 24px; letter-spacing: -.8px; }
.detail-aside h3 { margin-bottom: 1rem; font-size: 18px; line-height: 1.3em; letter-spacing: normal; }
.info-card h2 { font-size: 24px; letter-spacing: -.8px; }
.detail-aside { position: sticky; top: 100px; background: var(--light-gray); border: 1px solid var(--soft-gray); border-radius: var(--r-10); padding: 24px; }
.aside-list a { display: block; padding: .4rem 0; border-bottom: 1px solid var(--soft-gray); font-size: .92rem; }
.aside-list a:last-child { border-bottom: none; }

/* ---------- Testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review { background: #fff; border: 1px solid var(--soft-gray); border-radius: var(--r-10); padding: 28px; }
.review .stars { color: #f5b301; letter-spacing: 2px; margin-bottom: .75rem; }
.review blockquote { margin: 0; font-size: .98rem; color: var(--dark-gray); }
.review .author { margin-top: 1rem; font-weight: 600; color: var(--black); font-size: .9rem; }

/* ---------- Contact form ---------- */
.form { display: grid; gap: 1rem; }
.form .field { display: grid; gap: .35rem; }
.form label { font-size: .85rem; font-weight: 600; color: var(--black); }
.form input, .form textarea {
  font-family: inherit; font-size: 1rem; padding: 12px 14px; border: 1px solid var(--soft-gray);
  border-radius: var(--r-4); background: #fff; color: var(--black); width: 100%;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px #d3325522; }
.form textarea { min-height: 120px; resize: vertical; }
.form .hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-note { font-size: .8rem; color: var(--paragraph-gray); }
.form-status { padding: 12px 14px; border-radius: var(--r-4); font-size: .9rem; }
.form-status.ok { background: #eefbe9; color: #2f6b1c; }
.form-status.err { background: #fdeaea; color: var(--text-error); }

/* contact info card */
.info-card { background: var(--logo); color: #fff; border-radius: var(--r-10); padding: 28px; }
.info-card a { color: #fff; }
.info-row { display: flex; gap: .75rem; align-items: flex-start; padding: .6rem 0; border-bottom: 1px solid #ffffff22; }
.info-row:last-child { border-bottom: none; }
.info-row img { width: 22px; filter: brightness(0) invert(1); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--primary); color: #fff; border-radius: var(--r-10); padding: 3rem; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .hero-cta { justify-content: center; margin-top: 1.5rem; }
.cta-band .btn-dark { background: #fff; color: var(--primary); border-color: #fff; }
.cta-band .btn-dark:hover { background: var(--black); color: #fff; }

/* Emergency banner */
.emergency-band { background: var(--black); color: #fff; text-align: center; }
.emergency-band h2 { color: #fff; }
.emergency-band .num { color: var(--primary); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #cfcfcf; padding-block: 3.5rem 1.5rem; }
.site-footer a { color: #cfcfcf; }
.site-footer a:hover { color: #fff; }
/* WCAG 2.5.8 (AA) wants a 24x24 minimum target; these sat at 21-22px. */
.site-footer a, .info-row a { display: inline-block; min-height: 24px; line-height: 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.site-footer h3 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1rem; }
.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-links li { margin-bottom: .6rem; }
.footer-bottom { border-top: 1px solid #ffffff1a; margin-top: 2.5rem; padding-top: 1.25rem; font-size: .82rem; color: #8f8f8f; text-align: center; }

/* ---------- Mobile menu ---------- */
.mobile-menu { position: fixed; inset: 0; background: #fff; z-index: 100; transform: translateX(100%); transition: transform .35s; display: flex; flex-direction: column; padding: 1.25rem; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.mobile-menu-head img { height: 40px; }
.mobile-menu a { display: block; padding: 1rem 0; border-bottom: 1px solid var(--soft-gray); font-size: 1.1rem; font-weight: 500; }
.mobile-menu .btn { margin-top: 1.5rem; justify-content: center; }
.mobile-backdrop { position: fixed; inset: 0; background: #0006; z-index: 99; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-backdrop.open { opacity: 1; visibility: visible; }

/* sticky mobile action bar */
.mobile-bar { display: none; }

/* ---------- Motion (progressive; neutralised without has-motion) ---------- */
html.has-motion [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
html.has-motion [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.has-motion [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-tiles { grid-template-columns: repeat(3, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
}
@media (max-width: 860px) {
  :root { --section-pad: 2.5rem; }
  .nav-links, .nav-actions .nav-phone, .top-strip { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .svc-tiles { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; background: #fff; border-top: 1px solid var(--soft-gray); }
  .mobile-bar a { flex: 1; text-align: center; padding: 14px; font-weight: 600; font-size: .9rem; }
  .mobile-bar a.call { background: var(--primary); color: #fff; }
  body { padding-bottom: 54px; }
}
@media (max-width: 520px) {
  .svc-tiles { grid-template-columns: 1fr 1fr; }
  .cta-band, .info-card { padding: 1.75rem; }
}

/* =========================================================================
   1:1 LIVE-SITE LAYER. Full-bleed hero, transparent nav, feature band,
   image pillars, two-column service grids, on-page form. Overrides above.
   ========================================================================= */

/* --- inline arrow safety (constrain everywhere, not just buttons) --- */
.arrow { width: 1em; height: 1em; flex: none; }
.card-link { display: inline-flex; align-items: center; gap: .4rem; }
.card-link .arrow, .card-link svg { width: 1em; height: 1em; flex: none; }

/* --- top strip layout --- */
.top-strip .container.top-strip-inner { justify-content: space-between; gap: 1rem; }
.ts-left { display: inline-flex; align-items: center; gap: .4rem; }
.ts-right { display: inline-flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.ts-emergency { font-weight: 600; }
.ts-emergency:hover { color: #ffd9e1; }

/* --- transparent nav over the home hero --- */
.site-header.over-hero {
  position: absolute; left: 0; right: 0; top: 0; background: transparent; border-bottom-color: transparent; box-shadow: none;
}
.site-header.over-hero:not(.scrolled) .top-strip { background: transparent; }
.site-header.over-hero:not(.scrolled) .nav-links > li > a,
.site-header.over-hero:not(.scrolled) .nav-phone { color: #fff; }
.site-header.over-hero:not(.scrolled) .nav-logo img { filter: brightness(0) invert(1); }
.site-header.over-hero:not(.scrolled) .nav-toggle { color: #fff; }
.site-header.over-hero.scrolled {
  position: fixed; background: #fff; box-shadow: var(--shadow-md); animation: dropIn .3s ease;
}
.site-header.over-hero.scrolled .top-strip { display: none; }
@keyframes dropIn { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* --- full-bleed hero --- */
.hero-full {
  position: relative; min-height: 86vh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 150px 1.5rem 90px;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-full::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, #00000059 0%, #000000a6 100%); }
.hero-full .hero-inner { position: relative; max-width: 880px; }
.hero-full h1 { color: #fff; font-size: clamp(2.4rem, 5.2vw, 56px); margin-bottom: 1.25rem; }
.hero-full .lede { color: #f1f1f1; font-size: 1.05rem; max-width: 620px; margin: 0 auto 2rem; }
.hero-pills { display: inline-flex; flex-wrap: wrap; gap: 0; background: var(--primary); border-radius: var(--r-60); padding: 6px; box-shadow: var(--shadow-md); }
.hero-pills span { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 600; font-size: .9rem; padding: 10px 20px; white-space: nowrap; }
.hero-pills .check { width: 18px; height: 18px; flex: none; display: inline-flex; }
.hero-pills .check svg { width: 18px; height: 18px; }

/* --- circular value-prop row --- */
.vp-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.vp-circle { text-align: center; padding: 1rem .5rem; }
.vp-circle .ring { width: 84px; height: 84px; border-radius: 50%; border: 1px solid var(--soft-gray); display: grid; place-items: center; margin: 0 auto 1rem; transition: var(--transition); }
.vp-circle:hover .ring { border-color: var(--primary); box-shadow: var(--shadow-md); }
.vp-circle .ring img { width: 38px; height: 38px; }
.vp-circle h3 { font-size: 15px; line-height: 1.35; margin: 0; }

/* --- 32+ feature band (crimson panel + photo) --- */
.feature-band .container { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; border-radius: var(--r-10); overflow: hidden; box-shadow: var(--shadow-md); }
.feature-band .panel { background: var(--logo); color: #fff; padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.feature-band .panel .eyebrow { color: #ffd9e1; }
.feature-band .panel h2 { color: #fff; }
.feature-band .panel p { color: #f3dde2; margin-bottom: 1.5rem; }
.feature-band .photo { background-size: cover; background-position: center; min-height: 360px; }

/* --- 3 image pillars --- */
.pillars-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar-card { border: 1px solid var(--soft-gray); border-radius: var(--r-10); overflow: hidden; background: #fff; transition: var(--transition); display: flex; flex-direction: column; }
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pillar-card .pc-img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.pillar-card .pc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pillar-card h3 { margin-bottom: .5rem; }
.pillar-card .card-link { margin-top: auto; }

/* --- two-column services section (image + tiles + See All) --- */
.svc-col { display: grid; grid-template-columns: 320px 1fr; gap: 2rem; align-items: start; margin-bottom: 2.5rem; }
.svc-col:nth-child(even) { grid-template-columns: 1fr 320px; }
.svc-col:nth-child(even) .svc-col-media { order: 2; }
.svc-col-media img { border-radius: var(--r-10); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.svc-col-list h3 { margin-bottom: 1.25rem; }
.svc-col-list .svc-tiles { grid-template-columns: repeat(2, 1fr); margin-bottom: 1.5rem; }

/* --- on-page contact form section --- */
.home-form { background: var(--logo); color: #fff; }
.home-form h2 { color: #fff; }
.home-form .eyebrow { color: #ffd9e1; }
.home-form-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.form-card { background: #fff; border-radius: var(--r-10); padding: 2rem; box-shadow: var(--shadow-md); }
.form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.home-form .info-list { display: grid; gap: 1rem; }
.home-form .info-list a { color: #fff; }
.home-form .info-list .info-row img { filter: brightness(0) invert(1); }

@media (max-width: 980px) {
  .home-form-grid { grid-template-columns: 1fr; }
  .feature-band .container { grid-template-columns: 1fr; }
  .pillars-3 { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .vp-row { grid-template-columns: 1fr 1fr; }
  .svc-col, .svc-col:nth-child(even) { grid-template-columns: 1fr; }
  .svc-col:nth-child(even) .svc-col-media { order: 0; }
  .hero-full { min-height: 78vh; padding-top: 120px; }
  .form-card .form-row { grid-template-columns: 1fr; }
}

/* =========================================================================
   CATEGORY PAGES. Intro columns, benefits, service list, FAQ, area links
   ========================================================================= */
.intro-cols { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center; }
.intro-cols .lede { margin-top: 0; }
.intro-media img { border-radius: var(--r-10); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; aspect-ratio: 7/8; }

.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.benefit-card { background: #fff; border: 1px solid var(--soft-gray); border-radius: var(--r-10); padding: 1.75rem; }
.benefit-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.benefit-card p { margin: 0; color: var(--dark-gray); }

/* full internally-linked service list */
.svc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.svc-list-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.25rem; border: 1px solid var(--soft-gray); border-radius: var(--r-10); background: #fff; transition: var(--transition); }
.svc-list-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.svc-list-item img { flex: none; margin-top: 2px; }
.svc-list-item h3 { font-size: 1.05rem; margin-bottom: .2rem; color: var(--black); }
.svc-list-item p { margin: 0; font-size: .9rem; color: var(--paragraph-gray); line-height: 1.45; }
.svc-list-item .sli-arrow { margin-left: auto; color: var(--primary); align-self: center; }
.svc-list-item .sli-arrow .arrow { width: 1.1em; height: 1.1em; }

/* FAQ accordion (content stays in the DOM for crawlers/AEO) */
/* Narrow the container via `width`, never `max-width`: these classes sit on the same
   element as `.container`, so a px `max-width` here has equal specificity and, being
   later in the file, silently replaces `.container`'s `max-width: 95%` — which is the
   only thing keeping the box inside a phone viewport. */
.faq-wrap { width: 820px; max-width: 95%; }
.faq { display: grid; gap: .75rem; }
.faq-item { border: 1px solid var(--soft-gray); border-radius: var(--r-10); background: #fff; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; font-weight: 600; color: var(--black); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-ico .arrow { width: 1.1em; height: 1.1em; color: var(--primary); transform: rotate(90deg); transition: transform .25s; }
.faq-item[open] .faq-ico .arrow { transform: rotate(-90deg); }
.faq-item .faq-a { padding: 0 1.25rem 1.2rem; }
.faq-item .faq-a p { margin: 0; color: var(--dark-gray); }

/* area chip links */
.area-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.area-links a { display: inline-block; padding: .5rem 1rem; border: 1px solid var(--soft-gray); border-radius: var(--r-60); background: #fff; font-size: .9rem; font-weight: 500; transition: var(--transition); }
.area-links a:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

@media (max-width: 860px) {
  .intro-cols { grid-template-columns: 1fr; }
  .benefits-grid, .svc-list { grid-template-columns: 1fr; }
}

/* =========================================================================
   REFINEMENT LAYER. Cleaner, more optimized layout (overrides everything above)
   Token-level changes propagate site-wide; component tweaks unify the look.
   ========================================================================= */
:root {
  --section-pad: 5.25rem;          /* more breathing room */
  --gap: 1.75rem;
  --soft-gray: #ececec;            /* lighter hairline borders everywhere */
  --light-gray: #f6f7f9;           /* cleaner, calmer tint for bands */
  --shadow-sm: 0 1px 2px rgba(17,17,17,.05);
  --shadow-md: 0 14px 40px rgba(17,17,17,.07);
  --shadow-lg: 0 26px 60px rgba(17,17,17,.10);
}

/* --- typography & vertical rhythm --- */
body { line-height: 1.65; color: #3d3d3d; }
h2 { letter-spacing: -1px; }
h3 { letter-spacing: -.5px; }
.lede { font-size: 1.12rem; line-height: 1.62; color: var(--dark-gray); }
.eyebrow { font-size: 13px; letter-spacing: .09em; margin-bottom: .85rem; }
.title-block { max-width: 680px; margin-bottom: 3.25rem; }
.title-block .lede { margin-top: .85rem; }
/* readable measure for running prose */
.detail-body p, .intro-cols > div > p, .section--narrow p { max-width: 70ch; }

/* --- unified card system: hairline border, no default shadow, soft lift on hover --- */
.card, .vp, .svc-tile, .svc-list-item, .benefit-card, .pillar-card, .review, .faq-item {
  border: 1px solid var(--soft-gray); box-shadow: none; transition: var(--transition);
}
.card, .benefit-card, .review { padding: 2rem; }
.card:hover, .svc-tile:hover, .svc-list-item:hover, .pillar-card:hover, .vp:hover {
  box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--soft-gray);
}
.pillar { border-top: 1px solid var(--soft-gray); }   /* drop heavy crimson top bar */
.vp { padding: 1.4rem 1.5rem; }
.svc-tile { padding: 20px; }

/* --- buttons: a touch cleaner and bolder --- */
.btn { padding: 15px 28px; font-weight: 600; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* --- calmer color balance: lighten the home contact block (no two stacked crimson blocks) --- */
.home-form { background: var(--light-gray); color: var(--dark-gray); }
.home-form h2 { color: var(--black); }
.home-form .eyebrow { color: var(--primary); }
.home-form p { color: var(--dark-gray); }
.home-form .info-list a { color: var(--black); }
.home-form .info-row strong { color: var(--black); }
.home-form .info-list .info-row img {
  filter: brightness(0) invert(1); background: var(--primary); border-radius: 9px;
  padding: 8px; width: 36px; height: 36px; box-sizing: border-box;
}
.form-card { background: #fff; box-shadow: var(--shadow-lg); padding: 2.25rem; border: 1px solid var(--soft-gray); }

/* --- feature band: balanced padding, softer --- */
.feature-band .panel { padding: 3.25rem; }
.feature-band .photo { min-height: 400px; }

/* --- detail aside + info card refinements --- */
.detail-aside { background: var(--light-gray); border-color: var(--soft-gray); }
.aside-list a { border-color: var(--soft-gray); }

/* --- intro media a touch cleaner --- */
.intro-media img { box-shadow: var(--shadow-md); }

@media (max-width: 860px) {
  :root { --section-pad: 3rem; }
}

/* =========================================================================
   ICON SYSTEM + SIMPLER VALUE-PROP TILES + HERO CTA
   ========================================================================= */
/* consistent inline-icon base (recolour via `color`) */
.ico { width: 1em; height: 1em; display: inline-block; vertical-align: middle; }
.btn .ico { width: 1.15em; height: 1.15em; }

/* --- value-prop tiles: simpler & to the point (clean crimson icon + short label) --- */
.vp-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.vp-circle { text-align: center; padding: .5rem; }
.vp-circle .vp-ico { display: inline-flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 1rem; }
.vp-circle .vp-ico .ico { width: 40px; height: 40px; stroke-width: 1.6; }
.vp-circle h3 { font-size: 15px; font-weight: 600; line-height: 1.35; margin: 0; color: var(--black); max-width: 16ch; margin-inline: auto; }
/* Repeated from the earlier @media block, which this section overrode by being
   later in the file. Without it the four tiles stay in one row on a phone. */
@media (max-width: 860px) { .vp-row { grid-template-columns: 1fr 1fr; } }

/* why-choose grid tiles */
.vp { align-items: center; }
.vp .vp-ico { flex: none; width: 52px; height: 52px; border-radius: var(--r-10); background: var(--primary-light); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; }
.vp .vp-ico .ico { width: 28px; height: 28px; }

/* --- service icons (tiles + category list) --- */
.svc-tile .svc-ico { color: var(--primary); display: inline-flex; }
.svc-tile .svc-ico .ico { width: 30px; height: 30px; }
.svc-list-item .svc-ico { flex: none; margin-top: 2px; color: var(--primary); display: inline-flex; }
.svc-list-item .svc-ico .ico { width: 32px; height: 32px; }

/* contact info chips */
.info-ico { flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.info-ico .ico { width: 20px; height: 20px; }
.info-row { display: flex; gap: .85rem; align-items: center; }

/* --- hero CTA + slim trust pills --- */
.btn-lg { padding: 17px 32px; font-size: .95rem; }
.btn-ghost { background: rgba(255,255,255,.10); color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.btn-ghost:hover { background: #fff; color: var(--logo); border-color: #fff; transform: translateY(-1px); }
.hero-full .hero-cta { justify-content: center; gap: .9rem; margin-top: .25rem; }
.hero-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin: 1.9rem 0 0; padding: 0; list-style: none; background: none; box-shadow: none; }
.hero-pills li { display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 500; font-size: .86rem; padding: 8px 18px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); border-radius: var(--r-60); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); white-space: nowrap; }

@media (max-width: 860px) {
  .vp-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-full .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-full .hero-cta .btn { justify-content: center; }
}

/* =========================================================================
   CONVERSION-FIRST HERO + NAV REDESIGN
   ========================================================================= */
/* --- slim top strip: rating left, emergency call pill right --- */
.ts-stars { color: #ffcf3f; letter-spacing: 1px; margin-right: .3rem; }
.top-strip .ts-emergency { background: var(--primary); color: #fff; padding: 4px 14px; border-radius: var(--r-60); font-weight: 600; }
.top-strip .ts-emergency:hover { background: #fff; color: var(--primary); }
.top-strip .ts-emergency .ico { width: 14px; height: 14px; }
.site-header.over-hero:not(.scrolled) .top-strip .ts-emergency { background: var(--primary); color: #fff; }

/* --- split hero --- */
.hero-split { position: relative; background-size: cover; background-position: center; padding: 172px 0 72px; color: #fff; overflow: hidden; }
.hero-split::before { content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12,12,14,.90) 0%, rgba(12,12,14,.74) 40%, rgba(12,12,14,.46) 64%, rgba(12,12,14,.30) 100%); }
.hero-split-grid { position: relative; display: grid; grid-template-columns: 1.05fr .82fr; gap: 3.5rem; align-items: center; }
.hero-content { max-width: 620px; }
.hero-eyebrow { display: inline-block; color: #fff; font-weight: 600; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.1rem; padding: 5px 13px; border: 1px solid rgba(255,255,255,.3); border-radius: var(--r-60); }
.hero-content h1 { color: #fff; font-size: clamp(2.3rem, 4.4vw, 52px); line-height: 1.1; margin-bottom: 1rem; }
.hero-content .lede { color: #ececec; max-width: 30em; margin-bottom: 1.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .55rem 1.6rem; margin: 0 0 1.9rem; padding: 0; list-style: none; }
.hero-trust li { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 500; font-size: .92rem; }
.hero-trust .ht-ico { display: inline-flex; color: #ff85a1; }
.hero-trust .ht-ico .ico { width: 18px; height: 18px; stroke-width: 2.6; }
.hero-split .hero-cta { justify-content: flex-start; margin-top: 0; }

/* --- hero quote card (lead capture) --- */
.quote-card { background: #fff; border-radius: 16px; box-shadow: 0 30px 70px rgba(0,0,0,.32); padding: 1.85rem; color: var(--dark-gray); }
.quote-card-head { text-align: center; margin-bottom: 1.3rem; }
.quote-card-head h2 { font-size: 1.42rem; line-height: 1.2; letter-spacing: -.5px; margin-bottom: .3rem; color: var(--black); }
.quote-card-head p { margin: 0; color: var(--paragraph-gray); font-size: .92rem; }
.quote-form .field { margin-bottom: .8rem; display: block; }
.quote-form input, .quote-form select { width: 100%; padding: 13px 14px; border: 1px solid var(--soft-gray); border-radius: var(--r-10); font-family: inherit; font-size: 1rem; background: #fff; color: var(--black); }
.quote-form input:focus, .quote-form select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px #d3325522; }
.quote-form select { appearance: none; -webkit-appearance: none; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a9a9a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 18px; }
.btn-block { width: 100%; justify-content: center; padding-block: 16px; font-size: 1rem; }
.quote-foot { display: flex; align-items: center; justify-content: center; gap: .4rem; text-align: center; margin: .95rem 0 0; font-size: .85rem; color: var(--paragraph-gray); }
.quote-foot .ico { width: 15px; height: 15px; color: var(--primary); }
.quote-foot a { color: var(--primary); font-weight: 600; }

@media (max-width: 920px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { max-width: none; }
}
@media (max-width: 860px) {
  .hero-split { padding-top: 130px; }
  .top-strip .ts-left { display: none; }
}

/* mobile: header CTA is redundant with the sticky action bar. Hide it, give the hamburger room */
@media (max-width: 860px) {
  .nav-actions .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .hero-eyebrow { font-size: 11px; }
}

/* =========================================================================
   SERVICES SHOWCASE. Two balanced category cards (replaces image-beside-grid)
   ========================================================================= */
.svc-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.svc-cat { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--soft-gray); border-radius: var(--r-card, 14px); overflow: hidden; transition: var(--transition); }
.svc-cat:hover { box-shadow: var(--shadow-md); }
.svc-cat-banner { position: relative; aspect-ratio: 16 / 6.5; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 1.35rem 1.6rem; }
.svc-cat-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.78) 100%); }
.svc-cat-banner > div { position: relative; }
.svc-cat-banner h3 { color: #fff; margin: 0; font-size: 1.5rem; letter-spacing: -.5px; }
.svc-cat-banner p { color: rgba(255,255,255,.85); margin: .25rem 0 0; font-size: .92rem; }
.svc-cat-body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.6rem 1.6rem; }
.svc-cat-list { display: grid; grid-template-columns: 1fr 1fr; gap: .15rem .6rem; margin: 0 0 1.5rem; list-style: none; padding: 0; }
.svc-cat-list a { display: flex; align-items: center; gap: .65rem; padding: .6rem .55rem; border-radius: var(--r-10); color: var(--black); font-weight: 500; font-size: .92rem; transition: var(--transition); }
.svc-cat-list a:hover { background: var(--light-gray); color: var(--primary); }
.svc-cat-list .svc-ico { display: inline-flex; color: var(--primary); flex: none; }
.svc-cat-list .svc-ico .ico { width: 22px; height: 22px; }
.svc-cat-name { flex: 1; }
.svc-cat-list .sli-arrow { margin-left: auto; display: inline-flex; color: var(--primary); opacity: 0; transform: translateX(-4px); transition: var(--transition); }
.svc-cat-list .sli-arrow .arrow { width: 1em; height: 1em; }
.svc-cat-list a:hover .sli-arrow { opacity: 1; transform: none; }
.svc-cat-body .btn-block { margin-top: auto; }

@media (max-width: 880px) {
  .svc-cats { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .svc-cat-list { grid-template-columns: 1fr; }
}

/* =========================================================================
   CONSISTENCY PASS. Category intro (framed image + badge) + list arrows
   ========================================================================= */
.intro-cols { grid-template-columns: 1.05fr .95fr; align-items: center; }
.intro-media { position: relative; margin: 0; }
.intro-media img { width: 100%; aspect-ratio: 5 / 4.4; object-fit: cover; border-radius: var(--r-card, 14px); box-shadow: var(--shadow-md); }
.intro-badge { position: absolute; left: 1.25rem; bottom: 1.25rem; display: inline-flex; align-items: center; gap: .55rem; background: var(--logo); color: #fff; padding: .7rem 1.1rem; border-radius: var(--r-10); box-shadow: var(--shadow-md); }
.intro-badge strong { font-size: 1.9rem; line-height: 1; color: #fff; }
.intro-badge span { font-size: .68rem; line-height: 1.15; text-transform: uppercase; letter-spacing: .05em; color: #ffd9e1; }

/* category full service list: arrow slides in on hover (matches showcase cards) */
.svc-list-item .sli-arrow { opacity: 0; transform: translateX(-5px); transition: var(--transition); }
.svc-list-item:hover .sli-arrow { opacity: 1; transform: none; }

@media (max-width: 860px) {
  /* Must be repeated here: the consistency-pass rule above re-declares
     .intro-cols unconditionally and, being later in the file, overrode the
     earlier `@media (max-width: 860px)` collapse. Without this the media
     column squeezes to ~20px on a phone and the absolutely-positioned
     .intro-badge escapes the viewport. */
  .intro-cols { grid-template-columns: 1fr; }
  .intro-media img { aspect-ratio: 16 / 10; }
}

/* --- "we travel far and wide" coverage callout (service areas) --- */
.coverage { max-width: 820px; margin: 0 auto; text-align: center; }
.coverage .lede { margin-bottom: 1rem; }
.coverage-cta-line { font-size: 1.05rem; color: var(--dark-gray); }
.coverage .hero-cta { justify-content: center; margin-top: 1.75rem; }

/* =========================================================================
   GUIDES HUB + service cost block + local positioning
   ========================================================================= */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.guide-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--soft-gray); border-radius: var(--r-card, 14px); padding: 1.75rem; transition: var(--transition); }
.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.guide-eyebrow { display: inline-block; color: var(--primary); font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .6rem; }
.guide-card h2, .guide-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.guide-card p { color: var(--paragraph-gray); margin-bottom: 1rem; }
.guide-card .card-link { margin-top: auto; }
.guide-head { width: 760px; max-width: 95%; }   /* width, not max-width — see .faq-wrap */
.guide-byline { color: var(--paragraph-gray); font-size: .9rem; margin-top: .75rem; }
.guide-body { width: 760px; max-width: 95%; }   /* width, not max-width — see .faq-wrap */
.guide-body h2 { margin-top: 2.4rem; font-size: 1.5rem; }
.guide-body h2:first-child { margin-top: 0; }
.guide-body p { margin-bottom: 1rem; }
.cost-block .lede a, .cost-block p a { color: var(--primary); font-weight: 600; }

@media (max-width: 860px) { .guide-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   FLAGSHIP LOCAL PAGE, "we're based here" HQ band + local service cards
   ========================================================================= */
.hq-band { display: flex; gap: 1.75rem; align-items: center; background: var(--logo); color: #fff; border-radius: var(--r-card, 14px); padding: 2.25rem 2.5rem; box-shadow: var(--shadow-md); }
.hq-band .hq-ico { flex: none; width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); display: grid; place-items: center; }
.hq-band .hq-ico .ico { width: 30px; height: 30px; color: #fff; }
.hq-band h2 { color: #fff; margin: .15rem 0 .55rem; }
.hq-band .eyebrow { color: #ffd9e1; }
.hq-band .lede { color: #f3dde2; margin: 0; }
.local-sec { display: flex; flex-direction: column; }
.local-sec .svc-ico { display: inline-flex; color: var(--primary); margin-bottom: .85rem; }
.local-sec .svc-ico .ico { width: 34px; height: 34px; }
.local-sec h3 { margin-bottom: .5rem; }
.local-sec .card-link { margin-top: auto; padding-top: .75rem; }

@media (max-width: 640px) {
  .hq-band { flex-direction: column; text-align: center; align-items: center; padding: 1.85rem 1.5rem; }
}

/* =========================================================================
   CONTACT INFO PANEL — fix contrast on the burgundy card
   (white icon chips + crimson glyphs read clearly on the burgundy ground)
   ========================================================================= */
.info-card { background: var(--logo); color: #fff; border-radius: var(--r-card, 14px); padding: 2.25rem; box-shadow: var(--shadow-md); }
.info-card .eyebrow { color: #ffd9e1; }
.info-card h2 { color: #fff; margin-bottom: .35rem; }
.info-card .info-lede { color: #f3dde2; font-size: .95rem; line-height: 1.55; margin-bottom: 1.6rem; }
.info-card a { color: #fff; }
.info-card a:hover { color: #ffd9e1; }
.info-card .info-row { display: flex; gap: .9rem; align-items: center; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.info-card .info-row:last-child { border-bottom: none; }
.info-card .info-row > div { line-height: 1.35; }
.info-card .info-row strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: #ffd9e1; font-weight: 600; }
/* the contrast fix: white chip, crimson icon (generic .info-ico on the light home form stays crimson-chip/white-icon) */
.info-card .info-ico { background: #fff; color: var(--primary); width: 42px; height: 42px; box-shadow: 0 2px 6px rgba(0,0,0,.18); }
.info-card .info-ico .ico { width: 21px; height: 21px; }
