@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand */
  --primary:         #1A3FA8;
  --primary-dark:    #122d7a;
  --primary-light:   #2e55c8;
  --primary-ghost:   rgba(26, 63, 168, 0.10);
  --accent:          #E8B341;
  --accent-dark:     #c9952a;
  --accent-light:    #f5ca6e;

  /* Neutrals */
  --ink:             #111418;
  --ink-mid:         #2a2f38;
  --ink-muted:       #5C6470;
  --steel:           #5C6470;
  --steel-light:     #8a9099;
  --bone:            #F6F4EE;
  --bone-dark:       #ede9de;
  --sand:            #E3DED2;
  --sand-dark:       #cec8b8;
  --white:           #ffffff;

  /* Surfaces */
  --tile-surface:    var(--bone);
  --tile-border:     rgba(17, 20, 24, 0.10);
  --tile-border-dark: rgba(17, 20, 24, 0.16);
  --surface-2:       rgba(17, 20, 24, 0.04);
  --surface-dark:    #0d1014;

  /* Typography */
  --font-display:    'Bricolage Grotesque', sans-serif;
  --font-body:       'Inter', sans-serif;

  /* Spacing */
  --section-pad:     clamp(64px, 8vw, 120px);
  --tile-gap:        16px;
  --tile-radius:     22px;
  --tile-pad:        clamp(20px, 3vw, 36px);

  /* Shadows */
  --shadow-sm:       0 2px 8px rgba(17,20,24,0.08);
  --shadow-md:       0 8px 24px -4px rgba(17,20,24,0.12);
  --shadow-lg:       0 18px 48px -12px rgba(17,20,24,0.18);
  --shadow-pill:     0 18px 40px -10px rgba(26,63,168,0.45);

  /* Borders */
  --border:          rgba(17, 20, 24, 0.10);
  --border-strong:   rgba(17, 20, 24, 0.18);

  /* Neutral muted alias */
  --neutral-muted:   #5C6470;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease;
}

a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.wide-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 48px);
}

.bleed {
  width: 100%;
  max-width: none;
}

.section {
  padding-block: var(--section-pad);
}

.section-no-top {
  padding-top: 0;
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.util-bar {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.util-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 48px);
}

.util-left,
.util-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.util-phone,
.util-email,
.util-hours {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--bone);
  white-space: nowrap;
}

.util-phone a,
.util-email a {
  color: var(--bone);
  transition: color 150ms;
}

.util-phone a:hover,
.util-email a:hover {
  color: var(--accent);
  text-decoration: none;
}

.util-text {
  font-size: 12px;
}

.util-sep,
.util-divider {
  width: 1px;
  height: 14px;
  background: rgba(246,244,238,0.2);
}

.util-badge,
.top-bar-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
}

.util-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Top bar aliases */
.top-bar {
  background: var(--ink);
  color: var(--bone);
  font-size: 12px;
  letter-spacing: 0.04em;
  position: sticky;
  top: 0;
  z-index: 900;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(246,244,238,0.2);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 42px;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(17,20,24,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 48px);
}

/* Logo */
.nav-logo,
.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-name,
.footer-logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.nav-logo-accent,
.footer-logo-accent {
  color: var(--primary);
}

.nav-logo-sub,
.footer-logo-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 2px;
}

/* Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 150ms;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--primary);
  text-decoration: none;
}

.nav-active {
  color: var(--primary) !important;
  font-weight: 600 !important;
}

/* Nav CTA */
.nav-cta {
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 200ms, transform 150ms;
  white-space: nowrap;
}

.nav-cta-link:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 200ms ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  /* Mobile open state no longer needed at desktop */
  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 899px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--primary);
    padding: 20px clamp(16px, 4vw, 40px);
    gap: 4px;
    box-shadow: var(--shadow-md);
    z-index: 100;
  }

  .nav-links.open a {
    padding-block: 10px;
    width: 100%;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open a:last-child {
    border-bottom: none;
  }

  .nav-inner {
    position: relative;
  }

  .nav-cta {
    display: flex;
  }

  .nav-cta-link {
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* ============================================================
   BENTO TILE FOUNDATION
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: var(--tile-gap);
}

.tile {
  border-radius: var(--tile-radius);
  border: 1px solid var(--tile-border);
  padding: var(--tile-pad);
  overflow: hidden;
  position: relative;
  background: var(--tile-surface);
}

.tile.tile-white {
  background: var(--white);
  border-color: var(--tile-border);
}

.tile.tile-bone {
  background: var(--bone);
}

.tile.tile-ink {
  background: var(--ink);
  color: var(--bone);
  border-color: transparent;
}

.tile.tile-cobalt,
.tile.why-tile-cobalt {
  background: var(--primary);
  color: var(--white);
  border-color: transparent;
}

.tile-photo {
  padding: 0 !important;
  border-color: var(--tile-border-dark);
}

.tile-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Big label / number inside tiles */
.tile-big-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 120px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.tile-big-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 10px;
}

.tile-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}

.tile-phone-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.tile-email-addr {
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--primary);
  word-break: break-all;
}

.tile-emg-head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
}

.tile-emg-body {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
}

.tile-hours-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding-block: 4px;
  border-bottom: 1px solid var(--border);
}

.tile-hours-note {
  font-size: 11px;
  color: var(--steel);
  margin-top: 8px;
  font-style: italic;
}

/* Emg head/body aliases at top level */
.emg-head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.02em;
  color: var(--white);
}

.emg-body {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin-top: 8px;
}

/* ============================================================
   HERO BENTO
   ============================================================ */
#hero,
.hero-bento {
  background: var(--bone-dark);
  padding-block: clamp(32px, 5vw, 64px);
}

.hero-bento-inner,
.hero-bento-grid,
.hero-grid {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 48px);
}

.hero-bento-grid,
.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: var(--tile-gap);
}

/* Main hero tile */
.hero-tile-main,
.h-tile-main {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  background: var(--white);
  border-radius: var(--tile-radius);
  border: 1px solid var(--tile-border);
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.hero-tile-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(26,63,168,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bento-eyebrow,
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}

.hero-headline-accent {
  color: var(--primary);
}

.hero-display-name {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.hero-sub,
.hero-page-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 520px;
  margin-top: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* CTA tile (cobalt) */
.hero-cta-tile,
.hero-tile-creds {
  grid-column: 10 / 13;
  grid-row: 1 / 2;
  background: var(--primary);
  border-radius: var(--tile-radius);
  border: none;
  padding: var(--tile-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  overflow: hidden;
  position: relative;
}

.hero-cta-tile::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.hero-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.hero-cta-phone,
.contact-big-phone {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--white);
}

/* Photo tile */
.hero-tile-photo,
.hero-photo-tile {
  grid-column: 7 / 10;
  grid-row: 1 / 3;
  padding: 0;
  border-radius: var(--tile-radius);
  overflow: hidden;
  border: 1px solid var(--tile-border-dark);
  position: relative;
  min-height: 300px;
}

.hero-photo-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-tile,
.h-tile-photo {
  grid-column: 11 / 13;
  grid-row: 1 / 3;
  border-radius: var(--tile-radius);
  border: 1px solid var(--tile-border-dark);
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}

.hero-tile-photo img,
.hero-photo-tile img,
.h-tile-photo img,
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Stat tile */
.hero-stat-tile,
.hero-tile-years {
  grid-column: 10 / 12;
  grid-row: 2 / 3;
  background: var(--bone);
  border-radius: var(--tile-radius);
  border: 1px solid var(--tile-border);
  padding: var(--tile-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-stat-num,
.hero-years-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.hero-stat-label,
.hero-years-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 6px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.hero-stat-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 1px;
}

.hero-license-tile,
.hero-years-tile {
  grid-column: 12 / 13;
  grid-row: 2 / 3;
  background: var(--ink);
  border-radius: var(--tile-radius);
  border: none;
  padding: var(--tile-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero chips / trust row */
.hero-chips,
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-chip,
.h-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  white-space: nowrap;
}

.hero-chip-dot,
.h-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* Hero actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Hero main — image-backed tile */
.hero-main {
  background: linear-gradient(135deg, rgba(13,16,20,0.70) 0%, rgba(13,16,20,0.35) 100%), url('img-hero.jpg') center/cover no-repeat;
  position: relative;
}

.hero-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: inherit;
  pointer-events: none;
}

.hero-main .hero-eyebrow,
.hero-main .hero-title,
.hero-main .hero-sub,
.hero-main .hero-actions,
.hero-main h1 {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.hero-main .hero-actions {
  position: relative;
  z-index: 1;
}

/* Horizontal tile selectors for alternative hero layouts */
.h-tile {
  border-radius: var(--tile-radius);
  border: 1px solid var(--tile-border);
  padding: var(--tile-pad);
  overflow: hidden;
  position: relative;
  background: var(--tile-surface);
}

.h-tile-phone { background: var(--primary); border-color: transparent; color: var(--white); }
.h-tile-email { background: var(--white); }
.h-tile-emergency { background: var(--ink); border-color: transparent; color: var(--white); }
.h-tile-hours { background: var(--bone); }

/* License / shield */
.license-shield {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: -0.01em;
  color: var(--white);
}

.license-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.license-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms ease, transform 150ms ease, box-shadow 200ms ease, border-color 200ms ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary,
.btn-call-now {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-call-now:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(26,63,168,0.4);
  color: var(--white);
  text-decoration: none;
}

.btn-ghost,
.cta-btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-ghost:hover,
.cta-btn-ghost:hover {
  background: var(--primary-ghost);
  transform: translateY(-2px);
  color: var(--primary);
  text-decoration: none;
}

.btn-white,
.cta-btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover,
.cta-btn-white:hover {
  background: var(--bone);
  transform: translateY(-2px);
  color: var(--primary);
  text-decoration: none;
}

.btn-cobalt,
.btn-emg {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-cobalt:hover,
.btn-emg:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--white);
  text-decoration: none;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(32px, 4vw, 56px);
}

.trust-strip-inner,
.trust-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.trust-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 16px;
}

.trust-tile-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-ghost);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--primary);
}

.trust-tile-head {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.trust-tile-sub {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.5;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee,
.marquee-strip {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bone);
  cursor: default;
}

.marquee-strip {
  background: var(--primary);
  border-color: transparent;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee:hover .marquee-track,
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(14px, 1.6vw, 20px);
  color: var(--ink);
  white-space: nowrap;
}

.marquee-strip .marquee-item {
  color: rgba(255,255,255,0.9);
}

.marquee-item-accent {
  color: var(--primary);
  font-weight: 700;
}

.marquee-strip .marquee-item-accent {
  color: var(--accent);
}

.marquee-accent {
  color: var(--primary);
}

.marquee-dot,
.marquee-sep {
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.marquee-strip .marquee-dot,
.marquee-strip .marquee-sep {
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   SERVICES BENTO
   ============================================================ */
#services,
.services-bento {
  background: var(--ink);
  padding-block: var(--section-pad);
}

.services-grid,
.services-bento .bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--tile-gap);
}

/* Lead service tile (7/12) */
.service-tile:first-child,
.svc-residential {
  grid-column: 1 / 8;
}

/* Secondary tiles */
.svc-drain {
  grid-column: 8 / 13;
}

.svc-emergency {
  grid-column: 1 / 6;
}

.svc-waterheater {
  grid-column: 6 / 10;
}

.svc-filtration {
  grid-column: 10 / 13;
}

.svc-commercial {
  grid-column: 1 / 5;
}

.svc-gasline {
  grid-column: 5 / 9;
}

.svc-excavation {
  grid-column: 9 / 13;
}

/* Service tile base */
.service-tile,
.svc-text-tile {
  border-radius: var(--tile-radius);
  border: 1px solid rgba(255,255,255,0.08);
  padding: var(--tile-pad);
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.04);
  color: var(--bone);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out, background 250ms;
}

.service-tile:hover,
.svc-text-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.07);
}

.service-tile.tile-cobalt,
.svc-on-cobalt {
  background: var(--primary);
  border-color: transparent;
}

.svc-on-ink {
  background: var(--surface-dark);
  border-color: rgba(255,255,255,0.06);
}

/* Photo tile within services */
.svc-photo-tile {
  border-radius: var(--tile-radius);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
  padding: 0;
}

.svc-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}

/* Service text elements */
.svc-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-ghost);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.service-tile.tile-cobalt .svc-icon,
.svc-on-cobalt .svc-icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.svc-tile-name,
.service-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 10px;
}

.svc-tile-desc,
.service-desc,
.svc-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(246,244,238,0.65);
}

.svc-tile-link,
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-top: 16px;
  text-decoration: none;
  transition: gap 200ms;
}

.svc-tile-link:hover,
.service-link:hover {
  gap: 10px;
  color: var(--accent-light);
  text-decoration: none;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 10px;
  color: rgba(246,244,238,0.8);
}

.service-emergency,
.service-phone-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 12px;
}

.service-feature {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.service-tile-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-tile-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* Service card hover (generic) */
.service-card {
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}

/* Section header over dark */
.services-bento .section-eyebrow,
.services-bento .section-heading {
  color: var(--bone);
}

.services-bento .section-sub {
  color: rgba(246,244,238,0.65);
}

/* ============================================================
   SECTION HEADINGS (shared)
   ============================================================ */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-heading,
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-header {
  margin-bottom: clamp(32px, 4vw, 56px);
}

.section-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--steel);
  line-height: 1.65;
  max-width: 600px;
  margin-top: 14px;
}

/* ============================================================
   STATS / STAT TILES
   ============================================================ */
.stats-tile-row,
.stats-inner,
.stats-grid {
  background: var(--primary);
  padding-block: clamp(48px, 6vw, 96px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.stat,
.stat-tile {
  text-align: center;
  padding: 24px 16px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.04em;
}

.stat-cobalt .stat-num,
.cobalt-stat .stat-num {
  color: var(--accent);
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  font-weight: 600;
}

.stat-plus {
  color: var(--accent);
}

/* Mini stat */
.stat-mini {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-mini-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1;
}

.stat-mini-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.stat-mini-star {
  color: var(--accent);
  font-size: 16px;
}

/* ============================================================
   SERVICE FEATURE (alternating split sections)
   ============================================================ */
.service-feature,
.feature-bento,
.feature-bento-rev {
  padding-block: var(--section-pad);
  background: var(--bone);
}

.feature-bento-rev {
  background: var(--white);
}

.feature-body,
.feature-copy {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.feature-bento-rev .feature-body,
.feature-bento-rev .feature-copy {
  direction: rtl;
}

.feature-bento-rev .feature-body > *,
.feature-bento-rev .feature-copy > * {
  direction: ltr;
}

.feature-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-photo-main {
  border-radius: var(--tile-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.feature-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.feature-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

.feature-copy p,
.feature-body p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--steel);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-mid);
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 6px;
}

.feature-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.feature-badge,
.feature-badge-blue,
.feature-badge-inv {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
}

.feature-badge {
  background: var(--sand);
  color: var(--ink-mid);
  border: 1px solid var(--sand-dark);
}

.feature-badge-blue {
  background: var(--primary-ghost);
  color: var(--primary);
  border: 1px solid rgba(26,63,168,0.15);
}

.feature-badge-inv {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.feature-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.feature-big-num,
.feature-big-num-white {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.feature-big-num-white {
  color: var(--white);
}

.feature-big-label,
.feature-big-label-white {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 8px;
}

.feature-big-label-white {
  color: rgba(255,255,255,0.7);
}

.feature-divider,
.feature-divider-inv {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 24px;
}

.feature-divider-inv {
  border-color: rgba(255,255,255,0.15);
}

/* ============================================================
   ABOUT BENTO
   ============================================================ */
#about,
.about-bento {
  background: var(--bone);
  padding-block: var(--section-pad);
}

.about-grid {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 48px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--tile-gap);
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

.about-body {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--steel);
}

.about-text-tile {
  grid-column: 1 / 7;
  background: var(--white);
  border-radius: var(--tile-radius);
  border: 1px solid var(--tile-border);
  padding: var(--tile-pad);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-photo-tile {
  grid-column: 7 / 11;
  border-radius: var(--tile-radius);
  overflow: hidden;
  position: relative;
  min-height: 360px;
  padding: 0;
  border: 1px solid var(--tile-border-dark);
}

.about-photo-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  line-height: 1;
}

.badge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.about-tile-creds,
.about-credentials {
  grid-column: 11 / 13;
  background: var(--primary);
  border-radius: var(--tile-radius);
  border: none;
  padding: var(--tile-pad);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-tile-story {
  grid-column: 1 / 5;
  background: var(--ink);
  border-radius: var(--tile-radius);
  border: none;
  padding: var(--tile-pad);
  color: var(--white);
}

.about-tile-locations {
  grid-column: 5 / 9;
  background: var(--bone);
  border-radius: var(--tile-radius);
  border: 1px solid var(--tile-border);
  padding: var(--tile-pad);
}

.about-tile-shop {
  grid-column: 9 / 13;
  background: var(--sand);
  border-radius: var(--tile-radius);
  border: 1px solid var(--sand-dark);
  padding: var(--tile-pad);
}

/* Credentials */
.cred-row,
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cred-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.cred-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.creds-label-small,
.creds-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.loc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding-block: 5px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-mid);
}

.loc-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 12px;
}

.loc-sub {
  font-size: 12px;
  color: var(--steel);
  margin-top: 8px;
}

/* Story section */
.story-heading {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
}

.story-body {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(246,244,238,0.72);
}

.story-values {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-value-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.story-value-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.story-value-text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(246,244,238,0.75);
}

/* ============================================================
   WHY BENTO
   ============================================================ */
.why-bento {
  background: var(--ink);
  padding-block: var(--section-pad);
}

.why-inner {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 48px);
}

.why-header {
  margin-bottom: clamp(32px, 4vw, 56px);
  color: var(--bone);
}

.why-header .section-eyebrow {
  color: var(--accent);
}

.why-header .section-heading {
  color: var(--bone);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--tile-gap);
}

.why-tile {
  border-radius: var(--tile-radius);
  border: 1px solid rgba(255,255,255,0.08);
  padding: var(--tile-pad);
  background: rgba(255,255,255,0.04);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-tile-big {
  grid-column: span 5;
  background: var(--primary);
  border-color: transparent;
}

.why-tile-cobalt {
  background: var(--primary);
  border-color: transparent;
  color: var(--white);
}

/* ============================================================
   EMERGENCY BENTO
   ============================================================ */
.emergency-bento,
.emergency-inner {
  background: #0b1523;
  padding-block: var(--section-pad);
}

.emergency-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.emergency-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.emergency-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
}

.emergency-body {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: rgba(246,244,238,0.65);
}

.emergency-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.emergency-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(246,244,238,0.8);
}

.emergency-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.emergency-photo {
  border-radius: var(--tile-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.emergency-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emergency-cta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,244,238,0.55);
  margin-bottom: 6px;
}

.emergency-overlay-stat,
.overlay-stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}

.overlay-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,244,238,0.55);
  margin-top: 4px;
}

.truck-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,21,35,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.truck-overlay-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* ============================================================
   GALLERY BENTO
   ============================================================ */
#gallery,
.gallery-bento {
  background: var(--bone-dark);
  padding-block: var(--section-pad);
}

.gallery-header {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 48px);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.gallery-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

.gallery-grid {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 48px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: var(--tile-gap);
}

.gallery-tile {
  border-radius: var(--tile-radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--tile-border-dark);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  transition: transform 500ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-tile-main,
.gallery-large {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  min-height: 400px;
}

.gallery-tile-b {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
  min-height: 200px;
}

.gallery-tile-c {
  grid-column: 8 / 13;
  grid-row: 2 / 3;
  min-height: 200px;
}

.gallery-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 6px;
}

.gallery-cta-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.gallery-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 12px;
  text-decoration: none;
  transition: gap 200ms;
}

.gallery-cta-link:hover {
  gap: 10px;
  text-decoration: none;
}

/* ============================================================
   FINANCING STRIP
   ============================================================ */
.financing-strip {
  background: var(--sand);
  border-top: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
  padding-block: clamp(40px, 5vw, 72px);
}

.financing-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.financing-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.financing-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--steel);
  margin-top: 12px;
}

.financing-lenders {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lender-badge {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-mid);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--primary);
  padding-block: clamp(56px, 7vw, 100px);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-band-inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 36px;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cta-phone-big {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  display: block;
  margin-bottom: 28px;
}

.cta-phone-big a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 200ms;
}

.cta-phone-big a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.cta-tile-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.cta-tile-phone {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

.cta-tile-guarantee {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ============================================================
   CONTACT BENTO
   ============================================================ */
#contact,
.contact-section {
  background: var(--bone);
  padding-block: var(--section-pad);
}

.contact-section-inner {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 48px);
}

.contact-header {
  margin-bottom: clamp(32px, 4vw, 56px);
}

.contact-grid,
.contact-bento,
.contact-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--tile-gap);
}

/* Contact tiles */
.contact-tile,
.c-tile {
  border-radius: var(--tile-radius);
  border: 1px solid var(--tile-border);
  padding: var(--tile-pad);
  overflow: hidden;
  position: relative;
  background: var(--white);
}

.contact-tile-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 10px;
}

.contact-tile-sub {
  font-size: 13px;
  color: var(--steel);
  margin-top: 6px;
}

.contact-phone-tile,
.c-tile-emergency-cta {
  grid-column: 1 / 5;
  background: var(--primary);
  border-color: transparent;
  color: var(--white);
}

.contact-phone-tile .contact-tile-label,
.c-tile-emergency-cta .contact-tile-label {
  color: rgba(255,255,255,0.6);
}

.contact-big-phone {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}

.contact-big-phone a {
  color: var(--white);
  text-decoration: none;
}

.contact-email-tile,
.c-tile-hours-detail {
  grid-column: 5 / 8;
  background: var(--ink);
  border-color: transparent;
  color: var(--white);
}

.contact-email-link {
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 16px);
  color: var(--accent);
  word-break: break-all;
}

.contact-email-link:hover {
  color: var(--accent-light);
}

.contact-hours-tile,
.c-tile-locations {
  grid-column: 8 / 10;
  background: var(--sand);
  border-color: var(--sand-dark);
}

.contact-photo-tile {
  grid-column: 10 / 13;
  border-radius: var(--tile-radius);
  overflow: hidden;
  position: relative;
  padding: 0;
  min-height: 240px;
  border: 1px solid var(--tile-border-dark);
}

.contact-photo-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-truck-tile {
  grid-column: 1 / 7;
  border-radius: var(--tile-radius);
  overflow: hidden;
  position: relative;
  padding: 0;
  min-height: 240px;
  border: 1px solid var(--tile-border-dark);
}

.contact-truck-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-area-tile {
  grid-column: 7 / 13;
  background: var(--bone);
  border: 1px solid var(--tile-border);
  border-radius: var(--tile-radius);
  padding: var(--tile-pad);
}

.c-tile-form {
  grid-column: 1 / 13;
  background: var(--white);
  border: 1px solid var(--tile-border);
  border-radius: var(--tile-radius);
  padding: var(--tile-pad);
}

/* Hours */
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 6px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-mid);
}

.hours-day {
  font-weight: 600;
  color: var(--ink);
}

.hours-time {
  color: var(--steel);
}

.hours-emergency {
  background: rgba(26,63,168,0.08);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.hours-emg-note {
  font-size: 11px;
  color: var(--steel);
  font-style: italic;
  margin-top: 4px;
}

/* Locations */
.location-entry {
  padding-block: 8px;
  border-bottom: 1px solid var(--border);
}

.location-city {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.location-state {
  font-size: 12px;
  color: var(--steel);
}

.location-service-area {
  font-size: 12px;
  color: var(--steel);
}

.location-tag {
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--primary-ghost);
  color: var(--primary);
  border-radius: 999px;
  padding: 2px 8px;
  margin-top: 4px;
}

.location-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 12px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row-single {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bone);
  transition: border-color 200ms, box-shadow 200ms;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,63,168,0.12);
  background: var(--white);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C6470' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-note {
  font-size: 12px;
  color: var(--steel);
  line-height: 1.5;
}

.form-submit {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 200ms, transform 150ms, box-shadow 200ms;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(26,63,168,0.4);
}

/* ============================================================
   BRANDS / CREDENTIALS BENTO
   ============================================================ */
.brands-bento {
  background: var(--white);
  padding-block: var(--section-pad);
}

.brands-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.brands-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brands-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

.brands-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--steel);
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.brands-list-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--white), transparent);
}

.brands-note {
  font-size: 12px;
  color: var(--steel);
  font-style: italic;
  margin-top: 4px;
}

.brands-photo {
  border-radius: var(--tile-radius);
  overflow: hidden;
  position: relative;
}

.brands-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   PROCESS STRIP
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--bone);
  padding-block: var(--section-pad);
}

.faq-inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.faq-header {
  margin-bottom: clamp(32px, 4vw, 56px);
  text-align: center;
}

.faq-grid {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-strong);
}

details.faq,
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

details.faq > summary,
.faq-question {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 4px;
  user-select: none;
  transition: color 150ms;
}

details.faq > summary::-webkit-details-marker { display: none; }

details.faq > summary::after,
.faq-chevron {
  content: "+";
  font-weight: 300;
  font-size: 22px;
  color: var(--steel);
  transition: transform 200ms, color 200ms;
  flex-shrink: 0;
}

details.faq[open] > summary {
  color: var(--primary);
}

details.faq[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  font-size: 15px;
  line-height: 1.65;
  color: var(--steel);
  padding-bottom: 10px;
}

details.faq p {
  margin-top: 12px;
  line-height: 1.6;
  font-size: 15px;
  color: var(--steel);
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.review-stars svg {
  color: var(--accent);
  width: 18px;
  height: 18px;
}

.review-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
  display: flex;
  gap: 2px;
}

.review-quote {
  font-size: 17px;
  line-height: 1.55;
  margin: 14px 0;
  color: var(--ink);
}

.review-attribution {
  font-size: 13px;
  color: var(--neutral-muted);
  opacity: 0.75;
}

/* ============================================================
   CREDENTIALS / CRED CHIPS
   ============================================================ */
.footer-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.footer-cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  border-radius: 999px;
  padding: 4px 12px;
}

.footer-cert,
.footer-cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(246,244,238,0.7);
}

.footer-cert-dot,
.footer-license-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.footer-cert-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer,
.footer {
  background: var(--ink);
  color: var(--bone);
  padding-top: clamp(56px, 7vw, 100px);
}

.footer-inner {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 48px);
}

.footer-grid,
.footer-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-wordmark,
.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bone);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(246,244,238,0.55);
  line-height: 1.55;
  max-width: 280px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-head,
.footer-col-heading,
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246,244,238,0.45);
  margin-bottom: 4px;
}

.footer-nav,
.footer-links,
.footer-services,
.footer-areas,
.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a,
.footer-links a,
.footer-services a,
.footer-areas a {
  font-size: 14px;
  color: rgba(246,244,238,0.72);
  text-decoration: none;
  transition: color 150ms;
}

.footer-nav a:hover,
.footer-links a:hover,
.footer-services a:hover,
.footer-areas a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-contact,
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-row,
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(246,244,238,0.72);
}

.footer-row-icon {
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-phone,
.footer-email {
  color: rgba(246,244,238,0.85);
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms;
}

.footer-phone:hover,
.footer-email:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-hours {
  font-size: 12px;
  color: rgba(246,244,238,0.55);
  line-height: 1.6;
}

.footer-certs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: rgba(246,244,238,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(246,244,238,0.35);
  text-decoration: none;
  transition: color 150ms;
}

.footer-bottom-links a:hover {
  color: rgba(246,244,238,0.7);
  text-decoration: none;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ============================================================
   MOBILE CALL PILL (mandatory)
   ============================================================ */
.mobile-call-pill {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-pill);
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 200ms, transform 150ms;
}

.mobile-call-pill:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 899px) {
  .mobile-call-pill {
    display: flex;
  }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up,
.fade-up-d1,
.fade-up-d2,
.fade-up-d3 {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-up-d1 { transition-delay: 100ms; }
.fade-up-d2 { transition-delay: 200ms; }
.fade-up-d3 { transition-delay: 320ms; }

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 550ms ease, transform 550ms ease;
}

.stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.fade-up.visible,
.fade-up-d1.visible,
.fade-up-d2.visible,
.fade-up-d3.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible,
.stagger.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   MISC COMPONENT STYLES
   ============================================================ */

/* Credentials / chips on dark tiles */
.hero-tile-creds .cred-chip,
.about-tile-creds .cred-chip {
  color: rgba(255,255,255,0.85);
}

/* Stat rows on hero */
.hero-trust-row .hero-chip {
  background: var(--primary-ghost);
  border-color: rgba(26,63,168,0.15);
  color: var(--ink-mid);
}

/* Overlay stats */
.emergency-overlay-stat {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(17,20,24,0.82);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
}

/* Service bento grid IDs */
#service-residential { grid-column: 1 / 8; }
#service-drain       { grid-column: 8 / 13; }
#service-emergency   { grid-column: 1 / 6; }
#service-waterheater { grid-column: 6 / 10; }
#service-filtration  { grid-column: 10 / 13; }
#service-commercial  { grid-column: 1 / 5; }
#service-gasline     { grid-column: 5 / 9; }
#service-excavation  { grid-column: 9 / 13; }

/* ============================================================
   RESPONSIVE — TABLET (900px)
   ============================================================ */
@media (max-width: 1199px) {
  .footer-grid,
  .footer-row {
    grid-template-columns: 1fr 1fr;
  }

  .brands-inner {
    grid-template-columns: 1fr;
  }

  .financing-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 899px) {
  :root {
    --tile-gap: 12px;
    --tile-radius: 16px;
    --tile-pad: 20px;
  }

  /* Bento collapse */
  .bento,
  .hero-bento-grid,
  .hero-grid,
  .about-grid,
  .contact-grid,
  .contact-bento,
  .contact-bento-grid,
  .why-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  /* All tiles full width */
  .hero-tile-main, .h-tile-main,
  .hero-cta-tile, .hero-tile-creds,
  .hero-tile-photo, .hero-photo-tile, .h-tile-photo,
  .hero-stat-tile, .hero-tile-years,
  .hero-license-tile, .hero-years-tile,
  .about-text-tile, .about-photo-tile,
  .about-tile-creds, .about-credentials,
  .about-tile-story, .about-tile-locations, .about-tile-shop,
  .contact-phone-tile, .c-tile-emergency-cta,
  .contact-email-tile, .c-tile-hours-detail,
  .contact-hours-tile, .c-tile-locations,
  .contact-photo-tile, .contact-truck-tile,
  .contact-area-tile, .c-tile-form,
  .gallery-tile-main, .gallery-large,
  .gallery-tile-b, .gallery-tile-c,
  .why-tile, .why-tile-big {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  /* Service tiles */
  .svc-residential, .svc-drain, .svc-emergency,
  .svc-waterheater, .svc-filtration, .svc-commercial,
  .svc-gasline, .svc-excavation,
  .svc-photo-tile, .svc-text-tile,
  #service-residential, #service-drain, #service-emergency,
  #service-waterheater, #service-filtration, #service-commercial,
  #service-gasline, #service-excavation {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero-tile-main, .h-tile-main {
    min-height: 300px;
  }

  .hero-tile-photo, .hero-photo-tile, .h-tile-photo {
    min-height: 260px;
  }

  .feature-body,
  .feature-copy {
    grid-template-columns: 1fr;
  }

  .feature-bento-rev .feature-body,
  .feature-bento-rev .feature-copy {
    direction: ltr;
  }

  .emergency-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (640px)
   ============================================================ */
@media (max-width: 640px) {
  .hero-photo-tile {
    order: -1;
    min-height: 220px;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    height: 220px;
  }
}

@media (max-width: 639px) {
  .util-bar,
  .top-bar {
    display: none;
  }

  .nav {
    top: 0;
  }

  .hero-headline {
    font-size: clamp(36px, 10vw, 56px);
  }

  .hero-display-name {
    font-size: clamp(36px, 10vw, 64px);
  }

  .section-heading,
  .section-title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .trust-strip-inner,
  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .nav-cta {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
