/* ==========================================================================
   JUNK BUSTERS — "CHAOS → CLEAN"
   css/style.css — single stylesheet, no build step.
   Dark (ink) theme opens the page; theme flips to light (paper) at #process.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONTS
   -------------------------------------------------------------------------- */

@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-var-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. TOKENS
   -------------------------------------------------------------------------- */

:root {
  /* Palette (contract) */
  --ink: #0B0B0D;
  --ink-2: #131316;
  --ink-3: #1C1C21;
  --paper: #F2EFE7;
  --paper-2: #E9E4D8;
  --red: #E63528;
  --red-deep: #B7241A;
  --emerald: #17B26A;
  --amber: #F5B93F;
  --muted: rgba(242, 239, 231, .55);
  --muted-ink: rgba(11, 11, 13, .6);
  --blue: #4C7DF0;

  /* Type */
  --font-display: "Archivo", "Arial Black", sans-serif;
  --font-body: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --gutter: max(clamp(1.25rem, 4vw, 4rem), calc((100vw - 1440px) / 2));
  --section-pad: clamp(5rem, 12vh, 10rem);

  /* Radii */
  --r-card: 20px;
  --r-img: 16px;
  --r-pill: 999px;

  /* Motion */
  --theme-ease: .6s ease;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* Theme surfaces — dark is the default */
body {
  --bg: var(--ink);
  --surface: var(--ink-2);
  --surface-2: var(--ink-3);
  --fg: var(--paper);
  --fg-muted: var(--muted);
  --line: rgba(242, 239, 231, .1);
  --line-strong: rgba(242, 239, 231, .22);
  --glass: rgba(11, 11, 13, .72);
  --hint: rgba(242, 239, 231, .035);
}

body[data-theme="light"] {
  --bg: var(--paper);
  --surface: var(--paper-2);
  --surface-2: #E0DACB;
  --fg: var(--ink);
  --fg-muted: var(--muted-ink);
  --line: rgba(11, 11, 13, .12);
  --line-strong: rgba(11, 11, 13, .28);
  --glass: rgba(242, 239, 231, .82);
  --hint: rgba(11, 11, 13, .035);
}

/* --------------------------------------------------------------------------
   3. RESET / BASE
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* Theme-flip color choreography. Interactive pieces override this below. */
  transition: background-color var(--theme-ease), color var(--theme-ease), border-color var(--theme-ease);
}

html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: var(--red) var(--ink);
}

body {
  overflow-x: clip;
  min-height: 100svh;
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
canvas,
video,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-weight: 900;
  line-height: .92;
}

strong { font-weight: 600; }

::selection {
  background: var(--red);
  color: var(--paper);
}

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

/* Thin scrollbar — red thumb on ink track, both themes */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 999px;
  border: 2px solid var(--ink);
}
::-webkit-scrollbar-thumb:hover { background: var(--red-deep); }

/* --------------------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */

main > section {
  position: relative;
  padding-inline: var(--gutter);
  padding-block: var(--section-pad);
}

.section-head {
  max-width: 60rem;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
  max-width: 18ch;
}

.eyebrow,
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.eyebrow::before,
.hero-eyebrow::before {
  content: "";
  flex: none;
  width: 1.5rem;
  height: 1px;
  background: var(--red);
}

.section-sub {
  max-width: 48ch;
  margin-top: 1.5rem;
  color: var(--fg-muted);
}

/* --------------------------------------------------------------------------
   5. BUTTONS & BADGES
   -------------------------------------------------------------------------- */

.btn-primary,
.btn-ghost,
.btn-inverse,
.btn-outline,
.btn-book,
.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  letter-spacing: .01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .3s var(--ease-out), filter .3s ease,
              background-color .3s ease, color var(--theme-ease), border-color .3s ease;
}

.btn-primary,
.btn-book {
  background: var(--emerald);
  color: var(--ink);
}

.btn-primary:hover,
.btn-book:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn-ghost,
.btn-call {
  border: 1px solid var(--line-strong);
  color: var(--fg);
  background: transparent;
}

.btn-ghost:hover,
.btn-call:hover {
  border-color: var(--fg);
  transform: translateY(-2px);
}

.btn-inverse {
  background: var(--paper);
  color: var(--ink);
  padding: 1.15rem 2.5rem;
  font-size: 1.05rem;
}

.btn-inverse:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.04);
}

.btn-outline {
  border: 1px solid rgba(242, 239, 231, .55);
  color: var(--paper);
  padding: 1.15rem 2.5rem;
  font-size: 1.05rem;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--paper);
  background: rgba(242, 239, 231, .08);
  transform: translateY(-2px);
}

/* Header buttons — smaller */
.btn-book,
.btn-call {
  padding: .65rem 1.35rem;
  font-size: .82rem;
}

/* Badges / discount pills */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .5em 1.1em;
  border-radius: var(--r-pill);
  border: 1px solid;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-emerald {
  color: #4ADE97;
  background: rgba(23, 178, 106, .12);
  border-color: rgba(23, 178, 106, .35);
}

.badge-blue {
  color: #9DB9FF;
  background: rgba(76, 125, 240, .14);
  border-color: rgba(76, 125, 240, .38);
}

.badge-red {
  color: #FF8B80;
  background: rgba(230, 53, 40, .14);
  border-color: rgba(230, 53, 40, .38);
}

body[data-theme="light"] .badge-emerald {
  color: #0B6B40;
  background: rgba(23, 178, 106, .12);
  border-color: rgba(23, 178, 106, .45);
}

body[data-theme="light"] .badge-blue {
  color: #2450C7;
  background: rgba(76, 125, 240, .12);
  border-color: rgba(76, 125, 240, .45);
}

body[data-theme="light"] .badge-red {
  color: var(--red-deep);
  background: rgba(230, 53, 40, .1);
  border-color: rgba(230, 53, 40, .4);
}

.badge-amber {
  color: #F5C860;
  background: rgba(245, 185, 63, .14);
  border-color: rgba(245, 185, 63, .4);
}
body[data-theme="light"] .badge-amber {
  color: #7A5510;
  background: rgba(245, 185, 63, .16);
  border-color: rgba(245, 185, 63, .5);
}
/* Review promo — deliberately distinct from the ID-based discount pills */
.badge-review {
  color: var(--paper);
  background: rgba(242, 239, 231, .08);
  border-color: rgba(242, 239, 231, .32);
}
body[data-theme="light"] .badge-review {
  color: var(--ink);
  background: rgba(11, 11, 13, .05);
  border-color: rgba(11, 11, 13, .28);
}

/* Hero badges keep dark-tinted styling over the canvas in both themes */
#hero .badge-emerald { color: #4ADE97; }
#hero .badge-blue { color: #9DB9FF; }
#hero .badge-red { color: #FF8B80; }
#hero .badge-amber { color: #F5C860; }
#hero .badge-review { color: #F2EFE7; }

/* --------------------------------------------------------------------------
   6. PRELOADER
   -------------------------------------------------------------------------- */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
}

.preloader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.preloader-logo {
  width: 72px;
  height: 72px;
}

.preloader-count {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: .92;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

.preloader-pct {
  font-size: .35em;
  vertical-align: super;
  color: var(--red);
}

.preloader-tag {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.preloader-slash {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   7. CUSTOM CURSOR
   -------------------------------------------------------------------------- */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  pointer-events: none;
  border-radius: 50%;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--red);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1px solid var(--line-strong);
  transition: width .3s var(--ease-out), height .3s var(--ease-out),
              margin .3s var(--ease-out), border-color .3s ease, opacity .3s ease;
}

.cursor-ring.cursor-active,
.cursor-ring.is-active {
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-color: var(--red);
  opacity: .8;
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   8. HEADER
   -------------------------------------------------------------------------- */

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: transform .5s var(--ease-out), background-color .45s ease,
              border-color .45s ease, color var(--theme-ease),
              backdrop-filter .45s ease;
}

#site-header.is-scrolled {
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}

#site-header.is-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .9rem;
  padding-inline: var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  flex: none;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 850;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-word em {
  font-style: normal;
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2rem);
}

.nav-links a {
  position: relative;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding-block: .35rem;
  color: var(--fg);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .35s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: .7rem;
}

/* Burger */
#menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
}

#menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .4s var(--ease-out), background-color var(--theme-ease);
}

#menu-toggle span:first-child { transform: translate(-50%, calc(-50% - 4px)); }
#menu-toggle span:last-child { transform: translate(-50%, calc(-50% + 4px)); }

body.menu-open #menu-toggle span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open #menu-toggle span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

/* Keep header (brand + X) usable above the open menu */
body.menu-open #site-header {
  z-index: 960;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
  color: var(--paper);
  transform: none;
}

/* --------------------------------------------------------------------------
   9. MOBILE MENU
   -------------------------------------------------------------------------- */

#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: calc(5.5rem + env(safe-area-inset-top)) var(--gutter) 2.5rem;
  background: var(--ink);
  color: var(--paper);
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: visibility 0s linear .7s;
}

body.menu-open #mobile-menu {
  visibility: visible;
  transition: visibility 0s;
}

#mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-link {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 8.5vw, 4rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--paper);
  transition: color .3s ease, transform .3s var(--ease-out);
}

.mobile-link:hover,
.mobile-link:focus-visible {
  color: var(--red);
  transform: translateX(.5rem);
}

.mobile-menu-foot {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(242, 239, 231, .12);
}

/* --------------------------------------------------------------------------
   10. HERO
   -------------------------------------------------------------------------- */

#hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4.5rem, 9vh, 7rem) clamp(6.5rem, 13vh, 9rem);
  overflow: clip;
}

canvas#webgl {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

/* Cinematic vignette over the scene, under the copy —
   also deepens the sky behind the headline for contrast */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(8, 14, 26, .38) 0%, rgba(8, 14, 26, .16) 42%, transparent 60%),
    radial-gradient(130% 100% at 48% 45%, transparent 55%, rgba(6, 10, 18, .4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 62rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  /* sized so the full stack (title→discount pills) fits above the fold */
  font-size: min(clamp(3rem, 7.6vw, 6.75rem), 14.5vh);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding-block: .04em; /* keep descenders unclipped in the mask */
}

.hero-title .line-inner {
  display: inline-block;
  will-change: transform;
}

.junk-strike {
  position: relative;
  display: inline-block;
}

.junk-strike::after {
  content: "";
  position: absolute;
  left: -3%;
  top: 50%;
  width: 106%;
  height: .13em;
  background: var(--red);
  transform: translateY(-50%) rotate(-2deg) scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  transition: transform .8s cubic-bezier(.19, 1, .22, 1) .1s;
}

.junk-strike.struck::after {
  transform: translateY(-50%) rotate(-2deg) scaleX(1);
}

.hero-sub {
  max-width: 44ch;
  margin-top: 1.4rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(242, 239, 231, .88);
  text-shadow: 0 1px 12px rgba(6, 10, 18, .45);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}

/* Scroll hint — a pill that can't be missed, gently bouncing */
.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 4.5rem;
  z-index: 2;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: .65rem;
  padding: .75rem 1.35rem;
  border-radius: var(--r-pill);
  background: rgba(8, 12, 20, .55);
  border: 1px solid rgba(242, 239, 231, .22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(242, 239, 231, .92);
  white-space: nowrap;
  animation: hint-bounce 2.4s ease-in-out infinite;
  /* class-driven visibility — JS toggles #hero.hint-on (single owner) */
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility 0s linear .45s;
}

#hero.hint-on .hero-scroll-hint {
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease .1s, visibility 0s;
}

.hero-scroll-hint i {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg) translateY(-1px);
  animation: hint-chevron 2.4s ease-in-out infinite;
}

@keyframes hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

@keyframes hint-chevron {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}

@media (max-width: 599px) {
  /* keep hero content + scroll cue inside the first mobile viewport */
  #hero { padding-block: 5.5rem 8rem; }
  .hero-scroll-hint { bottom: 4.1rem; font-size: .66rem; padding: .65rem 1.1rem; }
  .hero-badges { gap: .4rem; margin-top: 1.4rem; }
  .hero-badges .badge { font-size: .62rem; padding: .32rem .6rem; }
}

/* Short small phones: shave the type so badges never reach the scroll cue */
@media (max-width: 599px) and (max-height: 730px) {
  .hero-title { font-size: clamp(2.2rem, 11vw, 2.8rem); }
  .hero-sub { font-size: .92rem; margin-top: 1.1rem; }
  .hero-ctas { margin-top: 1.2rem; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { padding: .8rem 1.5rem; font-size: .85rem; }
}

/* --------------------------------------------------------------------------
   11. MARQUEES (generic)
   -------------------------------------------------------------------------- */

.marquee {
  overflow: hidden;
  max-width: 100%;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2.5rem;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}

/* Hero ticker */
.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
}

.hero-marquee .marquee-track span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hero-marquee .marquee-track span:nth-child(even) {
  color: var(--red);
  letter-spacing: 0;
}

/* --------------------------------------------------------------------------
   12. TRUST BAR
   -------------------------------------------------------------------------- */

#trust {
  padding-block: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: clamp(2rem, 5vh, 3.25rem) clamp(1rem, 2.5vw, 2.5rem);
  border-left: 1px solid var(--line);
}

.trust-item:first-child { border-left: 0; }

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 850;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.trust-item span {
  display: block;
  margin-top: .5rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* --------------------------------------------------------------------------
   13. SERVICES
   -------------------------------------------------------------------------- */

.services-list {
  border-bottom: 1px solid var(--line);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1.1fr) minmax(0, 1.3fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  padding-inline: .5rem;
  border-top: 1px solid var(--line);
  transition: background-color .35s ease, border-color var(--theme-ease), color var(--theme-ease);
}

.service-row:hover,
.service-row:focus-visible,
.service-row.is-active {
  background: var(--hint);
}

.service-num {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
  transition: color .3s ease;
}

.service-row:hover .service-num,
.service-row.is-active .service-num { color: var(--red); }

.service-name {
  font-family: var(--font-display);
  font-weight: 850;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1;
  letter-spacing: -.015em;
  text-transform: uppercase;
  transition: transform .4s var(--ease-out);
}

.service-row:hover .service-name,
.service-row.is-active .service-name { transform: translateX(.75rem); }

.service-desc {
  font-size: .95rem;
  color: var(--fg-muted);
}

.service-tag {
  justify-self: end;
  padding: .4em 1em;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* Floating preview image (JS positions + swaps src) */
.service-preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 320px;
  height: 220px;
  border-radius: var(--r-img);
  overflow: hidden;
  opacity: 0;
  transform: scale(.9);
  pointer-events: none;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  will-change: transform, opacity;
}

.service-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 899px), (hover: none) {
  .service-preview { display: none; }
}

/* --------------------------------------------------------------------------
   14. PRICING
   -------------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.75rem, 1.5vw, 1.5rem);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  transition: background-color var(--theme-ease), border-color .35s ease,
              color var(--theme-ease), transform .4s var(--ease-out);
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.price-card-full {
  border-color: rgba(230, 53, 40, .55);
}

.price-card-full:hover { border-color: var(--red); }

.price-card-full::before {
  content: "Best value";
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding: .4em 1em;
  background: var(--red);
  color: var(--paper);
  border-radius: var(--r-pill);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.load-meter {
  position: relative;
  width: 14px;
  height: 120px;
  border-radius: var(--r-pill);
  background: var(--hint);
  border: 1px solid var(--line);
  overflow: hidden;
}

.load-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: linear-gradient(to top, var(--red), var(--amber));
  border-radius: inherit;
}

.load-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.price-value {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  line-height: .92;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

.price-value::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  margin-top: 1rem;
  background: var(--red);
}

/* Single item strip */
.single-item-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-block: 1.75rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.strip-cities {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.strip-cities span {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.strip-cities strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -.02em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

/* Discount pills */
.discount-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
}

.discount-note {
  flex-basis: 100%;
  margin-top: .5rem;
  font-size: .85rem;
  color: var(--fg-muted);
}

/* --------------------------------------------------------------------------
   15. PROCESS (theme flips to light here)
   -------------------------------------------------------------------------- */

#process {
  overflow-x: clip;
}

.process-track {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.process-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.process-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: .8;
  letter-spacing: -.02em;
  color: rgba(230, 53, 40, .18);
}

@supports ((-webkit-text-stroke: 1px black) or (text-stroke: 1px black)) {
  .process-num {
    color: transparent;
    -webkit-text-stroke: 2px var(--fg);
    transition: -webkit-text-stroke-color var(--theme-ease);
  }
}

.process-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: min(44vh, 420px);
  object-fit: cover;
  border-radius: var(--r-img);
}

.process-panel h3 {
  font-family: var(--font-display);
  font-weight: 850;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin-top: .5rem;
}

.process-panel p {
  max-width: 42ch;
  color: var(--fg-muted);
}

@media (min-width: 900px) {
  #process {
    overflow: visible; /* JS pins & translates the track; html/body clip guards the page */
  }

  .process-track {
    flex-direction: row;
    align-items: flex-start;
    width: max-content;
    gap: clamp(3rem, 6vw, 6rem);
    will-change: transform;
  }

  .process-panel {
    width: 80vw;
    max-width: 720px;
    flex: none;
  }
}

/* --------------------------------------------------------------------------
   16. GALLERY — BEFORE / AFTER
   -------------------------------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .ba-slider:first-child { grid-column: 1 / -1; }
}

.ba-slider {
  margin: 0;
}

.ba-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-img);
  overflow: hidden;
  background: var(--surface);
  isolation: isolate;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
  will-change: clip-path;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: rgba(242, 239, 231, .9);
  cursor: grab;
  touch-action: none;
  will-change: left;
}

.ba-handle:active { cursor: grabbing; }

.ba-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
  transition: transform .3s var(--ease-out);
}

.ba-handle:hover span,
.ba-handle:focus-visible span {
  transform: translate(-50%, -50%) scale(1.1);
}

/* grip arrows */
.ba-handle span::before,
.ba-handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-block: 4px solid transparent;
}

.ba-handle span::before {
  left: 10px;
  transform: translateY(-50%);
  border-right: 6px solid var(--ink);
}

.ba-handle span::after {
  right: 10px;
  transform: translateY(-50%);
  border-left: 6px solid var(--ink);
}

.ba-handle:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.ba-label {
  position: absolute;
  top: 1rem;
  z-index: 2;
  padding: .45em 1.1em;
  border-radius: var(--r-pill);
  background: rgba(11, 11, 13, .6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--paper);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  pointer-events: none;
}

.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

.ba-slider figcaption {
  margin-top: 1rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* --------------------------------------------------------------------------
   17. COVERAGE
   -------------------------------------------------------------------------- */

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}

.city-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  transition: background-color var(--theme-ease), border-color .35s ease,
              color var(--theme-ease), transform .4s var(--ease-out);
}

.city-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
}

.city-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.city-card h3 span {
  font-size: .4em;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--red);
  vertical-align: .35em;
  margin-left: .2em;
}

.city-card > p {
  color: var(--fg-muted);
  font-size: .95rem;
  max-width: 30ch;
}

.city-price {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.city-price strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

.city-link {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  transition: transform .35s var(--ease-out), color .3s ease, border-color var(--theme-ease);
}

.city-card:hover .city-link {
  transform: translateX(.5rem);
  color: var(--red);
}

/* --------------------------------------------------------------------------
   18. TESTIMONIALS
   -------------------------------------------------------------------------- */

.quotes-row {
  margin-inline: calc(var(--gutter) * -1);
  padding-block: 1rem;
}

.quotes-row .marquee-track {
  gap: 1.5rem;
  padding-inline: .75rem;
  white-space: normal;
}

.quote-card {
  width: min(420px, 84vw);
  flex: none;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}

.quote-card p {
  font-size: 1rem;
  line-height: 1.55;
}

.quote-card cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* --------------------------------------------------------------------------
   19. FAQ
   -------------------------------------------------------------------------- */

.faq-list {
  max-width: 840px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding-block: 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.3;
  transition: color .3s ease;
}

.faq-q:hover { color: var(--red); }

.faq-q i {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
  transition: transform .45s var(--ease-out);
}

.faq-q i::before,
.faq-q i::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.faq-q i::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-q i::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}

.faq-q[aria-expanded="true"] i {
  transform: rotate(135deg);
  color: var(--red);
}

.faq-a {
  height: 0;
  overflow: hidden;
}

.faq-a p {
  padding-bottom: 1.75rem;
  max-width: 58ch;
  color: var(--fg-muted);
}

.faq-a strong { color: var(--fg); }

/* --------------------------------------------------------------------------
   20. CTA — always brand red, both themes
   -------------------------------------------------------------------------- */

#cta {
  --fg: var(--paper);
  --fg-muted: rgba(242, 239, 231, .85);
  --line: rgba(242, 239, 231, .25);
  background: var(--red);
  color: var(--paper);
  text-align: center;
}

#cta ::selection {
  background: var(--ink);
  color: var(--paper);
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 11vw, 10rem);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--paper);
  margin-inline: auto;
  max-width: 12ch;
}

.cta-sub {
  max-width: 42ch;
  margin: 1.75rem auto 0;
  color: rgba(242, 239, 231, .85);
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.75rem;
}

#cta .btn-inverse:hover { filter: none; }

/* --------------------------------------------------------------------------
   21. FOOTER — always ink, both themes
   -------------------------------------------------------------------------- */

footer#contact {
  --fg: var(--paper);
  --fg-muted: rgba(242, 239, 231, .6);
  --line: rgba(242, 239, 231, .12);
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 9vh, 7rem) var(--gutter) 0;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}

.footer-col > a {
  display: block;
  padding-block: .3rem;
  font-size: .95rem;
  color: var(--fg-muted);
  transition: color .3s ease, transform .3s var(--ease-out);
}

.footer-col > a:hover {
  color: var(--paper);
  transform: translateX(.35rem);
}

.footer-about img {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
}

.footer-about p {
  max-width: 32ch;
  color: var(--fg-muted);
  font-size: .95rem;
}

.footer-contacts {
  margin-top: 1.5rem;
}

.footer-contacts a {
  display: block;
  padding-block: .3rem;
  font-size: .95rem;
  color: var(--fg-muted);
  transition: color .3s ease;
}

.footer-contacts a:hover { color: var(--red); }

.footer-contacts a:first-child {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.01em;
  color: var(--paper);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.hours-table td {
  padding: .45rem .75rem .45rem 0;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.hours-table td:first-child {
  color: var(--paper);
  font-weight: 500;
  white-space: nowrap;
}

.hours-table tr:last-child td { border-bottom: 0; }

.hours-note {
  margin-top: .9rem;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
}

/* Giant outlined wordmark */
.footer-wordmark {
  margin-top: clamp(3rem, 8vh, 6rem);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 14vw, 16rem);
  line-height: .8;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  opacity: .3;
  color: rgba(242, 239, 231, .5);
  user-select: none;
  pointer-events: none;
  transform: translateY(.08em); /* tuck the baseline toward the legal rule */
}

@supports ((-webkit-text-stroke: 1px black) or (text-stroke: 1px black)) {
  .footer-wordmark {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--paper);
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  color: var(--fg-muted);
}

/* --------------------------------------------------------------------------
   22. RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 1199px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 899px) {
  /* Header: burger takes over */
  .nav-links { display: none; }
  #menu-toggle { display: block; }
  .btn-call { display: none; }
  .header-inner { gap: .75rem; }
}

@media (max-width: 480px) {
  /* Keep brand + Book Online + burger inside narrow screens */
  .brand { gap: .5rem; }
  .brand img { width: 36px; height: 36px; }
  .brand-word { font-size: .95rem; }
  .btn-book { padding: .55rem 1rem; font-size: .78rem; }
  #menu-toggle { width: 40px; height: 40px; }
}

@media (max-width: 899px) {

  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item { border-left: 0; }
  .trust-item:nth-child(even) { border-left: 1px solid var(--line); }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); }

  .service-row {
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    row-gap: .5rem;
  }

  .service-desc {
    grid-column: 2 / -1;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 599px) {
  .single-item-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .strip-cities {
    flex-direction: column;
    gap: .6rem;
  }

  .service-tag { display: none; }

  .service-row {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .price-card .load-meter { order: 3; margin-left: auto; height: 90px; }
  .price-card .load-name { flex-basis: 100%; }
  .price-card .price-value { margin-top: 0; }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .faq-q { font-size: 1.05rem; }

  .footer-legal {
    flex-direction: column;
  }
}

/* Guarantee the hero headline fits at 360px wide */
@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(2.55rem, 13.5vw, 3.2rem);
  }
}

/* --------------------------------------------------------------------------
   23. REDUCED MOTION
   -------------------------------------------------------------------------- */

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

  .hero-scroll-hint i::after { animation: none; }
}

/* --------------------------------------------------------------------------
   SHORT DESKTOP VIEWPORTS — keep the full hero stack above the fold
   -------------------------------------------------------------------------- */

@media (min-width: 900px) and (max-height: 800px) {
  .hero-title { font-size: min(clamp(2.8rem, 7vw, 6rem), 13.5vh); }
  .hero-eyebrow { margin-bottom: 1rem; }
  .hero-sub { margin-top: 1.1rem; max-width: 52ch; }
  .hero-ctas { margin-top: 1.4rem; }
  .hero-badges { margin-top: 1.2rem; }
}

/* Pinned #process must fit head + panel (num, image, title, copy) in one viewport */
@media (min-width: 900px) {
  #process { padding-block: clamp(2.5rem, 6vh, 5rem); }
  #process .section-head { margin-bottom: clamp(1.5rem, 4vh, 3rem); }
  #process .section-head h2 { font-size: clamp(2.2rem, min(6vw, 7.5vh), 5rem); }
  .process-num { font-size: clamp(3.5rem, min(9vw, 9vh), 8rem); }
  .process-panel { gap: 1rem; }
  .process-panel img { max-height: min(38vh, 400px); }
}

/* --------------------------------------------------------------------------
   MOBILE MOTION PACK — floating quick-book pill
   -------------------------------------------------------------------------- */

.quick-book {
  position: fixed;
  left: 50%;
  bottom: calc(1.1rem + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.9rem;
  border-radius: var(--r-pill);
  background: var(--emerald);
  color: #0B0B0D;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .35), 0 2px 8px rgba(0, 0, 0, .25);
  opacity: 0;
  visibility: hidden;
}

.quick-book .qb-arrow {
  transition: transform .3s var(--ease-out);
}

.quick-book:active .qb-arrow {
  transform: translateX(4px);
}

body.menu-open .quick-book {
  opacity: 0 !important;
  visibility: hidden !important;
}

@media (min-width: 900px) {
  .quick-book { display: none; }
}

/* ==========================================================================
   BOOKING PAGE (booking.php) — editorial form in the same design system
   ========================================================================== */

.booking-main {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  padding-block: clamp(7rem, 14vh, 9rem) clamp(4rem, 8vh, 6rem);
}

.booking-head { margin-bottom: clamp(2.5rem, 6vh, 4rem); }

.booking-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: min(clamp(2.6rem, 8vw, 5.5rem), 14vh);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.booking-sub {
  margin-top: 1.25rem;
  color: var(--fg-muted);
  max-width: 52ch;
}

/* status banners */
.banner {
  display: block;
  padding: 1.15rem 1.5rem;
  border-radius: var(--r-card);
  margin-bottom: 2rem;
  font-size: .95rem;
  line-height: 1.55;
}

.banner-error {
  background: rgba(230, 53, 40, .12);
  border: 1px solid rgba(230, 53, 40, .45);
  color: #ff8d84;
}

.banner-success {
  background: rgba(23, 178, 106, .12);
  border: 1px solid rgba(23, 178, 106, .45);
  color: #5fdca4;
}

.banner-success a { text-decoration: underline; }
.banner-success strong { color: var(--paper); font-weight: 700; }

/* numbered form sections, hairline-ruled like the services list */
.form-section {
  padding-block: clamp(1.75rem, 4vh, 2.5rem);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
}

.form-section:last-of-type { border-bottom: 1px solid var(--line); }

.fs-num {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
  padding-top: .35rem;
}

.fs-body { min-width: 0; }

.fs-title {
  font-family: var(--font-display);
  font-weight: 850;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 1.4rem;
}

.fs-note {
  font-size: .8rem;
  color: var(--fg-muted);
  margin-top: 1rem;
  max-width: 60ch;
}

/* fields */
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2rem;
}

.field-grid .field-wide { grid-column: 1 / -1; }

.field { display: block; min-width: 0; }

.field-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: .55rem;
}

.field-label em {
  font-style: normal;
  color: var(--red);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem .1rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E63528' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .25rem center;
  padding-right: 1.6rem;
}

.field select option { background: var(--ink-2); color: var(--paper); }

.field textarea { resize: vertical; min-height: 96px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--red);
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(242, 239, 231, .3); }

/* the animated focus underline */
.field-line {
  position: relative;
  display: block;
}

.field-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s var(--ease-out);
}

.field-line:focus-within::after { transform: scaleX(1); }

/* date input scheme */
.field input[type="date"] { color-scheme: dark; }

/* pill radio groups (city, time slots, discounts) */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.pill-radio { position: relative; }

.pill-radio input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

.pill-radio span {
  display: inline-flex;
  align-items: center;
  padding: .65rem 1.25rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  font-size: .88rem;
  font-weight: 600;
  color: var(--fg-muted);
  transition: color .25s ease, border-color .25s ease, background-color .25s ease, transform .25s var(--ease-out);
  white-space: nowrap;
}

.pill-radio input:checked + span {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}

.pill-radio input:focus-visible + span {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.pill-radio:hover span { border-color: var(--fg); color: var(--fg); }
.pill-radio input:checked:hover + span { color: var(--paper); }

.slot-info {
  font-size: .8rem;
  color: var(--fg-muted);
  margin-top: .9rem;
}

.slot-info.is-error { color: #ff8d84; }

/* recurring toggle */
.switch-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.switch-row input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.switch-ui {
  flex: none;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  position: relative;
  transition: background-color .3s ease, border-color .3s ease;
}

.switch-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--fg-muted);
  transition: transform .35s var(--ease-out), background-color .3s ease;
}

.switch-row input:checked ~ .switch-ui {
  background: var(--emerald);
  border-color: var(--emerald);
}

.switch-row input:checked ~ .switch-ui::after {
  transform: translateX(20px);
  background: var(--ink);
}

.switch-row input:focus-visible ~ .switch-ui {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.switch-label { font-weight: 600; font-size: .95rem; }

#recurring_options { overflow: hidden; }
#recurring_options .field-grid { padding-top: 1.4rem; }

/* submit */
.booking-submit {
  width: 100%;
  margin-top: 2.5rem;
  padding: 1.35rem 2rem;
  border-radius: var(--r-pill);
  background: var(--emerald);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .01em;
  transition: transform .3s var(--ease-out), filter .3s ease;
}

.booking-submit:hover { filter: brightness(1.1); transform: translateY(-2px); }

.booking-fineprint {
  text-align: center;
  font-size: .8rem;
  color: var(--fg-muted);
  margin-top: 1.1rem;
}

.booking-footer {
  border-top: 1px solid var(--line);
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--fg-muted);
}

.booking-footer a:hover { color: var(--fg); }

@media (max-width: 700px) {
  .form-section { grid-template-columns: 1fr; gap: .4rem; }
  .fs-num { padding-top: 0; }
  .field-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CITY LANDING PAGES (bristol.php / kingsport.php / johnson-city.php)
   Editorial SEO content in the same design system as the booking page.
   ========================================================================== */

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--red); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0;
  font-weight: 600; font-size: .85rem;
}
.skip-link:focus { left: 0; }

.city-main {
  max-width: 940px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  padding-block: clamp(7rem, 14vh, 9rem) clamp(4rem, 8vh, 6rem);
}

.city-hero { margin-bottom: clamp(3rem, 8vh, 5rem); }

.city-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: .18em;
  font-size: .74rem; font-weight: 600;
  color: var(--red);
  margin-bottom: 1.1rem;
}

.city-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: min(clamp(2.4rem, 7vw, 5rem), 13vh);
  line-height: .95; letter-spacing: -.02em; text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.city-lede {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.5; color: var(--muted); max-width: 60ch;
}
.city-lede strong { color: var(--paper); font-weight: 600; }

.city-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.city-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 1.7rem; border-radius: var(--r-pill);
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  background: var(--emerald); color: #05130c; border: 1px solid transparent;
  transition: transform .25s var(--ease-out), filter .25s var(--ease-out);
  white-space: nowrap;
}
.city-btn:hover { filter: brightness(1.08); transform: translateY(-2px); }
.city-btn-ghost {
  background: transparent; color: var(--paper);
  border-color: var(--line);
}
.city-btn-ghost:hover { border-color: var(--paper); filter: none; }

.city-section { margin-bottom: clamp(2.6rem, 6vh, 4rem); }

.city-h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.05; letter-spacing: -.01em;
  margin-bottom: 1.1rem;
}
.city-h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  margin-bottom: .9rem;
}

.city-prose p, .city-prose span { color: var(--muted); line-height: 1.7; max-width: 68ch; }
.city-prose p { margin-bottom: 1rem; }
.city-prose strong { color: var(--paper); font-weight: 600; }

.city-inline-link {
  display: inline-block; margin-top: .4rem;
  color: var(--red); font-weight: 600; font-size: .95rem;
  transition: color .2s var(--ease-out);
}
.city-inline-link:hover { color: var(--paper); }
.city-inline-link.muted { color: var(--muted); }
.city-inline-link.muted:hover { color: var(--red); }

.city-services {
  list-style: none; margin: 1.2rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem 1.6rem;
}
.city-services li {
  color: var(--muted); font-size: .95rem; line-height: 1.4;
  padding-left: .9rem; position: relative;
}
.city-services li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--red);
}
.city-services .svc-name { color: var(--paper); font-weight: 500; }

.city-panel {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: clamp(1.4rem, 3vw, 2.2rem);
}
.chip-row { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  padding: .45rem .85rem; border-radius: 10px;
  background: var(--ink-3); border: 1px solid var(--line);
  color: var(--muted); font-size: .85rem;
}
.city-note { margin-top: 1.1rem; font-size: .85rem; color: var(--muted); }

/* City FAQ — always-open cards (own namespace so it never collides with the
   homepage's .faq-* accordion, which collapses .faq-a with height:0). */
.city-faq-list { display: grid; gap: .9rem; margin-top: 1.2rem; }
.city-faq-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 1.2rem 1.35rem;
}
.city-faq-q { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--paper); margin-bottom: .5rem; }
.city-faq-a { color: var(--muted); line-height: 1.65; font-size: .95rem; }

/* Delivery / no-truck pickup callout (homepage + city pages) */
.delivery-callout {
  margin-top: 2rem; padding: clamp(1.2rem, 2.2vw, 1.6rem) clamp(1.4rem, 2.6vw, 1.9rem);
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r-card);
  color: var(--muted); line-height: 1.65; font-size: 1rem; max-width: 70ch;
}
.delivery-callout strong {
  display: block; margin-bottom: .4rem;
  color: var(--red); font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; font-size: .8rem;
}
#all-services .delivery-callout { margin-inline: auto; }

.city-map {
  margin-top: 1.2rem; border-radius: var(--r-img); overflow: hidden;
  border: 1px solid var(--line); background: var(--ink-2);
}
.city-map iframe { display: block; }

.city-also { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; }

.city-final {
  text-align: center; border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(23,178,106,.14), rgba(76,125,240,.12));
  padding: clamp(2.2rem, 5vw, 3.5rem) clamp(1.4rem, 4vw, 2.5rem);
}
.city-final .city-lede { margin-inline: auto; margin-bottom: 1.6rem; }
.city-final .city-cta-row { justify-content: center; }

.city-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 30;
  display: none; gap: .7rem; padding: .7rem 1rem;
  background: rgba(11, 11, 13, .92); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.city-sticky-cta .city-btn { flex: 1; padding: .8rem 1rem; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (max-width: 640px) {
  .city-services { grid-template-columns: 1fr; }
  .city-sticky-cta { display: flex; }
  .city-main { padding-bottom: 5.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .city-btn:hover { transform: none; }
}

/* ---- Homepage "All services we offer" (SEO discoverability block) ---- */
/* Self-contained dark band so the red-bulleted index reads regardless of the
   surrounding theme-flip section it lands between. */
#all-services {
  background: var(--ink); color: var(--paper);
  padding-block: var(--section-pad);
}
#all-services h2 { color: var(--paper); }
#all-services .eyebrow { color: var(--red); }
#all-services .all-services-inner {
  max-width: 1000px; margin-inline: auto;
  padding-inline: var(--gutter);
}
.all-services-lede {
  text-align: center; color: var(--muted); line-height: 1.6;
  max-width: 65ch; margin: 0 auto 1rem; font-size: clamp(1rem, 1.6vw, 1.2rem);
}
.all-services-lede strong { color: var(--paper); font-weight: 600; }
.all-services-nearme { text-align: center; color: var(--muted); font-size: .85rem; margin-bottom: .6rem; }
.all-services-sub { text-align: center; color: var(--muted); font-size: .85rem; margin-bottom: 2rem; }
.all-services-grid { grid-template-columns: repeat(3, 1fr); max-width: 1000px; margin-inline: auto; }
.all-services-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem;
  max-width: 1000px; margin: 2.6rem auto 0;
  padding-top: 2rem; border-top: 1px solid var(--line);
}
.all-services-links .city-inline-link {
  margin-top: 0;
  text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; font-weight: 700;
}
@media (max-width: 900px) { .all-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .all-services-grid { grid-template-columns: 1fr; } }

/* Booking — custom "Other" city free-text input */
.city-other-wrap { margin-top: .85rem; }
.city-other-wrap[hidden] { display: none; }

/* ==========================================================================
   GIVING BACK (Goodwill) + DUMPSTER coming-soon band
   ========================================================================== */
#giving {
  background: var(--ink); color: var(--paper);
  padding-block: var(--section-pad);
  padding-inline: var(--gutter);
}
.giving-grid {
  max-width: 1200px; margin-inline: auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.giving-photo { margin: 0; }
.giving-photo img {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-img); border: 1px solid var(--line);
}
.giving-copy .eyebrow { color: var(--red); }
.giving-copy h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1; letter-spacing: -.02em;
  text-transform: uppercase; margin: .7rem 0 1.2rem;
}
.giving-copy .section-sub {
  color: var(--muted); line-height: 1.65; max-width: 50ch;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.coming-soon {
  max-width: 1200px; margin: clamp(3rem, 7vh, 5rem) auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-items: stretch;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r-card); overflow: hidden;
}
.coming-soon-photo { position: relative; margin: 0; min-height: 260px; }
.coming-soon-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.soon-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--red); color: #fff; font-weight: 700; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .1em; padding: .45rem .9rem; border-radius: var(--r-pill);
}
.coming-soon-copy { padding: clamp(1.6rem, 3.5vw, 2.8rem); align-self: center; }
.coming-soon-copy .eyebrow { color: var(--red); }
.coming-soon-copy h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem); text-transform: uppercase; margin: .5rem 0 .8rem;
}
.coming-soon-copy p { color: var(--muted); line-height: 1.6; max-width: 46ch; margin-bottom: 1.5rem; }

@media (max-width: 800px) {
  .giving-grid { grid-template-columns: 1fr; }
  .coming-soon { grid-template-columns: 1fr; }
}

/* Ensure the ghost CTA reads on the dark #giving band (btn-ghost uses a theme
   colour that can resolve dark here) */
#giving .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.6rem; border-radius: var(--r-pill);
  border: 1px solid var(--line); color: var(--paper);
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
}
#giving .btn-ghost:hover { border-color: var(--paper); background: rgba(242, 239, 231, .06); }

/* ==========================================================================
   QUOTE — photo upload zone
   ========================================================================== */
.upload-zone {
  display: block; cursor: pointer; position: relative;
  border: 1.5px dashed var(--line); border-radius: var(--r-card);
  background: var(--ink-2); padding: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center; transition: border-color .2s var(--ease-out), background .2s var(--ease-out);
}
.upload-zone:hover, .upload-zone:focus-within { border-color: var(--red); background: rgba(230, 53, 40, .05); }
.upload-zone input[type="file"] { position: absolute; width: 1px; height: 1px; padding: 0; opacity: 0; overflow: hidden; }
.upload-zone-inner { display: flex; flex-direction: column; align-items: center; gap: .35rem; }
.upload-ico { font-size: 1.7rem; line-height: 1; }
.upload-zone-inner strong { color: var(--paper); font-size: 1.05rem; }
.upload-hint { color: var(--muted); font-size: .82rem; }
.upload-previews { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.upload-previews[hidden] { display: none; }
.upload-thumb {
  width: 86px; height: 86px; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--line); background: var(--ink-3);
}
.upload-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.upload-count { width: 100%; color: var(--amber); font-size: .8rem; margin: .2rem 0 0; }
