/* ==========================================================================
   TRIPLE R ASPHALT SOLUTIONS — design system
   Palette: asphalt charcoal, hazard yellow, stall-paint white
   ========================================================================== */

:root {
  --asphalt-0: #0d0d0e;       /* fresh-laid, sealed black */
  --asphalt-1: #141416;       /* base surface */
  --asphalt-2: #1c1c1f;       /* raised surface / cards */
  --asphalt-3: #28282c;       /* borders, worn edges */
  --faded: #4d4d52;           /* sun-faded asphalt grey */
  --paint-yellow: #ffc81a;    /* stripe yellow */
  --paint-yellow-dim: #d4a30e;
  --paint-white: #f4f4f2;     /* stall paint */
  --ink-muted: #9a9aa0;
  --font-display: 'Anton', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

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

html { scroll-behavior: auto; }

body {
  background: var(--asphalt-1);
  color: var(--paint-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* subtle asphalt aggregate texture over everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

::selection { background: var(--paint-yellow); color: var(--asphalt-0); }

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; position: relative; }
.section { padding: 120px 0; position: relative; }

/* ==========================================================================
   PRELOADER — roller compacting a fresh mat
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--asphalt-0);
  display: flex; align-items: center; justify-content: center;
}
.preloader__inner { width: min(440px, 80vw); text-align: center; }
.preloader__logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.18em;
  color: var(--paint-white);
  margin-bottom: 36px;
}
.preloader__logo::after { content: ''; display: block; width: 56px; height: 5px; background: var(--paint-yellow); margin: 14px auto 0; }
.preloader__road {
  position: relative; height: 64px;
  border-bottom: 3px solid var(--asphalt-3);
  overflow: visible;
}
.preloader__mat {
  position: absolute; left: 0; bottom: 0;
  height: 12px; width: 0%;
  background: linear-gradient(180deg, #3a3a3e, #232326);
  border-radius: 2px 6px 0 0;
}
.preloader__roller {
  position: absolute; bottom: 1px; left: 0;
  width: 78px; transform: translateX(-10%);
}
.preloader__label {
  margin-top: 22px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
}

/* ==========================================================================
   STRIPE WIPE — page transition: 5 yellow paint bars sweep the screen
   ========================================================================== */
.stripe-wipe {
  position: fixed; inset: 0; z-index: 900;
  display: flex; flex-direction: column;
  pointer-events: none; visibility: hidden;
}
.stripe-wipe__bar {
  flex: 1;
  background: var(--paint-yellow);
  transform: scaleX(0);
  transform-origin: left center;
}
.stripe-wipe__bar:nth-child(even) { background: #e6b210; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  transition: background 0.4s, box-shadow 0.4s, transform 0.45s var(--ease-out);
}
.nav--scrolled {
  background: rgba(13, 13, 14, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 200, 26, 0.18), 0 12px 32px rgba(0,0,0,0.45);
}
.nav--hidden { transform: translateY(-110%); }
.nav__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 18px 28px;
  display: flex; align-items: center; gap: 36px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__brand-mark { display: flex; flex-direction: column; gap: 3px; }
.nav__brand-mark span { width: 22px; height: 5px; background: var(--paint-yellow); border-radius: 1px; }
.nav__brand-mark span:nth-child(2) { width: 16px; }
.nav__brand-mark span:nth-child(3) { width: 10px; }
.nav__brand-text { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.08em; line-height: 1.1; }
.nav__brand-text em { font-style: normal; color: var(--paint-yellow); font-size: 0.62em; display: block; letter-spacing: 0.22em; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted); position: relative; padding: 4px 0;
  transition: color 0.25s;
}
.nav__links a::after {
  /* stall-stripe underline that paints in */
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 3px; background: var(--paint-yellow);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.35s var(--ease-out);
}
.nav__links a:hover { color: var(--paint-white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paint-yellow); color: var(--asphalt-0);
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.04em;
  padding: 11px 20px; border-radius: 4px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  white-space: nowrap;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 200, 26, 0.35); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 26px; height: 3px; background: var(--paint-white); margin: 5px 0; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--asphalt-0);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13,13,14,0.92) 0%, rgba(13,13,14,0.55) 42%, rgba(13,13,14,0.05) 75%),
    linear-gradient(0deg, var(--asphalt-1) 0%, transparent 22%),
    linear-gradient(180deg, rgba(13,13,14,0.6) 0%, transparent 25%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  padding: 140px 28px 100px;
  width: 100%;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--paint-yellow);
  margin-bottom: 28px;
  opacity: 0; /* GSAP */
}
.hero__eyebrow-dash { width: 42px; height: 3px; background: var(--paint-yellow); }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7.2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero__line > span { display: inline-block; transform: translateY(110%); /* GSAP reveals */ }
.hero__line--accent > span {
  color: transparent;
  -webkit-text-stroke: 2px var(--paint-yellow);
  background: linear-gradient(90deg, var(--paint-yellow) 0%, var(--paint-yellow) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100% 0; /* GSAP paints it in like a stripe */
  -webkit-background-clip: text;
  background-clip: text;
}
.hero__sub {
  max-width: 540px;
  margin-top: 30px;
  color: var(--ink-muted);
  font-size: 1.05rem;
  opacity: 0; /* GSAP */
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; opacity: 0; /* GSAP */ }
.hero__hours {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 34px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--ink-muted);
  opacity: 0; /* GSAP */
}
.hero__hours-dot { width: 9px; height: 9px; border-radius: 50%; background: #3ddc6a; box-shadow: 0 0 12px #3ddc6a; }

.hero__scrollcue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.4em; color: var(--ink-muted);
}
.hero__scrollcue-track { width: 3px; height: 52px; background: var(--asphalt-3); overflow: hidden; border-radius: 2px; }
.hero__scrollcue-dash { width: 100%; height: 14px; background: var(--paint-yellow); border-radius: 2px; }

/* ==========================================================================
   BUTTONS — "paint pass" hover: yellow sweeps across like a striping gun
   ========================================================================== */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 34px;
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 4px; overflow: hidden; cursor: pointer;
  border: 2px solid var(--paint-yellow);
  transition: color 0.3s;
}
.btn__label { position: relative; z-index: 1; }
.btn__paint {
  position: absolute; inset: 0;
  background: var(--paint-yellow);
  transform: translateX(-101%) skewX(-12deg) scaleX(1.2);
  transition: transform 0.45s var(--ease-out);
}
.btn--primary { background: var(--paint-yellow); color: var(--asphalt-0); }
.btn--primary .btn__paint { background: var(--paint-white); }
.btn--primary:hover .btn__paint { transform: translateX(0) skewX(-12deg) scaleX(1.2); }
.btn--ghost { background: transparent; color: var(--paint-white); }
.btn--ghost:hover { color: var(--asphalt-0); }
.btn--ghost:hover .btn__paint { transform: translateX(0) skewX(-12deg) scaleX(1.2); }
.btn--block { width: 100%; border: 0; }

/* ==========================================================================
   MARQUEE — services scroll past like dashed centerline
   ========================================================================== */
.marquee {
  background: var(--paint-yellow);
  overflow: hidden;
  padding: 16px 0;
  position: relative; z-index: 2;
}
.marquee__track { display: flex; align-items: center; gap: 38px; width: max-content; will-change: transform; }
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.25rem; letter-spacing: 0.1em;
  color: var(--asphalt-0);
  white-space: nowrap;
}
.marquee__track i { width: 36px; height: 5px; background: var(--asphalt-0); border-radius: 2px; flex-shrink: 0; }

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */
.section__head { max-width: 760px; margin-bottom: 70px; }
.section__kicker {
  display: inline-block;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.3em;
  color: var(--paint-yellow);
  padding-bottom: 8px; margin-bottom: 20px;
  position: relative;
}
.section__kicker::after {
  /* the stripe that paints in under the kicker */
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px; background: var(--paint-yellow);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.7s var(--ease-out) 0.25s;
}
.section__kicker.is-painted::after { transform: scaleX(1); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  line-height: 1.02; text-transform: uppercase; letter-spacing: 0.01em;
}
.section__title .word { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.section__title .word > span { display: inline-block; }
.section__lede { margin-top: 24px; color: var(--ink-muted); font-size: 1.02rem; max-width: 580px; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { background: var(--asphalt-1); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--asphalt-2);
  border: 1px solid var(--asphalt-3);
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 200, 26, 0.5);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
.svc-card--wide { grid-column: span 2; flex-direction: row; }
.svc-card--wide .svc-card__visual { flex: 1.1; min-height: 240px; }
.svc-card--wide .svc-card__body { flex: 1; }
.svc-card__visual {
  position: relative; height: 190px;
  background: var(--asphalt-0);
  border-bottom: 1px solid var(--asphalt-3);
  overflow: hidden;
}
.svc-card--wide .svc-card__visual { height: auto; border-bottom: 0; border-right: 1px solid var(--asphalt-3); }
.svc-card__body { padding: 30px 32px 34px; position: relative; }
.svc-card__num {
  font-family: var(--font-display);
  font-size: 0.95rem; color: var(--asphalt-3);
  letter-spacing: 0.15em;
  display: block; margin-bottom: 12px;
  transition: color 0.4s;
}
.svc-card:hover .svc-card__num { color: var(--paint-yellow); }
.svc-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 0.03em; text-transform: uppercase;
  margin-bottom: 12px;
}
.svc-card__body p { color: var(--ink-muted); font-size: 0.94rem; }
.svc-card__tag {
  display: inline-block; margin-top: 18px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--paint-yellow);
  border: 1px solid rgba(255, 200, 26, 0.4);
  padding: 5px 12px; border-radius: 99px;
}

/* --- service micro-visuals (all procedural, no images) --- */

/* 01: parking lot striping itself on hover/inview */
.svc-lot { position: absolute; inset: 0; }
.svc-lot__surface { position: absolute; inset: 0; background: linear-gradient(160deg, #19191b, #0e0e0f); }
.svc-lot__stall {
  position: absolute; top: 18%; bottom: 18%;
  width: 5px; background: var(--paint-white); border-radius: 2px;
  transform: scaleY(0); transform-origin: top center; /* GSAP paints stalls */
  box-shadow: 0 0 14px rgba(244,244,242,0.25);
}
.svc-lot__stall:nth-child(2) { left: 14%; }
.svc-lot__stall:nth-child(3) { left: 32%; }
.svc-lot__stall:nth-child(4) { left: 50%; }
.svc-lot__stall:nth-child(5) { left: 68%; }
.svc-lot__stall:nth-child(6) { left: 86%; }

/* 02: pothole patched */
.svc-patch { position: absolute; inset: 0; background: linear-gradient(160deg, #1a1a1c, #101011); }
.svc-patch__hole {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 46%; height: 44%;
  background: #060606; border-radius: 38% 62% 55% 45% / 55% 45% 60% 40%;
  box-shadow: inset 0 6px 18px rgba(0,0,0,0.9);
}
.svc-patch__fill {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0); /* GSAP fills */
  width: 46%; height: 44%;
  background: linear-gradient(140deg, #36363a, #232327);
  border-radius: 38% 62% 55% 45% / 55% 45% 60% 40%;
  border: 2px solid #3f3f44;
}

/* 03: driveway draws toward house */
.svc-drive { position: absolute; inset: 0; background: linear-gradient(180deg, #161618 55%, #101012 55%); }
.svc-drive__house {
  position: absolute; right: 16%; top: 22%;
  width: 70px; height: 48px; background: #2c2c30;
  clip-path: polygon(0 38%, 50% 0, 100% 38%, 100% 100%, 0 100%);
}
.svc-drive__house::after { content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 16px; height: 22px; background: var(--paint-yellow); }
.svc-drive__path {
  position: absolute; left: 0; bottom: 18%;
  height: 22px; width: 78%;
  background: linear-gradient(180deg, #38383c, #222226);
  border-radius: 0 6px 6px 0;
  transform: scaleX(0); transform-origin: left center; /* GSAP paves */
}

/* 04: milling drum chews the old surface */
.svc-mill { position: absolute; inset: 0; background: #101012; }
.svc-mill__old {
  position: absolute; left: 0; right: 0; top: 52%;
  height: 26px; background: linear-gradient(180deg, #46464b, #303034);
  transform-origin: right center; /* GSAP mills it away leftward */
}
.svc-mill__teeth { position: absolute; top: 30%; left: 8%; display: flex; gap: 10px; }
.svc-mill__teeth i {
  width: 10px; height: 26px; background: var(--paint-yellow);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: 0.9;
}

/* 05: crack drawn then sealed (SVG stroke-dash via GSAP) */
.svc-crack { position: absolute; inset: 0; width: 100%; height: 100%; background: linear-gradient(160deg, #1a1a1c, #101011); }
.svc-crack__line, .svc-crack__seal { fill: none; }

/* 06: squeegee pulls fresh sealcoat across faded asphalt */
.svc-seal { position: absolute; inset: 0; }
.svc-seal__faded { position: absolute; inset: 0; background: linear-gradient(160deg, #515156, #3a3a3f); }
.svc-seal__coat {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #131315, #060607);
  clip-path: inset(0 100% 0 0); /* GSAP wipes to inset(0 0 0 0) */
}
.svc-seal__squeegee {
  position: absolute; top: -6%; bottom: -6%; left: 0;
  width: 10px; background: var(--paint-yellow);
  border-radius: 3px;
  transform: translateX(-20px); /* GSAP drags across */
  box-shadow: 0 0 18px rgba(255,200,26,0.45);
}

/* ==========================================================================
   BAND — before/after sealcoat wipe (scroll-pinned)
   ========================================================================== */
.band { position: relative; height: 70vh; min-height: 480px; overflow: hidden; }
.band__faded, .band__fresh {
  position: absolute; inset: 0;
  display: flex; align-items: center;
}
.band__faded {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.05), transparent 50%),
    linear-gradient(160deg, #58585e, #3d3d42);
}
.band__faded .band__title { color: #2a2a2e; }
.band__fresh {
  background:
    radial-gradient(ellipse at 70% 80%, rgba(255,200,26,0.07), transparent 55%),
    linear-gradient(160deg, #111113, #050506);
  clip-path: inset(0 100% 0 0); /* GSAP scrubs to 0 */
}
.band__fresh .band__title { color: var(--paint-white); }
.band__fresh .band__title span { color: var(--paint-yellow); }
.band__inner { width: 100%; }
.band__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.04; text-transform: uppercase;
}
.band__squeegee {
  position: absolute; top: 0; bottom: 0; right: 0;
  width: 6px; background: var(--paint-yellow);
  box-shadow: 0 0 30px rgba(255, 200, 26, 0.6);
}

/* ==========================================================================
   OUR WORK — yellow-framed swipe gallery
   ========================================================================== */
.work { background: var(--asphalt-1); }
.gallery__stage { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.gallery__window {
  position: relative;
  border: 3px solid var(--paint-yellow);
  border-radius: 12px;
  overflow: hidden;
  background: var(--asphalt-0);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  touch-action: pan-y;            /* let vertical scroll pass, we own horizontal */
  cursor: grab;
}
.gallery__window.is-dragging { cursor: grabbing; }
/* hazard-tick corner accents */
.gallery__window::before,
.gallery__window::after {
  content: ''; position: absolute; z-index: 4; width: 26px; height: 26px;
  border: 3px solid var(--paint-yellow); pointer-events: none;
}
.gallery__window::before { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.gallery__window::after  { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.gallery__track { display: flex; will-change: transform; }
.gallery__slide {
  position: relative; flex: 0 0 100%;
  aspect-ratio: 16 / 10;
  background: var(--asphalt-0);
  overflow: hidden;
}
.gallery__slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  user-select: none; -webkit-user-drag: none;
}
.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px;
  padding: 64px 26px 22px;
  background: linear-gradient(0deg, rgba(6,6,7,0.94) 0%, rgba(6,6,7,0.55) 45%, transparent 100%);
}
.gallery__tag {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--asphalt-0); background: var(--paint-yellow);
  padding: 5px 12px; border-radius: 4px;
}
.gallery__cap-text { color: var(--paint-white); font-weight: 600; font-size: 0.98rem; }

/* autoplay progress stripe, top edge */
.gallery__progress {
  position: absolute; top: 0; left: 0; z-index: 4;
  height: 4px; width: 0;
  background: var(--paint-yellow);
}

/* prev / next */
.gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(13, 13, 14, 0.78);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 2px solid var(--paint-yellow);
  color: var(--paint-yellow);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}
.gallery__nav:hover { background: var(--paint-yellow); color: var(--asphalt-0); }
.gallery__nav:active { transform: translateY(-50%) scale(0.92); }
.gallery__nav svg { width: 22px; height: 22px; }
.gallery__nav--prev { left: 14px; }
.gallery__nav--next { right: 14px; }

/* footer: counter + road-dash dots */
.gallery__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin-top: 24px; padding: 0 2px;
}
.gallery__count {
  font-family: var(--font-display);
  font-size: 1.15rem; letter-spacing: 0.14em; color: var(--ink-muted);
}
.gallery__count #galleryCur { color: var(--paint-yellow); }
.gallery__count i { font-style: normal; color: var(--asphalt-3); margin: 0 4px; }
.gallery__dots { display: flex; gap: 10px; }
.gallery__dot {
  width: 28px; height: 5px; border-radius: 2px;
  background: var(--asphalt-3); border: 0; padding: 0; cursor: pointer;
  transition: background 0.3s, transform 0.3s var(--ease-out);
}
.gallery__dot:hover { background: var(--faded); }
.gallery__dot.is-active { background: var(--paint-yellow); transform: scaleY(1.4); }

@media (max-width: 600px) {
  .gallery__stage { padding: 0 16px; }
  .gallery__slide { aspect-ratio: 3 / 4; }
  .gallery__nav { width: 44px; height: 44px; }
  .gallery__nav--prev { left: 8px; }
  .gallery__nav--next { right: 8px; }
  .gallery__cap { padding: 54px 18px 18px; }
  .gallery__cap-text { font-size: 0.9rem; }
}

/* ==========================================================================
   PROCESS — steps along a dashed centerline
   ========================================================================== */
.process { background: var(--asphalt-1); }
.process .container { position: relative; }
.process__road {
  position: absolute; top: 230px; bottom: 30px; left: 50%;
  width: 4px; transform: translateX(-50%);
}
.process__centerline { width: 100%; height: 100%; }
.process__steps { display: flex; flex-direction: column; gap: 70px; position: relative; }
.process__step {
  display: flex; align-items: center; gap: 40px;
  width: 50%;
}
.process__step:nth-child(odd) { padding-right: 60px; flex-direction: row-reverse; text-align: right; }
.process__step:nth-child(even) { margin-left: 50%; padding-left: 60px; }
.process__marker {
  flex-shrink: 0;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--asphalt-0);
  border: 3px solid var(--paint-yellow);
  font-family: var(--font-display); font-size: 1.4rem; color: var(--paint-yellow);
}
.process__card {
  background: var(--asphalt-2);
  border: 1px solid var(--asphalt-3);
  border-radius: 8px;
  padding: 28px 30px;
}
.process__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 0.03em; text-transform: uppercase;
  margin-bottom: 10px;
}
.process__card p { color: var(--ink-muted); font-size: 0.93rem; }

/* ==========================================================================
   WHY / STATS
   ========================================================================== */
.why { background: var(--asphalt-0); }
.why__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center; }
.why__copy p { color: var(--ink-muted); margin-top: 24px; }
.why__list { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.why__list li {
  position: relative; padding-left: 34px; font-weight: 500;
}
.why__list li::before {
  content: ''; position: absolute; left: 0; top: 0.52em;
  width: 20px; height: 4px; background: var(--paint-yellow); border-radius: 2px;
}
.why__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat {
  background: var(--asphalt-2);
  border: 1px solid var(--asphalt-3);
  border-radius: 8px;
  padding: 32px 28px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 3.2rem; line-height: 1; color: var(--paint-yellow);
  display: block;
}
.stat__num em { font-style: normal; font-size: 0.45em; margin-left: 4px; }
.stat__label { display: block; margin-top: 10px; font-size: 0.82rem; color: var(--ink-muted); font-weight: 500; }

/* ==========================================================================
   AREA
   ========================================================================== */
.area { background: var(--asphalt-1); }
.area__map {
  background: var(--asphalt-2);
  border: 1px solid var(--asphalt-3);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 36px;
}
.area__pulse { animation: areaPulse 2.4s ease-out infinite; transform-origin: 140px 90px; }
@keyframes areaPulse {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.area__tags { display: flex; flex-wrap: wrap; gap: 12px; }
.area__tags li {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  border: 1px solid var(--asphalt-3);
  background: var(--asphalt-2);
  padding: 9px 18px; border-radius: 99px;
  color: var(--ink-muted);
  transition: border-color 0.3s, color 0.3s;
}
.area__tags li:hover { border-color: var(--paint-yellow); color: var(--paint-white); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--asphalt-0); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; }
.contact__info > p { color: var(--ink-muted); margin-top: 24px; max-width: 420px; }
.contact__details { margin-top: 38px; display: flex; flex-direction: column; gap: 22px; }
.contact__details li { display: flex; flex-direction: column; gap: 4px; }
.contact__detail-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--paint-yellow);
}
.contact__details a, .contact__details span:not(.contact__detail-label) { font-size: 1.05rem; font-weight: 600; }
.contact__details a:hover { color: var(--paint-yellow); }

.contact__form {
  background: var(--asphalt-2);
  border: 1px solid var(--asphalt-3);
  border-radius: 10px;
  padding: 42px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; grid-column: span 2; }
.field--half { grid-column: span 1; }
.field label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted);
}
.field input, .field select, .field textarea {
  background: var(--asphalt-0);
  border: 1px solid var(--asphalt-3);
  border-radius: 5px;
  color: var(--paint-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffc81a' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--paint-yellow);
  box-shadow: 0 0 0 3px rgba(255, 200, 26, 0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.contact__form .btn { grid-column: span 2; margin-top: 6px; }
.contact__fineprint { grid-column: span 2; text-align: center; font-size: 0.78rem; color: var(--ink-muted); }

/* Turnstile widget + validation message */
.captcha-field { gap: 10px; }
.form-error {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  color: #ff6b5e;
}
.form-note {
  grid-column: span 2; text-align: center;
  font-size: 0.84rem; font-weight: 600; color: var(--paint-yellow);
  border: 1px solid rgba(255, 200, 26, 0.4); border-radius: 6px;
  padding: 12px 16px; margin-top: 2px;
}
/* returned-from-send.php failures read as errors, not notices */
.form-note--error {
  color: #ff6b5e; border-color: rgba(255, 107, 94, 0.45);
}
@media (max-width: 360px) {
  /* the widget is a fixed ~300px; nudge it to fit the narrowest phones */
  .cf-turnstile { transform: scale(0.9); transform-origin: left top; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #0a0a0b; padding-bottom: 44px; }
.footer__stripes { display: flex; gap: 26px; padding: 0 0 44px; overflow: hidden; }
.footer__stripes i { flex-shrink: 0; width: 90px; height: 8px; background: var(--paint-yellow); border-radius: 2px; opacity: 0.85; }
.footer__inner { text-align: center; }
.footer__brand {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display); letter-spacing: 0.1em; font-size: 1.1rem;
  margin-bottom: 18px;
}
.footer__meta { color: var(--ink-muted); font-size: 0.9rem; line-height: 1.9; }
.footer__meta a { color: var(--paint-white); font-weight: 600; }
.footer__meta a:hover { color: var(--paint-yellow); }
.footer__copy { margin-top: 26px; font-size: 0.76rem; color: #5b5b61; letter-spacing: 0.06em; }
.footer__copy a { color: #8a8a90; text-decoration: none; border-bottom: 1px solid rgba(255,200,26,0.35); }
.footer__copy a:hover { color: var(--paint-yellow); }

/* ==========================================================================
   GENERIC REVEAL HOOKS (GSAP sets/animates these)
   ========================================================================== */
.fade-up { opacity: 0; transform: translateY(36px); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .svc-card--wide { grid-column: span 1; flex-direction: column; }
  .svc-card--wide .svc-card__visual { height: 200px; border-right: 0; border-bottom: 1px solid var(--asphalt-3); }
  .why__grid, .contact__grid { grid-template-columns: 1fr; gap: 56px; }
  .process__road { left: 28px; top: 200px; }
  .process__step,
  .process__step:nth-child(odd),
  .process__step:nth-child(even) {
    width: 100%; margin-left: 0;
    flex-direction: row; text-align: left;
    padding: 0 0 0 4px;
  }
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed; inset: 0;
    background: rgba(10, 10, 11, 0.97);
    flex-direction: column; align-items: center; justify-content: center; gap: 38px;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease-out);
    z-index: -1;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { font-size: 1.3rem; }
  .nav__cta { margin-left: auto; padding: 10px 14px; font-size: 0.8rem; }
  .nav__burger { display: block; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero__content { padding: 120px 20px 90px; }
  .hero__actions .btn { width: 100%; }
  .contact__form { padding: 30px 22px; grid-template-columns: 1fr; }
  .field--half, .contact__form .btn, .contact__fineprint, .field { grid-column: span 1; }
  .why__stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat { padding: 24px 18px; }
  .stat__num { font-size: 2.4rem; }
  .nav__brand-text { font-size: 0.9rem; }
  .band { height: 60vh; }
}

/* ==========================================================================
   REDUCED MOTION — show everything, skip the show
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; }
  .hero__line > span { transform: none; }
  .hero__eyebrow, .hero__sub, .hero__actions, .hero__hours { opacity: 1; }
  .area__pulse { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
