/* Crown Roofing — Warm Light palette */
:root {
  /* Surfaces */
  --bg: #faf8f5;
  --bg-deep: #f3efe8;
  --bg-elevated: #ffffff;
  --bg-surface: #f7f4ef;
  --bg-card: #ffffff;
  --border: rgba(51, 65, 85, 0.12);
  --border-strong: rgba(154, 123, 26, 0.28);

  /* Typography */
  --text: #1a2332;
  --text-muted: #5c6b7f;

  /* Brand — crown gold & bronze */
  --accent: #b8860b;
  --accent-hover: #d4a017;
  --accent-deep: #8b6914;
  --accent-glow: rgba(184, 134, 11, 0.22);
  --accent-soft: rgba(184, 134, 11, 0.08);

  /* Warm neutrals — no blue */
  --secondary: #5c5346;
  --secondary-glow: rgba(92, 83, 70, 0.06);

  /* Accent depth */
  --royal: #8b4558;
  --royal-glow: rgba(139, 69, 88, 0.05);

  /* Functional */
  --success: #15803d;
  --success-bright: #22c55e;
  --danger: #dc2626;
  --danger-bright: #ef4444;

  /* Chrome */
  --nav-glass: rgba(255, 255, 255, 0.94);
  --overlay-photo: rgba(26, 35, 50, 0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(30, 41, 59, 0.08);
  --shadow-lg: 0 16px 48px rgba(30, 41, 59, 0.12);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
  --max: 1200px;
  --nav-h: 108px;
  --grid-gap: 1.5rem;

  /* Hero estimate panel — shared across form + emergency strip */
  --hero-panel-bg-top: #ffffff;
  --hero-panel-bg-mid: #fffbf6;
  --hero-panel-bg-bottom: #faf7f1;
}

html { color-scheme: light; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 60% at 90% 0%, var(--accent-soft), transparent 50%),
    radial-gradient(ellipse 70% 50% at 5% 100%, var(--secondary-glow), transparent 45%);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--accent); color: #fff; padding: .75rem 1rem; font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.section { padding: 5.5rem 0; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.section-label::before {
  content: ""; width: 24px; height: 2px; background: var(--accent); border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 62ch; }

/* NAV — light glass at top; fuller background after scroll */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--nav-h);
  border-bottom: 1px solid rgba(184, 134, 11, 0.06);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 251, 245, 0.28) 100%
  );
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  transition: background .35s, border-color .35s, box-shadow .35s, backdrop-filter .35s;
  overflow: visible;
  isolation: isolate;
}
.nav::before,
.nav::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  transition: opacity .4s ease;
  z-index: 0;
}
/* Diagonal gold stripes — drift when scrolled */
.nav::before {
  background: repeating-linear-gradient(
    -58deg,
    transparent 0,
    transparent 18px,
    rgba(184, 134, 11, 0.045) 18px,
    rgba(184, 134, 11, 0.045) 19px,
    transparent 19px,
    transparent 38px,
    rgba(212, 160, 23, 0.03) 38px,
    rgba(212, 160, 23, 0.03) 39px
  );
  background-size: 280% 100%;
}
.nav::after {
  background:
    radial-gradient(ellipse 45% 120% at -5% 50%, rgba(212, 160, 23, 0.1), transparent 68%),
    radial-gradient(ellipse 40% 100% at 105% 40%, rgba(184, 134, 11, 0.08), transparent 65%),
    linear-gradient(90deg, rgba(255,249,239,0.5) 0%, transparent 35%, transparent 65%, rgba(255,249,239,0.45) 100%);
  background-size: 100% 100%, 100% 100%, 220% 100%;
}
.nav.scrolled {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 251, 245, 0.9) 100%
  );
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  border-color: rgba(184, 134, 11, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 4px 18px rgba(30, 41, 59, 0.06);
}
.nav.scrolled::before {
  opacity: 0.35;
  animation: nav-stripes-drift 22s linear infinite;
}
.nav.scrolled::after {
  opacity: 0.3;
  animation: nav-shimmer-pan 9s ease-in-out infinite alternate;
}
@keyframes nav-stripes-drift {
  0% { background-position: 0% 0%; }
  100% { background-position: 280% 0%; }
}
@keyframes nav-shimmer-pan {
  0% { background-position: 0% 0%, 0% 0%, 0% 0%; }
  100% { background-position: 0% 0%, 0% 0%, 100% 0%; }
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 1rem;
  position: relative;
  z-index: 1;
}
.logo { flex-shrink: 0; }
.logo img { height: 52px; width: auto; max-width: 148px; }
.nav-links {
  display: flex; align-items: center; gap: 1.25rem;
  flex: 1 1 auto; min-width: 0;
}
.nav-label-short { display: none; }
.nav-cta-short { display: none; }
.nav-links > a,
.nav-dropdown-link {
  font-size: .95rem; font-weight: 600; color: var(--text);
  transition: color .2s; white-space: nowrap;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 12px rgba(255, 255, 255, 0.55);
}
.nav-links > a:hover, .nav-links > a.active { color: var(--accent-deep); }
.nav-dropdown-link:hover,
.nav-dropdown-link.active { color: var(--accent-deep); }
.nav.scrolled .nav-links > a,
.nav.scrolled .nav-dropdown-link,
.nav.scrolled .nav-dropdown-btn {
  text-shadow: none;
}
.nav-cta { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-phone-icon { display: none; align-items: center; line-height: 0; }
.nav-phone-btn { gap: 0.35rem; }
.nav-toggle {
  display: none; background: none; border: none; color: var(--text);
  cursor: pointer; padding: .5rem;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 45%, var(--accent-deep) 100%);
  color: #fff; box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 12px 32px var(--accent-glow); filter: brightness(1.04); }
.btn-ghost {
  background: var(--bg-elevated); color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--border-strong); background: var(--accent-soft); color: var(--accent-deep); }
.btn-sm { padding: .6rem 1.1rem; font-size: .875rem; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
}
.hero--stacked {
  min-height: auto;
  align-items: flex-start;
  overflow: visible;
  padding-bottom: 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .45;
}
.hero-bg video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: .55;
}
.hero--stacked .hero-bg video {
  opacity: .68;
  object-position: center calc(50% - 5cm);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 72% 18%, rgba(212, 160, 23, 0.1), transparent 58%),
    radial-gradient(ellipse 55% 45% at 8% 82%, var(--secondary-glow), transparent 52%),
    linear-gradient(180deg, rgba(250,248,245,0.55) 0%, rgba(250,248,245,0.88) 60%, var(--bg) 100%);
}
.hero--stacked .hero-bg::after {
  background:
    radial-gradient(ellipse 70% 50% at 72% 18%, rgba(212, 160, 23, 0.08), transparent 58%),
    radial-gradient(ellipse 50% 40% at 8% 82%, rgba(184, 134, 11, 0.04), transparent 52%),
    linear-gradient(180deg, rgba(250,248,245,0.18) 0%, rgba(250,248,245,0.32) 55%, rgba(250,248,245,0.42) 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1; opacity: .035;
  background-image:
    linear-gradient(rgba(30,41,59,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,41,59,.25) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; padding: 4rem 0 6rem; }
.hero--stacked .hero-content { width: 100%; padding: 0; }
.hero-split {
  display: grid; grid-template-columns: 1fr min(440px, 100%);
  gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Hero shell — transparent top; white card floats below buttons */
.hero-glass {
  width: 100%;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.hero-top {
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(0.5rem, 1.25vw, 1rem);
  background: transparent;
}
.hero-top .hero-badge,
.hero-top .hero-title-row {
  text-shadow: 0 1px 14px rgba(250, 248, 245, 0.75), 0 0 3px rgba(255, 255, 255, 0.45);
}
.hero-top .hero-badge {
  text-shadow: none;
}
.hero-top .hero-lead {
  text-shadow: 0 1px 8px rgba(250, 248, 245, 0.55);
}
.hero-band-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  gap: clamp(1rem, 2vw, 1.35rem);
}
.hero-band-copy {
  width: 100%;
}
.hero-title--wide {
  width: 100%;
  max-width: none;
}
.hero-title-row {
  display: block;
  width: 100%;
  text-align: center;
}
.hero-band-actions {
  width: 100%;
  display: flex;
  justify-content: center;
  align-self: center;
  padding-top: .25rem;
  padding-bottom: clamp(0.35rem, 1vw, 0.65rem);
}
.hero-band-actions .hero-actions {
  justify-content: center;
  margin-bottom: 0;
  gap: 1rem;
}
.hero--stacked .hero-trust {
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  width: 100%;
}
.hero-trust--footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(.45rem, 1.1vw, 0.85rem);
  padding-top: clamp(.35rem, 0.75vw, 0.5rem);
  margin-top: .1rem;
  border-top: 1px solid rgba(184, 134, 11, 0.1);
}
.hero-trust--footer .trust-item {
  gap: .5rem;
}
.hero-trust--footer .trust-item svg {
  width: 15px;
  height: 15px;
}
.hero-trust--footer .trust-item strong {
  font-size: .74rem;
}
.hero-trust--footer .trust-item span {
  font-size: .66rem;
}
.hero.hero--stacked h1 {
  max-width: none;
  width: 100%;
  font-size: clamp(2.5rem, 4.8vw, 5.25rem);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -.03em;
  line-height: 1.08;
}
.hero--stacked h1 .gradient {
  background: linear-gradient(135deg, #5c4508 0%, var(--accent-deep) 42%, var(--accent) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 5px rgba(255, 255, 255, 0.82))
    drop-shadow(0 2px 4px rgba(26, 35, 50, 0.32));
}
.hero--stacked .hero-top .hero-title-row .gradient {
  text-shadow: none;
}
.hero--stacked .hero-lead {
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: clamp(1.05rem, 1.65vw, 1.22rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  padding-inline: clamp(0rem, 3vw, 2rem);
}
.hero--stacked .hero-badge {
  margin-inline: auto;
  align-self: center;
  margin-bottom: clamp(0.65rem, 1.4vw, 1rem);
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.92),
    0 1px 3px rgba(255, 255, 255, 0.68);
}

/* Hero form — arch panel, full-bleed background edge to edge */
.hero-wave-panel {
  --hero-wave-h: clamp(40px, 6vw, 64px);
  position: relative;
  width: 100%;
  z-index: 5;
  margin-top: clamp(0.25rem, 0.8vw, 0.5rem);
  padding-top: 0;
  padding-bottom: clamp(0.65rem, 1.25vw, 0.95rem);
  background: transparent;
  overflow: visible;
  isolation: isolate;
}
.hero-wave-panel::before,
.hero-wave-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: none;
  top: calc(var(--hero-wave-h) - 2px);
  bottom: 0;
}
.hero-wave-panel::after {
  z-index: 0;
  background: linear-gradient(
    180deg,
    var(--hero-panel-bg-top) 0%,
    var(--hero-panel-bg-mid) 52%,
    var(--hero-panel-bg-bottom) 100%
  );
  box-shadow:
    0 -4px 24px rgba(30, 41, 59, 0.04),
    0 14px 40px rgba(30, 41, 59, 0.06);
}
.hero-wave-panel::before {
  z-index: 1;
  background:
    radial-gradient(ellipse 52% 75% at 88% 22%, rgba(212, 160, 23, 0.09), transparent 68%),
    radial-gradient(ellipse 48% 68% at 10% 78%, rgba(184, 134, 11, 0.07), transparent 64%),
    radial-gradient(circle, rgba(212, 160, 23, 0.14) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(184, 134, 11, 0.09) 0.75px, transparent 1.25px),
    repeating-linear-gradient(
      -58deg,
      transparent 0,
      transparent 24px,
      rgba(184, 134, 11, 0.028) 24px,
      rgba(184, 134, 11, 0.028) 25px,
      transparent 25px,
      transparent 52px,
      rgba(212, 160, 23, 0.02) 52px,
      rgba(212, 160, 23, 0.02) 53px
    );
  background-size: 100% 100%, 100% 100%, 58px 58px, 88px 88px, 280% 100%;
  background-position: 0 0, 0 0, 0 0, 30px 30px, 0 0;
  animation:
    hero-panel-bg-drift 24s linear infinite,
    hero-panel-bg-glow 10s ease-in-out infinite alternate;
}
.hero-wave-fill {
  pointer-events: none;
  fill: var(--hero-panel-bg-top);
}
.hero-wave-top {
  display: block;
  width: 100%;
  height: var(--hero-wave-h);
  line-height: 0;
  margin-top: 0;
  overflow: visible;
  position: relative;
  z-index: 2;
}
.hero-wave-ridge {
  opacity: 0.92;
  filter: drop-shadow(0 1px 3px rgba(184, 134, 11, 0.22));
  animation: hero-wave-ridge-shimmer 8s ease-in-out infinite alternate;
  position: relative;
  z-index: 3;
}
@keyframes hero-panel-bg-drift {
  0% {
    background-position: 0 0, 0 0, 0 0, 30px 30px, 0 0;
  }
  100% {
    background-position: 0 0, 0 0, 58px -28px, -20px 62px, 280% 0;
  }
}
@keyframes hero-panel-bg-glow {
  0% { opacity: 0.72; }
  100% { opacity: 1; }
}
@keyframes hero-wave-ridge-shimmer {
  0% { opacity: 0.75; }
  100% { opacity: 0.95; }
}
.hero-wave-stage {
  display: flex;
  flex-direction: column;
  gap: clamp(.3rem, 0.65vw, .42rem);
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 4;
  background: transparent;
}
.hero-wave-head {
  width: 100%;
  max-width: none;
  text-align: center;
}
.hero-wave-head .section-label {
  justify-content: center;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}
.hero-wave-head .section-label::before {
  width: 16px;
}
.hero-wave-title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: .1rem;
  color: var(--text);
}
.hero-wave-sub {
  font-size: clamp(.78rem, 0.95vw, .84rem);
  line-height: 1.32;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: min(48ch, 100%);
}
.hero-lead-form--compact {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  width: 100%;
}
.hero-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem .65rem;
}
.hero-form-cluster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .32rem .45rem;
  min-width: 0;
}
.hero-form-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .32rem .5rem;
  align-items: end;
}
.hero-form-problem {
  min-width: 0;
}
.hero-lead-form--compact .form-group {
  gap: .15rem;
}
.hero-lead-form--compact .form-group label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.hero-lead-form--compact .form-group input,
.hero-lead-form--compact .form-group select {
  padding: .38rem .52rem;
  font-size: .8rem;
}
.hero-lead-form--compact .problem-other-wrap textarea {
  min-height: 48px;
  padding: .38rem .52rem;
  font-size: .8rem;
}
.hero-lead-form--inwave {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  width: 100%;
}
.hero-lead-form--inwave .problem-other-wrap,
.hero-lead-form--inwave .hp-field {
  width: 100%;
}
.hero-lead-form--inwave input,
.hero-lead-form--inwave select,
.hero-lead-form--inwave textarea {
  background: var(--bg-surface);
  border-color: rgba(184, 134, 11, 0.2);
}
.hero-lead-form--inwave input:focus,
.hero-lead-form--inwave select:focus,
.hero-lead-form--inwave textarea:focus {
  background: #ffffff;
  border-color: var(--accent);
}
.hero-wave-submit {
  width: auto;
  margin-top: 0;
  padding: .42rem 0.82rem;
  font-size: .8rem;
  white-space: nowrap;
}
.hero-wave-note {
  text-align: center;
  font-size: .68rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.3;
}
.hero-wave-note a { color: var(--accent); font-weight: 600; }

@media (max-width: 767px) {
  .hero-form-fields {
    grid-template-columns: 1fr;
  }
  .hero-form-bottom {
    grid-template-columns: 1fr;
  }
  .hero-wave-submit {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-form-cluster {
    grid-template-columns: 1fr;
  }
}

.hero-copy h1 { max-width: none; }
.hero-conversion {
  position: relative; z-index: 3;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
.hero-conversion::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 12% 0%, var(--accent-soft), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.8) 0%, transparent 38%);
}
.hero-conversion::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  border: 1px solid var(--border-strong);
  mask: linear-gradient(135deg, #000 0%, transparent 55%);
  -webkit-mask: linear-gradient(135deg, #000 0%, transparent 55%);
}
.hero-conversion-head { position: relative; margin-bottom: 1.25rem; }
.hero-conversion-title {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 800;
  line-height: 1.2; margin-bottom: .5rem; color: var(--text);
}
.hero-conversion-sub { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }
.hero-lead-form { position: relative; display: flex; flex-direction: column; gap: .85rem; }
.hero-lead-form .form-group { gap: .35rem; }
.hero-lead-form input, .hero-lead-form select, .hero-lead-form textarea {
  padding: .75rem .9rem; font-size: .92rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  color-scheme: light;
}
.hero-lead-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.35rem;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23b8860b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 6l4 4 4-4'/%3E%3C/svg%3E"),
    linear-gradient(var(--bg-surface), var(--bg-surface));
  background-repeat: no-repeat, repeat;
  background-position: right .85rem center, 0 0;
}
.hero-lead-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.hero-lead-form select option {
  background-color: var(--bg-elevated);
  color: var(--text);
}
.hero-lead-form select option:checked {
  background: linear-gradient(0deg, var(--accent-soft), var(--accent-soft)), var(--bg-elevated);
  color: var(--text);
}
.hero-lead-form input::placeholder,
.hero-lead-form textarea::placeholder { color: rgba(92, 107, 127, 0.75); }
.hero-lead-form textarea { min-height: 88px; }
.hero-conversion-submit { width: 100%; margin-top: .25rem; }
.hero-conversion-note {
  text-align: center; font-size: .82rem; color: var(--text-muted); margin-top: .5rem;
}
.hero-conversion-note a { color: var(--accent); font-weight: 600; }
.problem-other-wrap[hidden] { display: none; }

/* Google Places dropdown */
.pac-container {
  z-index: 10050;
  margin-top: 4px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-body);
}
.pac-item {
  padding: .65rem .9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  cursor: pointer;
}
.pac-item:first-child { border-top: none; }
.pac-item:hover,
.pac-item-selected {
  background: var(--accent-soft);
  color: var(--text);
}
.pac-item-query { color: var(--text); font-weight: 600; }
.pac-matched { color: var(--accent); }
.pac-icon { display: none; }
.pac-logo::after { opacity: 0.45; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 1.5vw, 1rem);
  padding: 0;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.15rem);
  border: none;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  font-size: clamp(0.68rem, 1.05vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  line-height: 1.35;
}
.hero-badge::before,
.hero-badge::after {
  content: "";
  width: clamp(36px, 6vw, 60px);
  height: 2px;
  border-radius: 999px;
  flex-shrink: 0;
}
.hero-badge::before {
  background: linear-gradient(90deg, transparent 0%, var(--accent-hover) 100%);
}
.hero-badge::after {
  background: linear-gradient(270deg, transparent 0%, var(--accent-hover) 100%);
}
.hero-badge .dot {
  display: none;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .8; transform: scale(.9); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -.04em;
  max-width: 14ch; margin-bottom: 1.5rem;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--text) 20%, var(--accent-deep) 65%, var(--accent-hover) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: 1.15rem; color: var(--text-muted); max-width: 52ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 2rem; align-items: center;
}
.trust-item { display: flex; align-items: center; gap: .75rem; }
.trust-item svg { color: var(--accent); flex-shrink: 0; }
.trust-item strong { display: block; font-size: .95rem; }
.trust-item span { font-size: .8rem; color: var(--text-muted); }

/* STATS */
.stats-wrap {
  position: relative; z-index: 3;
  padding: 1rem 0;
  margin-top: 0;
}
.hero--stacked + .stats-wrap {
  position: relative;
  z-index: 4;
  margin-top: -2px;
  padding: clamp(0.65rem, 1.25vw, 1rem) 0 clamp(1rem, 2vw, 1.5rem);
  margin-top: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}
.hero--stacked + .stats-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  background: var(--hero-panel-bg-bottom, #faf7f1);
  pointer-events: none;
}
.hero--stacked + .stats-wrap .emergency-banner {
  background: transparent;
  border: 1px solid rgba(181, 69, 69, 0.22);
  margin-bottom: 0;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
}
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: -3rem;
}
.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  text-align: center; box-shadow: var(--shadow);
  transition: transform .3s, border-color .3s;
  position: relative; z-index: 1;
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.stat-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.stat-label {
  font-size: .78rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted); margin-top: .5rem;
}

/* CARDS GRID — consistent spacing site-wide */
.grid-2,
.grid-3,
.grid-4,
.link-grid,
.services-grid,
.blog-hub-grid,
.blog-writers-grid,
.form-grid,
.stats {
  display: grid;
  gap: var(--grid-gap);
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.link-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 268px), 1fr));
}
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.link-grid > *,
.services-grid > * { min-width: 0; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  box-shadow: var(--shadow);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.5rem; }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.card h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 700; margin-bottom: .6rem;
}
.card p { color: var(--text-muted); font-size: .95rem; }
.card-link {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1rem; font-weight: 600; font-size: .9rem; color: var(--accent);
}
.card-link:hover { gap: .6rem; }

/* FEATURES */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-visual {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow); position: relative;
}
.feature-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.feature-item {
  display: flex; gap: 1rem; padding: 1rem;
  border-radius: var(--radius-sm); background: var(--accent-soft);
  border: 1px solid var(--border);
}
.feature-item h4 { font-weight: 700; margin-bottom: .25rem; }
.feature-item p { color: var(--text-muted); font-size: .9rem; }

/* WHY US */
.why-card {
  padding: 2rem; border-radius: var(--radius);
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg-surface));
  border: 1px solid var(--border); height: 100%;
  box-shadow: var(--shadow);
}
.why-card h4 {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; margin-bottom: .75rem;
}
.why-card p { color: var(--text-muted); font-size: .92rem; }

/* CITY PAGE — local SEO panels */
.city-quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}
.city-fact-card {
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}
.city-fact-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: .35rem;
}
.city-fact-card strong {
  display: block;
  font-size: .92rem;
  line-height: 1.45;
  color: var(--text);
  font-weight: 600;
}
.city-review-grid {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}
.city-review-snippet {
  margin: 0;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
}
.city-review-snippet p {
  margin: 0 0 .65rem;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.6;
}
.city-review-snippet footer {
  font-size: .82rem;
  color: var(--text-muted);
}
.city-geo-resources li {
  margin-bottom: .55rem;
}
@media (max-width: 640px) {
  .city-quick-facts { grid-template-columns: 1fr; }
}

/* TESTIMONIAL */
.testimonial {
  background: linear-gradient(135deg, #fff9ef, var(--bg-elevated));
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  padding: 3rem; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.testimonial::before {
  content: "\201C"; position: absolute; top: -10px; left: 24px;
  font-size: 8rem; color: var(--accent); opacity: .15; line-height: 1;
  font-family: Georgia, serif;
}
.testimonial blockquote {
  font-size: 1.15rem; line-height: 1.75; color: var(--text);
  margin-bottom: 1.5rem; position: relative;
}
.testimonial cite { font-style: normal; }
.testimonial cite strong { display: block; font-size: 1rem; }
.testimonial cite span { color: var(--text-muted); font-size: .9rem; }

/* AWARDS */
.awards-list { display: flex; flex-direction: column; gap: 1rem; }
.award-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
}
.award-year {
  flex-shrink: 0; font-weight: 800; color: var(--accent);
  font-family: var(--font-display); font-size: .9rem;
  padding: .35rem .75rem; border-radius: 6px;
  background: var(--accent-soft);
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, #fff9ef 0%, #fef7e8 45%, var(--bg-deep) 100%);
  border: 1px solid var(--border-strong); border-radius: calc(var(--radius) + 8px);
  padding: 4rem; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; position: relative; }
.cta-band p { color: var(--text-muted); max-width: 50ch; margin: 0 auto 2rem; position: relative; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; position: relative; }

/* FORM */
.form-grid { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .85rem; font-weight: 500; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  padding: .85rem 1rem; border-radius: var(--radius-sm);
  background: var(--bg-elevated); border: 1px solid var(--border);
  color: var(--text); transition: border-color .2s, box-shadow .2s;
  color-scheme: light;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23b8860b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 6l4 4 4-4'/%3E%3C/svg%3E"),
    linear-gradient(var(--bg-elevated), var(--bg-elevated));
  background-repeat: no-repeat, repeat;
  background-position: right .9rem center, 0 0;
}
.form-group select option {
  background-color: var(--bg-elevated);
  color: var(--text);
}
.form-group select option:checked {
  background: linear-gradient(0deg, var(--accent-soft), var(--accent-soft)), var(--bg-elevated);
  color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info-card {
  padding: 1.5rem; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
}
.contact-info-card h4 { font-weight: 700; margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.contact-info-card p, .contact-info-card a { color: var(--text-muted); font-size: .95rem; }
.contact-info-card a:hover { color: var(--accent); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; background: none; border: none; color: var(--text);
  font-weight: 600; text-align: left; cursor: pointer; font-size: 1rem;
}
.faq-question svg { flex-shrink: 0; transition: transform .3s; color: var(--accent); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.faq-answer-inner { padding-bottom: 1.25rem; color: var(--text-muted); font-size: .95rem; }
.faq-item.open .faq-answer { max-height: 1200px; }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }
.nav-inner,
.nav-links { overflow: visible; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: .15rem;
}
.nav-dropdown-link {
  font-size: .95rem; font-weight: 600; color: var(--text);
  transition: color .2s; white-space: nowrap;
}
.nav-dropdown-link:hover,
.nav-dropdown-link.active { color: var(--accent-deep); }
.nav-dropdown-btn {
  background: none; border: none; color: var(--text); font-size: .95rem;
  font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: .35rem;
  padding: .15rem .25rem; border-radius: 6px;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 12px rgba(255, 255, 255, 0.55);
}
.nav-dropdown-btn:hover { color: var(--accent-deep); background: var(--bg-surface); }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 240px;
  padding: .5rem; margin: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  z-index: 1100;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  overflow-x: hidden;
}
.nav-dropdown-menu::after {
  display: none;
}
.nav-dropdown-menu a {
  display: block; padding: .55rem .75rem; border-radius: 8px; font-size: .88rem; color: var(--text-muted);
}
.nav-dropdown-menu a:hover { background: var(--bg-surface); color: var(--text); }
.nav-dropdown-menu .dropdown-more { color: var(--accent); font-weight: 600; margin-top: .25rem; }
.nav-dropdown.open .nav-dropdown-menu { display: block; }
@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown-menu { display: block; }

  /* Desktop header — logo | nav | CTA (no overlap) */
  .nav .container.nav-inner {
    width: min(100% - 1.25rem, 1340px);
    max-width: none;
  }
  .nav-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem 0.85rem;
    padding-top: 0;
  }
  .logo { justify-self: start; flex-shrink: 0; z-index: 2; }
  .nav-links {
    justify-self: stretch;
    justify-content: center;
    align-items: center;
    align-self: center;
    padding-top: 0;
    gap: clamp(0.45rem, 0.9vw, 0.95rem);
    flex: none;
    min-width: 0;
    max-width: 100%;
  }
  .nav-links > a {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .nav-dropdown {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  /* Invisible bridge so the menu stays open while moving from trigger to panel */
  .nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
    display: none;
  }
  .nav-dropdown:hover::before { display: block; }
  .nav-links > a,
  .nav-dropdown-link,
  .nav-dropdown-btn {
    font-size: clamp(0.78rem, 0.72rem + 0.22vw, 0.875rem);
    font-weight: 600;
    letter-spacing: 0;
  }
  .logo img {
    height: clamp(48px, 5.5vw, 58px);
    width: auto;
    max-width: 148px;
    max-height: none;
  }
  .nav-cta {
    justify-self: end;
    align-self: center;
    padding-top: 0;
    gap: 0.45rem;
    flex-shrink: 0;
    z-index: 2;
  }
  .nav-cta .btn-sm {
    padding: 0.45rem 0.75rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }
  .nav-cta .btn-ghost {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(51, 65, 85, 0.14);
    box-shadow: 0 2px 8px rgba(30, 41, 59, 0.06);
    padding-inline: 0.65rem;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .nav-label-long { display: none; }
  .nav-label-short { display: inline; }
  .nav-cta-long { display: none; }
  .nav-cta-short { display: inline; }
}

@media (min-width: 769px) and (max-width: 1060px) {
  .nav-cta .nav-phone-text { display: none; }
  .nav-cta .nav-phone-icon { display: inline-flex; }
}

@media (min-width: 1061px) {
  .nav-cta .nav-phone-icon { display: none; }
}

@media (min-width: 1181px) {
  .nav-label-short { display: none; }
  .nav-cta-short { display: none; }
}

/* PROSE / CONTENT PAGES */
.prose { max-width: 72ch; color: var(--text-muted); }
.prose h2, .prose h3 { color: var(--text); font-family: var(--font-display); margin: 2rem 0 1rem; }
.prose h2 { font-size: 1.65rem; }
.prose h3 { font-size: 1.2rem; }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.prose li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }
.project-case-hero {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.project-case-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 420px;
}
.project-case-study .project-lead {
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.project-case-study h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--text);
  font-family: var(--font-display);
}
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.info-box {
  padding: 1.25rem 1.5rem; border-radius: var(--radius-sm);
  background: var(--accent-soft); border: 1px solid var(--border-strong);
}
.info-box h4 { color: var(--accent); margin-bottom: .5rem; }
.emergency-banner {
  padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 2rem;
  background: rgba(181, 69, 69, 0.12); border: 1px solid rgba(181, 69, 69, 0.35);
}
.emergency-banner a { color: var(--danger-bright); font-weight: 700; }
.check-list li { list-style: none; position: relative; padding-left: 1.5rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.link-card {
  display: block; height: 100%;
  padding: 1.35rem 1.4rem; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--bg-card); transition: border-color .2s, transform .2s, box-shadow .2s;
}
.link-card--photo {
  position: relative; overflow: hidden; min-height: 280px; padding: 0;
  border: 1px solid var(--border);
  background-color: #1a2332;
  background-image: var(--card-photo, none);
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}
.link-card--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(15, 22, 32, 0.72) 0%,
    rgba(15, 22, 32, 0.28) 38%,
    rgba(15, 22, 32, 0.55) 62%,
    rgba(15, 22, 32, 0.94) 100%
  );
}
.link-card--photo .link-card-inner {
  position: relative; z-index: 1;
  min-height: 280px; width: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.1rem 1.25rem 1.2rem;
  margin-top: auto;
  background: linear-gradient(
    to top,
    rgba(12, 18, 26, 0.97) 0%,
    rgba(12, 18, 26, 0.9) 55%,
    rgba(12, 18, 26, 0) 100%
  );
}
.link-card--photo h3 {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 800;
  margin-bottom: .4rem; color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}
.link-card--photo p {
  font-size: .84rem; line-height: 1.5; color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.link-card-cta {
  margin-top: .75rem; font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  color: var(--accent); text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}
.card--photo .card-body p {
  font-size: .92rem; line-height: 1.6;
}
.link-card--photo:hover {
  border-color: var(--border-strong); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.link-card:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow); }
.link-card:not(.link-card--photo) h3 { font-size: 1rem; margin-bottom: .35rem; color: var(--text); }
.link-card:not(.link-card--photo) p { font-size: .88rem; color: var(--text-muted); }
.blog-card .blog-meta { font-size: .8rem; color: var(--text-muted); margin-bottom: .5rem; }

/* Blog hub — 3 columns */
.blog-hub-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.blog-card-v2 {
  display: flex; flex-direction: column;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.blog-card-v2:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.blog-card-thumb {
  display: block; position: relative; aspect-ratio: 16 / 10;
  background: var(--bg-elevated);
  overflow: hidden;
}
.blog-card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.blog-card-v2:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card-thumb-fallback {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--thumb-a, #8b6914), var(--thumb-b, #d4a017));
}
.blog-card-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,35,50,0.25));
}
.blog-card-category {
  position: absolute; left: .85rem; bottom: .85rem; z-index: 1;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .35rem .65rem; border-radius: 999px;
  background: var(--accent-deep); color: #fff; border: 1px solid transparent;
}
.blog-card-body { padding: 1.15rem 1.25rem 1.25rem; display: flex; flex-direction: column; flex: 1; gap: .5rem; }
.blog-card-datetime {
  font-size: .78rem; color: var(--text-muted); font-weight: 500;
}
.blog-card-v2 h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 800;
  line-height: 1.3; margin: 0;
}
.blog-card-v2 h3 a { color: var(--text); }
.blog-card-v2 h3 a:hover { color: var(--accent); }
.blog-card-excerpt { font-size: .88rem; color: var(--text-muted); line-height: 1.55; margin: 0; flex: 1; }
.blog-card-read { font-size: .88rem; font-weight: 600; color: var(--accent); margin-top: .25rem; }

/* Blog hub — search + pagination */
.blog-hub-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.75rem;
}
.blog-hub-search-wrap { flex: 1 1 280px; max-width: 420px; position: relative; }
.blog-hub-search {
  width: 100%; padding: .75rem 1rem .75rem 2.75rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-card); color: var(--text); font-size: .95rem;
}
.blog-hub-search:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent);
}
.blog-hub-search-icon {
  position: absolute; left: .95rem; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}
.blog-hub-search-status { font-size: .85rem; color: var(--text-muted); min-height: 1.25rem; }
.blog-pagination {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .45rem; margin-top: 2.5rem;
}
.blog-page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.5rem; height: 2.5rem; padding: 0 .75rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-card); color: var(--text-muted);
  font-size: .88rem; font-weight: 600; transition: border-color .2s, color .2s, background .2s;
}
.blog-page-btn:hover { border-color: var(--accent); color: var(--accent); }
.blog-page-btn[aria-current="page"] {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.blog-page-btn.blog-page-ellipsis {
  border: none; background: none; min-width: auto; padding: 0 .35rem; pointer-events: none;
}
.blog-page-nav { padding: 0 1rem; }
.blog-hub-empty {
  grid-column: 1 / -1; text-align: center; padding: 3rem 1rem;
  color: var(--text-muted); border: 1px dashed var(--border); border-radius: var(--radius);
}

.blog-post-hero-img {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--border);
  margin: 1.25rem 0 1.75rem; aspect-ratio: 16/9; object-fit: cover;
  box-shadow: var(--shadow);
}
.blog-post-inline-img {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--border);
  margin: 1.5rem 0; aspect-ratio: 4/3; object-fit: cover;
}
.blog-post-figure { margin: 1.5rem 0; }
.blog-post-figure figcaption {
  font-size: .82rem; color: var(--text-muted); margin-top: .5rem; text-align: center;
}
.blog-author-chip {
  display: flex; align-items: center; gap: .65rem;
  margin-top: .35rem; padding-top: .75rem;
  border-top: 1px solid var(--border);
  text-decoration: none; color: inherit;
  transition: opacity .2s;
}
.blog-author-chip:hover { opacity: .9; }
.blog-author-chip:hover .blog-author-name { color: var(--accent); }
.blog-author-avatar {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover; object-position: center top; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.12);
}
.blog-author-avatar-lg { width: 72px; height: 72px; }
.blog-author-text { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.blog-author-name { font-size: .88rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.blog-author-role { font-size: .75rem; color: var(--text-muted); line-height: 1.3; }
.blog-post-meta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem;
  margin-bottom: 1rem;
}
.blog-card-category-pill {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem .65rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-deep); border: 1px solid var(--border-strong);
}
.author-box-linked { align-items: center; gap: 1.25rem; }
.author-box-linked a { color: var(--accent); font-weight: 600; }

/* Author profile */
.author-profile-head {
  display: flex; align-items: center; gap: 1.75rem; margin-top: 1rem;
}
.author-profile-photo {
  border-radius: 50%; flex-shrink: 0; object-fit: cover; object-position: center top;
  box-shadow: 0 0 0 4px var(--accent-soft), var(--shadow-lg);
}
.author-profile-role {
  font-size: 1.05rem; font-weight: 600; color: var(--accent); margin: .35rem 0;
}
.author-profile-tagline {
  color: var(--text-muted); font-size: 1rem; margin: 0;
}
.author-profile-bio { font-size: 1.05rem; line-height: 1.75; }
.author-highlights { margin-top: 2rem; }
.author-highlights h2 { font-size: 1.1rem; margin-bottom: 1rem; }

/* Writers grid on blog hub */
.blog-writers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.blog-writer-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.5rem 1rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg-card);
  transition: transform .2s, border-color .2s;
  text-decoration: none; color: inherit;
}
.blog-writer-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.blog-writer-name { font-weight: 700; font-size: .95rem; margin-top: .75rem; }
.blog-writer-role { font-size: .78rem; color: var(--text-muted); margin-top: .25rem; line-height: 1.35; }

@media (max-width: 1024px) {
  .blog-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-writers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-hub-grid { grid-template-columns: 1fr; }
  .blog-writers-grid { grid-template-columns: 1fr; }
  .author-profile-head { flex-direction: column; text-align: center; }
}
.toc {
  padding: 1.25rem 1.5rem; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--bg-card); margin-bottom: 2rem;
}
.toc h2 { font-size: 1rem; margin-bottom: .75rem; color: var(--text); }
.toc ol { margin: 0; padding-left: 1.25rem; gap: .35rem; }
.toc a { color: var(--text-muted); font-size: .92rem; }
.toc a:hover { color: var(--accent); }
.author-box {
  display: flex; gap: 1rem; align-items: center; padding: 1.25rem;
  border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg-card);
  margin: 2rem 0;
}
.btn-emergency {
  background: linear-gradient(135deg, var(--danger-bright), var(--danger)); color: #fff;
  box-shadow: 0 8px 24px rgba(181, 69, 69, 0.35);
}
.btn-call {
  background: linear-gradient(135deg, var(--success-bright), var(--success)); color: #fff;
  box-shadow: 0 8px 24px rgba(45, 138, 94, 0.35);
}
.btn-call:hover { box-shadow: 0 12px 32px rgba(45, 138, 94, 0.45); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.section-tight {
  padding-top: 0;
  padding-bottom: 1rem;
}
/* Avoid double vertical gap when a tight bridge section sits between two full sections */
.section-tight + .section {
  padding-top: 2.75rem;
}
.page-hero + .section-tight {
  padding-bottom: 0.5rem;
}
.page-hero + .section-tight + .section {
  padding-top: 2.25rem;
}
.section-tight .emergency-banner {
  margin-bottom: 0;
}
.summary-box {
  padding: 1.5rem; border-left: 3px solid var(--accent); background: var(--bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 2rem;
}
.summary-box h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: .75rem; }
.comparison-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .92rem; }
.comparison-table th, .comparison-table td {
  border: 1px solid var(--border); padding: .75rem 1rem; text-align: left;
}
.comparison-table th { background: var(--bg-elevated); color: var(--text); }
.map-placeholder {
  aspect-ratio: 16/9; border-radius: var(--radius); border: 1px dashed var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
  background: var(--bg-card); padding: 2rem; text-align: center;
}

/* LOCATION / GOOGLE MAP */
.location-section {
  background:
    radial-gradient(ellipse 60% 40% at 0% 50%, var(--accent-soft), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 50%, var(--bg) 100%);
}
.location-section--compact .location-header {
  text-align: left; max-width: 720px; margin-bottom: 1.75rem;
}
.location-section--compact .section-title { font-size: clamp(1.35rem, 3vw, 1.75rem); }
.location-header {
  text-align: center; max-width: 720px; margin: 0 auto 2.5rem;
}
.location-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 3vw, 2.5rem); align-items: stretch;
}
.location-details {
  display: flex; flex-direction: column; gap: 1.25rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px); padding: 1.75rem;
  box-shadow: var(--shadow);
}
.location-detail-item {
  display: flex; gap: 1rem; align-items: flex-start;
}
.location-detail-icon {
  flex-shrink: 0; width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--accent-soft);
  color: var(--accent-deep); border: 1px solid var(--border-strong);
}
.location-detail-item strong {
  display: block; font-size: .82rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--accent); margin-bottom: .25rem;
}
.location-detail-item p { margin: 0; color: var(--text-muted); line-height: 1.55; font-size: .95rem; }
.location-detail-item a { color: var(--text); font-weight: 500; }
.location-detail-item a:hover { color: var(--accent); }
.location-actions {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-top: auto; padding-top: .5rem;
}
.location-actions .btn { display: inline-flex; align-items: center; gap: .35rem; }
.map-embed-wrap {
  position: relative; min-height: 320px;
  border-radius: calc(var(--radius) + 2px); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}
.map-embed-wrap::before {
  content: ""; display: block; padding-top: 72%;
}
.map-embed-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.location-section--compact .location-grid { grid-template-columns: 1fr; }
.location-section--compact .map-embed-wrap { min-height: 280px; }
.location-section--compact .map-embed-wrap::before { padding-top: 56%; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .hero-badge .dot { animation: none; }
  .hero-wave-ridge { animation: none; }
  .hero-wave-panel::before { animation: none; opacity: 0.85; }
  .nav.scrolled::before,
  .nav.scrolled::after { animation: none; }
  .floating-cta .cta-pill,
  .floating-cta .cta-pill-label { animation: none !important; transition: none !important; }
  .emergency-pulse-badge,
  .emergency-pulse-border,
  .emergency-call-pulse-green,
  .emergency-hero-overlay,
  .emergency-hero-scan::after,
  .emergency-siren-beam,
  .emergency-drop,
  .emergency-spark,
  body.page-emergency .emergency-banner,
  body.page-emergency .floating-cta .cta-pill--emergency { animation: none !important; }
  html { scroll-behavior: auto; }
}

@media (max-width: 1024px) {
  .footer-grid-extended { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .grid-4, .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-hub-grid { grid-template-columns: 1fr; }
  .services-hub-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-writers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static; box-shadow: none; border: none; padding: .5rem 0 0 1rem;
    background: transparent;
  }
  .nav-dropdown-menu::after { display: none; }
  .floating-cta.mobile-cta-bar {
    top: auto; bottom: 0; left: 0; right: 0;
    transform: none;
    flex-direction: row; align-items: stretch; gap: .45rem;
    border-radius: 0; border: none; border-top: 1px solid var(--border);
    padding: .6rem .65rem calc(.6rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 -4px 24px rgba(30,41,59,0.08);
  }
  .floating-cta.mobile-cta-bar .cta-pill {
    flex: 1; min-width: 0;
    padding: .55rem .4rem;
    font-size: .7rem;
    gap: .3rem;
    border-radius: 999px !important;
    box-shadow: none;
  }
  .floating-cta.mobile-cta-bar .cta-pill--call {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
  }
  .floating-cta.mobile-cta-bar .cta-pill--call .cta-pill-icon { color: #fff; }
  .floating-cta.mobile-cta-bar .cta-pill--estimate {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 45%, var(--accent-deep) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px var(--accent-glow);
  }
  .floating-cta.mobile-cta-bar .cta-pill--estimate .cta-pill-icon { color: #fff; }
  .floating-cta.mobile-cta-bar .cta-pill--emergency {
    background: #fff5f5;
    color: #b91c1c;
    border: 1px solid rgba(185, 28, 28, 0.15);
  }
  .floating-cta.mobile-cta-bar .cta-pill-icon { width: 16px; height: 16px; }
  .cookie-consent {
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    left: .75rem; right: .75rem;
    max-width: none;
  }
  body { padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px)); }
}

/* PROCESS */
.process-step {
  text-align: center; padding: 2rem 1.25rem;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg-card); position: relative;
}
.process-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
  color: rgba(184, 134, 11, 0.2); line-height: 1; margin-bottom: .75rem;
}
.process-step h4 { font-weight: 700; margin-bottom: .5rem; }
.process-step p { color: var(--text-muted); font-size: .88rem; }

/* PAGE HERO */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 1.75rem;
  background:
    radial-gradient(ellipse 70% 50% at 85% 0%, var(--accent-soft), transparent 55%),
    linear-gradient(180deg, var(--bg-elevated), var(--bg));
  border-bottom: 1px solid var(--border);
}
.page-hero:has(+ .section-tight) {
  padding-bottom: 1rem;
}
.page-hero + .section,
.page-hero--photo + .section {
  padding-top: 2.75rem;
}
.page-hero--photo-contact + .section {
  padding-top: 2rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800; letter-spacing: -.03em; margin-bottom: 1rem;
}
.breadcrumb {
  display: flex; gap: .5rem; font-size: .875rem; color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }

/* SERVICES HUB */
.page-hero--photo {
  position: relative; overflow: hidden;
  background-color: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.page-hero-bg--soft {
  opacity: 1;
}
.page-hero--photo.page-hero--photo-city {
  padding: calc(var(--nav-h) + 4.5rem) 0 2rem;
  min-height: clamp(320px, 42vw, 460px);
  display: block;
  border-bottom: none;
  background-color: #1a2332;
}
.page-hero--photo-city + .section {
  padding-top: 2.75rem;
}
.page-hero--photo-city .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  transform: none;
  object-fit: cover;
  object-position: center 42%;
}
.page-hero--photo-city::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(12, 18, 26, 0.62) 0%,
    rgba(12, 18, 26, 0.22) 38%,
    rgba(12, 18, 26, 0.55) 58%,
    rgba(12, 18, 26, 0.9) 100%
  );
}
.page-hero--photo:not(.page-hero--photo-city):not(.page-hero--photo-contact) {
  padding: calc(var(--nav-h) + 3.5rem) 0 2.5rem;
  min-height: clamp(300px, 38vw, 420px);
  display: block;
  background-color: #1a2332;
  border-bottom: none;
}
.page-hero--photo:not(.page-hero--photo-city):not(.page-hero--photo-contact)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(12, 18, 26, 0.58) 0%,
    rgba(12, 18, 26, 0.18) 42%,
    rgba(12, 18, 26, 0.52) 72%,
    rgba(12, 18, 26, 0.82) 100%
  );
}
.page-hero--photo:not(.page-hero--photo-city):not(.page-hero--photo-contact) h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.page-hero--photo:not(.page-hero--photo-city):not(.page-hero--photo-contact) .section-subtitle {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}
.page-hero--photo:not(.page-hero--photo-city):not(.page-hero--photo-contact) .breadcrumb,
.page-hero--photo:not(.page-hero--photo-city):not(.page-hero--photo-contact) .breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}
.page-hero--photo:not(.page-hero--photo-city):not(.page-hero--photo-contact) .breadcrumb a:hover {
  color: #fff;
}
.page-hero--photo:not(.page-hero--photo-city):not(.page-hero--photo-contact) .breadcrumb span {
  color: rgba(255, 255, 255, 0.48);
}
.page-hero--photo .container,
.page-hero .container,
.emergency-hero .container {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.page-hero--photo-city h1 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}
.page-hero--photo-city .section-subtitle {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
}
.page-hero--photo-city .breadcrumb,
.page-hero--photo-city .breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}
.page-hero--photo-city .breadcrumb a:hover { color: #fff; }
.page-hero--photo-city .breadcrumb span { color: rgba(255, 255, 255, 0.55); }
.page-hero--photo .section-subtitle { max-width: 58ch; }

/* EMERGENCY SERVICE PAGE — high-urgency red theme */
@keyframes emergency-beacon-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
}
@keyframes emergency-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55), 0 8px 32px rgba(220, 38, 38, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0), 0 12px 40px rgba(220, 38, 38, 0.5); }
}
@keyframes emergency-border-flash {
  0%, 100% { border-color: rgba(239, 68, 68, 0.55); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.2); }
  50% { border-color: rgba(252, 165, 165, 0.95); box-shadow: 0 0 20px rgba(239, 68, 68, 0.35); }
}
@keyframes emergency-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}
@keyframes emergency-scan {
  0% { transform: translateY(-100%); opacity: 0; }
  15% { opacity: 0.06; }
  100% { transform: translateY(100vh); opacity: 0; }
}
@keyframes emergency-overlay-shift {
  0%, 100% { opacity: 0.72; }
  50% { opacity: 0.78; }
}
@keyframes emergency-siren-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes emergency-siren-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.65; }
}
@keyframes emergency-rain-fall {
  0% { transform: translateY(-10vh) scaleY(1); opacity: 0; }
  10% { opacity: 0.85; }
  100% { transform: translateY(110vh) scaleY(1.2); opacity: 0; }
}
@keyframes emergency-spark-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes emergency-call-pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55), 0 8px 32px rgba(34, 197, 94, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0), 0 12px 40px rgba(34, 197, 94, 0.5); }
}

body.page-emergency {
  background-color: #fff8f8;
  background-image:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(239, 68, 68, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(220, 38, 38, 0.06), transparent 50%);
}
body.page-emergency .section-label--emergency,
body.page-emergency .section-label {
  color: #b91c1c;
}
body.page-emergency .section-label::before {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}
body.page-emergency .emergency-banner {
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.45);
  animation: emergency-border-flash 2.4s ease-in-out infinite;
}
body.page-emergency .floating-cta .cta-pill--emergency {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 55%, #b91c1c 100%);
  color: #fff;
  border: 1px solid rgba(252, 165, 165, 0.45);
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.45);
  animation: emergency-pulse-glow 2.2s ease-in-out infinite;
  order: 0;
}
body.page-emergency .floating-cta .cta-pill--emergency .cta-pill-icon { color: #fff; }
body.page-emergency .floating-cta .cta-pill--call { order: 1; }

.emergency-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
  min-height: clamp(420px, 52vw, 560px);
  display: block;
  color: #fff;
  border-bottom: 3px solid rgba(239, 68, 68, 0.65);
}
.emergency-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a0a0a;
}
.emergency-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.88;
}
.emergency-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(80, 8, 8, 0.58) 0%, rgba(127, 29, 29, 0.48) 42%, rgba(26, 35, 50, 0.52) 100%);
  animation: emergency-overlay-shift 4s ease-in-out infinite;
}
.emergency-hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.emergency-siren-beam {
  position: absolute;
  top: 8%;
  right: 6%;
  width: min(340px, 45vw);
  height: min(340px, 45vw);
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(239, 68, 68, 0.45) 18deg,
    transparent 36deg,
    transparent 180deg,
    rgba(59, 130, 246, 0.35) 198deg,
    transparent 216deg
  );
  animation: emergency-siren-spin 2.4s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.55;
}
.emergency-siren-beam--alt {
  top: auto;
  bottom: 12%;
  right: auto;
  left: 4%;
  width: min(260px, 38vw);
  height: min(260px, 38vw);
  animation: emergency-siren-spin 3.2s linear infinite reverse;
  animation-delay: -1.1s;
  opacity: 0.4;
}
.emergency-rain {
  position: absolute;
  inset: 0;
}
.emergency-drop {
  position: absolute;
  top: -5%;
  width: 2px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55), rgba(191, 219, 254, 0.35));
  animation: emergency-rain-fall linear infinite;
  opacity: 0.7;
}
.emergency-sparkles {
  position: absolute;
  inset: 0;
}
.emergency-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(254, 202, 202, 0.9);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.8), 0 0 14px rgba(255, 255, 255, 0.4);
  animation: emergency-spark-twinkle 2.5s ease-in-out infinite;
}
.emergency-hero-scan {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.emergency-hero-scan::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(239, 68, 68, 0.12), transparent);
  animation: emergency-scan 6s linear infinite;
}
.emergency-hero-inner {
  position: relative;
  z-index: 3;
}
.emergency-hero .breadcrumb { margin-bottom: 1.25rem; }
.emergency-hero .breadcrumb,
.emergency-hero .breadcrumb a { color: rgba(255, 255, 255, 0.72); }
.emergency-hero .breadcrumb a:hover { color: #fff; }
.emergency-hero .breadcrumb span { color: rgba(255, 255, 255, 0.48); }
.emergency-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .95rem;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.22);
  border: 1px solid rgba(252, 165, 165, 0.55);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fecaca;
}
.emergency-pulse-badge { animation: emergency-badge-pulse 2s ease-in-out infinite; }
.emergency-beacon-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  animation: emergency-beacon-blink 1.1s ease-in-out infinite;
}
.emergency-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 1rem;
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.emergency-hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 62ch;
  margin-bottom: 1.35rem;
}
.emergency-hero-alert {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  max-width: 640px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(239, 68, 68, 0.55);
  color: #fecaca;
  font-size: .92rem;
  line-height: 1.5;
}
.emergency-pulse-border { animation: emergency-border-flash 2.4s ease-in-out infinite; }
.emergency-hero-alert svg { flex-shrink: 0; color: #f87171; margin-top: .1rem; }
.emergency-hero-alert strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: .25rem;
}
.emergency-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.btn-emergency-lg {
  padding: .95rem 1.5rem;
  font-size: 1.05rem;
  gap: .55rem;
}
.emergency-call-pulse-green { animation: emergency-call-pulse-green 2.2s ease-in-out infinite; }
.emergency-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}
.emergency-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
}
.emergency-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  max-width: 820px;
}
.emergency-stat {
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}
.emergency-stat strong {
  display: block;
  font-size: .95rem;
  color: #fff;
  margin-bottom: .15rem;
}
.emergency-stat span {
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
}

.emergency-steps {
  background: linear-gradient(180deg, rgba(254, 226, 226, 0.55) 0%, var(--bg) 100%);
  border-bottom: 1px solid rgba(239, 68, 68, 0.15);
}
.emergency-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  counter-reset: none;
  padding: 0;
  margin: 0;
}
.emergency-step-card {
  position: relative;
  padding: 1.35rem 1.2rem 1.2rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid rgba(239, 68, 68, 0.22);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.06);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.emergency-step-card:hover {
  border-color: rgba(239, 68, 68, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.12);
}
.emergency-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: .75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
}
.emergency-step-card h3 {
  font-size: 1rem;
  margin-bottom: .45rem;
  color: var(--text);
}
.emergency-step-card p {
  margin: 0;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .emergency-hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .emergency-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .emergency-hero { min-height: auto; padding-bottom: 2.5rem; }
  .emergency-hero h1 { max-width: none; }
  .emergency-hero-actions { flex-direction: column; }
  .emergency-hero-actions .btn,
  .emergency-hero-actions .emergency-hero-secondary { width: 100%; justify-content: center; }
  .emergency-steps-grid { grid-template-columns: 1fr; }
  .emergency-geo-grid { grid-template-columns: 1fr; }
  .emergency-phase-grid { grid-template-columns: 1fr; }
}

/* EMERGENCY PAGE — geo grid, phases, consolidated sections */
.emergency-dual-grid { margin-top: 1rem; }
.emergency-info-box {
  background: rgba(254, 226, 226, 0.35);
  border-color: rgba(239, 68, 68, 0.25);
}
.emergency-check-list li::before { color: #dc2626; }
.emergency-geo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1.25rem;
}
.emergency-geo-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(239, 68, 68, 0.2);
  background: var(--bg-elevated);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.emergency-geo-card:hover {
  border-color: rgba(239, 68, 68, 0.45);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.1);
  transform: translateY(-2px);
}
.emergency-geo-card strong {
  font-size: .95rem;
  color: var(--text);
}
.emergency-geo-card span {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.emergency-geo-card em {
  font-size: .72rem;
  font-style: normal;
  color: #b91c1c;
  font-weight: 600;
  margin-top: .25rem;
}
.emergency-phase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.emergency-phase-card {
  padding: 1.25rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(239, 68, 68, 0.2);
  background: var(--bg-elevated);
}
.emergency-phase-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b91c1c;
  margin-bottom: .5rem;
}
.emergency-phase-card h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}
.emergency-phase-card p {
  margin: 0;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.emergency-process-step .process-num {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
}
@media (max-width: 1024px) {
  .emergency-geo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Contact page — compact photo hero + simple layout */
.page-hero--photo-contact {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  display: block;
  background-color: #1a2332;
  border-bottom: none;
}
.page-hero--photo-contact .page-hero-bg--soft {
  opacity: 0.78;
  object-position: center 35%;
}
.page-hero--photo-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(12, 18, 26, 0.52) 0%,
    rgba(12, 18, 26, 0.22) 45%,
    rgba(12, 18, 26, 0.62) 100%
  );
}
.page-hero--photo-contact h1 {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  margin-bottom: 0.65rem;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}
.page-hero--photo-contact .section-subtitle {
  font-size: 1rem;
  max-width: 58ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}
.page-hero--photo-contact .breadcrumb,
.page-hero--photo-contact .breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}
.page-hero--photo-contact .breadcrumb a:hover {
  color: #fff;
}
.page-hero--photo-contact .breadcrumb span {
  color: rgba(255, 255, 255, 0.48);
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}
.section--compact { padding: 3rem 0; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
}
.contact-form-card,
.contact-aside-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form-card { padding: clamp(1.25rem, 2.5vw, 1.75rem); }
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.contact-form-lead {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.15rem;
}
.contact-form-card .form-grid { gap: 0.85rem 1rem; }
.contact-form-card .form-group label { font-size: 0.8rem; }
.contact-form-card .form-group input,
.contact-form-card .form-group textarea,
.contact-form-card .form-group select {
  padding: 0.72rem 0.85rem;
  font-size: 0.92rem;
}
.contact-form-card .form-group textarea { min-height: 108px; }
.contact-form-card .btn-primary { margin-top: 1rem !important; padding: 0.75rem 1.25rem; }
.contact-aside-card { padding: 1.25rem; }
.contact-aside-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.contact-aside-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-aside-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-aside-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-aside-list a,
.contact-aside-list span:not(.contact-aside-label) {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.45;
}
.contact-aside-list a { color: var(--accent-deep); font-weight: 600; }
.contact-aside-list a:hover { color: var(--accent); }
.contact-aside-note {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.contact-aside-note a { color: var(--accent-deep); font-weight: 600; }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero--photo-contact {
    padding: calc(var(--nav-h) + 2.5rem) 0 2.25rem;
  }
  .section--compact { padding: 2.25rem 0; }
  .page-hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}
.services-hub-intro-section { padding-top: 2.75rem; }
.services-hub-intro { max-width: 760px; margin-bottom: 2.5rem; }
.services-hub-intro .section-title { margin-bottom: 1.25rem; }
.services-hub-stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem;
}
.services-hub-stat {
  padding: 1.35rem 1.25rem; border-radius: var(--radius-sm);
  background: var(--bg-card); border: 1px solid var(--border);
  text-align: center;
}
.services-hub-stat strong {
  display: block; font-family: var(--font-display); font-size: 1.35rem;
  font-weight: 800; color: var(--accent); margin-bottom: .35rem;
}
.services-hub-stat span { font-size: .82rem; color: var(--text-muted); line-height: 1.4; }
.services-hub-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--grid-gap);
}
.service-hub-card {
  display: flex; flex-direction: column; height: 100%;
  border-radius: calc(var(--radius) + 2px); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-card);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.service-hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.service-hub-card-img {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
}
.service-hub-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-hub-card:hover .service-hub-card-img img { transform: scale(1.05); }
.service-hub-card-badge {
  position: absolute; top: .85rem; left: .85rem; z-index: 1;
  padding: .35rem .7rem; border-radius: 999px;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: var(--accent-deep);
  border: 1px solid transparent;
}
.service-hub-card-body {
  display: flex; flex-direction: column; flex: 1;
  padding: 1.5rem 1.5rem 1.35rem;
}
.service-hub-card-body h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 800;
  margin-bottom: .65rem; color: var(--text);
}
.service-hub-card-lead {
  font-size: .95rem; line-height: 1.55; color: var(--text);
  margin-bottom: .85rem; font-weight: 500;
}
.service-hub-card-copy {
  font-size: .9rem; line-height: 1.65; color: var(--text-muted);
  margin-bottom: 1.15rem; flex: 1;
}
.service-hub-card-cta {
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--accent);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  background: var(--bg-deep);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.25rem;
  margin-bottom: 1.75rem;
}
.footer-grid-extended { grid-template-columns: 2fr 1fr 1fr 1fr; }
.footer-brand img { height: auto; width: 168px; max-height: 72px; margin-bottom: .25rem; }
.footer-brand p { color: var(--text-muted); font-size: .88rem; margin-top: .75rem; max-width: 34ch; line-height: 1.5; }
.footer-contact {
  display: flex; flex-direction: column; gap: .35rem;
  margin-top: 1rem; font-size: .85rem;
}
.footer-contact li { color: var(--text-muted); }
.footer h5 {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: .9rem;
}
.footer ul { display: flex; flex-direction: column; gap: .5rem; }
.footer a { color: var(--text-muted); font-size: .88rem; transition: color .2s; }
.footer a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  font-size: .82rem; color: var(--text-muted); flex-wrap: wrap; gap: 1rem;
}

/* FOOTER LATEST-ARTICLES TICKER (infinite marquee) */
.footer-ticker {
  display: flex; align-items: stretch; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-card); overflow: hidden;
  margin-bottom: 2rem;
}
.footer-ticker-label {
  flex: 0 0 auto; display: flex; flex-direction: column; justify-content: center;
  padding: 0 1.1rem; font-size: .68rem; font-weight: 800; line-height: 1.1;
  letter-spacing: .1em; text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, var(--accent-hover), var(--accent-deep));
  text-align: center;
  position: relative; z-index: 2; flex-shrink: 0;
}
.footer-ticker-label:hover { color: #fff; filter: brightness(1.06); }
.footer-ticker-viewport {
  position: relative; flex: 1 1 auto; min-width: 0; overflow: hidden;
  /* Fade only on the right — left edge sits flush against the label (no left fade). */
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 88%, transparent 100%);
          mask-image: linear-gradient(to right, #000 0%, #000 88%, transparent 100%);
}
.footer-ticker-track {
  display: inline-flex; align-items: center; white-space: nowrap;
  will-change: transform;
  animation: footer-ticker-scroll 44s linear infinite;
}
/* Pause only when hovering the scrolling area — not the orange label. */
.footer-ticker-viewport:hover .footer-ticker-track,
.footer-ticker-track:focus-within { animation-play-state: paused; }
.footer-ticker-item {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem .25rem; color: var(--text-muted);
}
.footer-ticker-item:hover .footer-ticker-title { color: var(--accent); }
.footer-ticker-avatar {
  width: 30px; height: 30px; border-radius: 50%; object-fit: cover;
  flex: 0 0 auto; border: 1px solid var(--border);
}
.footer-ticker-cat {
  font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); background: color-mix(in srgb, var(--accent) 14%, transparent);
  padding: .18rem .5rem; border-radius: 999px; flex: 0 0 auto;
}
.footer-ticker-title { font-size: .88rem; font-weight: 600; color: var(--text); }
.footer-ticker-meta { font-size: .78rem; color: var(--text-muted); }
.footer-ticker-sep {
  display: inline-block; width: 6px; height: 6px; margin: 0 1.5rem;
  border-radius: 50%; background: var(--border); flex: 0 0 auto;
}
@keyframes footer-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .footer-ticker-track { animation: none; }
}

/* ANIMATIONS */
.reveal {
  transition: opacity .7s ease, transform .7s ease;
}
html.js .reveal {
  opacity: 0; transform: translateY(24px);
}
html.js .reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .logo img {
    height: auto;
    width: clamp(156px, 44vw, 196px);
  }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute;
    top: var(--nav-h); left: 0; right: 0; background: var(--bg-elevated);
    padding: 1.5rem; border-bottom: 1px solid var(--border); gap: 1rem;
  }
  .grid-2, .grid-3, .grid-4, .services-grid, .stats, .form-grid,
  .link-grid, .services-hub-grid, .blog-hub-grid, .blog-writers-grid { grid-template-columns: 1fr; }
  .footer-grid, .footer-grid-extended {
    grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: none; }
  .footer-ticker-label { padding: 0 .8rem; font-size: .62rem; }
  .footer-ticker-meta { display: none; }
  .footer-ticker-sep { margin: 0 1rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero h1 { max-width: none; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-band-actions .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero--stacked .hero-badge {
    max-width: 20rem;
    letter-spacing: 0.11em;
    font-size: 0.62rem;
    gap: 0.55rem;
    text-wrap: balance;
  }
  .hero-badge::before,
  .hero-badge::after { width: 28px; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-bg video {
    object-position: center;
    opacity: .42;
  }
  .cta-band { padding: 2.5rem 1.5rem; }
  .video-showcase { grid-template-columns: 1fr !important; }
  .location-grid { grid-template-columns: 1fr; }
  .location-header { text-align: left; margin-bottom: 1.5rem; }
  .location-section--compact .location-header { margin-bottom: 1.25rem; }
}

.video-showcase {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center;
}
.video-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  aspect-ratio: 16/9; background: #000;
}
.video-frame video {
  width: 100%; height: 100%; object-fit: cover; display: block; cursor: pointer;
}
.video-play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.35); cursor: pointer; transition: opacity .3s, background .3s;
  border: none; color: #fff; z-index: 2;
}
.video-play-overlay:hover { background: rgba(0,0,0,.25); }
.video-frame.is-playing .video-play-overlay { opacity: 0; pointer-events: none; }
.video-frame.is-paused .video-play-overlay { opacity: 1; pointer-events: auto; }
.video-frame.is-paused .video-play-overlay .icon-play { display: block; }
.video-frame.is-paused .video-play-overlay .icon-pause { display: none; }
.video-frame.is-playing .video-play-overlay .icon-play,
.video-frame.is-playing .video-play-overlay .icon-pause { display: none; }
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px var(--accent-glow);
  transition: transform .2s;
}
.video-play-overlay:hover .play-btn { transform: scale(1.06); }
.play-btn .icon-pause { display: none; }

.video-controls {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; gap: .5rem;
  padding: .85rem 1rem;
  background: linear-gradient(to top, rgba(10, 18, 32, .95) 0%, rgba(10, 18, 32, .75) 70%, transparent 100%);
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.video-frame.is-active .video-controls { opacity: 1; transform: translateY(0); pointer-events: auto; }
.video-controls[hidden] { display: none !important; }
.video-frame.is-playing .video-controls,
.video-frame.is-paused .video-controls { display: flex; }
.vc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .2rem;
  min-width: 36px; height: 36px; padding: 0 .45rem;
  border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  background: rgba(255,255,255,.06); color: var(--text);
  cursor: pointer; flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s;
}
.vc-btn:hover { background: var(--accent-soft); border-color: var(--border-strong); color: var(--accent-deep); }
.vc-btn span { font-size: .65rem; font-weight: 700; letter-spacing: .02em; }
.vc-play-pause { min-width: 40px; background: var(--accent-soft); border-color: var(--border-strong); }
.vc-play-pause .icon-pause { display: none; }
.video-frame.is-playing .vc-play-pause .icon-play { display: none; }
.video-frame.is-playing .vc-play-pause .icon-pause { display: block; }
.vc-progress-wrap { flex: 1; min-width: 0; display: flex; align-items: center; }
.vc-progress {
  width: 100%; height: 6px; appearance: none; -webkit-appearance: none;
  background: rgba(255,255,255,.12); border-radius: 999px; cursor: pointer;
}
.vc-progress::-webkit-slider-runnable-track {
  height: 6px; border-radius: 999px;
  background: linear-gradient(to right, var(--accent) var(--progress, 0%), rgba(255,255,255,.12) var(--progress, 0%));
}
.vc-progress::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none;
  width: 14px; height: 14px; margin-top: -4px; border-radius: 50%;
  background: var(--accent); border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--accent-soft);
}
.vc-progress::-moz-range-track {
  height: 6px; border-radius: 999px; background: rgba(255,255,255,.12);
}
.vc-progress::-moz-range-progress {
  height: 6px; border-radius: 999px; background: var(--accent);
}
.vc-progress::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 2px solid #fff;
}
.vc-time {
  font-size: .78rem; font-weight: 600; color: var(--text-muted);
  font-variant-numeric: tabular-nums; white-space: nowrap; flex-shrink: 0;
}
@media (max-width: 768px) {
  .vc-btn span { display: none; }
  .vc-time { font-size: .7rem; }
  .video-controls { padding: .65rem .75rem; gap: .35rem; }
}

/* WE ARE */
.we-are-card {
  padding: 2.5rem; border-radius: var(--radius);
  background: linear-gradient(145deg, var(--bg-elevated), #fff9ef);
  border: 1px solid var(--border); height: 100%;
  box-shadow: var(--shadow);
}
.we-are-card h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem;
}

/* PROJECTS */
.projects-scroll {
  display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
}
.projects-scroll::-webkit-scrollbar { height: 6px; }
.projects-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.project-card {
  flex: 0 0 min(340px, 85vw); scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-card);
  transition: transform .3s, border-color .3s;
}
.project-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.project-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.project-card-body { padding: 1.25rem; }
.project-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-soft); padding: .25rem .6rem; border-radius: 4px;
  margin-bottom: .6rem;
}
.project-card h4 { font-weight: 700; margin-bottom: .4rem; }
.project-card p { color: var(--text-muted); font-size: .88rem; }

/* REVIEWS */
.reviews-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.5rem;
}
.google-badge {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
}
.google-badge .rating-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1;
}
.stars { color: var(--accent-hover); letter-spacing: 2px; font-size: 1.1rem; }
.review-card {
  padding: 1.5rem; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border); height: 100%;
}
.review-card .stars { margin-bottom: .75rem; font-size: .95rem; }
.review-card p { color: var(--text-muted); font-size: .92rem; margin-bottom: 1rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; color: #fff;
}
.review-author strong { display: block; font-size: .9rem; }
.review-author span { font-size: .8rem; color: var(--text-muted); }

/* CEO TESTIMONIAL */
.testimonial.ceo-testimonial {
  display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start;
}
.ceo-photo {
  width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--accent); box-shadow: 0 8px 32px var(--accent-glow);
}
@media (max-width: 640px) {
  .testimonial.ceo-testimonial { grid-template-columns: 1fr; text-align: center; }
  .ceo-photo { margin: 0 auto; }
}

/* GALLERY STRIP */
.gallery-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem;
}
.gallery-strip img {
  border-radius: var(--radius-sm); aspect-ratio: 4/3; object-fit: cover;
  border: 1px solid var(--border); transition: transform .3s;
}
.gallery-strip img:hover { transform: scale(1.03); }
@media (max-width: 768px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }

/* FLOATING CTA — desktop: bottom-right pills; mobile: bottom bar */
.floating-cta {
  position: fixed; z-index: 900;
  display: flex;
}
.cta-pill {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .45rem; text-decoration: none;
  font-weight: 600; letter-spacing: .01em;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cta-pill-icon { flex-shrink: 0; }
.cta-pill-label { white-space: nowrap; }
@media (min-width: 769px) {
  .floating-cta {
    flex-direction: column; align-items: flex-end;
    gap: .5rem;
    bottom: 1.5rem; right: 1.25rem;
    top: auto; left: auto;
    transform: none;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .floating-cta .cta-pill {
    padding: .62rem 1rem;
    font-size: .8125rem;
    box-shadow: 0 4px 18px rgba(26, 35, 50, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .floating-cta .cta-pill:hover,
  .floating-cta .cta-pill:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 35, 50, 0.14);
  }
  .floating-cta .cta-pill--call {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 48%, #16a34a 100%);
    color: #fff;
    border: 1px solid rgba(134, 239, 172, 0.45);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.38);
    order: 1;
  }
  .floating-cta .cta-pill--call .cta-pill-icon { color: #fff; }
  .floating-cta .cta-pill--call:hover,
  .floating-cta .cta-pill--call:focus-visible {
    filter: brightness(1.06);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.48);
  }
  .floating-cta .cta-pill--estimate {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 45%, var(--accent-deep) 100%);
    color: #fff;
    border: 1px solid rgba(212, 160, 23, 0.35);
    box-shadow: 0 8px 24px var(--accent-glow);
    order: 2;
  }
  .floating-cta .cta-pill--estimate .cta-pill-icon { color: #fff; }
  .floating-cta .cta-pill--estimate:hover,
  .floating-cta .cta-pill--estimate:focus-visible {
    filter: brightness(1.04);
    box-shadow: 0 12px 32px var(--accent-glow);
  }
  .floating-cta .cta-pill--emergency {
    background: rgba(255, 255, 255, 0.94);
    color: #9f1239;
    border: 1px solid rgba(159, 18, 57, 0.18);
    font-size: .75rem;
    padding: .5rem .85rem;
    order: 3;
  }
  .floating-cta .cta-pill--emergency .cta-pill-icon { color: #dc2626; }
}

/* ACCESSIBILITY WIDGET — header integrated */
.a11y-widget {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.a11y-widget.is-open { z-index: 1105; }
.a11y-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(51, 65, 85, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.05);
  cursor: pointer;
  transition: background .2s, border-color .2s, box-shadow .2s, color .2s, transform .2s;
}
.a11y-trigger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-deep);
}
.a11y-trigger:hover,
.a11y-trigger:focus-visible,
.a11y-widget.is-open .a11y-trigger {
  background: #fff;
  border-color: rgba(184, 134, 11, 0.35);
  color: var(--accent-deep);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.14);
  outline: none;
}
.a11y-trigger.has-active::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(184, 134, 11, 0.25);
}
.a11y-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  width: min(18.5rem, calc(100vw - 1.5rem));
  padding: 0;
  border-radius: calc(var(--radius-sm) + 2px);
  border: 1px solid rgba(184, 134, 11, 0.16);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 16px 40px rgba(26, 35, 50, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  animation: a11y-panel-in .22s ease;
}
.a11y-panel[hidden] { display: none; }
@keyframes a11y-panel-in {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.a11y-panel-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.08);
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.65), rgba(255, 255, 255, 0));
}
.a11y-panel-head-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.14), rgba(212, 160, 23, 0.08));
  color: var(--accent-deep);
  flex-shrink: 0;
}
.a11y-panel-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.25;
}
.a11y-panel-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0.15rem 0 0;
  line-height: 1.35;
}
.a11y-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem;
}
.a11y-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.a11y-option:hover,
.a11y-option:focus-visible {
  background: var(--bg-surface);
  border-color: rgba(51, 65, 85, 0.08);
  outline: none;
}
.a11y-option.is-active {
  background: var(--accent-soft);
  border-color: rgba(184, 134, 11, 0.22);
  box-shadow: inset 0 0 0 1px rgba(184, 134, 11, 0.08);
}
.a11y-option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(51, 65, 85, 0.1);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--accent-deep);
  flex-shrink: 0;
}
.a11y-option-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.a11y-option-copy strong {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
}
.a11y-option-copy small {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.a11y-option-switch {
  position: relative;
  width: 2.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(51, 65, 85, 0.14);
  flex-shrink: 0;
  transition: background .2s;
}
.a11y-option-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(1.35rem - 4px);
  height: calc(1.35rem - 4px);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(26, 35, 50, 0.18);
  transition: transform .2s ease;
}
.a11y-option.is-active .a11y-option-switch {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent-deep));
}
.a11y-option.is-active .a11y-option-switch::after {
  transform: translateX(1rem);
}
.a11y-panel-footer {
  display: block;
  padding: 0.75rem 1rem 0.95rem;
  border-top: 1px solid rgba(51, 65, 85, 0.08);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-deep);
  text-align: center;
  background: rgba(255, 249, 239, 0.35);
  transition: background .2s, color .2s;
}
.a11y-panel-footer:hover {
  background: rgba(255, 249, 239, 0.75);
  color: var(--accent);
}
@media (max-width: 768px) {
  .a11y-trigger {
    width: 2.25rem;
    height: 2.25rem;
  }
  .a11y-panel {
    right: -0.25rem;
    width: min(18.5rem, calc(100vw - 1rem));
  }
}
@media (prefers-reduced-motion: reduce) {
  .a11y-panel { animation: none; }
}

/* COOKIE CONSENT — compact corner banner */
.cookie-consent {
  position: fixed;
  z-index: 940;
  bottom: 1.25rem;
  left: 1.25rem;
  max-width: min(22rem, calc(100vw - 2.5rem));
  padding: .9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 28px rgba(26, 35, 50, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: cookie-slide-in .45s ease;
}
.cookie-consent[hidden] { display: none; }
.cookie-consent-text {
  font-size: .8125rem; line-height: 1.55;
  color: var(--text-muted); margin-bottom: .75rem;
}
.cookie-consent-text a { color: var(--accent-deep); font-weight: 600; }
.cookie-consent-actions { display: flex; gap: .5rem; }
@keyframes cookie-slide-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Accessibility preference modes */
html.a11y-text-lg { font-size: 112.5%; }
html.a11y-contrast {
  --bg: #fff;
  --bg-elevated: #fff;
  --bg-card: #fff;
  --text: #000;
  --text-muted: #222;
  --border: rgba(0, 0, 0, 0.35);
}
html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

/* REVIEWS */
.reviews-hero-stats {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-top: 2rem;
}
.review-stat-card {
  flex: 1 1 200px; max-width: 280px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.35rem 1.5rem; text-align: center;
}
.review-stat-card strong {
  display: block; font-family: var(--font-display); font-size: 2rem;
  font-weight: 800; color: var(--accent); line-height: 1.1;
}
.review-stat-card span { color: var(--text-muted); font-size: .9rem; }
.review-stat-card--google { border-color: rgba(66,133,244,.25); }
.review-tabs {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem;
}
.review-tab {
  appearance: none; border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text-muted); border-radius: 999px; padding: .55rem 1.1rem;
  font-weight: 600; font-size: .88rem; cursor: pointer; transition: .2s;
}
.review-tab:hover { border-color: var(--border-strong); color: var(--text); }
.review-tab.is-active {
  background: var(--accent-soft); border-color: var(--accent); color: var(--accent-deep);
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.35rem 1.25rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: border-color .2s, box-shadow .2s;
}
.review-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow); }
.review-card-top { display: flex; gap: .85rem; align-items: flex-start; }
.review-card-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--accent-soft); object-fit: cover;
}
.review-card-head { flex: 1; min-width: 0; }
.review-card-name-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .55rem;
  margin-bottom: .35rem;
}
.review-card-name { font-size: 1rem; }
.review-stars { display: flex; gap: .15rem; color: rgba(255,255,255,.2); margin-bottom: .25rem; }
.review-star.is-filled { color: var(--accent-hover); }
.review-card-date { font-size: .78rem; color: var(--text-muted); }
.review-card-meta { font-size: .82rem; color: var(--accent); margin: 0; font-weight: 600; }
.review-card-headline {
  font-size: .98rem; font-weight: 700; color: var(--text);
  margin: .75rem 0 .5rem; font-style: normal; line-height: 1.35;
}
.review-card-text { margin: 0; color: var(--text-muted); line-height: 1.65; font-size: .93rem; }
.review-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; padding: .2rem .5rem; border-radius: 999px;
}
.review-badge--google {
  background: rgba(66,133,244,.12); color: #93c5fd; border: 1px solid rgba(66,133,244,.25);
}
.review-badge--site {
  background: var(--accent-soft); color: var(--accent-deep); border: 1px solid var(--border-strong);
}
.review-badge--pending {
  background: rgba(16,185,129,.1); color: #6ee7b7; border: 1px solid rgba(16,185,129,.25);
}
.review-form-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px); padding: 2rem;
}
.review-star-input {
  display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: .35rem;
}
.review-star-input label {
  cursor: pointer; font-size: 1.75rem; color: rgba(255,255,255,.2); line-height: 1;
}
.review-star-input input { position: absolute; opacity: 0; pointer-events: none; }
.review-star-input label:hover,
.review-star-input label:hover ~ label,
.review-star-input input:checked ~ span,
.review-star-input label:has(input:checked),
.review-star-input label:has(input:checked) ~ label { color: var(--accent-hover); }
.review-star-input label span { display: block; }
.review-form-note { font-size: .82rem; color: var(--text-muted); margin: .5rem 0 0; }
.review-form-status { margin-top: 1rem; font-size: .9rem; }
.review-form-status.is-success { color: #6ee7b7; }
.review-form-status.is-error { color: var(--danger-bright); }
.review-form-status.is-info { color: var(--text-muted); }
.review-empty { grid-column: 1 / -1; text-align: center; color: var(--text-muted); padding: 2rem; }
.review-google-cta {
  text-align: center; margin-top: 1.5rem; padding: 1.25rem;
  border-radius: var(--radius); border: 1px dashed rgba(66,133,244,.3);
  background: rgba(66,133,244,.06);
}
.review-google-cta a { color: #93c5fd; font-weight: 600; }
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-hero-stats { flex-direction: column; align-items: stretch; }
  .review-stat-card { max-width: none; }
  .reviews-category-grid { grid-template-columns: 1fr; }
}

/* REVIEWS — service category blocks below grid */
.reviews-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.review-category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: border-color .2s, box-shadow .2s;
}
.review-category-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}
.review-category-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--text);
}
.review-category-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.6;
}
.review-category-themes {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.55;
}
.review-category-themes li + li { margin-top: .35rem; }
.review-theme-quote {
  margin: .15rem 0 0;
  padding: .85rem 1rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--accent-soft);
}
.review-theme-quote p {
  margin: 0 0 .35rem;
  font-size: .9rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}
.review-theme-quote cite {
  font-size: .78rem;
  font-style: normal;
  color: var(--accent-deep);
  font-weight: 600;
}
.review-category-links {
  margin: auto 0 0;
  font-size: .88rem;
  font-weight: 600;
}
.review-category-links a { color: var(--accent-deep); }
.review-category-links a:hover { color: var(--accent-hover); }

/* MARQUEE */
.marquee {
  overflow: hidden; border-block: 1px solid var(--border);
  background: var(--bg-elevated); padding: 1rem 0;
  margin-top: 1.5rem; position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: .5rem;
  white-space: nowrap; color: var(--text-muted); font-size: .9rem; font-weight: 500;
}
.marquee-item svg { color: var(--accent); flex-shrink: 0; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92); display: none;
  align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer;
}
