/* ============================================================================
   AAA Concrete Raising — public site styles. Mobile-first.
   ============================================================================ */

/* --- Tokens --------------------------------------------------------------- */
:root {
  --brand-red:        #d42028;
  --brand-red-hover:  #b81b22;
  --brand-yellow:     #fed03d;
  --brand-yellow-hover:#f4c01d;
  --ink:              #1a1d23;
  --ink-soft:         #4a4f5a;
  --ink-mute:         #747783;
  --line:             #e5e6ea;
  --line-soft:        #f1f2f5;
  --bg:               #ffffff;
  --bg-soft:          #f7f8fa;
  --bg-tint:          #fbf7f0;        /* warm off-white for service cards */
  --success:          #2e7d4f;
  --shadow-sm:        0 1px 2px rgba(13,18,30,.06), 0 1px 3px rgba(13,18,30,.04);
  --shadow-md:        0 4px 12px rgba(13,18,30,.08), 0 2px 4px rgba(13,18,30,.05);
  --shadow-lg:        0 12px 32px rgba(13,18,30,.12), 0 4px 8px rgba(13,18,30,.06);
  --r-sm:             6px;
  --r-md:             10px;
  --r-lg:             16px;
  --r-pill:           999px;
  --header-h:         92px;
  --cta-bar-h:        72px;            /* incl. safe area on iOS */
  --content-max:      1500px;
  --reading-max:      900px;
  --ease:             cubic-bezier(.4,0,.2,1);
}

/* --- Reset & base --------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* push body content above the floating CTA bar on mobile */
  padding-bottom: var(--cta-bar-h);
}
img,svg,video { max-width: 100%; height: auto; display: block; }
img { border-radius: 4px; }
a { color: var(--brand-red); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--brand-red-hover); text-decoration: underline; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--brand-yellow); outline-offset: 2px; }

h1,h2,h3,h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.75rem, 4vw + 1rem, 2.75rem); }
h2 { font-size: clamp(1.4rem, 2vw + 1rem, 2rem); }
h3 { font-size: clamp(1.15rem, 1vw + 1rem, 1.4rem); }
p, ul, ol, blockquote, table, figure { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.25em; }
blockquote {
  border-left: 4px solid var(--brand-red);
  padding: .65em 1em;
  background: var(--bg-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  color: var(--ink-soft);
}
hr { border: none; border-top: 1px solid var(--line); margin: 2em 0; }
small { color: var(--ink-mute); }

/* --- Layout primitives ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 16px;
}
.container--narrow { max-width: var(--reading-max); }
.section {
  padding: clamp(40px, 6vw, 88px) 0;
}
.section--soft  { background: var(--bg-soft); }
.section--ink   { background: #14161c; color: #f3f4f7; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink a { color: #fff; text-decoration: underline; }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #cfcfcf;
  border-bottom: 1px solid #b5b5b5;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.site-header__bar {
  display: flex; align-items: center; gap: 12px;
  height: var(--header-h);
}
.site-header__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { height: 64px; width: auto; max-height: 64px; }
@media (min-width: 1024px) { .site-header__logo img { height: 72px; max-height: 72px; } }
.site-header__phone {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--brand-red);
  padding: 6px 10px; border-radius: var(--r-pill);
  background: rgba(212,32,40,0.08);
}
.site-header__phone svg { width: 16px; height: 16px; }
.menu-toggle {
  margin-left: 8px; width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: #fff; border-radius: var(--r-md);
  color: var(--ink);
}
.menu-toggle:hover { border-color: var(--ink-mute); }

/* mobile drawer */
.nav {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(0,0,0,0.5);
  display: none;
}
.nav.is-open { display: block; }
.nav__panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(86vw, 360px);
  background: #fff;
  padding: 24px 20px env(safe-area-inset-bottom) 20px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-lg);
}
.nav__close {
  align-self: flex-end;
  background: none; border: none; padding: 6px;
  font-size: 22px; color: var(--ink-soft);
}
.nav__link {
  display: block;
  padding: 14px 8px;
  color: var(--ink); font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
}
.nav__link:hover, .nav__link.is-active { color: var(--brand-red); }
.nav__cta {
  margin-top: 16px; display: grid; gap: 10px;
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px;
  font-weight: 700; font-size: .95rem; line-height: 1;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  text-decoration: none !important;
  transition: all .15s var(--ease);
  cursor: pointer;
  min-height: 44px; /* mobile tap target */
}
.btn--primary { background: var(--brand-red); color: #fff; border-color: var(--brand-red); }
.btn--primary:hover { background: var(--brand-red-hover); border-color: var(--brand-red-hover); color: #fff; }
.btn--accent  { background: var(--brand-yellow); color: var(--ink); border-color: var(--brand-yellow); }
.btn--accent:hover  { background: var(--brand-yellow-hover); border-color: var(--brand-yellow-hover); color: var(--ink); }
.btn--ghost   { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink-mute); color: var(--ink); }
.btn--lg { padding: 16px 24px; font-size: 1rem; }
.btn--block { width: 100%; }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  background: #14161c;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-position: center; background-size: cover;
  opacity: 1;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,17,22,0.45) 0%, rgba(15,17,22,0.65) 100%);
}
.hero__inner {
  position: relative;
  padding: clamp(56px, 10vw, 120px) 0 clamp(48px, 8vw, 96px);
}
.hero__eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-yellow);
  background: rgba(254,208,61,0.14);
  padding: 5px 12px; border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.hero h1 { color: #fff; margin-bottom: .35em; max-width: 18ch; }
.hero p { color: rgba(255,255,255,0.85); max-width: 40ch; font-size: 1.1rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* --- Cards & grids -------------------------------------------------------- */
.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  text-decoration: none !important;
  color: inherit;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,32,40,0.25);
}
.card__media { aspect-ratio: 16 / 10; background: var(--line-soft); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.card__body { padding: 16px 18px 18px; }
.card__cat {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-red); margin-bottom: 6px;
}
.card__title { font-size: 1.1rem; margin: 0 0 6px; line-height: 1.3; color: var(--ink); }
.card__excerpt { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.card__meta { color: var(--ink-mute); font-size: .8rem; margin-top: 10px; }

/* Service card (icon + title + bullets) */
.service-card {
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: all .2s var(--ease);
}
.service-card:hover { border-color: var(--brand-red); transform: translateY(-2px); }
.service-card h3 { margin-top: 0; }
.service-card a.read-more {
  display: inline-flex; gap: 4px; align-items: center;
  font-weight: 700; margin-top: 10px;
}

/* --- Trust strip ---------------------------------------------------------- */
.trust-strip {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.trust-strip__inner {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  text-align: center;
}
@media (min-width: 768px) {
  .trust-strip__inner { grid-template-columns: repeat(4, 1fr); }
}
.trust-strip__item .stat { font-size: 1.5rem; font-weight: 800; color: var(--brand-red); display: block; }
.trust-strip__item .label { font-size: .8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }

/* --- Article body --------------------------------------------------------- */
.article {
  max-width: var(--reading-max);
  margin: 0 auto;
  padding: 32px 0;
}
.article header { margin-bottom: 24px; }
.article header h1 { margin-bottom: 8px; }
.article__meta {
  color: var(--ink-mute); font-size: .9rem;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.article__hero { margin: 0 -16px 24px; }
.article__hero img { border-radius: 0; }
@media (min-width: 768px) {
  .article__hero { margin: 0 0 28px; }
  .article__hero img { border-radius: var(--r-lg); }
}
.article__body { font-size: 1.05rem; }
.article__body h2 { margin-top: 1.6em; }
.article__body h3 { margin-top: 1.4em; color: var(--ink-soft); }
.article__body img { border-radius: var(--r-md); margin: 1.2em 0; }
.article__body figure { margin: 1.2em 0; }
.article__body figcaption { font-size: .85rem; color: var(--ink-mute); text-align: center; margin-top: 6px; }
.article__body table { width: 100%; border-collapse: collapse; }
.article__body th, .article__body td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.article__body th { background: var(--bg-soft); font-weight: 700; }

/* --- Forms ---------------------------------------------------------------- */
.form { display: grid; gap: 14px; }
.form__row { display: grid; gap: 6px; }
.form__row label { font-weight: 700; font-size: .9rem; }
.form__row input, .form__row select, .form__row textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.form__row input:focus, .form__row select:focus, .form__row textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(212,32,40,0.18);
}
.form__row textarea { min-height: 120px; resize: vertical; }
.form__row.is-invalid input { border-color: var(--brand-red); }
.form__row .hint { font-size: .85rem; color: var(--ink-mute); }
.form__row .err { font-size: .85rem; color: var(--brand-red); }
.form__row--check {
  display: flex; gap: 10px; align-items: center;
  font-size: .9rem;
}
.form__row--check input { width: auto; }
.form__row--row { grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) {
  .form__row--row { grid-template-columns: 1fr; }
}

/* --- Footer --------------------------------------------------------------- */
.site-footer {
  background: #14161c;
  color: #cfd1d8;
  padding: 48px 0 32px;
  font-size: .95rem;
}
.site-footer h3 { color: #fff; font-size: 1rem; }
.site-footer a { color: #e7e8ec; text-decoration: none; }
.site-footer a:hover { color: var(--brand-yellow); }
.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .site-footer__cols { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}
.site-footer__brand img { height: 48px; margin-bottom: 16px; }
.site-footer__brand p { color: rgba(255,255,255,0.7); }
.site-footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer__bottom {
  margin-top: 32px; padding-top: 18px; border-top: 1px solid #2a2d35;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,0.5); font-size: .85rem;
}

/* --- Floating bottom CTA bar (mobile-first, persistent) ------------------ */
.floating-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 18px rgba(13,18,30,.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  transition: transform .25s var(--ease);
}
.floating-cta.is-hidden { transform: translateY(100%); }
.floating-cta .btn { padding: 14px 12px; font-size: .95rem; }
.floating-cta .btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.floating-cta__call {
  background: var(--brand-yellow);
  color: var(--ink);
  border-color: var(--brand-yellow);
}
.floating-cta__quote {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}
@media (min-width: 1024px) {
  /* On desktop the floating bar is hidden — header has its own sticky CTAs. */
  .floating-cta { display: none; }
  body { padding-bottom: 0; }
}

/* --- Breadcrumbs ---------------------------------------------------------- */
.breadcrumbs {
  font-size: .85rem;
  color: var(--ink-mute);
  padding: 14px 0 0;
}
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 4px 8px; }
.breadcrumbs a { color: var(--ink-mute); }
.breadcrumbs li + li::before { content: "›"; padding-right: 8px; color: var(--ink-mute); }
.breadcrumbs li:last-child { color: var(--ink-soft); }

/* --- Pagination ----------------------------------------------------------- */
.pagination {
  display: flex; gap: 6px; align-items: center; justify-content: center;
  padding: 28px 0;
}
.pagination a, .pagination span {
  min-width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-weight: 700; font-size: .9rem;
  color: var(--ink-soft);
}
.pagination a:hover { border-color: var(--brand-red); color: var(--brand-red); }
.pagination .is-current { background: var(--brand-red); color: #fff; border-color: var(--brand-red); }

/* --- Quote panel (used on home + service pages) -------------------------- */
.quote-panel {
  background: linear-gradient(135deg, var(--brand-red) 0%, #a8181f 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 32px 24px;
}
.quote-panel h2 { color: #fff; }
.quote-panel p { color: rgba(255,255,255,0.9); }
.quote-panel .btn { margin-top: 8px; }

/* --- Reviews / testimonials ---------------------------------------------- */
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.review-card__stars { color: var(--brand-yellow); font-size: 1.1rem; margin-bottom: 8px; letter-spacing: .05em; }
.review-card__quote { color: var(--ink-soft); font-style: italic; }
.review-card__author { margin-top: 14px; font-weight: 700; font-size: .95rem; }
.review-card__author span { color: var(--ink-mute); font-weight: 400; font-size: .85rem; }

/* --- FAQ ------------------------------------------------------------------ */
.faq { display: grid; gap: 8px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0;
  transition: border-color .15s var(--ease);
}
.faq details[open] { border-color: var(--brand-red); }
.faq summary {
  list-style: none;
  padding: 16px 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand-red); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details > div { padding: 0 18px 16px; color: var(--ink-soft); }

/* --- Utility -------------------------------------------------------------- */
.text-muted { color: var(--ink-mute); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Tablet+ tweaks ------------------------------------------------------- */
@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .nav {
    position: static; display: flex; gap: 4px; background: transparent;
    margin-left: 24px;
  }
  .nav__panel {
    position: static; width: auto;
    box-shadow: none; padding: 0; flex-direction: row;
    background: transparent;
  }
  .nav__close, .nav__cta { display: none; }
  /* Only style nav__link anchors, NOT all anchors in nav (so .btn buttons in mega menu work) */
  .nav__link {
    border: none;
    font-weight: 600;
  }
  .site-header__cta-desktop {
    margin-left: auto; display: inline-flex; gap: 10px;
  }
  .site-header__phone { padding: 8px 14px; font-size: 1rem; }
}

/* --- Upgraded design tokens & components --------------------------------- */

/* Section head with eyebrow */
.section-head { margin-bottom: 28px; max-width: 720px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 8px; }
.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-red);
  background: rgba(212,32,40,0.08);
  padding: 5px 12px; border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.section--ink .eyebrow { background: rgba(254,208,61,0.16); color: var(--brand-yellow); }
.lede { color: var(--ink-soft); font-size: 1.05rem; max-width: 60ch; margin: 0; }
.section--ink .lede { color: rgba(255,255,255,0.78); }

/* Hero upgrades */
.hero h1 { font-size: clamp(2rem, 4.5vw + 1rem, 3.4rem); line-height: 1.05; }
.hero__lede { font-size: clamp(1.05rem, 1vw + 1rem, 1.25rem); margin-top: 14px; max-width: 44ch; }
.hero__bullets {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-wrap: wrap; gap: 18px;
  color: rgba(255,255,255,0.85);
  font-size: .95rem;
}
.hero__bullets li { display: inline-flex; align-items: center; }
.hero__bg::after {
  background: linear-gradient(135deg, rgba(20,22,28,.55) 0%, rgba(20,22,28,.85) 70%, rgba(212,32,40,.45) 100%);
}

/* Service tile (image + overlay + text) */
.service-tile {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none !important;
  color: #fff;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.service-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-tile__media { position: absolute; inset: 0; }
.service-tile__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform .6s var(--ease); }
.service-tile:hover .service-tile__media img { transform: scale(1.05); }
.service-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,22,28,0) 35%, rgba(20,22,28,0.85) 100%);
}
.service-tile__body {
  position: absolute; inset: auto 0 0 0;
  padding: 20px 22px;
  z-index: 1;
}
.service-tile__body h3 { color: #fff; margin: 0 0 4px; font-size: 1.25rem; }
.service-tile__body p { color: rgba(255,255,255,0.85); font-size: .9rem; margin: 0; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.service-tile__cta { display: inline-block; margin-top: 10px; font-weight: 700; color: var(--brand-yellow); font-size: .9rem; }

/* "How it works" steps */
.steps {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step__num {
  font-size: 2.4rem; font-weight: 800; color: var(--brand-red);
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px;
  font-feature-settings: "tnum";
}
.step h3 { margin: 0 0 6px; font-size: 1.2rem; }
.step p { margin: 0; color: var(--ink-soft); }

/* Gallery */
.gallery {
  display: grid; gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
.gallery__item {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  background: var(--bg-soft);
  transition: transform .2s var(--ease);
}
.gallery__item:hover { transform: scale(1.02); z-index: 1; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 0;
  transition: transform .4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }

/* Image frame (used in restore-don't-replace block) */
.img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.section--ink .img-frame { border-color: rgba(255,255,255,0.12); }

/* CTA band (final big call to action) */
.cta-band {
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(254,208,61,0.18) 0%, transparent 60%),
    linear-gradient(135deg, var(--brand-red) 0%, #9a161c 100%);
  color: #fff;
  border-radius: 0;
}
.cta-band__inner {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) { .cta-band__inner { grid-template-columns: 1.4fr 1fr; gap: 40px; } }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.92); margin: 0; font-size: 1.1rem; }
.cta-band__actions { display: grid; gap: 10px; }

/* Ghost light button (on dark bg) */
.btn--ghost-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.4);
}
.btn--ghost-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }

/* Bigger trust strip stats */
.trust-strip__item .stat {
  font-size: clamp(1.75rem, 1.5vw + 1rem, 2.4rem);
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
}
.trust-strip__item .label {
  font-size: .75rem;
  font-weight: 700;
}

/* Card hover polish */
.card { transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__media img { transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }

/* No custom styling for Trustindex — let their widget render itself. */

/* ============================================================================
   INDUSTRIAL CONCRETE THEME LAYER
   ============================================================================ */

/* --- Bigger hero (cinematic) --------------------------------------------- */
.hero--cinematic {
  min-height: clamp(420px, 70vh, 720px);
  display: flex;
  align-items: center;
  position: relative;
}
.hero--cinematic .hero__bg::after {
  background: linear-gradient(180deg, rgba(20,22,28,0.55) 0%, rgba(20,22,28,0.85) 100%);
}
.hero--cinematic .hero__inner {
  padding: clamp(80px, 14vh, 160px) 0 clamp(60px, 10vh, 120px);
}
.hero__title {
  font-size: clamp(0.95rem, 0.5vw + 0.5rem, 1.05rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
  max-width: 100%;
  overflow-wrap: break-word;
}
.hero__title span {
  display: block; /* each span on its own line */
}
.hero--split .hero__title { max-width: 100%; }
.hero--split .hero__copy { min-width: 0; overflow: hidden; }
@media (min-width: 1100px) { .hero__title { font-size: 1.5rem; } }
@media (min-width: 1280px) { .hero__title { font-size: 1.75rem; } }
@media (min-width: 1500px) { .hero__title { font-size: 2rem; } }
@media (min-width: 1700px) { .hero__title { font-size: 2.25rem; } }
/* Smaller eyebrow so it stays on one line in the column */
.hero__eyebrow { font-size: .72rem; padding: 5px 12px; letter-spacing: .12em; }
.hero__sub {
  font-size: clamp(1rem, 0.5vw + 1rem, 1.2rem);
  color: rgba(255,255,255,0.9);
  margin: 18px 0 28px;
  max-width: 50ch;
  font-style: italic;
}
.hero__scroll {
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 1.4rem;
  animation: aaa-bounce 1.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes aaa-bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* --- Blocky / industrial buttons ---------------------------------------- */
.btn--blocky { border-radius: 4px; padding: 16px 32px; text-transform: uppercase; letter-spacing: .05em; font-size: .95rem; }
.btn--white-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--white-outline:hover { background: #fff; color: var(--brand-red); border-color: #fff; }

/* --- Red full-width CTA banner ------------------------------------------ */
.banner-red {
  background: var(--brand-red);
  color: #fff;
  padding: 22px 0;
}
.banner-red--xl { padding: clamp(40px, 6vw, 80px) 0; }
.banner-red__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.banner-red p { color: #fff; font-size: clamp(1.05rem, 1vw + 0.8rem, 1.4rem); font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: .02em; }
.banner-red .btn { flex-shrink: 0; }

/* --- Concrete texture sections ------------------------------------------ */
.bg-concrete {
  background-color: #e8e6e3;
  /* Relative URL from /assets/css/site.css → ../../wp-content/uploads/... — works under any deploy path */
  background-image: url('../../wp-content/uploads/2021/02/concrete-optimized.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
}
.bg-concrete::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(247,248,250,0.78);
  pointer-events: none;
}
.bg-concrete > * { position: relative; z-index: 1; }

.bg-concrete-dark {
  background-color: #181a20;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}
.bg-concrete-dark::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,22,28,0.78) 0%, rgba(20,22,28,0.92) 100%);
  pointer-events: none;
}
.bg-concrete-dark > * { position: relative; z-index: 1; }
.bg-concrete-dark .eyebrow--light {
  background: rgba(254,208,61,0.18);
  color: var(--brand-yellow);
}

/* --- Why-us grid with circular icons ------------------------------------ */
.why-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin-top: 24px;
}
@media (min-width: 640px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.why-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(212,32,40,0.25); }
.why-tile__icon {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--brand-red);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.why-tile__icon svg { width: 30px; height: 30px; }
.why-tile h3 { margin: 0 0 6px; font-size: 1.15rem; }
.why-tile p { color: var(--ink-soft); font-size: .92rem; margin: 0; line-height: 1.55; }

/* --- Before/After gallery (composite images already labeled) ------------ */
.ba-gallery { display: grid; gap: 18px; grid-template-columns: 1fr; max-width: 980px; margin: 0 auto; }
.ba-gallery--2x2 { gap: 22px; }
@media (min-width: 768px) {
  .ba-gallery--2x2 { grid-template-columns: repeat(2, 1fr); }
}
.ba-figure {
  position: relative; margin: 0;
  border-radius: 6px; overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
  box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ba-figure:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.ba-figure img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.ba-figure--composite { aspect-ratio: 16 / 7; }

/* --- Header CTAs (fix the squeezed layout) ------------------------------ */
@media (min-width: 768px) {
  .site-header__bar { gap: 18px; }
  .site-header__cta-desktop { gap: 8px; flex-shrink: 0; }
  .site-header__phone {
    padding: 8px 14px;
    font-size: .95rem;
    background: rgba(212,32,40,0.08);
    color: var(--brand-red);
    white-space: nowrap;
  }
  .site-header__phone svg { flex-shrink: 0; }
  .site-header__quote { white-space: nowrap; padding: 8px 18px; font-size: .9rem; }
  .nav { flex: 1; min-width: 0; justify-content: center; }
  .nav__panel { gap: 0; flex-wrap: nowrap; min-width: 0; overflow: visible; }
  .nav a { padding: 8px 10px; font-size: .9rem; white-space: nowrap; }
}

/* --- Services dropdown --------------------------------------------------- */
.nav__group { position: relative; }
.nav__group-trigger { cursor: pointer; }
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: var(--r-md);
  padding: 8px;
  min-width: 240px;
  z-index: 60;
}
.nav__group:hover .nav__dropdown,
.nav__group:focus-within .nav__dropdown { display: grid; gap: 2px; }
.nav__dropdown a {
  padding: 10px 14px !important;
  border-radius: var(--r-sm);
  font-size: .9rem !important;
  color: var(--ink-soft);
  white-space: nowrap;
}
.nav__dropdown a:hover { background: var(--bg-soft); color: var(--brand-red); }
@media (max-width: 767px) {
  .nav__group { display: contents; }
  .nav__group-trigger { display: none !important; }
  .nav__dropdown { display: contents !important; position: static; box-shadow: none; padding: 0; border: none; background: transparent; }
  .nav__dropdown a { padding: 14px 8px !important; border-bottom: 1px solid var(--line-soft); border-radius: 0; padding-left: 24px !important; font-size: 1rem !important; color: var(--ink); }
}

/* --- Industrial section heads ------------------------------------------- */
.section-head h2 {
  text-transform: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.bg-concrete .section-head h2,
.bg-concrete-dark .section-head h2 { color: var(--ink); }
.bg-concrete-dark .section-head h2 { color: #fff; }

/* No custom styling for Trustindex in dark sections either — let the widget render itself. */

/* --- Service tile body — show CTA always (not just on hover) ----------- */
.service-tile { aspect-ratio: 4 / 3.2; }
.service-tile__body p { display: block; -webkit-line-clamp: unset; }

/* --- Service hero ------------------------------------------------------- */
.hero--service { min-height: clamp(360px, 55vh, 540px); }
.hero--service .hero__inner { padding: clamp(60px, 10vh, 120px) 0; }
.hero--service .hero__cta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.breadcrumbs--light { color: rgba(255,255,255,0.7); padding: 0 0 16px; }
.breadcrumbs--light a { color: rgba(255,255,255,0.7); }
.breadcrumbs--light li { color: rgba(255,255,255,0.85); }
.breadcrumbs--light li + li::before { color: rgba(255,255,255,0.5); }

/* Sub-pages use the SAME .hero--cinematic / .hero--split as the home — no overrides.
   Only difference: longer page titles can wrap (they're not the home's fixed 2-line title). */
.hero__title--wrap {
  white-space: normal;
  text-wrap: balance;
}
.hero__title--wrap span { display: inline; white-space: normal; }
.hero__meta {
  font-size: .9rem;
  color: rgba(255,255,255,0.85);
  margin: 14px 0 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Narrower, cleaner article body on sub-pages */
.article--lite { padding: 0; max-width: 900px; margin: 0 auto; }
.article--lite .article__body { font-size: 1.05rem; line-height: 1.7; color: var(--ink); }
.article--lite .article__body h1,
.article--lite .article__body h2,
.article--lite .article__body h3 { letter-spacing: -0.005em; margin-top: 1.6em; }
.article--lite .article__body h2 { font-size: 1.6rem; }
.article--lite .article__body h3 { font-size: 1.25rem; color: var(--ink); }
.article--lite .article__body img { border-radius: var(--r-md); margin: 1.4em auto; box-shadow: var(--shadow-md); }
.article--lite .article__body a { color: var(--brand-red); }
.article--lite .article__body ul,
.article--lite .article__body ol { padding-left: 1.4em; }
.article--lite .article__body li { margin-bottom: 0.4em; }
.article--lite .article__body blockquote {
  border-left: 4px solid var(--brand-red);
  padding: 16px 22px;
  background: var(--bg-soft);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--ink-soft);
}

/* --- Display headlines (industrial / heavy uppercase) ------------------ */
h2.display, h3.display {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.05;
}
h2.display { font-size: clamp(1.6rem, 2vw + 1rem, 2.5rem); }

/* --- Stronger concrete texture (less white overlay so it actually shows) - */
.bg-concrete::before {
  background:
    linear-gradient(180deg, rgba(247,248,250,0.65) 0%, rgba(232,230,227,0.78) 100%);
}
.bg-concrete .why-tile {
  background: rgba(255,255,255,0.96);
}

/* --- Bigger, less-overlay hero ----------------------------------------- */
.hero--cinematic .hero__bg::after {
  background:
    radial-gradient(60% 80% at 0% 100%, rgba(212,32,40,0.18) 0%, transparent 55%),
    linear-gradient(90deg, rgba(15,17,22,0.78) 0%, rgba(15,17,22,0.55) 50%, rgba(15,17,22,0.35) 100%);
}
.hero--cinematic { min-height: clamp(520px, 78vh, 760px); }
.hero__title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* --- Red accent bar above section heads -------------------------------- */
.section-head h2.display::before {
  content: "";
  display: block;
  width: 56px; height: 5px;
  background: var(--brand-red);
  margin-bottom: 14px;
  border-radius: 2px;
}
.section-head--center h2.display::before {
  margin-left: auto; margin-right: auto;
}
.bg-concrete-dark .section-head h2.display::before { background: var(--brand-yellow); }

/* --- Why-tiles tighter / more industrial ------------------------------- */
.why-tile { padding: 32px 26px; border-radius: 6px; }
.why-tile h3 { font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: .01em; }
.why-tile__icon { width: 70px; height: 70px; border-radius: 50%; }
.why-tile__icon svg { width: 32px; height: 32px; }

/* --- Banner-red bigger when it's the final CTA -------------------------- */
.banner-red--xl .banner-red__inner h2 { font-size: clamp(1.4rem, 1.5vw + 1rem, 2rem); font-weight: 800; }

/* --- Service tiles taller / more cinematic ----------------------------- */
.service-tile { aspect-ratio: 4 / 3.5; border-radius: 6px; }
.service-tile__body h3 { text-transform: uppercase; letter-spacing: .02em; font-weight: 800; }

/* --- BA gallery polish ------------------------------------------------- */
.ba-figure { border-radius: 4px; }
.ba-label { border-radius: 0; padding: 5px 12px; font-size: .68rem; }

/* --- Buttons more industrial ------------------------------------------ */
.btn { letter-spacing: .02em; }
.btn--blocky { border-radius: 4px; }
.btn--primary { box-shadow: 0 4px 14px rgba(212,32,40,0.28); }
.btn--primary:hover { box-shadow: 0 6px 18px rgba(212,32,40,0.38); }

/* --- FAQ industrial --------------------------------------------------- */
.faq details { border-radius: 4px; }
.faq summary { font-size: 1rem; font-weight: 700; padding: 18px 20px; }
.faq details > div { padding: 0 20px 18px; line-height: 1.65; }
.faq summary::after { font-size: 1.6rem; }

/* --- Header CTAs hard-fix (no overlap, content-width nav) -------------- */
@media (min-width: 768px) {
  .site-header__bar { gap: 24px; flex-wrap: nowrap; }
  .site-header__logo { flex-shrink: 0; }
  .nav {
    flex: 0 1 auto; /* don't grow into adjacent sibling */
    min-width: 0;
    margin: 0; /* override earlier margin-left:24px */
    margin-left: auto;  /* push nav toward right after logo */
  }
  .site-header__cta-desktop {
    flex-shrink: 0;
    margin-left: auto; /* hard-pin to far right */
    gap: 12px;
    align-items: center;
  }
  .site-header__phone, .phone-pulse {
    flex-shrink: 0;
    white-space: nowrap;
    min-width: max-content;
  }
  .site-header__quote {
    flex-shrink: 0;
    white-space: nowrap;
    min-width: max-content;
    border-radius: 4px;
    padding: 12px 20px;
  }
}
@media (min-width: 1320px) {
  .phone-pulse { padding: 10px 18px; font-size: 1rem; }
}
@media (max-width: 1319px) {
  .phone-pulse__text { display: none; }
  .phone-pulse {
    padding: 6px;
    background: transparent;
    min-width: 0;
  }
  .phone-pulse:hover { background: rgba(212,32,40,0.08); }
}
@media (max-width: 1199px) {
  .nav__link { padding: 10px 6px !important; font-size: .8rem; letter-spacing: .02em; }
  .site-header__quote { padding: 10px 14px !important; font-size: .85rem; }
  .site-header__bar { gap: 16px !important; }
}

/* --- Bigger trust strip (when present) -------------------------------- */
.trust-strip { padding: 22px 0; background: #181a20; color: #fff; border: none; }
.trust-strip__item .stat { color: var(--brand-yellow); }
.trust-strip__item .label { color: rgba(255,255,255,0.7); }

/* ============================================================================
   CLEANER NAV  (no pill / no circle hover)
   ============================================================================ */
@media (min-width: 768px) {
  .nav__panel { gap: 4px; align-items: center; }
  .nav__link {
    position: relative;
    padding: 12px 14px !important;
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .03em;
    color: var(--ink);
    text-transform: uppercase;
    background: transparent !important;
    border-radius: 0 !important;
    transition: color .15s var(--ease);
  }
  .nav__link::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 8px;
    height: 3px; background: var(--brand-red);
    transform: scaleX(0); transform-origin: center;
    transition: transform .2s var(--ease);
    border-radius: 2px;
  }
  .nav__link:hover { color: var(--brand-red); text-decoration: none; }
  .nav__link.is-active { color: var(--brand-red); }
  .nav__link.is-active::after,
  .nav__link:hover::after { transform: scaleX(1); }
  .nav__caret {
    display: inline-block;
    margin-left: 4px;
    font-size: .7rem;
    transition: transform .2s var(--ease);
  }
  .nav__group:hover .nav__caret { transform: rotate(180deg); }
}

/* ============================================================================
   MEGA MENU  (Services)
   ============================================================================ */
@media (min-width: 768px) {
  .nav__group { position: static; }
  .nav__dropdown { display: none; }
  .megamenu {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 24px 60px rgba(13,18,30,0.18);
    border-top: 4px solid var(--brand-red);
    z-index: 60;
  }
  /* Invisible hover bridge below the Services trigger so cursor doesn't lose hover
     while moving from trigger → menu. */
  .nav__group-trigger::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -10px; right: -10px;
    height: 36px;
    /* transparent, but captures hover */
  }
  .nav__group:hover .megamenu,
  .nav__group:focus-within .megamenu,
  .nav__group:hover + .megamenu,
  .megamenu:hover {
    display: block;
  }
  .megamenu__inner { padding: 28px 0; }
  .megamenu__head { margin-bottom: 18px; padding: 0 4px; }
  .megamenu__head h3 { margin: 0; font-size: 1.05rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); }
  .megamenu__head p  { margin: 4px 0 0; color: var(--ink-mute); font-size: .9rem; }
  .megamenu__grid {
    display: grid;
    gap: 4px;
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 1024px) { .megamenu__grid { grid-template-columns: repeat(3, 1fr); } }
  .megamenu__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: background .15s var(--ease);
  }
  .megamenu__item:hover { background: var(--bg-soft); }
  .megamenu__item:hover .megamenu__icon { background: var(--brand-red); color: #fff; }
  .megamenu__icon {
    width: 44px; height: 44px;
    background: rgba(212,32,40,0.08);
    color: var(--brand-red);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all .15s var(--ease);
  }
  .megamenu__icon svg { width: 22px; height: 22px; }
  .megamenu__text { display: flex; flex-direction: column; }
  .megamenu__text strong { font-weight: 800; color: var(--ink); font-size: .92rem; text-transform: uppercase; letter-spacing: .02em; }
  .megamenu__text span  { color: var(--ink-mute); font-size: .82rem; margin-top: 2px; }
  .megamenu__foot {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex; gap: 10px;
    justify-content: flex-end;
  }
}

/* About simple dropdown (NOT a mega menu — small column of links) */
@media (min-width: 768px) {
  .nav__group--simple { position: relative; }
  .nav__group--simple .nav__dropdown {
    display: none;
    position: absolute;
    top: 100%; left: -10px;
    margin-top: 8px;
    background: #fff;
    border-top: 4px solid var(--brand-red);
    box-shadow: 0 24px 60px rgba(13,18,30,0.18);
    padding: 10px 0;
    min-width: 200px;
    z-index: 60;
  }
  .nav__group--simple .nav__dropdown a {
    display: block;
    padding: 10px 18px !important;
    font-size: .88rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--ink);
    border: none !important;
    text-decoration: none;
  }
  .nav__group--simple .nav__dropdown a:hover,
  .nav__group--simple .nav__dropdown a.is-active { background: var(--bg-soft); color: var(--brand-red); }
  .nav__group--simple:hover .nav__dropdown,
  .nav__group--simple:focus-within .nav__dropdown,
  .nav__group--simple .nav__dropdown:hover { display: block; }
  /* Hover bridge for the simple dropdown too */
  .nav__group--simple .nav__group-trigger::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -10px; right: -10px;
    height: 16px;
  }
}

/* Mobile: just stack the megamenu items as plain links */
@media (max-width: 767px) {
  .megamenu { display: contents; }
  .megamenu__inner { display: contents; }
  .megamenu__head, .megamenu__foot { display: none; }
  .megamenu__grid { display: contents; }
  .megamenu__item {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 8px 14px 24px !important;
    border-bottom: 1px solid var(--line-soft);
    color: var(--ink); font-weight: 600;
  }
  .megamenu__icon { width: 32px; height: 32px; }
  .megamenu__icon svg { width: 16px; height: 16px; }
  .megamenu__text strong { font-size: .95rem; }
  .megamenu__text span { display: none; }
  .nav__caret { display: none; }
}

/* ============================================================================
   PHONE PULSE (header)
   ============================================================================ */
.phone-pulse {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(212,32,40,0.08);
  color: var(--brand-red);
  font-weight: 800;
  font-size: 1rem;
  white-space: nowrap;
  text-decoration: none !important;
  position: relative;
}
.phone-pulse:hover { background: rgba(212,32,40,0.14); color: var(--brand-red); }
.phone-pulse__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.phone-pulse__icon svg { width: 16px; height: 16px; }
.phone-pulse__icon::before,
.phone-pulse__icon::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--brand-red);
  pointer-events: none;
  animation: phone-ring 2.4s cubic-bezier(.19,1,.22,1) infinite;
}
.phone-pulse__icon::after { animation-delay: 1.2s; }
@keyframes phone-ring {
  0%   { transform: scale(1);    opacity: .85; }
  80%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
@media (max-width: 767px) {
  .phone-pulse__text { display: none; }
  .phone-pulse { padding: 8px; }
}

/* ============================================================================
   SPLIT HERO (text + quote form)
   ============================================================================ */
.hero--split { min-height: clamp(545px, 82vh, 805px); }
.hero__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(80px, 12vh, 140px) 0 clamp(60px, 10vh, 110px);
}
@media (min-width: 1024px) {
  /* 60% content / 40% form. minmax(0, …) lets the column shrink to fit content */
  .hero__split { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 48px; }
}
.hero__copy h1 { color: #fff; }
.hero__copy { color: rgba(255,255,255,0.92); }
.hero__eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-yellow);
  background: rgba(254,208,61,0.16);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero__points {
  list-style: none; padding: 0; margin: 24px 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
}
.hero__points .dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--brand-red);
  border-radius: 50%;
  margin-right: 12px;
  position: relative; top: 1px;
  box-shadow: 0 0 0 4px rgba(212,32,40,0.2);
}

/* The form card */
.hero__quote-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 24px 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  position: relative;
  border-top: 5px solid var(--brand-red);
  width: 100%;
}
.hero__quote-card h2 {
  font-size: 1.4rem;
  white-space: nowrap;
}
.hero__quote-card .hero-form button[type="submit"] {
  white-space: nowrap;
  font-size: .95rem;
}
.hero__quote-card__head { margin-bottom: 18px; }
.hero__quote-card__eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand-red);
  background: rgba(212,32,40,0.08);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.hero__quote-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--ink);
  text-transform: none;
  letter-spacing: -0.01em;
}
.hero__quote-card h2::before { content: none !important; }
.hero__quote-card p { color: var(--ink-soft); margin: 6px 0 0; font-size: .92rem; }
.hero-form { display: grid; gap: 10px; }
.hero-form__row input,
.hero-form__row select {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
}
.hero-form__row input:focus,
.hero-form__row select:focus {
  outline: none;
  border-color: var(--brand-red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212,32,40,0.16);
}
.hero-form button[type="submit"] { margin-top: 6px; padding: 14px 18px; font-size: 1rem; }
.hero-form__hint { font-size: .72rem; color: var(--ink-mute); margin: 10px 0 0; line-height: 1.5; }

/* ============================================================================
   FOOTER : Powered by Sympler
   ============================================================================ */
.site-footer__powered { color: rgba(255,255,255,0.4); }
.site-footer__powered a { color: rgba(255,255,255,0.55); border-bottom: 1px dotted rgba(255,255,255,0.25); }
.site-footer__powered a:hover { color: var(--brand-yellow); border-color: var(--brand-yellow); }

/* ============================================================================
   SERVICE PAGE MODULES (Phase 1 redesign)
   Scoped to subpages only. Nothing here is loaded under body.home.
   ============================================================================ */

/* --- Trust strip layout (colors live up at line 1086) ------------------- */
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  text-align: center;
}
@media (min-width: 768px) { .trust-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.trust-strip__item { display: flex; flex-direction: column; gap: 4px; }
.trust-strip__item .stat {
  font-size: clamp(1.4rem, 1vw + 1.1rem, 1.9rem);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.trust-strip__item .label {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* --- Bottom Line callout ------------------------------------------------ */
.bottom-line {
  border: 1px solid var(--line);
  border-left: 6px solid var(--brand-red);
  border-radius: var(--r-md);
  padding: clamp(20px, 2vw + 14px, 32px);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.bottom-line__head { margin-bottom: 18px; }
.bottom-line__head h2 { font-size: clamp(1.25rem, .8vw + 1rem, 1.6rem); margin: 0; }
.bottom-line__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 22px;
  margin: 0;
}
@media (min-width: 640px) { .bottom-line__grid { grid-template-columns: 1fr 1fr; } }
.bottom-line__grid > div { padding: 12px 0; border-top: 1px solid var(--line-soft); }
.bottom-line__grid > div:first-child,
.bottom-line__grid > div:nth-child(2) { border-top: none; padding-top: 4px; }
@media (max-width: 639px) {
  .bottom-line__grid > div:nth-child(2) { border-top: 1px solid var(--line-soft); padding-top: 12px; }
}
.bottom-line__grid dt {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-mute);
  margin-bottom: 6px;
  font-weight: 700;
}
.bottom-line__grid dd { margin: 0; color: var(--ink); font-size: 1rem; line-height: 1.55; }

/* --- Process steps ------------------------------------------------------ */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: step;
}
@media (min-width: 640px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-steps { grid-template-columns: repeat(4, 1fr); gap: 22px; } }
.process-step {
  background: #fff;
  border-radius: var(--r-md);
  padding: 24px 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.process-step h3 { font-size: 1.1rem; margin: 14px 0 8px; letter-spacing: -.005em; }
.process-step p { color: var(--ink-soft); font-size: .95rem; margin: 0; line-height: 1.6; }
.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 4px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

/* --- Article body restyle for legacy WP/fusion content ------------------ */
.article--service .article__body { font-size: 1.05rem; line-height: 1.75; color: var(--ink); }
.article--service .article__body h2 { font-size: clamp(1.35rem, 1vw + 1rem, 1.75rem); margin-top: 1.6em; }
.article--service .article__body h3 { font-size: 1.2rem; margin-top: 1.3em; }
.article--service .article__body img { border-radius: var(--r-md); margin: 1.4em auto; box-shadow: var(--shadow-md); }
.article--service .article__body a { color: var(--brand-red); }
.article--service .article__body a:hover { color: var(--brand-red-hover); }
.article--service .article__body ul,
.article--service .article__body ol { padding-left: 1.4em; margin-bottom: 1.2em; }
.article--service .article__body li { margin-bottom: 0.5em; }
.article--service .article__body blockquote {
  border-left: 4px solid var(--brand-red);
  padding: 16px 22px;
  background: var(--bg-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: normal;
  color: var(--ink);
}
/* tone down imported fusion-builder background colors that flash red on the page */
.article--service .article__body [style*="background-color:#d42028"],
.article--service .article__body [style*="--awb-background-color:#d42028"] {
  background-color: transparent !important;
  --awb-background-color: transparent !important;
  color: inherit !important;
  padding: 0 !important;
}
.article--service .article__body .button-flat,
.article--service .article__body .fusion-button {
  display: inline-block;
  padding: 12px 22px;
  background: var(--brand-red);
  color: #fff !important;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 0 !important;
  text-decoration: none !important;
}
.article--service .article__body .button-flat:hover { background: var(--brand-red-hover); }

/* --- Field notes from Howard ------------------------------------------- */
.field-notes { display: grid; gap: 18px; }
@media (min-width: 768px) {
  .field-notes:has(.field-note + .field-note) { grid-template-columns: 1fr 1fr; }
}
.field-note {
  margin: 0;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-yellow);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-sm);
}
.field-note__label {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand-red);
  margin-bottom: 10px;
}
.field-note__body {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--ink);
  font-style: normal;
  line-height: 1.65;
  border-radius: 0;
}

/* --- Comparison table -------------------------------------------------- */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: .95rem;
}
.compare-table th,
.compare-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.compare-table thead th {
  background: var(--bg-soft);
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 2px solid var(--line);
}
.compare-table tbody th {
  font-weight: 700;
  color: var(--ink-soft);
  background: #fcfcfd;
  width: 30%;
  font-size: .9rem;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table__tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-red);
  background: rgba(212,32,40,.1);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  margin-left: 6px;
  vertical-align: middle;
}

/* --- FAQ accordion ----------------------------------------------------- */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0;
  overflow: hidden;
  transition: box-shadow .15s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px 18px 22px;
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--brand-red);
  line-height: 1;
  transition: transform .2s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__answer {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-item__answer p { margin: 0; }

/* --- Service area + map ----------------------------------------------- */
.service-area {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .service-area { grid-template-columns: 1fr 1.2fr; align-items: start; } }
.service-area__cities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
  font-size: .95rem;
  color: var(--ink-soft);
}
@media (min-width: 600px) { .service-area__cities { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .service-area__cities { grid-template-columns: repeat(2, 1fr); } }
.service-area__cities li {
  padding: 8px 12px;
  background: var(--bg-soft);
  border-radius: 4px;
  border-left: 3px solid var(--brand-red);
}
.service-area__map iframe { width: 100%; display: block; }

/* --- Author / Howard card ---------------------------------------------- */
.author-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  color: #f3f4f7;
}
@media (min-width: 720px) { .author-card { grid-template-columns: 140px 1fr; gap: 28px; } }
.author-card__photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), #7a1419);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.02em;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  border: 4px solid rgba(255,255,255,.08);
}
@media (min-width: 720px) { .author-card__photo { width: 140px; height: 140px; font-size: 3rem; } }
.author-card__body h2 { color: #fff; margin: 8px 0 4px; }
.author-card__title {
  color: var(--brand-yellow);
  font-weight: 700;
  font-size: .95rem;
  margin: 0 0 14px;
}
.author-card__body p { color: rgba(255,255,255,.85); line-height: 1.7; }
.author-card__contact { margin-top: 14px !important; }
.author-card__contact a {
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid var(--brand-yellow);
  padding-bottom: 2px;
}
.author-card__contact a:hover { color: var(--brand-yellow); }
.eyebrow--light { background: rgba(254,208,61,0.16); color: var(--brand-yellow); }

/* ============================================================================
   PAGE / BLOG MODULES (Phase 1.5)
   ============================================================================ */

/* --- Blog category pills ------------------------------------------------ */
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0 0 32px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  border-left: 4px solid var(--brand-red);
}
.blog-cats__label {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-mute);
  margin-right: 4px;
}
.blog-cats__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none !important;
  transition: all .15s var(--ease);
}
.blog-cats__pill:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.blog-cats__count {
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-mute);
}
.blog-cats__pill:hover .blog-cats__count { color: rgba(255,255,255,.85); }

/* --- Blog cards -------------------------------------------------------- */
.blog-grid { gap: 22px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none !important;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
  box-shadow: var(--shadow-sm);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line);
}
.blog-card .card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}
.blog-card .card__media img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 0;
  transition: transform .4s var(--ease);
}
.blog-card:hover .card__media img { transform: scale(1.05); }
.blog-card .card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card .card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.005em;
  line-height: 1.3;
}
.blog-card .card__excerpt {
  color: var(--ink-soft);
  font-size: .95rem;
  margin: 0;
  line-height: 1.55;
  flex: 1;
}
.blog-card .card__meta {
  font-size: .78rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}

/* --- Pagination -------------------------------------------------------- */
.pagination {
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: center;
  margin-top: 36px;
}
.pagination a, .pagination span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none !important;
  color: var(--ink);
}
.pagination a:hover { background: var(--bg-soft); }
.pagination .is-current {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}

/* --- Before/After gallery grid (work page) ----------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 0;
}
@media (min-width: 720px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.gallery-grid__item {
  margin: 0;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.gallery-grid__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.gallery-grid__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* --- Print ---------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .floating-cta, #aaa-chat-widget { display: none !important; }
  body { padding: 0; }
}

/* --- Language switch (header + mobile panel) ------------------------------ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 4px 10px 4px 8px;
  background: var(--bg);
  color: var(--ink-soft);
  transition: border-color .15s var(--ease);
}
.lang-switch:hover,
.lang-switch:focus-within { border-color: var(--brand-red); color: var(--brand-red); }
.lang-switch__icon svg { width: 16px; height: 16px; display: block; }
.lang-switch__select {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: .85rem;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 2px;
}
.lang-switch--panel { margin: 18px 0 0; align-self: flex-start; }
@media (min-width: 768px) { .lang-switch--panel { display: none; } }
.lang-switch--header { margin-right: 4px; }
@media (max-width: 767.98px) { .lang-switch--header { display: none; } }

/* Hide Google Translate's own UI; the engine is driven by the lang switch. */
#google_translate_element,
#goog-gt-tt,
.goog-te-banner-frame,
iframe.skiptranslate { display: none !important; }
body { top: 0 !important; }

/* --- Accessibility widget -------------------------------------------------- */
.a11y-widget {
  position: fixed;
  left: 14px;
  bottom: calc(var(--cta-bar-h) + 14px);
  z-index: 60;
}
@media (min-width: 1024px) { .a11y-widget { bottom: 20px; } }
.a11y-widget__toggle {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform .15s var(--ease), background .15s var(--ease);
}
.a11y-widget__toggle svg { width: 26px; height: 26px; }
.a11y-widget__toggle:hover { background: var(--brand-red); transform: scale(1.06); }
.a11y-widget__panel {
  position: absolute;
  left: 0;
  bottom: 58px;
  width: 240px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 14px;
}
.a11y-widget__head {
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.a11y-widget__option {
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  padding: 9px 12px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.a11y-widget__option:hover { border-color: var(--brand-red); }
.a11y-widget__option.is-on {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.a11y-widget__option.is-on::after { content: " ✓"; }
.a11y-widget__reset {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink-mute);
  font: inherit;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 8px 0 2px;
}
.a11y-widget__reset:hover { color: var(--brand-red); }
.a11y-widget__link {
  display: block;
  font-size: .8rem;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 4px;
}

/* --- Accessibility modes (classes set on <html> by a11y-widget.js) -------- */
html.a11y-font-lg { font-size: 112.5%; }
html.a11y-font-xl { font-size: 125%; }
html.a11y-font-lg body,
html.a11y-font-xl body { font-size: 1rem; }

html.a11y-dyslexia body,
html.a11y-dyslexia button,
html.a11y-dyslexia input,
html.a11y-dyslexia select,
html.a11y-dyslexia textarea {
  font-family: Verdana, 'Trebuchet MS', Tahoma, Arial, sans-serif !important;
  letter-spacing: .02em;
  word-spacing: .08em;
}

html.a11y-motion *,
html.a11y-motion *::before,
html.a11y-motion *::after {
  animation: none !important;
  transition: none !important;
}
html.a11y-motion { scroll-behavior: auto !important; }

html.a11y-underline a { text-decoration: underline !important; }

html.a11y-contrast body {
  --ink:       #000000;
  --ink-soft:  #111111;
  --ink-mute:  #222222;
  --line:      #666666;
  --line-soft: #777777;
  --bg-soft:   #ffffff;
  --bg-tint:   #ffffff;
  --brand-red: #a3131a;
  --brand-red-hover: #7d0e14;
}
html.a11y-contrast .site-footer,
html.a11y-contrast .site-footer a { background-color: #000; color: #fff; }
html.a11y-contrast img { filter: contrast(1.05); }

/* --- Tablet band (768-1099px): tighten header so nav + CTAs + lang fit ---- */
@media (min-width: 768px) and (max-width: 1099.98px) {
  .site-header__bar { gap: 8px; }
  .nav { margin-left: 0; }
  .nav a.nav__link { padding: 12px 5px !important; font-size: .78rem !important; }
  .nav__link::after { left: 5px; right: 5px; }
  .site-header__cta-desktop { gap: 8px; }
  .lang-switch--header { padding: 4px 6px; }
  .lang-switch--header .lang-switch__select { font-size: .8rem; }
}

/* Hero bullets on service pages (marker dots to match the home hero) */
.hero__bullets li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-red);
  margin-right: 9px;
  flex-shrink: 0;
}

/* --- Professional-polish pass ---------------------------------------------
   Wider page gutters on large screens (home excluded — its layout is frozen),
   form-less hero variant for conversion pages, card components for the
   contact / quote layouts. */
body:not(.home) .container { padding-left: clamp(20px, 4vw, 56px); padding-right: clamp(20px, 4vw, 56px); }

.hero--noform .hero__split { grid-template-columns: 1fr; }
.hero--noform .hero__inner { padding: clamp(48px, 8vh, 92px) 0; }
.hero--noform .hero__lede { max-width: 56ch; }

.lead-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-red);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.lead-aside h2 { margin-top: 10px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 1.02rem;
}
.check-list li::before {
  content: "✓";
  color: var(--brand-red);
  font-weight: 800;
  flex-shrink: 0;
}
.lead-aside__phone {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--bg-tint);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
}
.lead-aside__phone p { margin: 0 0 12px; font-weight: 600; }
.lead-aside__phone .hint { margin: 10px 0 0; font-weight: 400; color: var(--ink-mute); font-size: .88rem; }

.contact-cards { display: grid; gap: 16px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  margin: 0 0 10px;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-mute);
}
.contact-card p { margin: 8px 0 0; }

/* Mobile header: pin the phone/quote/hamburger cluster to the right edge */
.site-header__cta-desktop { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; }

/* Internal-page heroes: ~50% shorter. Home keeps its full-height hero. */
body:not(.home) .hero--cinematic .hero__inner {
  padding: clamp(40px, 7vh, 80px) 0 clamp(30px, 5vh, 60px);
}
body:not(.home) .hero--noform .hero__inner {
  padding: clamp(24px, 4vh, 48px) 0;
}

/* Internal-page hero: compact the quote card so it stops dictating banner
   height. Combined with the padding cut above, internal heroes land at
   roughly half their original height. Home is untouched. */
body:not(.home) .hero--cinematic .hero__inner {
  padding: clamp(28px, 4vh, 44px) 0 clamp(24px, 3.5vh, 36px);
}
body:not(.home) .hero__quote-card { padding: 16px 18px 16px; }
body:not(.home) .hero__quote-card__head { margin-bottom: 10px; }
body:not(.home) .hero__quote-card__eyebrow { margin-bottom: 8px; padding: 4px 10px; }
body:not(.home) .hero__quote-card h2 { font-size: 1.2rem; }
body:not(.home) .hero__quote-card p { font-size: .85rem; margin-top: 4px; }
body:not(.home) .hero-form { gap: 8px; }
body:not(.home) .hero-form__row input,
body:not(.home) .hero-form__row select { padding: 9px 12px; }
body:not(.home) .hero-form button[type="submit"] { margin-top: 4px; padding: 11px 16px; font-size: .95rem; }

/* Internal-page hero: halve the viewport-based minimum height (was ~78-82vh). */
body:not(.home) .hero--cinematic,
body:not(.home) .hero--split { min-height: clamp(280px, 40vh, 400px); }

/* Responsive video embeds (restored from the live site) */
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 24px 0;
  background: #000;
}
.video-embed iframe,
.video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed-grid { display: grid; gap: 20px; margin: 24px 0; }
@media (min-width: 768px) { .video-embed-grid { grid-template-columns: 1fr 1fr; } .video-embed-grid .video-embed { margin: 0; } }

/* Location page cross-link lists */
.loc-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.loc-links li a {
  display: block;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s var(--ease);
}
.loc-links li a:hover { border-color: var(--brand-red); text-decoration: none; }
.loc-links--cols { grid-template-columns: 1fr 1fr; }
.service-area__cities a { text-decoration: none; font-weight: 600; }
.service-area__cities a:hover { color: var(--brand-red); }

/* Founder photo on the About page */
.founder-photo { margin: 0 0 32px; }
.founder-photo img { width: 100%; border-radius: var(--r-md); box-shadow: var(--shadow-md); }
.founder-photo figcaption { margin-top: 10px; font-size: .9rem; color: var(--ink-mute); }
