/* ==========================================================================
   Precision Hauling & Grading — Elevated
   Black + White + Hi-Vis Safety Yellow. Rugged, clean, confident.
   ========================================================================== */

:root {
  --black: #0e0e0e;
  --black-soft: #1a1a1a;
  --white: #ffffff;
  --yellow: #ffc400;
  --yellow-bright: #ffd23f;
  --gray: #9a9a9a;
  --gray-dark: #3a3a3a;
  --sand: #f4f2ee;

  --font-head: "Anton", "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
  --gut: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --header-h: 76px;
  --bar-h: 68px; /* mobile action bar */

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

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.75rem, 8vw, 6rem); }
h2 { font-size: clamp(2.1rem, 5.2vw, 4rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
p  { margin: 0 0 1.25rem; }
.hl { color: var(--yellow); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--section-y); }
.section--dark  { background: var(--black); color: var(--white); }
.section--light { background: var(--sand); color: var(--black); }
.section--light .lead { color: #4a4a4a; }
.lead { color: var(--gray); font-size: 1.125rem; max-width: 62ch; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 3px;
  background: var(--yellow);
  flex: none;
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 56px;
  padding: 0 1.9rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              color 0.25s var(--ease), border-color 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
}
.btn--primary:hover { background: var(--yellow-bright); box-shadow: 0 10px 22px rgba(255, 196, 0, 0.28); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.55); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.section--light .btn--ghost { color: var(--black); border-color: rgba(14, 14, 14, 0.35); }
.section--light .btn--ghost:hover { border-color: var(--black); background: rgba(14, 14, 14, 0.06); }
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--black-soft); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.arrow-link span { transition: transform 0.25s var(--ease); }
.arrow-link:hover span { transform: translateX(6px); }

/* ---------------------------------------------------------------- header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.header.is-stuck {
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 30px rgba(0, 0, 0, 0.5);
}
.header__inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo { display: flex; align-items: center; gap: 0.6rem; margin-right: auto; }
.logo__mark {
  width: auto; height: 34px;
  flex: none;
  display: block;
}
.logo__text { font-family: var(--font-head); font-size: 1.0625rem; line-height: 1.05; color: var(--white); text-transform: uppercase; }
.logo__text small { display: block; font-family: var(--font-body); font-size: 0.625rem; letter-spacing: 0.24em; color: var(--yellow); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-block: 0.35rem;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--yellow);
  transition: width 0.3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--yellow); }

.header__cta { display: flex; align-items: center; gap: 1.25rem; }
.header__phone { font-family: var(--font-head); font-size: 1.125rem; color: var(--white); letter-spacing: 0.02em; }
.header__phone:hover { color: var(--yellow); }
.header .btn { min-height: 46px; padding-inline: 1.25rem; font-size: 0.875rem; }

.burger {
  display: none;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--white); position: relative; transition: background 0.2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--white);
  transition: transform 0.3s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--black);
  padding: 2rem var(--gut) calc(var(--bar-h) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  overflow-y: auto;
}
.mobile-nav.is-open { opacity: 1; transform: none; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.75rem;
  text-transform: uppercase;
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav a:hover { color: var(--yellow); }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  /* Real jobsite still shows on EVERY state (mobile, reduced-motion, and
     before the desktop video loads). The dark gradient is the last-resort
     fallback only if the image itself fails.
     2026-07-30: swapped from the Pexels stock (hero-poster.jpg) to Kevin's
     REAL action shot. To revert, comment the hero-jobsite line + restore the
     hero-poster line below. */
  /* JPEG line first = fallback for browsers without image-set/WebP */
  background:
    url(../img/eastern-nc-grading-dump-truck-1200.jpg) center / cover no-repeat,
    linear-gradient(180deg, #171717 0%, #101010 55%, #0b0b0b 100%);
  background:
    image-set(
      url(../img/eastern-nc-grading-dump-truck-1200.webp) type("image/webp"),
      url(../img/eastern-nc-grading-dump-truck-1200.jpg) type("image/jpeg")
    ) center / cover no-repeat,
    linear-gradient(180deg, #171717 0%, #101010 55%, #0b0b0b 100%);
}
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.hero__video { display: block; }
@keyframes kenburns {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(0, -1.5%, 0); }
}

/* logo-first hero */
.hero--logo { align-items: center; text-align: center; padding-bottom: clamp(4rem, 10vw, 7rem); }
.hero__inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.hero__lockup { margin: 0; max-width: min(88vw, 460px); }
.hero__lockup img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.6));
}
.hero--logo .hero__sub { text-align: center; max-width: 46ch; margin: 0 auto; }
.hero--logo .btn-row { justify-content: center; }
.hero--logo .hero__trust { justify-content: center; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* central vignette keeps the white logo readable over bright/busy footage;
     bottom stays dark for the buttons + serving-area line. */
  background:
    radial-gradient(58% 55% at 50% 44%, rgba(14, 14, 14, 0.68), transparent 76%),
    linear-gradient(to top, rgba(14, 14, 14, 0.94) 0%, rgba(14, 14, 14, 0.5) 48%, rgba(14, 14, 14, 0.58) 100%);
}
.hero h1 { max-width: 16ch; margin-bottom: 1.25rem; }
.hero__sub { font-size: clamp(1.0625rem, 1.9vw, 1.375rem); color: #e4e4e4; max-width: 52ch; margin-bottom: 2.25rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
  margin-top: 2.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d6d6d6;
}
.hero__trust span { display: flex; align-items: center; gap: 0.5rem; }
.hero__trust span::before { content: ""; width: 6px; height: 6px; background: var(--yellow); flex: none; }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 1.5rem;
  transform: translateX(-50%);
  width: 22px; height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  z-index: 2;
}
.scroll-cue::after {
  content: "";
  position: absolute; left: 50%; top: 7px;
  width: 3px; height: 7px; background: var(--yellow);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: cue 1.9s var(--ease) infinite;
}
@keyframes cue {
  0%, 100% { opacity: 0; transform: translate(-50%, 0); }
  35%      { opacity: 1; transform: translate(-50%, 3px); }
  70%      { opacity: 0; transform: translate(-50%, 11px); }
}

/* page hero (interior pages) */
.pagehero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(4rem, 9vw, 7rem));
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pagehero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 12% 0%, rgba(255, 196, 0, 0.14), transparent 60%);
  pointer-events: none;
}
.pagehero h1 { font-size: clamp(2.35rem, 6vw, 4.75rem); max-width: 20ch; }
.crumbs { font-size: 0.8125rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 1.5rem; }
.crumbs a:hover { color: var(--yellow); }

/* -------------------------------------------------------------- value bar */
.valuebar { background: var(--yellow); color: var(--black); }
.valuebar ul {
  list-style: none; margin: 0; padding-block: 1.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem 2rem;
}
.valuebar li {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 800; font-size: 0.9375rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.valuebar li::before {
  content: "✓";
  font-size: 0.875rem;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--black); color: var(--yellow);
  border-radius: 50%; flex: none;
}

/* ----------------------------------------------------------------- split */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__media { position: relative; }
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #d9d5cd;
  aspect-ratio: 4 / 3;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.media-frame:hover img { transform: scale(1.05); }
.media-frame::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 6px; background: var(--yellow);
}

/* placeholder frames (until Kevin's photos land) */
.ph {
  display: grid; place-content: center; text-align: center; gap: 0.5rem;
  background: repeating-linear-gradient(45deg, #2a2a2a 0 14px, #232323 14px 28px);
  color: var(--gray);
  padding: 2rem;
  min-height: 100%;
}
.section--light .ph { background: repeating-linear-gradient(45deg, #e6e2da 0 14px, #ddd8ce 14px 28px); color: #6d6a63; }
.ph b { display: block; font-family: var(--font-head); font-size: 1.0625rem; letter-spacing: 0.04em; color: var(--yellow); text-transform: uppercase; }
.section--light .ph b { color: #8a6f00; }
.ph small { font-size: 0.8125rem; line-height: 1.5; }

/* -------------------------------------------------------------- services */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.12); }
.svc {
  position: relative;
  background: var(--black);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: background 0.35s var(--ease);
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--yellow);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.svc:hover { background: var(--black-soft); }
.svc:hover::before { transform: scaleY(1); }
.svc__num {
  font-family: var(--font-head);
  font-size: 2.75rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.14);
  transition: color 0.35s var(--ease);
}
.svc:hover .svc__num { color: var(--yellow); }
.svc h3 { margin: 0; }
.svc h3 a { display: inline-block; position: relative; }
.svc h3 a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 3px; width: 0; background: var(--yellow);
  transition: width 0.4s var(--ease);
}
.svc:hover h3 a::after { width: 100%; }
.svc p { color: var(--gray); margin: 0 0 0.5rem; font-size: 0.9875rem; }
.svc .arrow-link { margin-top: auto; }

/* ------------------------------------------------------------------- why */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.why { border-top: 3px solid var(--black); padding-top: 1.5rem; }
.why__icon { font-size: 1.75rem; line-height: 1; margin-bottom: 0.9rem; display: block; }
.why h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.why p { color: #55524c; font-size: 0.9375rem; margin: 0; }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid rgba(14, 14, 14, 0.14);
  padding-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.stat__num { font-family: var(--font-head); font-size: clamp(2.75rem, 6vw, 4.5rem); line-height: 1; color: var(--black); }
.stat__num sup { color: var(--yellow); font-size: 0.5em; vertical-align: super; }
.stat__label { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #6b6862; }

/* ---------------------------------------------------------- service area */
.towns { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-block: 2.25rem; }
.town {
  display: inline-flex; align-items: center;
  padding: 0.6rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #dcdcdc;
  transition: all 0.25s var(--ease);
}
.town:hover, a.town:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); transform: translateY(-2px); }
.section--light .town { border-color: rgba(14, 14, 14, 0.2); color: #3d3a35; }

/* ---- Eastern NC service-area map (inline SVG) ---- */
.ncmap-wrap { max-width: 720px; margin: 2.5rem auto 1.5rem; }
.ncmap { width: 100%; height: auto; display: block; overflow: visible; }
.ncmap__base path { fill: rgba(255, 255, 255, 0.04); stroke: rgba(255, 255, 255, 0.13); stroke-width: 0.5; vector-effect: non-scaling-stroke; }
/* bold, unmistakable service region (translucent yellow goes muddy over dark,
   so the highlight is a confident near-solid yellow; dark pins punch on top) */
.ncmap__served { filter: drop-shadow(0 3px 14px rgba(255, 196, 0, 0.28)); }
.ncmap__served path { fill: rgba(255, 196, 0, 0.9); stroke: rgba(120, 90, 0, 0.85); stroke-width: 0.5; vector-effect: non-scaling-stroke; }
.section--light .ncmap__base path { fill: rgba(14, 14, 14, 0.05); stroke: rgba(14, 14, 14, 0.16); }
.section--light .ncmap__served path { fill: rgba(255, 196, 0, 0.95); stroke: rgba(150, 110, 0, 0.9); }

.pin__drop { fill: #0e0e0e; stroke: rgba(255, 255, 255, 0.55); stroke-width: 0.6; vector-effect: non-scaling-stroke; }
.pin__dot { fill: #fff; }
/* home base: inverted (white body, dark centre) + larger via SVG scale group */
.pin--home .pin__drop { fill: #fff; stroke: #0e0e0e; stroke-width: 1; }
.pin--home .pin__dot { fill: #0e0e0e; }
/* white text + dark halo reads on both the yellow region and the dark base */
.pin__label {
  fill: #fff; font-family: var(--font-body); font-weight: 700; font-size: 7.5px;
  paint-order: stroke; stroke: rgba(14, 14, 14, 0.92); stroke-width: 2.8px; stroke-linejoin: round;
}
.pin--home .pin__label { font-size: 8.5px; }

/* drop-in on reveal (staggered by --i set per pin); visible by default so a
   revealed map never hides pins if the animation never runs. */
.is-in .ncmap .pin__vis { animation: pinDrop 0.5s var(--ease) both; animation-delay: calc(var(--i) * 0.045s + 0.15s); }
.is-in .ncmap .pin__label { animation: pinFade 0.5s ease both; animation-delay: calc(var(--i) * 0.045s + 0.32s); }
@keyframes pinDrop { from { opacity: 0; transform: translateY(-13px) scale(0.5); } to { opacity: 1; transform: none; } }
@keyframes pinFade { from { opacity: 0; } to { opacity: 1; } }

.ncmap__legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.75rem; margin: 0.5rem 0 0; font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray); }
.ncmap__legend span { display: inline-flex; align-items: center; gap: 0.5rem; }
.ncmap__key { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.ncmap__key--home { background: #fff; border: 2px solid #0e0e0e; box-shadow: 0 0 0 1px rgba(255,255,255,.4); }
.ncmap__key--area { background: var(--yellow); border-radius: 3px; }
.towns-list { color: var(--gray); font-size: 0.9375rem; line-height: 1.9; max-width: 68ch; }
.towns-list a { color: #dcdcdc; border-bottom: 1px solid rgba(255, 196, 0, 0.4); }
.towns-list a:hover { color: var(--yellow); }
.section--light .towns-list a { color: #3d3a35; }
@media (prefers-reduced-motion: reduce) {
  .ncmap .pin__vis, .ncmap .pin__label { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------------------------------------------------------------- gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.shot { position: relative; overflow: hidden; border-radius: 2px; aspect-ratio: 4 / 3; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.shot:hover img { transform: scale(1.06); }
.shot__cap {
  position: absolute; inset: auto 0 0 0;
  padding: 1.75rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.92), transparent);
  font-size: 0.875rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--white);
}
.shot__cap em { display: block; font-style: normal; font-weight: 500; color: var(--yellow); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* ------------------------------------ before/after slider (drop-in .shot)
   Before image is the base; the after layer is clipped to the drag position
   via --pos. No JS -> stays a clean 50/50 split. main.js adds drag + keys. */
.ba { position: absolute; inset: 0; --pos: 50%; cursor: ew-resize; touch-action: none; user-select: none; outline: none; }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
/* the "after" isn't shot yet — branded placeholder behind the wipe */
.ba__soon {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 0.4rem; padding: 1rem;
  background: repeating-linear-gradient(45deg, #16150f 0 14px, #1d1b12 14px 28px);
}
.ba__soon b { font-family: var(--font-head); font-size: 1rem; letter-spacing: 0.06em; color: var(--yellow); text-transform: uppercase; }
.ba__soon small { font-size: 0.75rem; line-height: 1.5; color: rgba(255, 255, 255, 0.72); }
.shot:hover .ba__img { transform: none; }        /* cancel the .shot img hover-zoom (breaks the wipe) */
.ba__divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: var(--yellow); transform: translateX(-1px); pointer-events: none; }
.ba__handle {
  position: absolute; top: 50%; left: var(--pos); width: 40px; height: 40px;
  transform: translate(-50%, -50%);
  border-radius: 50%; background: var(--yellow); color: #0e0e0e;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; line-height: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45); pointer-events: none;
}
.ba:focus-visible .ba__handle { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 2px 10px rgba(0, 0, 0, 0.45); }
.ba__tag {
  position: absolute; top: 0.75rem; z-index: 2;
  padding: 0.2rem 0.55rem; border-radius: 2px;
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(14, 14, 14, 0.78); color: #fff; pointer-events: none;
}
.ba__tag--before { right: 0.75rem; }
.ba__tag--after  { left: 0.75rem; }
.shot .ba ~ .shot__cap, .shot .ba + .shot__cap { pointer-events: none; }  /* let drags pass through the caption */
@media (prefers-reduced-motion: reduce) { .ba { cursor: default; } }

/* ------------------------------------------------------------- reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review {
  background: var(--white);
  border: 1px solid rgba(14, 14, 14, 0.08);
  border-radius: 2px;
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: 0 10px 30px rgba(14, 14, 14, 0.05);
}
.stars { color: var(--yellow); letter-spacing: 0.15em; font-size: 1.125rem; }
.review p { color: #3d3a35; margin: 0; font-size: 1rem; }
.review__by { margin-top: auto; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #8a8781; }
.review--seed { background: var(--black); color: var(--white); }
.review--seed p { color: #dcdcdc; }
.review--seed .review__by { color: var(--yellow); }

/* -------------------------------------------------------------- final cta */
.cta-band { background: var(--yellow); color: var(--black); text-align: center; }
.cta-band h2 { font-size: clamp(2.4rem, 7vw, 5.25rem); margin-bottom: 1rem; }
.cta-band p { color: #2b2b2b; font-size: 1.125rem; max-width: 56ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }
.cta-band .btn--primary { background: var(--black); color: var(--yellow); box-shadow: 0 6px 0 rgba(0, 0, 0, 0.18); }
.cta-band .btn--primary:hover { background: var(--black-soft); }
.cta-band .btn--ghost { color: var(--black); border-color: rgba(14, 14, 14, 0.45); }
.cta-band .btn--ghost:hover { background: rgba(14, 14, 14, 0.08); border-color: var(--black); }
.cta-band .fineprint { margin-top: 1.75rem; margin-bottom: 0; font-size: 0.875rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

/* ------------------------------------------------------------------ form */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--yellow); background: rgba(255, 255, 255, 0.07);
}
.field select option { background: var(--black); }
.form .btn { width: 100%; }
.form .btn[disabled] { opacity: 0.6; cursor: default; transform: none; }
.form__note { font-size: 0.8125rem; color: var(--gray); margin: 0; }
/* honeypot — off-screen, never shown to real users */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-done { text-align: center; padding: 2.5rem 1rem; }
.form-done h3 { color: var(--yellow); margin-bottom: 0.75rem; }
.form-done p { color: #d0d0d0; margin: 0; }

/* ---------------------------------------------------------------- footer */
.footer { background: var(--black); border-top: 1px solid rgba(255, 255, 255, 0.1); padding-block: clamp(3rem, 6vw, 5rem) 2rem; text-align: center; }
.footer .logo { justify-content: center; margin: 0 0 1.25rem; }
.logo--footer { display: inline-flex; }
.logo--footer img { width: auto; height: 128px; }
.footer__tag { font-family: var(--font-head); font-size: 1.5rem; text-transform: uppercase; color: var(--white); margin-bottom: 2rem; }
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; text-align: left; margin-bottom: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer__grid h4 { font-size: 0.9375rem; letter-spacing: 0.14em; color: var(--yellow); margin-bottom: 1rem; }
.footer__grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer__grid a, .footer__grid li { color: var(--gray); font-size: 0.9375rem; }
.footer__grid a:hover { color: var(--yellow); }
.footer__phone { font-family: var(--font-head); font-size: 1.75rem; color: var(--white) !important; }
.footer__phone:hover { color: var(--yellow) !important; }
.footer__social { display: flex; gap: 0.85rem; margin: 0 0 2.25rem; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; color: var(--gray); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease; }
.footer__social a:hover { color: #111; background: var(--yellow); border-color: var(--yellow); }
.footer__social svg { display: block; }
@media (max-width: 700px) { .footer__social { justify-content: center; } }
.footer__legal { font-size: 0.8125rem; color: #6d6d6d; display: grid; gap: 0.4rem; }
.footer__legal a:hover { color: var(--yellow); }

/* --------------------------------------------------- sticky mobile bar */
.actionbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 98;
  display: none;
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.45);
}
.actionbar a {
  flex: 1;
  min-height: var(--bar-h);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 800; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding-bottom: env(safe-area-inset-bottom);
}
.actionbar .ab-text { background: var(--yellow); color: var(--black); }
.actionbar .ab-call { background: var(--black); color: var(--white); }

/* ------------------------------------------------------------ animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__media { animation: none; }
}

/* ---------------------------------------------------------- breakpoints */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery  { grid-template-columns: repeat(2, 1fr); }
  .reviews  { grid-template-columns: 1fr; }
  .valuebar ul { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav, .header__phone { display: none; }
  .burger { display: grid; }
  .split { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__grid ul { justify-items: center; }
  .actionbar { display: flex; }
  body { padding-bottom: var(--bar-h); }
  .header .btn { display: none; }
}

@media (max-width: 620px) {
  .why-grid, .gallery, .valuebar ul, .stats { grid-template-columns: 1fr; }
  .stats { gap: 2rem; }
  .btn-row .btn { width: 100%; }
  .hero { align-items: flex-end; }
}

/* ------------------------------------------------------------------ misc */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--yellow); color: var(--black); padding: 0.75rem 1.25rem; font-weight: 700;
}
.skip:focus { left: 0; }

.prose h2 { margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: #d0d0d0; max-width: 70ch; }
.section--light .prose p { color: #4a4740; }
.prose ul { color: #d0d0d0; max-width: 70ch; padding-left: 1.25rem; margin-bottom: 1.5rem; }
.section--light .prose ul { color: #4a4740; }
.prose li { margin-bottom: 0.5rem; }
.prose li::marker { color: var(--yellow); }
