/* ==========================================================================
   TREE RATS TREE SERVICE
   Design system + stylesheet
   --------------------------------------------------------------------------
   Palette is pulled straight off the logo: soot black, acid lime, army olive,
   bone white, bark brown. Everything is token-driven, so change the tokens in
   :root and the whole site follows.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --ink:        #08090a;
  --ink-2:      #101214;
  --ink-3:      #171a1d;
  --ink-4:      #21252a;
  --acid:       #cfe33c;
  --acid-hot:   #e2f84a;
  --acid-deep:  #a3b81f;
  --olive:      #5f6f2a;
  --bone:       #f4f1e6;
  --bone-dim:   #a9a79d;
  --bark:       #6d4a30;
  --rust:       #ff6a1a;
  --danger:     #e5484d;

  /* Semantic */
  --bg:            var(--ink);
  --bg-raised:     var(--ink-2);
  --bg-card:       var(--ink-3);
  --text:          var(--bone);
  --text-muted:    var(--bone-dim);
  --accent:        var(--acid);
  --line:          rgba(244, 241, 230, 0.10);
  --line-strong:   rgba(244, 241, 230, 0.18);

  /* Type */
  --font-display: 'Anton', 'Arial Narrow', 'Haettenschweiler', 'Impact', sans-serif;
  --font-brush:   'Permanent Marker', 'Bradley Hand', cursive;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Fluid type scale: clamp(min, preferred, max) */
  --fs-xs:   clamp(0.72rem, 0.70rem + 0.12vw, 0.80rem);
  --fs-sm:   clamp(0.84rem, 0.81rem + 0.16vw, 0.94rem);
  --fs-base: clamp(1.00rem, 0.96rem + 0.20vw, 1.12rem);
  --fs-md:   clamp(1.15rem, 1.08rem + 0.36vw, 1.38rem);
  --fs-lg:   clamp(1.45rem, 1.28rem + 0.85vw, 2.10rem);
  --fs-xl:   clamp(2.00rem, 1.62rem + 1.90vw, 3.40rem);
  --fs-2xl:  clamp(2.70rem, 1.95rem + 3.75vw, 5.60rem);
  --fs-3xl:  clamp(3.30rem, 2.10rem + 6.00vw, 8.00rem);

  /* Space */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 3rem;     --sp-8: 4rem;
  --sp-9: 6rem;     --sp-10: 8rem;
  --section-y: clamp(3.5rem, 2rem + 7vw, 8rem);
  --gutter:    clamp(1.15rem, 0.6rem + 2.4vw, 3rem);
  --maxw:      78rem;
  --maxw-text: 46rem;

  /* Shape */
  --r-sm: 4px;  --r-md: 10px;  --r-lg: 18px;  --r-xl: 28px;  --r-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 10px 30px -12px rgba(0,0,0,.7);
  --shadow-lg: 0 30px 70px -25px rgba(0,0,0,.85);
  --glow:      0 0 0 1px rgba(207,227,60,.35), 0 12px 40px -12px rgba(207,227,60,.35);

  /* Motion */
  --ease-out:  cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
  --ease-back: cubic-bezier(.34,1.56,.64,1);
  --dur-fast: .18s;  --dur: .35s;  --dur-slow: .7s;

  --header-h: 74px;
}

@media (max-width: 640px) { :root { --header-h: 62px; } }

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  /* `clip` rather than `hidden`: it stops sideways scroll without turning
     <html> into a scroll container (which would break position: sticky). */
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, svg, video, canvas { display: block; max-width: 100%; }
img, video { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
legend { padding: 0; }

/* Class-based `display` beats the UA sheet's [hidden] rule on specificity,
   so state it loudly: several controls here are toggled via the attribute. */
[hidden] { display: none !important; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--acid); color: var(--ink); }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-wrap: balance;
}
h1 { font-size: var(--fs-2xl); }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); line-height: 1.1; }
p  { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-brush);
  font-size: var(--fs-sm);
  color: var(--acid);
  text-transform: none;
  letter-spacing: .02em;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin-bottom: var(--sp-3);
  transform: rotate(-1.2deg);
}
.eyebrow::before {
  content: "";
  width: 2.2rem; height: 2px;
  background: var(--acid);
  border-radius: 2px;
  flex: none;
}

.lede { font-size: var(--fs-md); color: var(--text-muted); max-width: var(--maxw-text); }
.muted { color: var(--text-muted); }
.acid { color: var(--acid); }

/* Highlighter swipe behind text */
.mark {
  position: relative;
  color: var(--ink);
  padding: 0 .18em;
  white-space: nowrap;
}
.mark::before {
  content: "";
  position: absolute;
  /* Hugs the glyphs rather than the line box; headline line-height is
     under 1, so a loose box would bleed onto the line below. */
  inset: 14% -.05em 17%;
  background: var(--acid);
  transform: skewX(-6deg);
  z-index: -1;
  border-radius: 3px;
}
/* Give a marked headline just enough leading that the swipe can't collide
   with the next line. */
h1:has(.mark), h2:has(.mark), h3:has(.mark) { line-height: 1.04; }

/* Outlined display text */
.hollow {
  color: transparent;
  -webkit-text-stroke: 2px var(--acid);
  paint-order: stroke fill;
}
@media (max-width: 640px) { .hollow { -webkit-text-stroke-width: 1.5px; } }

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--wide { max-width: 92rem; }
.wrap--narrow { max-width: 58rem; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: calc(var(--section-y) * .6); }
.section-head { max-width: var(--maxw-text); margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lede { margin-inline: auto; }
.section-head h2 + .lede { margin-top: var(--sp-4); }

.grid { display: grid; gap: var(--sp-5); }
.stack > * + * { margin-top: var(--sp-4); }

/* Film grain over the whole page: gives the poster/screen-print feel */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--acid);
  --btn-fg: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .95em 1.6em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  letter-spacing: .09em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: var(--r-pill);
  isolation: isolate;
  overflow: hidden;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              color var(--dur-fast) linear;
  will-change: transform;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform var(--dur) var(--ease-out);
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.btn:hover::after { transform: translateY(0); }
.btn:hover { color: var(--acid); }
.btn:active { transform: translateY(0) scale(.985); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--bone);
  box-shadow: inset 0 0 0 2px var(--line-strong);
}
.btn--ghost::after { background: var(--acid); }
.btn--ghost:hover { color: var(--ink); box-shadow: inset 0 0 0 2px var(--acid); }

.btn--rust { --btn-bg: var(--rust); --btn-fg: #fff; }
.btn--rust:hover { color: var(--rust); }

.btn--lg { padding: 1.15em 2.1em; font-size: var(--fs-base); }
.btn--block { width: 100%; }
.btn__icon { width: 1.15em; height: 1.15em; flex: none; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

/* Text link with animated underline */
.link {
  position: relative;
  color: var(--acid);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .4em;
}
.link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.link:hover::after { transform: scaleX(1); transform-origin: left; }
.link svg { transition: transform var(--dur) var(--ease-out); }
.link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   6. CHIPS / BADGES
   -------------------------------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .45em .9em;
  border-radius: var(--r-pill);
  background: rgba(244,241,230,.05);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
}
.chip svg { width: 1em; height: 1em; color: var(--acid); flex: none; }
.chip--acid { background: rgba(207,227,60,.12); color: var(--acid); box-shadow: inset 0 0 0 1px rgba(207,227,60,.3); }

.chip-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* --------------------------------------------------------------------------
   7. SCROLL PROGRESS (chainsaw chain)
   -------------------------------------------------------------------------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(var(--p, 0));
  background:
    repeating-linear-gradient(90deg, var(--acid) 0 6px, var(--acid-deep) 6px 10px);
  will-change: transform;
}

/* --------------------------------------------------------------------------
   8. ALERT BAR
   -------------------------------------------------------------------------- */
.alertbar {
  background: var(--rust);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .55rem 0;
  position: relative;
  z-index: 60;
}
.alertbar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  text-align: center;
  flex-wrap: wrap;
}
.alertbar svg { width: 1.05em; height: 1.05em; flex: none; }
.alertbar a { text-decoration: underline; text-underline-offset: 3px; font-weight: 800; }
.alertbar a:hover { color: var(--ink); }
.alertbar__pulse {
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.8s var(--ease-in-out) infinite;
  flex: none;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  50%      { opacity: .6; transform: scale(.85); box-shadow: 0 0 0 7px rgba(255,255,255,0); }
}

/* --------------------------------------------------------------------------
   9. HEADER / NAV
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              backdrop-filter var(--dur) var(--ease-out);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8,9,10,.82);
  backdrop-filter: blur(14px) saturate(140%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.header.is-stuck::before { opacity: 1; border-bottom-color: var(--line); }

.header__inner {
  position: relative;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.brand { display: flex; align-items: center; gap: .7rem; flex: none; z-index: 2; }
.brand__mark {
  width: clamp(38px, 3.4vw, 48px);
  height: clamp(38px, 3.4vw, 48px);
  flex: none;
  transition: transform var(--dur) var(--ease-back);
}
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.06); }
.brand__text { display: flex; flex-direction: column; line-height: .85; }
.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, .9rem + .5vw, 1.4rem);
  letter-spacing: .01em;
  text-transform: uppercase;
}
.brand__sub {
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--acid);
  font-weight: 700;
  margin-top: .28em;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(1rem, 1.8vw, 2rem); }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, 1.8vw, 2rem); }
.nav__link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: .4rem 0;
  transition: color var(--dur-fast) linear;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.nav__link:hover, .nav__link[aria-current="true"] { color: var(--bone); }
.nav__link:hover::after, .nav__link[aria-current="true"]::after { transform: scaleX(1); transform-origin: left; }

.header__cta { display: flex; align-items: center; gap: var(--sp-3); }
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  letter-spacing: .02em;
  transition: color var(--dur-fast) linear;
}
.header__phone svg { width: 1.1em; height: 1.1em; color: var(--acid); }
.header__phone:hover { color: var(--acid); }

/* Burger */
.burger {
  display: none;
  position: relative;
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  box-shadow: inset 0 0 0 1px var(--line-strong);
  z-index: 2;
  flex: none;
  margin-left: auto;
}
/* Absolutely positioned off the exact centre; the two arms then land
   precisely on top of each other in the X state, with no margin arithmetic
   to drift out of sync. */
.burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--bone);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur-fast) linear;
}
.burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
.burger span:nth-child(2) { transform: translate(-50%, -50%); }
.burger span:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  /* --chrome-h is measured at runtime (alert bar + header), so the first link
     always clears the fixed chrome no matter how the bar text wraps. */
  padding: calc(var(--chrome-h, 110px) + 1.5rem) var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform var(--dur-slow) var(--ease-out), visibility 0s linear var(--dur-slow);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open { transform: translateY(0); visibility: visible; transition-delay: 0s; }
.drawer__list { display: flex; flex-direction: column; gap: .25rem; }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.2rem + 3vw, 2.6rem);
  text-transform: uppercase;
  padding: .35em 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(18px);
}
.drawer.is-open .drawer__link {
  animation: drawerIn .55s var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 55ms + 120ms);
}
@keyframes drawerIn { to { opacity: 1; transform: none; } }
.drawer__link span { font-family: var(--font-body); font-size: .7rem; color: var(--acid); letter-spacing: .2em; }
.drawer__link:hover { color: var(--acid); }
.drawer__foot { margin-top: auto; display: grid; gap: var(--sp-3); }

@media (max-width: 960px) {
  .nav, .header__cta { display: none; }
  .burger { display: grid; }
}

/* --------------------------------------------------------------------------
   10. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(600px, 92svh, 1000px);
  margin-top: calc(var(--header-h) * -1);
  padding-top: calc(var(--header-h) + clamp(2rem, 6vh, 5rem));
  padding-bottom: clamp(3rem, 8vh, 7rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Layered scene */
.hero__scene { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 70% 10%, rgba(207,227,60,.16) 0%, transparent 55%),
    radial-gradient(90% 70% at 20% 80%, rgba(95,111,42,.22) 0%, transparent 60%),
    linear-gradient(180deg, #0b0d0e 0%, #08090a 60%, #060708 100%);
}
/* Big acid moon/spotlight behind the headline, echoing the logo badge */
.hero__moon {
  position: absolute;
  top: 50%; left: 50%;
  width: min(78vw, 620px);
  aspect-ratio: 1;
  transform: translate(-50%, -55%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(207,227,60,.30), rgba(163,184,31,.10) 55%, transparent 70%);
  filter: blur(10px);
  z-index: -2;
}
.hero__ridge {
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: max(1600px, 160%);
  transform: translateX(-50%) translateY(var(--ridge-y, 0));
  will-change: transform;
}
.hero__ridge--far  { opacity: .5;  color: #12160c; }
.hero__ridge--mid  { opacity: .85; color: #0c0f08; }
.hero__ridge--near { opacity: 1;   color: #060806; }

/* Particle canvas (sawdust + leaves) */
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero__inner { width: 100%; position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

.hero h1 {
  font-size: var(--fs-3xl);
  line-height: .86;
  margin-bottom: var(--sp-5);
}
.hero h1 > span { display: block; }
.hero h1 .line-2 { color: var(--acid); }
.hero__lede { font-size: var(--fs-md); color: var(--text-muted); max-width: 34rem; margin-bottom: var(--sp-6); }
.hero__cta { margin-bottom: var(--sp-6); }
.hero__proof { display: flex; flex-wrap: wrap; gap: var(--sp-4) var(--sp-5); align-items: center; }
.hero__proof-item { display: flex; align-items: center; gap: .55rem; font-size: var(--fs-sm); color: var(--text-muted); }
.hero__proof-item svg { width: 1.4em; height: 1.4em; color: var(--acid); flex: none; }

/* Hero photo (right column) */
.hero__art {
  position: relative;
  /* Explicit width: auto margins on a grid item switch off stretching, so
     without this the figure collapses to the replaced-element default. */
  width: 100%;
  margin: 0 auto;
  max-width: min(100%, 560px);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: inset 0 0 0 1.5px rgba(207,227,60,.35), var(--shadow-lg);
  transform: rotate(-1.2deg);
}
.hero__art::after {
  /* Sink the photo into the dark page rather than letting it sit on top. */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(190deg, rgba(8,9,10,0) 35%, rgba(8,9,10,.72) 100%);
  pointer-events: none;
}
.hero__art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(.85) contrast(1.06) brightness(.94);
}

/* Photo figure used inside content sections */
.shot {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow-lg);
}
.shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 7;
  object-fit: cover;
  filter: saturate(.88) contrast(1.04) brightness(.95);
  transition: transform .8s var(--ease-out);
}
.shot:hover img { transform: scale(1.04); }
.hero__art-tag {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  display: inline-flex;
  align-items: center;
  gap: .55em;
  white-space: nowrap;
  padding: .55em 1.1em;
  border-radius: var(--r-pill);
  background: rgba(8,9,10,.85);
  box-shadow: inset 0 0 0 1.5px rgba(207,227,60,.45), var(--shadow-md);
  backdrop-filter: blur(8px);
  font-family: var(--font-brush);
  font-size: var(--fs-sm);
  color: var(--acid);
}
.hero__art-tag svg { width: 1.2em; height: 1.2em; flex: none; }
@media (max-width: 900px) {
  .hero__art { max-width: 460px; transform: none; }
}

/* Hero badge card (right column) */
.hero__card {
  position: relative;
  background: linear-gradient(160deg, rgba(23,26,29,.92), rgba(8,9,10,.86));
  box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow-lg);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.4rem);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.hero__card::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto;
  height: 60%;
  background: radial-gradient(60% 100% at 50% 0%, rgba(207,227,60,.22), transparent 70%);
  pointer-events: none;
}
.hero__card h2 { font-size: var(--fs-lg); margin-bottom: .5rem; }
.hero__card p { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-5); }
.hero__stamp {
  position: absolute;
  right: -18px; top: -18px;
  width: 118px; height: 118px;
  opacity: .18;
  animation: spin 34s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__scroll {
  position: absolute;
  bottom: clamp(1rem, 3vh, 2rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 1;
}
.hero__scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(var(--acid), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--acid);
  animation: scrollDot 2.2s var(--ease-in-out) infinite;
}
@keyframes scrollDot { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }
@media (max-width: 900px) { .hero__scroll { display: none; } }

/* --------------------------------------------------------------------------
   11. MARQUEE
   -------------------------------------------------------------------------- */
/* The band clips the tilted strip so its corners can't push the page sideways. */
.marquee-band {
  overflow: hidden;
  position: relative;
  z-index: 5;
  padding-block: .35rem;
  margin-block: -.5rem;
}
.marquee {
  background: var(--acid);
  color: var(--ink);
  padding: .85rem 0;
  overflow: hidden;
  position: relative;
  border-block: 2px solid var(--ink);
  transform: rotate(-.7deg) scale(1.03);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  flex: none;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(.95rem, .85rem + .5vw, 1.35rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
}
.marquee__item::after {
  content: "";
  width: 9px; height: 9px;
  background: var(--ink);
  transform: rotate(45deg);
  flex: none;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   12. STATS
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line);
}
.stat {
  background: var(--bg);
  padding: clamp(1.4rem, 1rem + 1.6vw, 2.2rem) clamp(1rem, .8rem + 1vw, 1.6rem);
  text-align: center;
  transition: background var(--dur) var(--ease-out);
}
.stat:hover { background: var(--bg-card); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.6rem);
  line-height: 1;
  color: var(--acid);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .05em;
}
.stat__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin-top: .6rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   13. SERVICES
   -------------------------------------------------------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(1rem, .6rem + 1.2vw, 1.6rem);
}
.svc {
  --svc-accent: var(--acid);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.2rem);
  background: var(--bg-card);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  will-change: transform;
}
/* Cursor-follow spotlight */
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 260px at var(--mx, 50%) var(--my, 0%), rgba(207,227,60,.16), transparent 70%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
  z-index: -1;
}
.svc:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px rgba(207,227,60,.35), var(--shadow-md); }
.svc:hover::before { opacity: 1; }
.svc__icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: rgba(207,227,60,.10);
  box-shadow: inset 0 0 0 1px rgba(207,227,60,.24);
  color: var(--svc-accent);
  transition: transform var(--dur) var(--ease-back), background var(--dur) var(--ease-out);
}
.svc__icon svg { width: 28px; height: 28px; }
.svc:hover .svc__icon { transform: rotate(-7deg) scale(1.08); background: rgba(207,227,60,.18); }
.svc h3 { font-size: var(--fs-md); }
.svc p { font-size: var(--fs-sm); color: var(--text-muted); flex: 1; }
.svc__tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.svc__tag {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  padding: .3em .7em;
  border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1px var(--line);
}
.svc__num {
  position: absolute;
  right: .7rem; top: .2rem;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--bone);
  opacity: .04;
  pointer-events: none;
}
.svc--wide { grid-column: span 2; }
@media (max-width: 720px) { .svc--wide { grid-column: span 1; } }

/* Emergency variant */
.svc--emergency { background: linear-gradient(150deg, rgba(255,106,26,.14), var(--bg-card) 60%); }
.svc--emergency .svc__icon { color: var(--rust); background: rgba(255,106,26,.12); box-shadow: inset 0 0 0 1px rgba(255,106,26,.3); }
.svc--emergency:hover { box-shadow: inset 0 0 0 1px rgba(255,106,26,.4), var(--shadow-md); }
.svc--emergency::before { background: radial-gradient(circle 260px at var(--mx,50%) var(--my,0%), rgba(255,106,26,.18), transparent 70%); }

/* --------------------------------------------------------------------------
   14. CHAINSAW CUT DIVIDER
   -------------------------------------------------------------------------- */
.cut {
  position: relative;
  height: clamp(52px, 6vw, 90px);
  overflow: hidden;
  color: var(--bg-raised);
}
.cut svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.cut--flip svg { transform: scaleY(-1); }

/* --------------------------------------------------------------------------
   15. WHY US / FEATURE SPLIT
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}
.split--reverse > *:first-child { order: 2; }
@media (max-width: 800px) { .split--reverse > *:first-child { order: 0; } }

.feature-list { display: grid; gap: var(--sp-4); }
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  align-items: start;
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--line);
}
.feature:last-child { border-bottom: 1px solid var(--line); }
.feature__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  flex: none;
  transition: transform var(--dur) var(--ease-back);
}
.feature__icon svg { width: 22px; height: 22px; }
.feature:hover .feature__icon { transform: scale(1.12) rotate(6deg); }
.feature h4 { margin-bottom: .35rem; }
.feature p { font-size: var(--fs-sm); color: var(--text-muted); }

/* --------------------------------------------------------------------------
   16. BEFORE / AFTER SLIDER
   -------------------------------------------------------------------------- */
.ba {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow-lg);
  touch-action: pan-y;
  user-select: none;
  cursor: ew-resize;
  background: var(--ink-2);
}
.ba__pane { position: absolute; inset: 0; }
.ba__pane img, .ba__pane .ph { width: 100%; height: 100%; object-fit: cover; }
/* Without this the browser starts its own image drag on pointerdown, which
   fires dragstart -> pointercancel and kills the wipe mid-drag. */
.ba__pane img { -webkit-user-drag: none; user-select: none; pointer-events: none; }
/* Until real photos are dropped in, tint the two placeholder panes
   differently so the slider still demonstrates what it does. */
.ba__pane--before .ph {
  background:
    repeating-linear-gradient(135deg, rgba(109,74,48,.16) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, #241d15, #12100c);
}
.ba__pane--after .ph {
  background:
    repeating-linear-gradient(135deg, rgba(207,227,60,.14) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, #1c2410, #0b0f07);
}
/* Keep the placeholder captions clear of the drag grip, and of each other,
   since both panes stack at the same coordinates. */
.ba .ph { align-items: end; padding-bottom: 3.5rem; }
.ba__pane--before .ph { justify-items: start; padding-left: 2.5rem; }
.ba__pane--after .ph  { justify-items: end;   padding-right: 2.5rem; }
.ba__pane--after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__label {
  position: absolute;
  bottom: 1rem;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  letter-spacing: .12em;
  padding: .45em 1em;
  border-radius: var(--r-pill);
  background: rgba(8,9,10,.75);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px var(--line-strong);
  pointer-events: none;
}
.ba__label--before { left: 1rem; }
.ba__label--after { right: 1rem; color: var(--acid); }
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  background: var(--acid);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 24px rgba(207,227,60,.6);
}
.ba__grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
}
.ba__grip svg { width: 26px; height: 26px; }
.ba:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }

/* --------------------------------------------------------------------------
   17. PROCESS
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(1rem, .6rem + 1.4vw, 2rem);
  counter-reset: step;
  position: relative;
}
.step {
  position: relative;
  padding-top: 2.6rem;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--acid);
  line-height: 1;
}
.step::after {
  content: "";
  position: absolute;
  top: .55rem; left: 3.2rem; right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
}
.step:last-child::after { display: none; }
@media (max-width: 620px) { .step::after { display: none; } }
.step h4 { margin-bottom: .5rem; }
.step p { font-size: var(--fs-sm); color: var(--text-muted); }

/* --------------------------------------------------------------------------
   18. ESTIMATOR WIZARD
   -------------------------------------------------------------------------- */
.estimator {
  background: linear-gradient(165deg, var(--ink-3), var(--ink));
  border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.estimator::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--acid), var(--olive), var(--rust));
}
.estimator__head {
  padding: clamp(1.4rem, 1rem + 1.6vw, 2.2rem) clamp(1.4rem, 1rem + 2vw, 2.6rem);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
}
.estimator__head h3 { font-size: var(--fs-lg); }
.estimator__head p { font-size: var(--fs-sm); color: var(--text-muted); margin-top: .3rem; }

.estimator__progress { display: flex; align-items: center; gap: .5rem; }
.estimator__dot {
  width: 34px; height: 6px;
  border-radius: var(--r-pill);
  background: var(--line-strong);
  transition: background var(--dur) var(--ease-out), width var(--dur) var(--ease-out);
}
.estimator__dot.is-active { background: var(--acid); width: 52px; }
.estimator__dot.is-done { background: var(--acid-deep); }

.estimator__body { padding: clamp(1.4rem, 1rem + 2vw, 2.6rem); }
.estep { display: none; animation: stepIn .45s var(--ease-out); }
.estep.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.estep__q { font-size: var(--fs-md); font-weight: 700; margin-bottom: .35rem; }
.estep__hint { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-5); }

.opts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: var(--sp-3);
}
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt__box {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  height: 100%;
  padding: 1.1rem 1.2rem;
  border-radius: var(--r-md);
  background: rgba(244,241,230,.03);
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.opt__box:hover { transform: translateY(-3px); background: rgba(244,241,230,.055); }
.opt input:checked + .opt__box {
  background: rgba(207,227,60,.12);
  box-shadow: inset 0 0 0 2px var(--acid);
}
.opt input:focus-visible + .opt__box { outline: 3px solid var(--acid); outline-offset: 3px; }
.opt__box strong { font-size: var(--fs-sm); font-weight: 700; letter-spacing: .02em; }
.opt__box small { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.4; }
.opt__icon { width: 30px; height: 30px; color: var(--acid); margin-bottom: .2rem; }

.estimator__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}

/* Result */
.eresult { text-align: center; }
.eresult__range {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.6rem);
  color: var(--acid);
  line-height: 1;
  margin-block: var(--sp-3) var(--sp-2);
}
.eresult__note { font-size: var(--fs-sm); color: var(--text-muted); max-width: 34rem; margin-inline: auto; }
.eresult__summary {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-block: var(--sp-5);
}

/* Fields */
.field { display: block; margin-bottom: var(--sp-4); text-align: left; }
.field__label {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.field__label .req { color: var(--rust); }
.input, .select, .textarea {
  width: 100%;
  padding: .9rem 1rem;
  background: rgba(244,241,230,.04);
  border: 0;
  border-radius: var(--r-md);
  box-shadow: inset 0 0 0 1px var(--line-strong);
  color: var(--bone);
  transition: box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.input::placeholder, .textarea::placeholder { color: rgba(169,167,157,.55); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  background: rgba(244,241,230,.07);
  box-shadow: inset 0 0 0 2px var(--acid);
}
.textarea { resize: vertical; min-height: 120px; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9a79d' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.8rem;
}
.select option { background: var(--ink-2); color: var(--bone); }
.field.has-error .input, .field.has-error .select, .field.has-error .textarea { box-shadow: inset 0 0 0 2px var(--danger); }
.field__error { display: none; font-size: var(--fs-xs); color: var(--danger); margin-top: .4rem; font-weight: 600; }
.field.has-error .field__error { display: block; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 0 var(--sp-4); }

/* --------------------------------------------------------------------------
   19. GALLERY
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  /* 300px (not 250) caps the grid at four columns on wide screens. At five
     columns the tile count leaves a three-cell hole in the last row; at four,
     three, two and one it packs flush. Also gives each photo more room. */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  grid-auto-rows: minmax(180px, auto);
  gap: clamp(.6rem, .4rem + .8vw, 1rem);
  /* Lets later tiles back-fill any hole a wide/tall span leaves behind, so
     the grid stays flush at every column count. */
  grid-auto-flow: dense;
}
.gtile {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: zoom-in;
  isolation: isolate;
}
.gtile--tall { grid-row: span 2; }
.gtile--wide { grid-column: span 2; }
@media (max-width: 620px) { .gtile--wide { grid-column: span 1; } .gtile--tall { grid-row: span 1; } }
.gtile img, .gtile .ph { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter var(--dur) var(--ease-out); }
.gtile:hover img, .gtile:hover .ph { transform: scale(1.07); filter: brightness(1.08); }
.gtile__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1rem .9rem;
  background: linear-gradient(transparent, rgba(8,9,10,.92));
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.gtile:hover .gtile__cap, .gtile:focus-within .gtile__cap { opacity: 1; transform: none; }

/* Illustrated placeholder used until real photos are dropped in */
.ph {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(207,227,60,.05) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, var(--ink-3), var(--ink));
  color: rgba(207,227,60,.5);
  min-height: 180px;
  text-align: center;
  padding: 1rem;
}
.ph__inner { display: grid; gap: .5rem; justify-items: center; }
.ph svg { width: 34px; height: 34px; opacity: .7; }
.ph span {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4,5,5,.94);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease-out), visibility 0s linear var(--dur);
}
.lightbox.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.lightbox__stage { max-width: min(1100px, 100%); max-height: 82svh; }
.lightbox__stage img, .lightbox__stage .ph {
  max-width: 100%;
  max-height: 82svh;
  width: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}
.lightbox__cap {
  text-align: center;
  margin-top: 1rem;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(244,241,230,.08);
  box-shadow: inset 0 0 0 1px var(--line-strong);
  transition: background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--acid); color: var(--ink); transform: scale(1.06); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav svg, .lightbox__close svg { width: 24px; height: 24px; }
.lightbox__nav--prev { left: clamp(.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: clamp(.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover, .lightbox__nav--next:hover { transform: translateY(-50%) scale(1.06); }

/* --------------------------------------------------------------------------
   20. REVIEWS
   -------------------------------------------------------------------------- */
.reviews { position: relative; }
.reviews__viewport { overflow: hidden; }
.reviews__track {
  --per: 3;
  --rev-gap: clamp(1rem, .6rem + 1.2vw, 1.6rem);
  display: flex;
  gap: var(--rev-gap);
  transition: transform .65s var(--ease-out);
  will-change: transform;
}
/* Cards divide the visible width exactly, so none is ever sliced mid-sentence.
   Breakpoints here must match perView() in main.js. */
@media (max-width: 1099px) { .reviews__track { --per: 2; } }
@media (max-width: 719px)  { .reviews__track { --per: 1; } }

.review {
  flex: 0 0 calc((100% - (var(--per) - 1) * var(--rev-gap)) / var(--per));
  background: var(--bg-card);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line);
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
  overflow: hidden;
}
.review::before {
  content: "\201C";
  position: absolute;
  right: .8rem; top: -1rem;
  /* Anton's subset has no curly quote, so use a serif that does. */
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 9rem;
  color: var(--acid);
  opacity: .09;
  line-height: 1;
  pointer-events: none;
}
.review__stars { display: flex; gap: .18rem; color: var(--acid); }
.review__stars svg { width: 18px; height: 18px; }
.review__text { font-size: var(--fs-sm); color: var(--text); flex: 1; }
.review__who { display: flex; align-items: center; gap: .8rem; }
.review__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--bone);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  flex: none;
}
.review__name { display: block; font-weight: 700; font-size: var(--fs-sm); line-height: 1.25; }
.review__meta { display: block; font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.35; }

.reviews__controls {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
  justify-content: space-between;
  flex-wrap: wrap;
}
.reviews__dots { display: flex; gap: .45rem; }
.reviews__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.reviews__dot.is-active { background: var(--acid); transform: scale(1.35); }
.reviews__arrows { display: flex; gap: .5rem; }
.iconbtn {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--line-strong);
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.iconbtn svg { width: 20px; height: 20px; }
.iconbtn:hover { background: var(--acid); color: var(--ink); }
.iconbtn:active { transform: scale(.94); }
.iconbtn[disabled] { opacity: .35; pointer-events: none; }

/* --------------------------------------------------------------------------
   21. STORM CTA BAND
   -------------------------------------------------------------------------- */
.storm {
  position: relative;
  background: linear-gradient(120deg, #1a0d04, #0b0708 60%);
  overflow: hidden;
  isolation: isolate;
}
.storm::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 100% at 15% 0%, rgba(255,106,26,.24), transparent 62%),
    radial-gradient(60% 90% at 90% 100%, rgba(207,227,60,.12), transparent 60%);
  z-index: -1;
}
.storm__grid {
  display: grid;
  gap: clamp(1.6rem, 1rem + 3vw, 3.5rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.storm h2 { font-size: var(--fs-xl); margin-bottom: var(--sp-4); }
.storm h2 em { font-style: normal; color: var(--rust); }
.storm__list { display: grid; gap: .7rem; margin-top: var(--sp-5); }
.storm__list li { display: flex; gap: .7rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--text-muted); }
.storm__list svg { width: 1.3em; height: 1.3em; color: var(--rust); flex: none; margin-top: .1em; }
.storm__box {
  background: rgba(8,9,10,.7);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(255,106,26,.28);
  padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.4rem);
  text-align: center;
  backdrop-filter: blur(10px);
}
.storm__box .big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.2rem + 3vw, 3rem);
  line-height: 1;
  margin-block: .5rem 1rem;
  transition: color var(--dur-fast) linear;
}
.storm__box a.big:hover { color: var(--rust); }

/* --------------------------------------------------------------------------
   22. SERVICE AREA
   -------------------------------------------------------------------------- */
.area__grid {
  display: grid;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  align-items: center;
}
.area__towns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .5rem;
}
.area__town {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  padding: .55rem .75rem;
  border-radius: var(--r-sm);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: color var(--dur-fast) linear, box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.area__town::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--acid);
  flex: none;
}
.area__town:hover { color: var(--bone); box-shadow: inset 0 0 0 1px rgba(207,227,60,.4); transform: translateX(3px); }

.radar { position: relative; aspect-ratio: 1; max-width: 460px; margin-inline: auto; width: 100%; }
.radar svg { width: 100%; height: 100%; overflow: visible; }
.radar__ring { fill: none; stroke: rgba(207,227,60,.25); stroke-width: 1; }
.radar__sweep { transform-origin: 50% 50%; animation: sweep 6s linear infinite; }
@keyframes sweep { to { transform: rotate(360deg); } }
.radar__pin { fill: var(--acid); }
.radar__pulse { fill: none; stroke: var(--acid); animation: ripple 3s var(--ease-out) infinite; transform-origin: 50% 50%; }
.radar__pulse:nth-of-type(2) { animation-delay: 1s; }
.radar__pulse:nth-of-type(3) { animation-delay: 2s; }
@keyframes ripple {
  0%   { r: 8; opacity: .9; stroke-width: 2; }
  100% { r: 92; opacity: 0; stroke-width: .4; }
}

/* --------------------------------------------------------------------------
   23. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .6rem; max-width: 56rem; margin-inline: auto; }
.qa {
  background: var(--bg-card);
  border-radius: var(--r-md);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.qa.is-open { box-shadow: inset 0 0 0 1px rgba(207,227,60,.32); }
.qa__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  text-align: left;
  padding: 1.15rem clamp(1rem, .8rem + 1vw, 1.6rem);
  font-family: var(--font-display);
  font-size: var(--fs-md);
  text-transform: uppercase;
  line-height: 1.15;
  transition: color var(--dur-fast) linear;
}
.qa__q:hover { color: var(--acid); }
.qa__sign {
  width: 32px; height: 32px;
  flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--line-strong);
  position: relative;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.qa__sign::before, .qa__sign::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur-fast) linear;
}
.qa__sign::before { width: 13px; height: 2px; }
.qa__sign::after  { width: 2px; height: 13px; }
.qa.is-open .qa__sign { background: var(--acid); color: var(--ink); transform: rotate(180deg); }
.qa.is-open .qa__sign::after { transform: scaleY(0); }
.qa__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease-out);
}
.qa.is-open .qa__a { grid-template-rows: 1fr; }
.qa__a > div { overflow: hidden; }
.qa__a p {
  padding: 0 clamp(1rem, .8rem + 1vw, 1.6rem) 1.4rem;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  max-width: 52rem;
}

/* --------------------------------------------------------------------------
   24. CONTACT
   -------------------------------------------------------------------------- */
.contact__grid {
  display: grid;
  gap: clamp(2rem, 1rem + 3vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  align-items: start;
}
.contact__card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line);
  padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.4rem);
}
.info-list { display: grid; gap: var(--sp-4); }
.info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  align-items: center;
}
.info__icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  background: rgba(207,227,60,.1);
  box-shadow: inset 0 0 0 1px rgba(207,227,60,.24);
  color: var(--acid);
  flex: none;
}
.info__icon svg { width: 22px; height: 22px; }
.info__label { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .14em; color: var(--text-muted); font-weight: 700; }
.info__value { font-size: var(--fs-md); font-weight: 600; line-height: 1.3; }
.info__value a:hover { color: var(--acid); }

.hours { display: grid; gap: .35rem; margin-top: var(--sp-5); }
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--fs-sm);
  padding: .45rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--text-muted);
}
.hours__row.is-today { color: var(--acid); font-weight: 700; }
.hours__row span:first-child { text-transform: uppercase; letter-spacing: .08em; font-size: var(--fs-xs); font-weight: 700; }

.formnote { font-size: var(--fs-xs); color: var(--text-muted); margin-top: var(--sp-4); }
.formstatus {
  display: none;
  margin-top: var(--sp-4);
  padding: 1rem 1.2rem;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 600;
}
.formstatus.is-visible { display: block; animation: stepIn .4s var(--ease-out); }
.formstatus--ok { background: rgba(207,227,60,.12); color: var(--acid); box-shadow: inset 0 0 0 1px rgba(207,227,60,.35); }
.formstatus--err { background: rgba(229,72,77,.12); color: var(--danger); box-shadow: inset 0 0 0 1px rgba(229,72,77,.35); }

/* Honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --------------------------------------------------------------------------
   25. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--ink-2);
  padding-top: clamp(3rem, 2rem + 4vw, 5rem);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.footer__grid {
  display: grid;
  gap: clamp(2rem, 1rem + 3vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  padding-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}
.footer__brand { max-width: 22rem; }
.footer__brand p { font-size: var(--fs-sm); color: var(--text-muted); margin-top: var(--sp-4); }
.footer h4 { font-size: var(--fs-sm); letter-spacing: .16em; margin-bottom: var(--sp-4); color: var(--acid); }
.footer__links { display: grid; gap: .6rem; }
.footer__links a { font-size: var(--fs-sm); color: var(--text-muted); transition: color var(--dur-fast) linear, transform var(--dur) var(--ease-out); display: inline-block; }
.footer__links a:hover { color: var(--acid); transform: translateX(4px); }
.socials { display: flex; gap: .6rem; margin-top: var(--sp-5); }
.social {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--line-strong);
  color: var(--text-muted);
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.social svg { width: 20px; height: 20px; }
.social:hover { background: var(--acid); color: var(--ink); transform: translateY(-3px); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-block: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}
.footer__bottom a:hover { color: var(--acid); }

/* Full logo lockup: shown once the real artwork is dropped in */
.footer__logo {
  margin: 0 auto;
  padding-block: clamp(1rem, .5rem + 2vw, 2.5rem);
  width: min(90%, 340px);
  display: block;
}
.footer__logo img {
  width: 100%;
  height: auto;
  /* The artwork sits on its own black plate, so round it and ring it like the
     site's cards so the edge reads as deliberate, not as a seam. */
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line), 0 18px 40px rgba(0,0,0,.55);
}

/* Giant watermark wordmark */
.footer__watermark {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 13rem);
  line-height: .78;
  text-align: center;
  color: var(--bone);
  opacity: .035;
  letter-spacing: -.01em;
  user-select: none;
  pointer-events: none;
  margin-top: -.1em;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   26. MOBILE ACTION BAR
   -------------------------------------------------------------------------- */
.actionbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  background: rgba(8,9,10,.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-strong);
  padding: .55rem var(--gutter) calc(.55rem + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.actionbar.is-visible { transform: translateY(0); }
.actionbar__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.actionbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .55rem .3rem;
  border-radius: var(--r-md);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-muted);
}
.actionbar a svg { width: 20px; height: 20px; }
.actionbar a.is-primary { background: var(--acid); color: var(--ink); }
@media (max-width: 860px) {
  .actionbar { display: block; }
  body { padding-bottom: 72px; }
}

/* Back to top */
.totop {
  position: fixed;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  z-index: 88;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--acid);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.85);
  transition: all var(--dur) var(--ease-out);
}
.totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.totop:hover { transform: translateY(-3px) scale(1.06); }
.totop svg { width: 22px; height: 22px; }
@media (max-width: 860px) { .totop { bottom: 86px; } }

/* --------------------------------------------------------------------------
   27. UTILITIES
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: absolute;
  top: -100px; left: 1rem;
  z-index: 999;
  background: var(--acid);
  color: var(--ink);
  padding: .8rem 1.2rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-weight: 800;
  transition: top var(--dur) var(--ease-out);
}
.skip:focus { top: 0; }

.bg-raised { background: var(--bg-raised); }
.text-center { text-align: center; }

/* --------------------------------------------------------------------------
   28. SCROLL REVEAL
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"]  { transform: scale(.94); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* On narrow screens a sideways start position can push the page wider than
   the viewport before the element reveals; come from below instead. */
@media (max-width: 760px) {
  [data-reveal="left"], [data-reveal="right"] { transform: translateY(28px); }
}

/* Staggered children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-stagger].is-in > * { opacity: 1; transform: none; }
[data-stagger].is-in > *:nth-child(1) { transition-delay: 0ms; }
[data-stagger].is-in > *:nth-child(2) { transition-delay: 70ms; }
[data-stagger].is-in > *:nth-child(3) { transition-delay: 140ms; }
[data-stagger].is-in > *:nth-child(4) { transition-delay: 210ms; }
[data-stagger].is-in > *:nth-child(5) { transition-delay: 280ms; }
[data-stagger].is-in > *:nth-child(6) { transition-delay: 350ms; }
[data-stagger].is-in > *:nth-child(7) { transition-delay: 420ms; }
[data-stagger].is-in > *:nth-child(8) { transition-delay: 490ms; }

/* --------------------------------------------------------------------------
   29. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
  .marquee { transform: none; margin-block: 0; }
  .hero__canvas { display: none; }
}

/* --------------------------------------------------------------------------
   30. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .header, .drawer, .actionbar, .totop, .grain, .progress, .alertbar,
  .marquee, .hero__canvas, .hero__scene, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; }
}
