/* ============================================================
   TG SERVICES — Lawn & Exterior
   Palette derived from the brand mark: deep forest green,
   fresh lime, hose-water blue accent.
   ============================================================ */

:root {
  /* type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);

  /* spacing */
  --space-1: .25rem; --space-2: .5rem; --space-3: .75rem; --space-4: 1rem;
  --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem;
  --space-12: 3rem; --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;

  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1200px;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, sans-serif;
}

/* ---------- DARK (default) ---------- */
:root, [data-theme="dark"] {
  --bg:          oklch(0.18 0.028 152);
  --bg-2:        oklch(0.225 0.032 152);
  --surface:     oklch(0.255 0.034 152);
  --surface-2:   oklch(0.30 0.036 152);
  --line:        oklch(0.36 0.035 152);
  --text:        oklch(0.96 0.008 140);
  --text-mute:   oklch(0.78 0.02 145);
  --text-faint:  oklch(0.66 0.02 145);
  --accent:      oklch(0.78 0.19 138);      /* fresh lime */
  --accent-ink:  oklch(0.20 0.05 145);
  --accent-soft: oklch(0.78 0.19 138 / .14);
  --blue:        oklch(0.66 0.12 245);
  --scrim-a:     oklch(0.14 0.03 152 / .58);
  --scrim-b:     oklch(0.14 0.03 152 / .94);
  --shadow: 0 18px 48px oklch(0.10 0.03 152 / .55);
}

/* ---------- LIGHT ---------- */
[data-theme="light"] {
  --bg:          oklch(0.985 0.006 130);
  --bg-2:        oklch(0.955 0.012 135);
  --surface:     oklch(1 0 0);
  --surface-2:   oklch(0.965 0.012 135);
  --line:        oklch(0.88 0.016 140);
  --text:        oklch(0.24 0.035 152);
  --text-mute:   oklch(0.44 0.028 150);
  --text-faint:  oklch(0.55 0.022 150);
  --accent:      oklch(0.56 0.16 145);      /* deeper green for AA on white */
  --accent-ink:  oklch(0.99 0 0);
  --accent-soft: oklch(0.56 0.16 145 / .10);
  --blue:        oklch(0.52 0.13 245);
  --scrim-a:     oklch(0.16 0.03 152 / .48);
  --scrim-b:     oklch(0.16 0.03 152 / .88);
  --shadow: 0 16px 40px oklch(0.30 0.03 150 / .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .96;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0;
}

.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: var(--accent-ink);
  padding: var(--space-3) var(--space-5); border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 700;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm); font-weight: 700; letter-spacing: .02em;
  padding: var(--space-3) var(--space-5);
  border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .16s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn-go { background: var(--accent); color: var(--accent-ink); box-shadow: 0 6px 20px var(--accent-soft); }
.btn-go:hover { transform: translateY(-2px); box-shadow: 0 12px 28px var(--accent-soft); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }
.btn-full { width: 100%; }

/* ---------------- HEADER ---------------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.hdr.stuck { border-bottom-color: var(--line); background: color-mix(in oklab, var(--bg) 94%, transparent); }
.hdr-in { display: flex; align-items: center; gap: var(--space-6); padding-block: var(--space-3); }

.brand { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; margin-right: auto; }
.brand img { width: 44px; height: auto; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt strong { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .01em; text-transform: uppercase; font-weight: 400; }
.brand-txt em {
  font-style: normal; font-size: .625rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--text-faint); margin-top: 3px;
}

.nav { display: flex; gap: var(--space-6); }
.nav a {
  font-size: var(--text-sm); font-weight: 600; color: var(--text-mute);
  text-decoration: none; transition: color .18s ease;
}
.nav a:hover { color: var(--accent); }

.hdr-cta { display: flex; align-items: center; gap: var(--space-3); }
.tel {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-weight: 700; font-size: var(--text-sm); text-decoration: none; color: var(--text);
}
.tel:hover { color: var(--accent); }

.theme {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 50%; border: 1.5px solid var(--line);
  background: transparent; color: var(--text-mute); cursor: pointer;
  transition: color .18s ease, border-color .18s ease;
}
.theme:hover { color: var(--accent); border-color: var(--accent); }
.ico-sun { display: none; }
[data-theme="light"] .ico-sun { display: block; }
[data-theme="light"] .ico-moon { display: none; }

/* ---------------- HERO ---------------- */
.hero { position: relative; isolation: isolate; padding-block: clamp(var(--space-10), 6vw, var(--space-20)); }
.hero-vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, var(--scrim-b) 0%, var(--scrim-b) 38%, var(--scrim-a) 72%, var(--scrim-a) 100%),
    linear-gradient(to bottom, transparent 55%, var(--bg) 100%);
}

.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16)); align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 var(--space-4);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }

.hero h1 { font-size: var(--text-3xl); color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,.4); }
.hero .lede {
  max-width: 46ch; margin: var(--space-5) 0 var(--space-8);
  color: rgba(255,255,255,.86); font-size: var(--text-base);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero-btns.center { justify-content: center; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.hero .btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

.trust {
  display: flex; flex-wrap: wrap; gap: var(--space-8);
  list-style: none; padding: var(--space-8) 0 0; margin: var(--space-8) 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
}
.trust li { display: flex; flex-direction: column; }
.trust strong { font-family: var(--font-display); font-size: var(--text-lg); color: var(--accent); font-weight: 400; text-transform: uppercase; }
.trust span { font-size: var(--text-xs); letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.72); }

/* ---------------- QUOTE CARD ---------------- */
.quote-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; padding: clamp(var(--space-5), 2.4vw, var(--space-8));
  box-shadow: var(--shadow); scroll-margin-top: 96px;
}
.qc-head h2 { font-size: var(--text-xl); }
.qc-head p { margin: var(--space-3) 0 var(--space-6); color: var(--text-mute); font-size: var(--text-sm); }

.steps { display: flex; gap: var(--space-2); margin-bottom: var(--space-6); }
.step { height: 4px; flex: 1; border-radius: 99px; background: var(--line); transition: background .3s ease; }
.step.on { background: var(--accent); }

.pane { display: none; border: 0; padding: 0; margin: 0; min-inline-size: 0; }
.pane.on { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.pane legend {
  font-weight: 700; font-size: var(--text-sm); letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-faint); padding: 0; margin-bottom: var(--space-4);
}

.chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-5); }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-block; padding: var(--space-2) var(--space-4);
  border: 1.5px solid var(--line); border-radius: 999px;
  font-size: var(--text-sm); font-weight: 600; color: var(--text-mute);
  cursor: pointer; transition: all .16s ease; user-select: none;
}
.chip span:hover { border-color: var(--accent); color: var(--text); }
.chip input:checked + span { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.chip input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 3px; }

.field { margin-bottom: var(--space-4); }
.field label {
  display: block; font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--space-2);
}
.field .opt { text-transform: none; letter-spacing: 0; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: var(--space-3) var(--space-4);
  background: var(--bg-2); color: var(--text);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: var(--text-sm); line-height: 1.5;
  transition: border-color .16s ease, background .16s ease;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; background: var(--surface-2); }
.field input.bad, .field select.bad { border-color: oklch(0.66 0.19 25); }

.row2 { display: grid; grid-template-columns: auto 1fr; gap: var(--space-3); }
.row2 .btn { width: 100%; }

.err {
  display: none; color: oklch(0.72 0.18 25); font-size: var(--text-xs);
  font-weight: 600; margin: 0 0 var(--space-3);
}
.err.show { display: block; }

.fine { font-size: var(--text-xs); color: var(--text-faint); text-align: center; margin: var(--space-4) 0 0; }

.done { text-align: center; padding: var(--space-6) 0; }
.done.on { display: block; }
.tick {
  width: 62px; height: 62px; margin: 0 auto var(--space-5);
  display: grid; place-items: center; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
}
.done h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.done p { color: var(--text-mute); font-size: var(--text-sm); margin: 0; }
.done a { color: var(--accent); font-weight: 700; }

/* ---------------- MARQUEE ---------------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  background: var(--bg-2); padding-block: var(--space-3);
}
.mq-track {
  display: flex; align-items: center; gap: var(--space-6);
  width: max-content; animation: mq 42s linear infinite;
  font-family: var(--font-display); font-size: var(--text-sm);
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute);
}
.mq-track i { color: var(--accent); font-style: normal; font-size: .6em; }
@keyframes mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .mq-track { animation: none; } }

/* ---------------- SECTIONS ---------------- */
.sec { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }
.sec-alt { background: var(--bg-2); }
.sec-head { max-width: 62ch; margin-bottom: clamp(var(--space-10), 5vw, var(--space-16)); }
.sec-head h2, .why-copy h2, .area-grid h2 { font-size: var(--text-2xl); }
.sec-sub { color: var(--text-mute); margin: var(--space-4) 0 0; max-width: 56ch; }

/* ---------------- SERVICES ---------------- */
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.svc {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.svc:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.svc h3 { font-size: var(--text-lg); }
.svc p { margin: 0; color: var(--text-mute); font-size: var(--text-sm); flex: 1; }
.svc .price {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
}
.svc-ico { width: 40px; height: 40px; color: var(--accent); }
.svc-ico svg { width: 100%; height: 100%; }

.svc.feature {
  grid-column: span 2; grid-row: span 2;
  position: relative; overflow: hidden; justify-content: flex-end;
  min-height: 340px; padding: 0; border-color: transparent;
}
.svc.feature::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--img); background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.svc.feature::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, oklch(0.16 0.03 152 / .96) 12%, oklch(0.16 0.03 152 / .45) 55%, oklch(0.16 0.03 152 / .15) 100%);
}
.svc.feature:hover::before { transform: scale(1.05); }
.svc-body { position: relative; z-index: 1; padding: var(--space-8); }
.svc.feature h3 { color: #fff; font-size: var(--text-xl); }
.svc.feature p { color: rgba(255,255,255,.86); margin: var(--space-3) 0 var(--space-4); }

.svc-cta { text-decoration: none; background: var(--accent-soft); border-color: var(--accent); grid-column: span 2; }
.svc-cta h3 { color: var(--accent); }
.svc-cta.svc-wide { grid-column: span 4; }

/* trash valet teaser card inside the services grid */
.svc-trash {
  grid-column: span 2; text-decoration: none; position: relative;
  background: linear-gradient(135deg, var(--accent-soft), transparent 70%), var(--surface);
  border-color: var(--accent);
}
.svc-trash h3 { color: var(--text); }
.svc-badge {
  position: absolute; top: var(--space-5); right: var(--space-5);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent);
  padding: 3px var(--space-3); border-radius: 999px;
}

/* ---------------- TRASH VALET SECTION ---------------- */
.tv-sec {
  background:
    radial-gradient(1100px 420px at 88% 8%, var(--accent-soft), transparent 70%),
    var(--bg);
  border-block: 1px solid var(--line);
}
.tv-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: start;
}
.tv-copy h2 { font-size: var(--text-2xl); }

.tv-steps {
  list-style: none; padding: 0;
  margin: clamp(var(--space-8), 4vw, var(--space-10)) 0 0;
  display: grid; gap: var(--space-5);
}
.tv-steps li { display: flex; gap: var(--space-4); align-items: flex-start; }
.tv-n {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: 400;
  line-height: 1; padding-top: 2px;
}
.tv-steps strong { display: block; font-size: var(--text-base); }
.tv-steps p { margin: var(--space-1) 0 0; color: var(--text-mute); font-size: var(--text-sm); }

.tv-inc {
  list-style: none; padding: var(--space-8) 0 0;
  margin: var(--space-8) 0 0; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3) var(--space-5);
}
.tv-inc li {
  position: relative; padding-left: var(--space-6);
  font-size: var(--text-sm); color: var(--text-mute);
}
.tv-inc li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 2px; background: var(--accent);
}
.tv-inc em { font-style: normal; color: var(--text); font-weight: 700; }

.tv-card {
  background: var(--surface); border: 1px solid var(--accent);
  border-radius: 20px; padding: clamp(var(--space-5), 2.4vw, var(--space-8));
  box-shadow: var(--shadow); scroll-margin-top: 96px;
  position: sticky; top: 100px;
}
.tv-price { display: flex; align-items: center; gap: var(--space-3); }
.tv-amt {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3rem, 1.5rem + 4vw, 4.25rem); line-height: .9;
  color: var(--accent);
}
.tv-per {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-faint); line-height: 1.3;
}
.tv-flat {
  margin: var(--space-3) 0 var(--space-6); padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--line);
  color: var(--text-mute); font-size: var(--text-sm);
}
.tv-form.hide { display: none; }
.tv-done { display: none; text-align: center; padding: var(--space-4) 0 var(--space-2); }
.tv-done.on { display: block; animation: fade .3s ease; }
.tv-done h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.tv-done p { color: var(--text-mute); font-size: var(--text-sm); margin: 0; }
.tv-done a { color: var(--accent); font-weight: 700; }

.nav-hl { color: var(--accent) !important; }
.sec-sub a { color: var(--accent); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--accent-soft); }
.sec-sub a:hover { border-bottom-color: var(--accent); }

/* ---------------- WHY ---------------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-8), 5vw, var(--space-16)); align-items: center; }
.why-list { list-style: none; padding: 0; margin: var(--space-8) 0; display: grid; gap: var(--space-4); }
.why-list li { padding-left: var(--space-8); position: relative; color: var(--text-mute); font-size: var(--text-sm); }
.why-list li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent-soft); border: 2px solid var(--accent);
}
.why-list strong { color: var(--text); }
.why-img { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.why-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ---------------- BEFORE / AFTER ---------------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-6), 3vw, var(--space-10)); }
.ba-item h3 { font-size: var(--text-lg); margin: var(--space-5) 0 var(--space-2); }
.ba-item > p { margin: 0; color: var(--text-mute); font-size: var(--text-sm); }

.ba {
  --pos: 50%;
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 1600 / 786; background: var(--surface-2);
  box-shadow: var(--shadow); cursor: ew-resize; touch-action: pan-y;
  user-select: none; -webkit-user-select: none;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-clip { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }

.ba-tag {
  position: absolute; top: var(--space-4); z-index: 3;
  font-family: var(--font-display); font-size: var(--text-xs);
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; pointer-events: none;
  backdrop-filter: blur(6px);
}
.ba-tag-b { left: var(--space-4); background: oklch(0.16 0.03 152 / .72); color: #fff; }
.ba-tag-a { right: var(--space-4); background: var(--accent); color: var(--accent-ink); }

.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 3px; margin-left: -1.5px; z-index: 4;
  background: #fff; box-shadow: 0 0 0 1px oklch(0.16 0.03 152 / .28);
  pointer-events: none;
}
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: oklch(0.24 0.05 152);
  display: grid; place-items: center;
  box-shadow: 0 6px 20px oklch(0.16 0.03 152 / .38);
}
.ba-knob svg { width: 22px; height: 22px; }
.ba.ba-anim .ba-clip, .ba.ba-anim .ba-handle { transition: clip-path .55s cubic-bezier(.4,0,.2,1), left .55s cubic-bezier(.4,0,.2,1); }
@media (prefers-reduced-motion: reduce) { .ba.ba-anim .ba-clip, .ba.ba-anim .ba-handle { transition: none; } }
.ba:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.ba:focus-visible .ba-knob { background: var(--accent); color: var(--accent-ink); }

.ba-cta {
  display: flex; align-items: center; justify-content: center; gap: var(--space-5);
  flex-wrap: wrap; margin-top: clamp(var(--space-8), 4vw, var(--space-12));
}
.ba-cta p { margin: 0; font-family: var(--font-display); font-size: var(--text-lg); }

/* ---------------- GALLERY ---------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery figure.g1 { grid-column: span 2; grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .5s ease; }
.gallery figure.g1 img { aspect-ratio: auto; height: 100%; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--space-8) var(--space-4) var(--space-4);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #fff;
  background: linear-gradient(to top, rgba(10,25,16,.92), transparent);
}

/* ---------------- PRICING ---------------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); align-items: start; }
.tier {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--space-8); position: relative;
}
.tier.best { border-color: var(--accent); box-shadow: var(--shadow); }
.tag {
  position: absolute; top: -12px; left: var(--space-8);
  background: var(--accent); color: var(--accent-ink);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: var(--space-1) var(--space-3); border-radius: 999px;
}
.tier h3 { font-size: var(--text-lg); }
.tier-p { margin: var(--space-3) 0 var(--space-6); color: var(--text-faint); font-size: var(--text-sm); }
.tier-p strong { font-family: var(--font-display); font-weight: 400; font-size: var(--text-xl); color: var(--text); }
.tier-p em { font-style: normal; }
.tier ul { list-style: none; padding: 0; margin: 0 0 var(--space-8); display: grid; gap: var(--space-3); }
.tier li { padding-left: var(--space-6); position: relative; font-size: var(--text-sm); color: var(--text-mute); }
.tier li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px;
  border-radius: 2px; background: var(--accent);
}

/* ---------------- AREA ---------------- */
.area-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(var(--space-8), 5vw, var(--space-16)); align-items: start; }
.towns {
  list-style: none; padding: var(--space-8) 0 0; margin: var(--space-8) 0 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3);
}
.towns li { font-size: var(--text-sm); color: var(--text-mute); display: flex; align-items: center; gap: var(--space-2); }
.towns li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: none; }

.area-cta {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--space-8); box-shadow: var(--shadow);
}
.area-cta h3 { font-size: var(--text-lg); }
.area-cta p { color: var(--text-mute); font-size: var(--text-sm); margin: var(--space-3) 0 var(--space-6); }
.area-cta p a { color: var(--accent); font-weight: 700; text-decoration: none; }
.area-btns { display: grid; gap: var(--space-3); }
.area-btns .btn-ghost { color: var(--text); }
.area-btns .btn-go { color: var(--accent-ink); }

/* ---------------- FINAL CTA ---------------- */
.final {
  padding-block: clamp(var(--space-16), 9vw, var(--space-24));
  background:
    linear-gradient(oklch(0.16 0.03 152 / .82), oklch(0.16 0.03 152 / .92)),
    url("assets/work-5.jpg") center/cover fixed;
  text-align: center;
}
.final-in h2 { font-size: var(--text-2xl); color: #fff; }
.final-in p { color: rgba(255,255,255,.82); margin: var(--space-5) auto var(--space-8); max-width: 48ch; }
.final .btn-ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.final .btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

/* ---------------- FOOTER ---------------- */
.ftr { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: var(--space-12) var(--space-6); }
.ftr-in { display: flex; flex-wrap: wrap; gap: var(--space-6); align-items: center; justify-content: space-between; }
.ftr-brand { display: flex; align-items: center; gap: var(--space-4); }
.ftr-brand strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: var(--text-lg); text-transform: uppercase; }
.ftr-brand span { font-size: var(--text-xs); color: var(--text-faint); letter-spacing: .06em; }
.ftr-links { display: flex; flex-wrap: wrap; gap: var(--space-6); }
.ftr-links a { font-size: var(--text-sm); font-weight: 600; color: var(--text-mute); text-decoration: none; }
.ftr-links a:hover { color: var(--accent); }
.ftr-fine {
  margin-top: var(--space-8); padding-top: var(--space-5);
  border-top: 1px solid var(--line); font-size: var(--text-xs); color: var(--text-faint);
}

/* ---------------- MOBILE BAR ---------------- */
.mobar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  gap: var(--space-3); padding: var(--space-3) var(--space-4) calc(var(--space-3) + env(safe-area-inset-bottom));
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px); border-top: 1px solid var(--line);
}
.mobar .btn { flex: 1; }
.mobar .btn-ghost { flex: 0 0 34%; }

/* ---------------- REVEAL ---------------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc.feature { grid-column: span 2; grid-row: auto; min-height: 300px; }
  .svc-cta.svc-wide { grid-column: span 2; }
  .svc-trash { grid-column: span 2; }
  .tv-grid { grid-template-columns: 1fr; }
  .tv-card { position: static; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .why-grid, .area-grid { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure.g1 { grid-column: span 2; grid-row: auto; }
  .gallery figure.g1 img { aspect-ratio: 16/10; }
  .svc-cta { grid-column: span 2; }
  .final { background-attachment: scroll; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 76px; }
  body { padding-bottom: 78px; }
  .mobar { display: flex; }
  .tel, .hdr-cta .btn-go { display: none; }
  .brand-txt em { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc.feature { grid-column: auto; }
  .svc-cta, .svc-cta.svc-wide { grid-column: auto; }
  .svc-trash { grid-column: auto; }
  .svc-badge { position: static; align-self: flex-start; margin-bottom: var(--space-1); }
  .tv-inc { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery figure.g1 { grid-column: auto; }
  .svc-body { padding: var(--space-6); }
  .towns { grid-template-columns: repeat(2, 1fr); }
  .trust { gap: var(--space-6); }
  .trust li { flex: 1 1 40%; }
  .hero-btns .btn { flex: 1 1 100%; }
  .row2 { grid-template-columns: 1fr; }
  .row2 .back { order: 2; }
}

/* trash valet — link out to the dedicated /trash page */
.tv-more { margin-top: var(--space-6); }
