/* ==========================================================================
   Nightmare Coating — styles
   Palette: Monster Green · Water Blue · Black
   ========================================================================== */

:root {
  --green: #8cc63f;
  --green-bright: #a4e057;
  --green-deep: #6fa32c;
  --blue: #1c9bd7;
  --blue-bright: #35b6f0;
  --blue-deep: #127eb1;

  --black: #0a0c0b;
  --panel: #101311;
  --panel-2: #151916;
  --card: #14181500;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #edf1ec;
  --muted: #9aa79b;
  --muted-2: #77837a;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
  --shadow-green: 0 18px 44px -18px rgba(140, 198, 63, 0.45);
  --container: 1200px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient page background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(28, 155, 215, 0.10), transparent 60%),
    radial-gradient(800px 600px at 5% 110%, rgba(140, 198, 63, 0.08), transparent 60%),
    var(--black);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Keyboard focus visibility (mouse clicks stay clean) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 6px;
}

h1, h2, h3, h4, .eyebrow, .btn, .nav a, .step-num, .brand-text {
  font-family: "Saira Condensed", "Inter", sans-serif;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}
.hl-green { color: var(--green); }
.hl-blue { color: var(--blue-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #0a1400;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 54px -18px rgba(140, 198, 63, 0.6); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-3px); }

.link-arrow {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  color: var(--blue-bright);
  transition: color .2s, transform .2s var(--ease);
}
.link-arrow:hover { color: var(--green); transform: translateX(4px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 12, 11, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; align-self: flex-start; }
/* Oversized emblem, no wordmark: top-aligned so it touches the top of the
   74px bar and overflows well below it, reading over the hero. */
.brand-mark {
  width: 136px; height: 136px;
  position: relative; z-index: 2;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.55));
}
.brand-text { display: flex; flex-direction: column; line-height: 0.94; text-transform: uppercase; }
.brand-text strong { font-size: 1.28rem; font-weight: 800; letter-spacing: 0.02em; }
.brand-text span { font-size: 1.02rem; font-weight: 600; color: var(--green); letter-spacing: 0.28em; }

.nav { display: flex; gap: 30px; }
.nav a {
  position: relative;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0;
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--green);
  transition: width .28s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.98rem; color: var(--text);
  transition: color .2s;
}
.header-phone:hover { color: var(--green); }
.header-phone svg { color: var(--green); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2.5px; border-radius: 3px; background: var(--text);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 164px 0 60px;  /* extra top clearance so hero copy sits below the overhanging logo */
  overflow: hidden;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .55; z-index: 0; pointer-events: none;
}
.hero-glow-green { width: 620px; height: 620px; background: rgba(140,198,63,.28); top: -180px; left: -120px; }
.hero-glow-blue { width: 560px; height: 560px; background: rgba(28,155,215,.26); bottom: -200px; right: -100px; }
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.hbadge {
  display: flex; flex-direction: column;
  padding: 14px 20px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 120px;
}
.hbadge strong {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--green);
  line-height: 1;
}
.hbadge span { font-size: 0.82rem; color: var(--muted); letter-spacing: .02em; }

/* Hero showcase collage */
.hero-showcase {
  position: relative;
  height: 520px;
}
.showcase-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  background: var(--panel);
}
.showcase-card img { width: 100%; height: 100%; object-fit: cover; }
.card-lg {
  width: 68%; height: 74%;
  right: 0; top: 50%; transform: translateY(-50%);
  z-index: 2;
}
.card-sm { width: 42%; height: 40%; z-index: 3; }
.card-top { left: 0; top: 2%; }
.card-bottom { left: 6%; bottom: 2%; z-index: 1; }
.showcase-card { transition: transform .5s var(--ease); }
.hero-showcase:hover .card-lg { transform: translateY(-50%) scale(1.015); }

.showcase-tag {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(10,12,11,.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: var(--green);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 100px;
}
.showcase-logo {
  position: absolute; z-index: 4;
  left: 50%; top: 50%; transform: translate(-58%, -50%);
  width: 92px; height: 92px;
  background: rgba(10,12,11,.75);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}
.showcase-logo img { width: 66px; height: 66px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 42px;
  border: 2px solid var(--line-strong);
  border-radius: 100px;
  display: grid; place-items: start center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 4px; height: 8px; border-radius: 4px; background: var(--green);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(140,198,63,.05), rgba(28,155,215,.05));
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.25rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.marquee-track i { color: var(--green); font-style: normal; font-size: .7rem; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   REVIEWS (auto-scrolling carousel — reuses @keyframes marquee)
   ========================================================================== */
.section-reviews { padding: 84px 0; overflow: hidden; }

.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 20px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-strong);
  transition: border-color .2s, transform .2s var(--ease);
  white-space: nowrap;
  max-width: 100%;
  flex-wrap: nowrap;
}
.google-badge:hover { border-color: var(--green); transform: translateY(-2px); }
.gb-stars { color: #ffc107; letter-spacing: 2px; font-size: 1.05rem; white-space: nowrap; }
.gb-score { font-family: "Saira Condensed", sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--text); }
.gb-label { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: .92rem; font-weight: 500; white-space: nowrap; flex-shrink: 0; }
.gb-label svg { display: block; flex-shrink: 0; }

.reviews-marquee {
  margin-top: 46px;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 24px;
  animation: marquee 55s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }

.review-card {
  flex: 0 0 340px;
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 26px 22px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(140,198,63,.07), transparent 60%),
    linear-gradient(180deg, #1b211c 0%, #12160f 100%);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.rev-top { display: flex; align-items: center; justify-content: space-between; }
.rev-stars { color: #ffc107; letter-spacing: 2px; font-size: 1.08rem; }
.rev-g {
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: "Saira Condensed", sans-serif; font-weight: 800; font-size: .92rem;
  color: #fff;
  background: conic-gradient(from -40deg, #4285F4, #34A853, #FBBC05, #EA4335, #4285F4);
}
.rev-text {
  color: var(--text); font-size: .98rem; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.rev-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 4px; }
.rev-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden;
  background: var(--panel-2);
  border: 1px solid var(--line-strong);
}
.rev-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rev-avatar--mono {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  border-color: transparent;
  color: #0a1400;
  font-family: "Saira Condensed", sans-serif;
  font-weight: 800; font-size: 1.15rem; letter-spacing: .01em;
}
.rev-meta { display: flex; flex-direction: column; line-height: 1.25; }
.rev-meta strong { font-size: 1rem; color: var(--text); }
.rev-meta span { font-size: .8rem; color: var(--muted); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: 100px 0; position: relative; }
.section-alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,.015), transparent 20%),
    var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { justify-content: center; margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 800; line-height: 1.02; text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
}
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  grid-column: span 1;
  padding: 30px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(400px 200px at 50% -20%, rgba(140,198,63,.14), transparent 70%);
  opacity: 0; transition: opacity .35s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(140,198,63,.4); box-shadow: var(--shadow); }
.service-card:hover::after { opacity: 1; }

.svc-icon {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(140,198,63,.18), rgba(28,155,215,.14));
  border: 1px solid var(--line-strong);
  color: var(--green);
  margin-bottom: 18px;
}
.svc-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.4rem; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; letter-spacing: .01em; }
.service-card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Split / industries ---------- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-card {
  padding: 40px 38px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  transition: transform .35s var(--ease), border-color .35s;
}
.split-card:hover { transform: translateY(-4px); }
.split-card:nth-child(1):hover { border-color: rgba(28,155,215,.45); }
.split-card:nth-child(2):hover { border-color: rgba(140,198,63,.45); }
.split-badge {
  display: inline-block;
  font-family: "Saira Condensed", sans-serif;
  font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 100px; margin-bottom: 20px;
}
.split-badge-blue { color: var(--blue-bright); background: rgba(28,155,215,.12); border: 1px solid rgba(28,155,215,.3); }
.split-badge-green { color: var(--green); background: rgba(140,198,63,.12); border: 1px solid rgba(140,198,63,.3); }
.split-card h3 { font-size: 1.9rem; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; line-height: 1.02; }
.split-card > p { color: var(--muted); margin-bottom: 22px; }

.feature-list { list-style: none; margin-bottom: 24px; }
.feature-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.98rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: ""; position: absolute; left: 4px; top: 15px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 10px rgba(140,198,63,.6);
}
.split-card:nth-child(1) .feature-list li::before { background: var(--blue-bright); box-shadow: 0 0 10px rgba(28,155,215,.6); }

/* ---------- Shop reel video ---------- */
.video-showcase {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  background: #000;
  aspect-ratio: 16 / 9;
}
.shop-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-tag {
  position: absolute; left: 18px; top: 18px; z-index: 2;
  background: rgba(10,12,11,.7); backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: var(--green);
  font-family: "Saira Condensed", sans-serif;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px;
}
.video-sound {
  position: absolute; right: 18px; bottom: 18px; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10,12,11,.6); backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: #fff; cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s var(--ease);
}
.video-sound:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.video-sound svg { width: 22px; height: 22px; }
.video-sound .icon-sound { display: none; }
.video-sound.on .icon-muted { display: none; }
.video-sound.on .icon-sound { display: block; }

/* ---------- Before / After ---------- */
.ba-figure {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.ba-figure img { width: 100%; max-height: 560px; object-fit: cover; }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--green), var(--blue));
  box-shadow: 0 0 20px rgba(140,198,63,.5);
}
.ba-labels { position: absolute; inset: 0; pointer-events: none; }
.ba-tag {
  position: absolute; top: 20px;
  font-family: "Saira Condensed", sans-serif;
  font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(10,12,11,.78); backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
}
.ba-before { left: 20px; color: #ff8a6b; }
.ba-after { right: 20px; color: var(--green); }
.ba-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 46px 28px 22px;
  background: linear-gradient(180deg, transparent, rgba(10,12,11,.92));
  font-size: .98rem; color: var(--muted);
}
.ba-caption strong {
  display: block; font-family: "Saira Condensed", sans-serif;
  font-size: 1.3rem; color: var(--text); text-transform: uppercase; letter-spacing: .02em; margin-bottom: 2px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 16px 15px;
  background: linear-gradient(180deg, transparent, rgba(10,12,11,.9));
  transform: translateY(6px); opacity: .9;
  transition: transform .35s var(--ease), opacity .35s;
}
.gallery-item:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery-item figcaption span {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.02rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text);
}
.gallery-item::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(140,198,63,0);
  transition: box-shadow .35s;
}
.gallery-item:hover::before { box-shadow: inset 0 0 0 2px rgba(140,198,63,.55); }

.work-cta { text-align: center; }
.work-cta p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }
.work-cta-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}
.process-step {
  padding: 30px 22px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .35s var(--ease), border-color .35s;
}
.process-step:hover { transform: translateY(-5px); border-color: rgba(140,198,63,.4); }
.step-num {
  display: block;
  font-family: "Saira Condensed", sans-serif;
  font-size: 2.6rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--green), var(--blue-bright));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.28rem; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.process-step p { color: var(--muted); font-size: .92rem; }

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
}
.about-media { position: relative; }
.about-media > img {
  width: 100%; border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.4; object-fit: cover;
}
.about-media-badge {
  position: absolute; right: -14px; bottom: -18px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px 14px 14px;
  background: rgba(16,19,17,.94);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-media-badge img { width: 46px; height: 46px; }
.about-media-badge strong { display: block; font-family: "Saira Condensed", sans-serif; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .02em; }
.about-media-badge span { font-size: .82rem; color: var(--muted); }

.about-copy .eyebrow { margin-bottom: 16px; }
.about-copy h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; line-height: 1.02; margin-bottom: 18px; }
.about-copy > p { color: var(--muted); font-size: 1.06rem; margin-bottom: 16px; }
.about-copy em { color: var(--text); font-style: italic; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-top: 26px; }
.apoint { display: flex; align-items: center; gap: 11px; font-weight: 500; }
.apoint svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 88px 0;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(140,198,63,.08), rgba(28,155,215,.08)),
    var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(140,198,63,.16), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; text-transform: uppercase; line-height: 1; margin-bottom: 14px; }
.cta-inner p { color: var(--muted); font-size: 1.15rem; margin-bottom: 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; }
.contact-info .eyebrow { margin-bottom: 16px; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; line-height: 1.02; margin-bottom: 14px; }
.contact-lead { color: var(--muted); font-size: 1.06rem; margin-bottom: 30px; max-width: 440px; }

.contact-list { list-style: none; display: grid; gap: 18px; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(140,198,63,.16), rgba(28,155,215,.12));
  border: 1px solid var(--line-strong);
  color: var(--green);
}
.ci-icon svg { width: 22px; height: 22px; }
.contact-list strong { display: block; font-family: "Saira Condensed", sans-serif; font-size: 1.08rem; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 2px; }
.contact-list a, .ci-plain { color: var(--muted); transition: color .2s; }
.contact-list a:hover { color: var(--green); }

.contact-socials { display: flex; gap: 12px; }
.contact-socials a {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all .25s var(--ease);
}
.contact-socials a:hover { color: var(--green); border-color: var(--green); transform: translateY(-3px); }

/* Location map */
.map-wrap {
  position: relative;
  margin-top: 34px;
  height: clamp(300px, 42vw, 440px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  background: #0d0f0e;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-directions {
  position: absolute; right: 16px; bottom: 16px; z-index: 2;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.6);
}

/* Form */
.contact-form-wrap {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(140,198,63,.10), transparent 58%),
    linear-gradient(180deg, #1b211c 0%, #12160f 100%);
  border: 1px solid rgba(140,198,63,.30);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow), 0 26px 60px -28px rgba(140,198,63,.32);
  overflow: hidden;
}
/* Brand accent bar across the top of the form */
.contact-form-wrap::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}
.contact-form h3 { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field label {
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.field-opt { text-transform: none; letter-spacing: 0; font-weight: 400; opacity: .7; }
.field input, .field select, .field textarea {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { cursor: pointer; appearance: none;
  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 fill='%238cc63f' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(140,198,63,.20);
  background: rgba(255,255,255,.09);
}
.form-note { font-size: .84rem; color: var(--muted-2); text-align: center; margin-top: 14px; }
.form-note a { color: var(--green); }
.form-note.success { color: var(--green); font-weight: 600; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--panel-2); border-top: 1px solid var(--line); padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .96rem; max-width: 320px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  color: var(--muted); transition: all .25s var(--ease);
}
.footer-socials a:hover { color: var(--green); border-color: var(--green); transform: translateY(-3px); }

.footer-col h4 {
  font-size: 1.02rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text); margin-bottom: 16px;
}
.footer-col a { display: block; color: var(--muted); font-size: .95rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--green); }

.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom span { color: var(--muted-2); font-size: .88rem; }

/* ==========================================================================
   MOBILE FLOATING CALL BUTTON (shown on mobile only)
   ========================================================================== */
.call-fab { display: none; }
@keyframes fabPulse {
  0%   { box-shadow: 0 12px 26px -8px rgba(140,198,63,.7), 0 0 0 0 rgba(140,198,63,.5); }
  70%  { box-shadow: 0 12px 26px -8px rgba(140,198,63,.7), 0 0 0 16px rgba(140,198,63,0); }
  100% { box-shadow: 0 12px 26px -8px rgba(140,198,63,.7), 0 0 0 0 rgba(140,198,63,0); }
}

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
/* Progressive enhancement: only hide/animate when JS is active,
   so content always shows if JS is disabled or fails to load. */
html.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .reviews-track, .scroll-cue span, .call-fab { animation: none; }
  .reviews-track { flex-wrap: wrap; justify-content: center; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-showcase { height: 400px; max-width: 520px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-media { max-width: 520px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .brand-mark { width: 112px; height: 112px; }  /* top-aligned, overflows below the bar */

  .nav {
    /* The 112px emblem overhangs the 74px bar, so open the panel below it. */
    position: fixed; top: 116px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(10,12,11,.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    transform: translateY(-140%);
    transition: transform .4s var(--ease);
  }
  .nav.open { display: flex; transform: translateY(0); }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.2rem; }
  .nav a::after { display: none; }

  .section { padding: 72px 0; }
  .hero { padding: 128px 0 50px; min-height: auto; }

  /* Scroll cue is a desktop affordance — hide it so it can't overlap the hero photos */
  .scroll-cue { display: none; }

  /* Floating call button, bottom-right where the scroll thumb sits */
  .call-fab {
    display: grid;
    place-items: center;
    position: fixed;
    right: 24px;
    bottom: 30px;
    z-index: 95;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    color: #0a1400;
    animation: fabPulse 2.4s ease-out infinite;
    -webkit-tap-highlight-color: transparent;
    transition: transform .2s var(--ease);
  }
  .call-fab:active { transform: scale(.93); }

  /* On mobile the overlapping collage doesn't fit a narrow column —
     lay the photos out as a clean static grid instead. */
  .hero-showcase {
    height: auto;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
  }
  .showcase-card { position: static; inset: auto; transform: none; width: auto; height: auto; }
  .hero-showcase:hover .card-lg { transform: none; }
  /* keep card-lg positioned so its "Custom Candy Wheels" tag anchors to it
     (inset:auto clears the desktop top/right offsets so it stays in grid flow) */
  .card-lg { position: relative; inset: auto; grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .card-sm { aspect-ratio: 4 / 3; }
  .showcase-logo { display: none; }

  .split-grid { grid-template-columns: 1fr; }
  .split-card { padding: 30px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 26px 22px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-badges { gap: 10px; }
  .hbadge { min-width: 0; flex: 1; padding: 12px 14px; }
  .btn { padding: 13px 22px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .about-media-badge { right: 8px; left: 8px; }
  .review-card { flex-basis: 84vw; width: 84vw; max-width: 330px; }
  /* Keep the Google rating badge on one line on small phones */
  .google-badge { gap: 6px; padding: 8px 13px; }
  .gb-stars { font-size: .82rem; letter-spacing: 1px; }
  .gb-score { font-size: 1.02rem; }
  .gb-label { font-size: .76rem; gap: 5px; }
  .gb-label svg { width: 14px; height: 14px; }
}

/* ==========================================================================
   SERVICE PAGES — nav dropdown, breadcrumb, hero, facts, FAQ, areas, hub
   Added for the per-service SEO landing pages (powder-coating-carson-city-mi,
   sandblasting-carson-city-mi, …). Generated by _build/build.js.
   ========================================================================== */

/* ---- Container variant ---- */
.container-narrow { max-width: 860px; }

/* ---- Header: services dropdown ---- */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-parent { display: inline-flex; align-items: center; gap: 7px; }
.nav-parent svg { color: var(--green); transition: transform .28s var(--ease); }
.nav-item.has-sub:hover .nav-parent svg { transform: rotate(180deg); }

.nav-sub {
  position: absolute;
  top: 100%;
  left: -18px;
  margin-top: 16px;
  min-width: 258px;
  padding: 10px;
  display: grid;
  gap: 2px;
  background: rgba(16, 19, 17, .97);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 60;
}
/* bridge the gap so the menu doesn't close while the cursor travels to it */
.nav-sub::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.nav-item.has-sub:hover .nav-sub,
.nav-item.has-sub:focus-within .nav-sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-sub a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  white-space: nowrap;
  transition: background .2s, color .2s, transform .2s var(--ease);
}
.nav-sub a::after { display: none; }
.nav-sub a:hover { background: rgba(140, 198, 63, .12); color: var(--green); transform: translateX(3px); }
.nav-sub a[aria-current="page"] { color: var(--green); background: rgba(140, 198, 63, .09); }

/* ---- Breadcrumb ---- */
.breadcrumb {
  position: relative;
  z-index: 2;
  padding: 150px 0 0;
  background: var(--black);
}
.breadcrumb ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  list-style: none; font-size: .84rem; color: var(--muted-2);
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "/"; color: var(--muted-2); opacity: .5; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 500; }

/* ---- Service hero ---- */
.hero-svc, .hero-hub { min-height: 0; padding: 30px 0 76px; }
.hero-svc .hero-inner { align-items: center; }
.hero-svc h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
.hero-svc .hero-sub { margin-bottom: 34px; }
.hero-svc .hero-cta { margin-bottom: 34px; }

.hero-figure {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-figure .showcase-tag { bottom: 18px; left: 18px; }

.hero-hub { text-align: center; }
.hub-hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.hub-hero-inner .eyebrow { justify-content: center; margin-bottom: 20px; }
.hub-hero-inner h1 {
  font-family: "Saira Condensed", sans-serif;
  font-size: clamp(2.3rem, 5.6vw, 4.2rem);
  font-weight: 800; text-transform: uppercase; line-height: .98;
  margin-bottom: 20px;
}
.hub-hero-inner .hero-sub { margin: 0 auto 30px; }
.hub-hero-inner .hero-cta { justify-content: center; margin-bottom: 0; }

/* ---- Trust strip ---- */
.trust-strip { background: var(--panel-2); border-block: 1px solid var(--line); }
.trust-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 10px;
}
.trust-item {
  display: flex; flex-direction: column; gap: 3px;
  padding: 22px 10px; text-align: center;
  position: relative;
}
.trust-item + .trust-item::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px; background: var(--line);
}
.trust-item strong {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.24rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .02em; color: var(--text);
}
.trust-item span { font-size: .84rem; color: var(--muted); }
.trust-link { transition: color .2s; }
.trust-link:hover strong, .trust-link:hover span { color: var(--green); }

/* ---- Intro + facts card ---- */
.intro-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 52px; align-items: start; }
.intro-copy .eyebrow { margin-bottom: 16px; }
.intro-copy h2 {
  font-family: "Saira Condensed", sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800; text-transform: uppercase; line-height: 1.04;
  margin-bottom: 20px;
}
.intro-copy p { color: var(--muted); font-size: 1.04rem; margin-bottom: 16px; }
.intro-copy p a { color: var(--green); border-bottom: 1px solid rgba(140,198,63,.35); transition: border-color .2s; }
.intro-copy p a:hover { border-color: var(--green); }
.intro-copy strong { color: var(--text); }
.intro-copy em { color: var(--text); font-style: italic; }

.callout {
  display: flex; gap: 16px; align-items: flex-start;
  margin-top: 26px; padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(140, 198, 63, .28);
  background: linear-gradient(135deg, rgba(140,198,63,.10), rgba(140,198,63,.02));
}
.callout-icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(140,198,63,.16); color: var(--green);
}
.callout-icon svg { width: 22px; height: 22px; }
.callout strong {
  display: block; font-family: "Saira Condensed", sans-serif;
  font-size: 1.14rem; text-transform: uppercase; letter-spacing: .02em;
  color: var(--text); margin-bottom: 5px;
}
.callout p { margin: 0; font-size: .97rem; color: var(--muted); }

.fact-card {
  position: sticky; top: 100px;
  padding: 28px 26px 26px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #1b211c 0%, #12160f 100%);
  box-shadow: var(--shadow);
}
.fact-card h3 {
  font-size: 1.22rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .02em; margin-bottom: 18px;
}
.fact { padding: 13px 0; border-top: 1px solid var(--line); }
.fact dt {
  font-size: .74rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px;
}
.fact dd { font-size: .97rem; color: var(--text); }
.fact-card .btn { margin-top: 22px; }
.fact-call {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 14px; font-weight: 600; color: var(--muted); transition: color .2s;
}
.fact-call svg { color: var(--green); }
.fact-call:hover { color: var(--green); }

/* ---- Process: 6-step layout ---- */
.process-grid-6 { grid-template-columns: repeat(3, 1fr); }

/* ---- Benefits + gallery ---- */
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.benefit-copy .eyebrow { margin-bottom: 16px; }
.benefit-copy h2 {
  font-family: "Saira Condensed", sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800; text-transform: uppercase; line-height: 1.04;
  margin-bottom: 26px;
}
.benefit-list { list-style: none; display: grid; gap: 20px; margin-bottom: 30px; }
.benefit-list li { display: flex; gap: 15px; align-items: flex-start; }
.ben-check {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 10px;
  display: grid; place-items: center; margin-top: 2px;
  background: rgba(140,198,63,.14); color: var(--green);
}
.ben-check svg { width: 19px; height: 19px; }
.benefit-list strong {
  display: block; font-family: "Saira Condensed", sans-serif;
  font-size: 1.16rem; text-transform: uppercase; letter-spacing: .02em;
  margin-bottom: 4px;
}
.benefit-list p { color: var(--muted); font-size: .97rem; }
.gallery-grid-2 { grid-template-columns: 1fr 1fr; }
.benefit-note { margin-top: 16px; font-size: .9rem; color: var(--muted-2); text-align: center; }
.benefit-note a { color: var(--green); }

/* ---- Reviews (static pair/trio, no marquee) ---- */
.review-pair { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.review-card-static { flex: none; width: auto; max-width: none; }

/* ---- FAQ ---- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.025);
  overflow: hidden;
  transition: border-color .25s var(--ease), background .25s;
}
.faq-item[open] { border-color: rgba(140,198,63,.36); background: rgba(140,198,63,.05); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.04rem; font-weight: 600; color: var(--text); line-height: 1.4;
}
.faq-item[open] summary h3 { color: var(--green); }
.faq-plus {
  position: relative; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(140,198,63,.14);
  transition: transform .3s var(--ease), background .25s;
}
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 11px; height: 2px; border-radius: 2px; background: var(--green);
  transform: translate(-50%, -50%);
  transition: opacity .25s;
}
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-plus { transform: rotate(135deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { color: var(--muted); font-size: .99rem; max-width: 68ch; }

/* ---- Areas served ---- */
.area-list {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 900px; margin: 0 auto;
}
.area-list li {
  padding: 9px 17px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.03);
  font-size: .92rem; color: var(--muted);
  transition: border-color .25s var(--ease), color .25s, transform .25s var(--ease);
}
.area-list li:hover { border-color: rgba(140,198,63,.45); color: var(--text); transform: translateY(-2px); }
.area-note { margin-top: 26px; text-align: center; color: var(--muted-2); font-size: .95rem; }
.area-note a { color: var(--green); }

/* ---- Related services ---- */
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.related-card {
  display: block; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: rgba(255,255,255,.025);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.related-card:hover { transform: translateY(-6px); border-color: rgba(140,198,63,.42); box-shadow: var(--shadow); }
.related-card img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.related-card:hover img { transform: scale(1.06); }
.related-body { padding: 18px 20px 20px; }
.related-body h3 {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.2rem; font-weight: 700; text-transform: uppercase;
  line-height: 1.06; margin-bottom: 4px;
}
.related-body > span { display: block; font-size: .82rem; color: var(--muted-2); margin-bottom: 12px; }
.related-body em { font-style: normal; font-size: .9rem; }

/* ---- Services hub grid ---- */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hub-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line); background: rgba(255,255,255,.025);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.hub-card:hover { transform: translateY(-6px); border-color: rgba(140,198,63,.42); box-shadow: var(--shadow); }
.hub-media { overflow: hidden; aspect-ratio: 16 / 9; }
.hub-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s var(--ease); }
.hub-card:hover .hub-media img { transform: scale(1.07); }
.hub-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.hub-body h3 {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.42rem; font-weight: 700; text-transform: uppercase;
  line-height: 1.04; margin-bottom: 10px;
}
.hub-body h3 span { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .1em; color: var(--green); }
.hub-body p { color: var(--muted); font-size: .96rem; margin-bottom: 16px; flex: 1; }
.hub-body em { font-style: normal; font-size: .92rem; }

/* ---- Footer: 5 columns on service pages ---- */
.footer-inner-5 { grid-template-columns: 1.7fr 1fr 1fr 1fr 1.2fr; }
.footer-hours { display: block; color: var(--muted-2); font-size: .9rem; padding: 5px 0; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .fact-card { position: static; }
  .benefit-grid { grid-template-columns: 1fr; gap: 40px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner-5 { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3n+1)::before { display: none; }
}

@media (max-width: 760px) {
  .breadcrumb { padding-top: 126px; }
  .breadcrumb ol { font-size: .78rem; }
  .hero-svc, .hero-hub { padding: 20px 0 56px; }
  .hero-svc .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { aspect-ratio: 16 / 11; }

  /* Mobile nav: the services submenu sits inline, always expanded */
  .nav-item { display: block; }
  .nav-item.has-sub { border-bottom: 1px solid var(--line); padding-bottom: 6px; }
  .nav-parent { padding: 15px 0; font-size: 1.2rem; width: 100%; justify-content: space-between; }
  .nav-item.has-sub .nav-parent svg { transform: none; }
  .nav-sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    margin: 0 0 8px; padding: 0 0 0 14px; min-width: 0;
    background: none; border: none; box-shadow: none;
    border-left: 2px solid rgba(140,198,63,.3);
    border-radius: 0;
  }
  .nav-sub::before { display: none; }
  .nav-sub a { padding: 9px 10px; font-size: 1rem; }

  .related-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .faq-item summary { padding: 17px 18px; }
  .faq-item summary h3 { font-size: .99rem; }
  .faq-answer { padding: 0 18px 18px; }
  .footer-inner-5 { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item::before { display: none !important; }
  .trust-item { padding: 16px 8px; }
  .trust-item strong { font-size: 1.08rem; }
  .process-grid-6 { grid-template-columns: 1fr 1fr; }
  .gallery-grid-2 { grid-template-columns: 1fr 1fr; }
  .callout { flex-direction: column; gap: 12px; padding: 20px; }
  .area-list li { padding: 8px 14px; font-size: .86rem; }
}

/* ==========================================================================
   MULTI-CITY COMPONENTS — city link band + service × city matrix
   ========================================================================== */

/* Small label at the top of the header's services dropdown */
.nav-sub-head {
  display: block;
  padding: 6px 14px 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green);
}

.section-tight { padding: 0 0 100px; }

/* ---- "Also serving" city band ---- */
.city-band {
  padding: 34px 36px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(28,155,215,.10), transparent 60%),
    linear-gradient(180deg, #171c18 0%, #10130f 100%);
  text-align: center;
}
.city-band h2 {
  font-family: "Saira Condensed", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800; text-transform: uppercase; line-height: 1.04;
  margin-bottom: 6px;
}
.city-band > p { color: var(--muted); font-size: .98rem; margin-bottom: 22px; }
.city-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.city-links a {
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.04);
  font-size: .92rem; font-weight: 500; color: var(--muted);
  transition: border-color .25s var(--ease), color .25s, transform .25s var(--ease), background .25s;
}
.city-links a:hover {
  border-color: rgba(140,198,63,.5); color: var(--green);
  background: rgba(140,198,63,.08); transform: translateY(-2px);
}

/* ---- Service × city matrix (hub page) ---- */
.matrix-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.matrix-col {
  padding: 24px 24px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  transition: border-color .25s var(--ease);
}
.matrix-col:hover { border-color: rgba(140,198,63,.32); }
.matrix-col h3 {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.24rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .02em; line-height: 1.1;
  padding-bottom: 12px; margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.matrix-col h3 span {
  display: block; font-family: "Inter", sans-serif;
  font-size: .74rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green); margin-top: 3px;
}
.matrix-col a {
  display: block; padding: 7px 0;
  font-size: .92rem; color: var(--muted);
  transition: color .2s, transform .2s var(--ease);
}
.matrix-col a:hover { color: var(--green); transform: translateX(3px); }

@media (max-width: 1024px) {
  .matrix-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .section-tight { padding: 0 0 72px; }
  .city-band { padding: 26px 20px 24px; }
  .matrix-grid { grid-template-columns: 1fr; }
  .nav-sub-head { padding: 4px 10px 8px; }
}

/* ---- Homepage service cards are links now ---- */
a.service-card { display: block; }
.svc-more {
  display: inline-block;
  margin-top: 14px;
  font-size: .88rem; font-weight: 600;
  color: var(--green);
  transition: transform .25s var(--ease);
}
.service-card:hover .svc-more { transform: translateX(4px); }

/* ---- Per-city drop-off notes ---- */
.local-notes {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 28px 30px 26px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #191e1a 0%, #11150f 100%);
  text-align: left;
}
.local-notes h3 {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.24rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .02em; margin-bottom: 16px;
}
.local-notes ul { list-style: none; display: grid; gap: 13px; margin-bottom: 20px; }
.local-notes li { display: flex; gap: 12px; align-items: flex-start; }
.local-notes li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--green); }
.local-notes li span { color: var(--muted); font-size: .97rem; }

@media (max-width: 540px) {
  .local-notes { padding: 22px 20px 20px; }
}

/* ---- Small-screen fix: the service hero pairs "Get a Free Quote" with
   "Call 989-289-2298". Both are white-space:nowrap, so side-by-side they
   overflow a phone viewport. Stack them instead of letting them clip. ---- */
@media (max-width: 560px) {
  .hero-svc .hero-cta,
  .hero-hub .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-svc .hero-cta .btn,
  .hero-hub .hero-cta .btn { flex: none; width: 100%; }
}

/* ==========================================================================
   VETERAN OWNED — badge placements
   ========================================================================== */
.trust-veteran { padding: 12px 10px; }
.trust-veteran img { width: 58px; height: 58px; margin: 0 auto; }

.fact-veteran {
  display: flex; align-items: center; gap: 12px;
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.fact-veteran img { width: 44px; height: 44px; flex-shrink: 0; }
.fact-veteran span { font-size: .88rem; color: var(--muted); line-height: 1.35; }
.fact-veteran strong {
  display: block; color: var(--text);
  font-family: "Saira Condensed", sans-serif;
  font-size: 1rem; text-transform: uppercase; letter-spacing: .04em;
}

.footer-veteran { width: 72px; height: 72px; margin-bottom: 18px; }

/* ---- Quote form: honeypot (hidden from people, visible to bots) ---- */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-note.error { color: #ff8a6b; font-weight: 500; }
.form-note.error a { color: var(--green); }

/* Homepage hero + about placements */
.hero-veteran {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 24px; padding: 10px 18px 10px 10px;
  border-radius: 100px;
  border: 1px solid rgba(140,198,63,.3);
  background: rgba(140,198,63,.07);
}
.hero-veteran img { width: 42px; height: 42px; flex-shrink: 0; }
.hero-veteran span {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.02rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text);
}
.hero-veteran span em {
  display: block; font-style: normal; font-family: "Inter", sans-serif;
  font-size: .78rem; font-weight: 500; letter-spacing: .02em;
  text-transform: none; color: var(--muted);
}

.about-veteran { display: flex; align-items: center; gap: 16px; margin-top: 26px; }
.about-veteran img { width: 84px; height: 84px; flex-shrink: 0; }
.about-veteran p { color: var(--muted); font-size: .97rem; margin: 0; }
.about-veteran strong { color: var(--text); }

@media (max-width: 540px) {
  .trust-veteran { grid-column: 1 / -1; }
  .about-veteran { gap: 14px; }
  .about-veteran img { width: 68px; height: 68px; }
}
