/* ==========================================================================
   Hill Country 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; gap: 12px; }
.brand-mark { width: 46px; height: 46px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)); }
.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: 120px 0 60px;
  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-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); }

/* 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 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; }

  .nav {
    position: fixed; top: 74px; 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: 110px 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; }
}
