/* ============================================================
   BMC GarageGo — styles.css
   Component + page styles
   ============================================================ */

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  font-weight: var(--fw-body);
  font-size: var(--fs-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

section {
  position: relative;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 0.95;
  text-transform: uppercase;
}

.red {
  color: var(--red);
}

.eyebrow {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);
  border-radius: var(--r-pill);
  padding: 0.85rem 2rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  cursor: pointer;
  text-align: center;
  line-height: 1;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(225, 27, 34, 0.28);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 2px solid var(--black);
  color: var(--black);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 800;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    height 0.4s var(--ease);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar.is-scrolled {
  background: var(--white);
  box-shadow: 0 6px 24px rgba(14, 14, 16, 0.08);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  color: var(--white);
  transition: color 0.4s var(--ease);
  text-transform: uppercase;
  white-space: nowrap;
}

.navbar.is-scrolled .brand {
  color: var(--black);
}

.brand .red {
  color: var(--red);
}

.brand-logo-nav {
  height: 46px;
  width: auto;
  max-width: 189px;
  display: block;
  object-fit: contain;
}

.footer-brand-logo {
  height: 55px;
  width: auto;
  max-width: 210px;
  display: block;
  object-fit: contain;
  margin-bottom: var(--s-3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-8);
}

.nav-links a {
  position: relative;
  font-weight: var(--fw-med);
  font-size: 1rem;
  color: var(--white);
  transition: color 0.4s var(--ease);
  padding: 4px 0;
}

.navbar.is-scrolled .nav-links a {
  color: var(--black);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: var(--fw-bold);
  color: var(--white);
  transition: color 0.4s var(--ease);
  white-space: nowrap;
}

.navbar.is-scrolled .nav-phone {
  color: var(--black);
}

.nav-phone:hover {
  color: var(--red);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
}

.nav-cta {
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
}

/* Force solid navbar for pages with light/offwhite backgrounds */
.navbar.navbar--solid {
  background: var(--white);
  box-shadow: 0 6px 24px rgba(14, 14, 16, 0.08);
}
.navbar.navbar--solid .nav-links a,
.navbar.navbar--solid .brand { color: var(--black); }
.navbar.navbar--solid .nav-phone { color: var(--black); }
.navbar.navbar--solid .nav-toggle span { background: var(--black); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 24px;
  justify-content: center;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease),
    background 0.4s var(--ease);
}

.navbar.is-scrolled .nav-toggle span {
  background: var(--black);
}

body.menu-open .nav-toggle span {
  background: var(--white);
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-12) var(--s-6);
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 12vw, 4.5rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  display: inline-block;
}

.mobile-menu a:hover {
  color: var(--red);
}

.mobile-menu .mobile-extra {
  margin-top: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.mobile-menu .mobile-extra a {
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.mobile-menu .mobile-phone {
  color: var(--red);
  font-weight: var(--fw-bold);
}

.mobile-menu-close {
  position: absolute;
  top: var(--s-5);
  right: var(--s-6);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.mobile-menu-close:hover { opacity: 1; }
.mobile-menu-close svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 2; }

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--s-24) 0 var(--s-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: var(--s-12);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: var(--s-4);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.footer-brand .red {
  color: var(--red);
}

.footer-tagline {
  color: var(--grey-100);
  font-weight: var(--fw-med);
  margin-bottom: var(--s-2);
}

.footer-note {
  color: var(--grey-400);
  font-size: var(--fs-small);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.footer-col ul a,
.footer-contact a {
  color: var(--grey-100);
  transition: color 0.25s var(--ease);
}

.footer-col ul a:hover,
.footer-contact a:hover {
  color: var(--red);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}

.footer-bottom {
  margin-top: var(--s-16);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-size: var(--fs-small);
  color: var(--grey-400);
}

.footer-bottom a {
  color: var(--grey-100);
}

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

.footer-credit a {
  color: var(--white);
  font-weight: var(--fw-med);
}

/* ---------- WhatsApp Floater ---------- */
.wa-floater {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.wa-floater svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.wa-floater::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.45;
  z-index: -1;
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ---------- Page curtain ---------- */
#curtain {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 2000;
  pointer-events: none;
  clip-path: inset(0 0 0% 0);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Index page shutter (replaces curtain on home) ---------- */
#shutter-a,
#shutter-b {
  position: fixed;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--black);
  z-index: 2000;
  pointer-events: none;
}
#shutter-a { top: 0; }
#shutter-b { bottom: 0; }

#shutter-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2001;
  pointer-events: none;
  width: clamp(140px, 28vw, 260px);
  opacity: 0;
}

/* ---------- Custom Cursor ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 3000;
  border-radius: 50%;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
}

.cursor-ring {
  width: 44px;
  height: 44px;
  border: 2px solid var(--red);
  background: rgba(225, 27, 34, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  color: var(--white);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.cursor-ring.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-12);
  align-items: center;
  width: 100%;
  padding-top: 100px;
  padding-bottom: var(--s-12);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  text-transform: uppercase;
  line-height: 0.92;
  margin: var(--s-4) 0 var(--s-6);
}

.hero h1 .red {
  color: var(--red);
}

.hero-sub {
  font-size: var(--fs-body);
  color: var(--grey-100);
  max-width: 46ch;
  margin-bottom: var(--s-8);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-bottom: var(--s-8);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  font-size: var(--fs-small);
  color: var(--grey-400);
  font-weight: var(--fw-med);
}

.trust-strip span {
  position: relative;
  padding-left: var(--s-4);
}

.trust-strip span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

/* Hero image / torch */
.hero-visual {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2b30 0%, #1c1d21 60%, #131316 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder::after {
  content: attr(data-label);
  font-family: var(--font-body);
  font-weight: var(--fw-med);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  padding: var(--s-4);
}

.hero-visual .img-placeholder {
  background: linear-gradient(140deg, #3a1316 0%, #1c1d21 55%, #0e0e10 100%);
  border-radius: var(--r-lg);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Torch reveal layer */
.hero-torch {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(225, 27, 34, 0.18),
    transparent 55%
  );
  opacity: 0.6;
  pointer-events: none;
}

.hero-torch-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, #1a0608, #0e0e10);
  -webkit-mask-image: radial-gradient(
    circle 180px at var(--mx, 30%) var(--my, 50%),
    black 0%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle 180px at var(--mx, 30%) var(--my, 50%),
    black 0%,
    transparent 100%
  );
  opacity: 0.5;
  pointer-events: none;
}

.scroll-hint {
  position: absolute;
  bottom: var(--s-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--red), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.4;
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
    transform-origin: top;
  }
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section {
  padding: var(--s-24) 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-charcoal {
  background: var(--charcoal);
  color: var(--white);
}

.section-offwhite {
  background: var(--offwhite);
}

.section-head {
  max-width: 720px;
  margin: 0 auto var(--s-12);
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  text-transform: uppercase;
  margin: var(--s-3) 0 var(--s-4);
  line-height: 0.98;
}

.section-head p {
  color: var(--grey-700);
}

.section-dark .section-head p,
.section-charcoal .section-head p {
  color: var(--grey-100);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--black);
  color: var(--white);
  padding: var(--s-24) 0;
}

.how-beats {
  display: grid;
  gap: var(--s-8);
  margin-top: var(--s-12);
}

.how-beat {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-6);
  align-items: center;
  padding: var(--s-8) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.how-beat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
}

.how-beat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.how-beat h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}

.how-beat p {
  color: var(--grey-100);
  max-width: 50ch;
}

.how-beat-body {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}

.badge-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--s-8);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  border: 2px solid var(--grey-100);
  cursor: pointer;
  user-select: none;
}

.badge-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-pop);
}

.badge-card.active {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-tint), var(--shadow-pop);
  transform: translateY(-4px);
}

.badge-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: var(--red-tint);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-4);
  font-size: 1.8rem;
  transition: transform 0.4s var(--ease);
}

.badge-card:hover .badge-icon,
.badge-card.active .badge-icon {
  transform: scale(1.18) rotate(-8deg);
}

/* Animated stat number */
.badge-stat {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: var(--s-2);
}

.badge-suffix {
  font-size: 1.3rem;
}

/* Expandable detail (shows on click) */
.badge-detail {
  font-size: var(--fs-small);
  color: var(--grey-700);
  padding-top: 0;
  margin-top: 0;
  border-top: 1px solid transparent;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease), opacity 0.3s var(--ease), padding-top 0.3s var(--ease), border-color 0.3s var(--ease);
}

.badge-card.active .badge-detail {
  max-height: 100px;
  opacity: 1;
  padding-top: var(--s-3);
  border-top-color: var(--grey-100);
  margin-top: var(--s-3);
}

.badge-icon svg {
  width: 32px;
  height: 32px;
}

.badge-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}

.badge-card p {
  color: var(--grey-700);
  font-size: var(--fs-small);
}

/* ============================================================
   SERVICES OVERVIEW (split cards)
   ============================================================ */
.split-services {
  display: flex;
  gap: var(--s-6);
  align-items: stretch;
}

.split-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-12);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-100);
  transition: flex-grow 0.5s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.split-services:hover .split-card {
  flex-grow: 0.85;
}

.split-services .split-card:hover {
  flex-grow: 1.3;
  box-shadow: var(--shadow-pop);
}

.split-card-bike {
  border-top: 6px solid var(--red);
}

.split-card-car {
  border-top: 6px solid var(--charcoal);
}

.split-card-ev {
  border-top: 6px solid var(--graphite);
}

.split-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  text-transform: uppercase;
  margin-bottom: var(--s-6);
}

.split-card-bike h3 {
  color: var(--red);
}

.split-card-ev h3 {
  color: var(--graphite);
}

.split-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2) var(--s-4);
  margin-bottom: var(--s-8);
}

.split-card ul li {
  position: relative;
  padding-left: var(--s-6);
  color: var(--grey-700);
  font-size: var(--fs-small);
}

.split-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: var(--fw-bold);
}

.split-card .explore {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: var(--fw-bold);
  color: var(--black);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.split-card .explore:hover {
  gap: var(--s-4);
  color: var(--red);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
}

.why-item {
  padding: var(--s-6);
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--grey-100);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--s-4);
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}

.why-item p {
  color: var(--grey-700);
  font-size: var(--fs-small);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-teaser {
  background: var(--black);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  margin-bottom: var(--s-8);
}

.price-card {
  background: var(--charcoal);
  border-radius: var(--r-md);
  padding: var(--s-8) var(--s-6);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.price-card .price-label {
  font-size: var(--fs-small);
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-3);
}

.price-card .price-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1;
}

.price-card .price-value .cur {
  color: var(--red);
}

.price-ribbon {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  padding: var(--s-2) var(--s-6);
  border-radius: var(--r-pill);
  margin-bottom: var(--s-6);
}

.pricing-foot {
  text-align: center;
}

.pricing-foot a {
  color: var(--red);
  font-weight: var(--fw-bold);
}

/* Pricing tables (services page) */
.pricing-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
}

.price-table-wrap h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}

.price-table {
  width: 100%;
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-100);
}

.price-table th,
.price-table td {
  padding: var(--s-4) var(--s-6);
  text-align: left;
  border-bottom: 1px solid var(--grey-100);
}

.price-table thead th {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
}

.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
  font-weight: var(--fw-bold);
}

.price-table tbody tr:hover {
  background: var(--offwhite);
}

.price-table .book-this {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  color: var(--red);
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
}

.price-table-note {
  margin-top: var(--s-3);
  font-size: var(--fs-small);
  color: var(--grey-700);
  font-style: italic;
}

.free-badge {
  display: inline-block;
  margin-top: var(--s-3);
  background: var(--success);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-pill);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  background: var(--offwhite);
  padding: var(--s-16) 0;
  overflow: hidden;
}

.marquee-section .section-head {
  margin-bottom: var(--s-8);
}

.marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

.marquee + .marquee {
  margin-top: var(--s-6);
}

.marquee-track {
  display: flex;
  gap: var(--s-4);
  width: max-content;
  will-change: transform;
  align-items: stretch;
}

/* Endless scroll keyframes — used by marquee.js.
   --mq-scroll is set per-track in JS (firstClone.offsetLeft) so the
   loop point is pixel-perfect regardless of flex gap or item count. */
@keyframes marquee-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--mq-scroll, 50%))); }
}
@keyframes marquee-rtl {
  from { transform: translateX(calc(-1 * var(--mq-scroll, 50%))); }
  to   { transform: translateX(0); }
}

.marquee-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-6);
  font-weight: var(--fw-bold);
  font-size: 0.85rem;
  box-shadow: var(--shadow-card);
  min-width: 108px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: default;
}

.marquee-chip:hover {
  box-shadow: var(--shadow-pop);
  transform: translateY(-2px);
}

/* Brand logo image inside marquee chip — always full colour */
.brand-logo-img {
  height: 36px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
  display: block;
  filter: none;
  transition: transform 0.3s var(--ease);
}

.marquee-chip:hover .brand-logo-img {
  transform: scale(1.1);
}

.chip-brand-name {
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  color: var(--grey-700);
  letter-spacing: 0.02em;
  text-align: center;
}

.chip-emoji {
  display: none; /* replaced by logo images */
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
/* Testimonials — slow-scroll marquee */
.testimonials-section {
  overflow: hidden;
  padding: var(--s-24) 0;
}

.testimonials-section .marquee {
  margin-top: 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-100);
  width: 360px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
}

.testimonial-stars {
  color: var(--warning);
  margin-bottom: var(--s-4);
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  margin-bottom: var(--s-6);
  color: var(--black);
}

.testimonial-author {
  font-weight: var(--fw-bold);
}

.testimonial-meta {
  color: var(--grey-400);
  font-size: var(--fs-small);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--red);
  color: var(--white);
  padding: var(--s-24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -50%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 2px,
    transparent 2px,
    transparent 22px
  );
  z-index: 0;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.cta-band p {
  font-size: var(--fs-body);
  margin-bottom: var(--s-8);
  color: rgba(255, 255, 255, 0.92);
}

.cta-band .btn {
  background: var(--white);
  color: var(--red);
}

.cta-band .btn:hover {
  background: var(--black);
  color: var(--white);
}

/* ============================================================
   PAGE HEADER BAND (inner pages)
   ============================================================ */
.page-header {
  background: var(--black);
  color: var(--white);
  padding: calc(72px + var(--s-24)) 0 var(--s-16);
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  text-transform: uppercase;
  margin: var(--s-3) 0 var(--s-4);
}

.page-header p {
  color: var(--grey-100);
  max-width: 60ch;
  margin: 0 auto;
}

/* ============================================================
   SERVICES PAGE — selectable cards
   ============================================================ */
.service-group {
  margin-bottom: var(--s-16);
}

.service-group h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  text-transform: uppercase;
  margin-bottom: var(--s-6);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--s-4);
}

.service-card {
  background: var(--white);
  border: 2px solid var(--grey-100);
  border-radius: var(--r-md);
  padding: var(--s-6);
  cursor: pointer;
  position: relative;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.service-card.selected {
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red-tint);
}

.service-card .svc-icon {
  font-size: 1.8rem;
  margin-bottom: var(--s-3);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
}

.service-card .svc-check {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.service-card.selected .svc-check {
  opacity: 1;
  transform: scale(1);
}

/* Sticky selection chip */
.sticky-select {
  position: fixed;
  left: 50%;
  bottom: var(--s-6);
  transform: translate(-50%, 120%);
  background: var(--black);
  color: var(--white);
  padding: var(--s-3) var(--s-4) var(--s-3) var(--s-6);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  gap: var(--s-4);
  z-index: 850;
  box-shadow: var(--shadow-pop);
  transition: transform 0.4s var(--ease);
}

.sticky-select.show {
  transform: translate(-50%, 0);
}

.sticky-select .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* ============================================================
   BOOKING WIZARD
   ============================================================ */
.booking-wrap {
  padding: calc(72px + var(--s-12)) 0 var(--s-24);
  background: var(--offwhite);
  min-height: 100vh;
}

.progress-bar {
  position: sticky;
  top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-12);
  background: var(--white);
  border-radius: var(--r-pill);
  padding: var(--s-3) var(--s-6);
  box-shadow: var(--shadow-card);
  z-index: 100;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--red-tint);
  width: 16.66%;
  z-index: 0;
  transform-origin: left;
}

.progress-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-small);
  font-weight: var(--fw-med);
  color: var(--grey-400);
  flex: 1;
  justify-content: center;
}

.progress-step .step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grey-100);
  color: var(--grey-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: 0.8rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.progress-step.active .step-num {
  background: var(--red);
  color: var(--white);
}

.progress-step.active {
  color: var(--black);
}

.progress-step.done .step-num {
  background: var(--success);
  color: var(--white);
}

.progress-step .step-label {
  white-space: nowrap;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.step-head {
  margin-bottom: var(--s-8);
}

.step-head h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}

.step-head p {
  color: var(--grey-700);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--s-4);
}

.option-card {
  background: var(--white);
  border: 2px solid var(--grey-100);
  border-radius: var(--r-md);
  padding: var(--s-6);
  cursor: pointer;
  text-align: center;
  position: relative;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.option-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.option-card.selected {
  border-color: var(--red);
  transform: scale(1.04);
  box-shadow: 0 0 0 3px var(--red-tint);
}

.option-card .opt-icon {
  font-size: 2.2rem;
  margin-bottom: var(--s-3);
}

.option-card h3 {
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
}

.option-card .opt-price {
  margin-top: var(--s-2);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--red);
}

.option-card .opt-sub {
  font-size: var(--fs-small);
  color: var(--grey-400);
  margin-top: var(--s-1);
}

.option-card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--grey-100);
}

.option-card.disabled:hover {
  transform: none;
  box-shadow: none;
}

.option-card .opt-lock {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  font-size: 1.1rem;
}

.bike-free-badge {
  display: inline-block;
  margin-top: var(--s-2);
  background: var(--success);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  padding: 2px var(--s-2);
  border-radius: var(--r-pill);
}

/* Brand chips */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--s-3);
}

.brand-chip {
  background: var(--white);
  border: 2px solid var(--grey-100);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-3);
  text-align: center;
  cursor: pointer;
  font-weight: var(--fw-bold);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 90px;
}

.brand-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.brand-chip.selected {
  border-color: var(--red);
  transform: scale(1.04);
  box-shadow: 0 0 0 3px var(--red-tint);
}

/* Logo inside booking brand chip */
.brand-chip-logo {
  height: 34px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  display: block;
  transition: filter 0.25s var(--ease);
}

.brand-chip-name {
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  color: var(--grey-700);
  line-height: 1.2;
}

.brand-other-input {
  margin-top: var(--s-6);
  display: none;
}

.brand-other-input.show {
  display: block;
}

/* Form fields */
.field {
  margin-bottom: var(--s-6);
}

.field label {
  display: block;
  font-weight: var(--fw-bold);
  margin-bottom: var(--s-2);
  font-size: var(--fs-small);
}

.field label .req {
  color: var(--red);
}

.field input,
.field textarea {
  width: 100%;
  padding: var(--s-4);
  border: 2px solid var(--grey-100);
  border-radius: var(--r-sm);
  background: var(--white);
  font-size: 1rem;
  transition: border-color 0.25s var(--ease);
}

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

.field input.invalid,
.field textarea.invalid {
  border-color: var(--red);
  background: var(--red-tint);
}

.field input.valid {
  border-color: var(--success);
}

.field .error-msg {
  color: var(--red);
  font-size: var(--fs-small);
  margin-top: var(--s-2);
  min-height: 1.2em;
}

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

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Step navigation */
.step-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  margin-top: var(--s-12);
}

.step-nav .btn-back {
  background: transparent;
  color: var(--grey-700);
  border: 2px solid var(--grey-100);
}

.step-nav .btn-back:hover {
  border-color: var(--graphite);
  color: var(--black);
}

/* Summary (step 6) */
.summary-list {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: var(--s-8);
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) var(--s-6);
  border-bottom: 1px solid var(--grey-100);
  gap: var(--s-4);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row .sum-label {
  color: var(--grey-400);
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-row .sum-value {
  font-weight: var(--fw-bold);
  flex: 1;
  text-align: right;
  margin-right: var(--s-4);
}

.summary-row .sum-edit {
  color: var(--red);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
}

/* Confirmation */
.confirmation {
  display: none;
  text-align: center;
  padding: var(--s-16) 0;
}

.confirmation.show {
  display: block;
}

.check-circle {
  width: 96px;
  height: 96px;
  margin: 0 auto var(--s-8);
}

.check-circle svg {
  width: 100%;
  height: 100%;
}

.check-circle circle,
.check-circle path {
  fill: none;
  stroke: var(--success);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.confirmation h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}

.confirmation p {
  max-width: 56ch;
  margin: 0 auto var(--s-4);
  color: var(--grey-700);
}

.confirmation .conf-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  justify-content: center;
  margin: var(--s-8) 0;
}

.conf-pay-note {
  font-size: var(--fs-small);
  color: var(--grey-400);
  font-style: italic;
}

.error-banner {
  background: var(--red-tint);
  border: 1px solid var(--red);
  color: var(--red-dark);
  padding: var(--s-4);
  border-radius: var(--r-sm);
  margin-top: var(--s-6);
  display: none;
}

.error-banner.show {
  display: block;
}

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.btn.loading .spinner {
  display: inline-block;
}

.btn.loading .btn-text {
  opacity: 0.6;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Toast */
.toast {
  position: fixed;
  bottom: var(--s-8);
  left: 50%;
  transform: translate(-50%, 150%);
  background: var(--black);
  color: var(--white);
  padding: var(--s-4) var(--s-6);
  border-radius: var(--r-md);
  z-index: 1500;
  box-shadow: var(--shadow-pop);
  max-width: 90vw;
  text-align: center;
  transition: transform 0.4s var(--ease);
}

.toast.show {
  transform: translate(-50%, 0);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--s-12);
  align-items: start;
}

.contact-info {
  background: var(--black);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-12);
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  text-transform: uppercase;
  margin-bottom: var(--s-6);
}

.contact-line {
  margin-bottom: var(--s-6);
}

.contact-line .ci-label {
  font-size: var(--fs-small);
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-1);
}

.contact-line a,
.contact-line span {
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
}

.contact-line a:hover {
  color: var(--red);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-8);
}

.contact-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-12);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-100);
}

.form-success {
  display: none;
  background: rgba(30, 158, 90, 0.12);
  border: 1px solid var(--success);
  color: var(--success);
  padding: var(--s-4);
  border-radius: var(--r-sm);
  margin-bottom: var(--s-6);
  font-weight: var(--fw-bold);
}

.form-success.show {
  display: block;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-story p {
  font-size: var(--fs-body);
  color: var(--grey-700);
  margin-bottom: var(--s-4);
}

.taglines {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.tagline {
  position: absolute;
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  text-transform: uppercase;
  text-align: center;
  width: 90%;
  line-height: 1.1;
  opacity: 0;
  /* Centered via GSAP in about.html — left/top set by gsap.set() */
}

.tagline:first-child {
  opacity: 1;
}

.tagline .red {
  color: var(--red);
}

.service-area {
  text-align: center;
  padding: var(--s-12);
  background: var(--offwhite);
  border-radius: var(--r-lg);
  margin: var(--s-12) auto;
  max-width: 800px;
}

.service-area .area-pin {
  font-size: 3rem;
  margin-bottom: var(--s-4);
}

.service-area h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}

.service-area p {
  color: var(--grey-700);
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(72px + var(--s-16)) var(--s-6) var(--s-24);
}

.legal h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.legal .updated {
  color: var(--grey-400);
  font-size: var(--fs-small);
  margin-bottom: var(--s-8);
}

.legal h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  text-transform: uppercase;
  margin: var(--s-8) 0 var(--s-3);
}

.legal p,
.legal li {
  color: var(--grey-700);
  margin-bottom: var(--s-3);
}

.legal ul {
  list-style: disc;
  padding-left: var(--s-6);
  margin-bottom: var(--s-4);
}

.legal a {
  color: var(--red);
  font-weight: var(--fw-med);
}

/* ============================================================
   ADMIN PAGE
   ============================================================ */
.admin-body {
  background: var(--offwhite);
  font-family: var(--font-body);
  min-height: 100vh;
  padding: var(--s-8) 0;
}

.admin-login {
  max-width: 420px;
  margin: 10vh auto;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-12);
  box-shadow: var(--shadow-card);
}

.admin-login h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: var(--s-6);
}

.admin-login .brand-red {
  color: var(--red);
}

.admin-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-8);
}

.admin-header h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
}

.admin-actions {
  display: flex;
  gap: var(--s-3);
  align-items: center;
}

.admin-search {
  padding: var(--s-3) var(--s-4);
  border: 2px solid var(--grey-100);
  border-radius: var(--r-sm);
  min-width: 240px;
}

.admin-table-wrap {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  font-size: var(--fs-small);
}

.admin-table th,
.admin-table td {
  padding: var(--s-3) var(--s-4);
  text-align: left;
  border-bottom: 1px solid var(--grey-100);
  white-space: nowrap;
}

.admin-table td.notes-cell {
  white-space: normal;
  max-width: 280px;
}

.admin-table thead th {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.admin-table tbody tr:hover {
  background: var(--offwhite);
}

.admin-empty {
  padding: var(--s-12);
  text-align: center;
  color: var(--grey-400);
}

.admin-alert {
  background: var(--red-tint);
  border: 1px solid var(--red);
  color: var(--red-dark);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-sm);
  margin-bottom: var(--s-4);
}

/* ============================================================
   ANIMATION GATING — reveal helpers
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.is-revealed .reveal,
.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .nav-links,
  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-visual {
    display: none;
  }

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

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

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

  .split-services {
    flex-direction: column;
  }

  .split-services:hover .split-card,
  .split-services .split-card:hover {
    flex-grow: 1;
  }

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

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

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

@media (max-width: 767px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }

  .split-card ul {
    grid-template-columns: 1fr;
  }

  .progress-step .step-label {
    display: none;
  }

  .how-beat {
    grid-template-columns: 60px 1fr;
  }

  .how-beat-body {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-3);
  }

  .contact-info,
  .contact-form {
    padding: var(--s-8);
  }

  .summary-row {
    flex-wrap: wrap;
  }
}

/* ============================================================
   MODEL SELECTION (Step 4 of booking)
   ============================================================ */
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: var(--s-3);
  max-height: 420px;
  overflow-y: auto;
  padding-right: var(--s-1);
}

.model-grid::-webkit-scrollbar {
  width: 4px;
}
.model-grid::-webkit-scrollbar-track { background: var(--grey-100); border-radius: 4px; }
.model-grid::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

.model-chip {
  background: var(--white);
  border: 2px solid var(--grey-100);
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4);
  text-align: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: var(--fw-med);
  line-height: 1.3;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}

.model-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--grey-400);
}

.model-chip.selected {
  border-color: var(--red);
  color: var(--red);
  font-weight: var(--fw-bold);
  box-shadow: 0 0 0 3px var(--red-tint);
}

.model-other-input {
  margin-top: var(--s-6);
  display: none;
}

.model-other-input.show {
  display: block;
}

/* ============================================================
   ADDRESS & LOCATION MAP (Step 6 of booking)
   ============================================================ */
.address-actions {
  display: flex;
  gap: var(--s-6);
  margin-top: var(--s-2);
  flex-wrap: wrap;
}

.locate-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--red);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  transition: opacity 0.2s;
}

.locate-btn:hover {
  opacity: 0.7;
}

.locate-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.location-map-wrap {
  display: none;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: var(--s-4);
  height: 300px;
  border: 2px solid var(--grey-100);
  transition: border-color 0.25s var(--ease);
}

.location-map-wrap.show {
  display: block;
}

.location-map-wrap.picked {
  border-color: var(--success);
}

#location-map {
  height: 100%;
  width: 100%;
}

.map-hint {
  font-size: var(--fs-small);
  color: var(--grey-400);
  margin-top: var(--s-2);
}

/* 7-step progress bar — hide labels on tablets */
@media (max-width: 900px) {
  .progress-step .step-label {
    display: none;
  }
}

/* ============================================================
   ICON SYSTEM — Lucide SVG icons
   ============================================================ */

/* How It Works beat icons */
.how-beat-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Trust badge icons */
.badge-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Why choose us icons */
.why-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Service card icons */
.svc-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-icon {
  font-size: inherit; /* override emoji sizing */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--red-tint);
  border-radius: var(--r-sm);
  margin-bottom: var(--s-3);
}

/* Booking option card icons */
.opt-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--graphite);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s var(--ease);
}

.option-card.selected .opt-icon svg {
  stroke: var(--red);
}

/* Footer contact icons */
.footer-contact a svg.lucide {
  width: 16px;
  height: 16px;
  stroke: var(--grey-400);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: stroke 0.25s var(--ease);
}

.footer-contact a:hover svg.lucide {
  stroke: var(--red);
}

/* Service area map pin */
.area-pin svg {
  width: 44px;
  height: 44px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .wa-floater::before {
    display: none;
  }

  #curtain {
    display: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ---------- Service Date & Time ---------- */
.service-datetime-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  align-items: start;
}
@media (max-width: 520px) {
  .service-datetime-row { grid-template-columns: 1fr; }
}
.service-datetime-col input[type="date"] {
  width: 100%;
}
.field-sub-label {
  display: block;
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  color: var(--grey-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-3);
}

/* ---------- Time slot pills ---------- */
.timeslot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.timeslot-pill {
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-pill);
  border: 2px solid var(--grey-100);
  background: var(--white);
  cursor: pointer;
  font-weight: var(--fw-med);
  font-size: 0.82rem;
  font-family: var(--font-body);
  color: var(--black);
  white-space: nowrap;
  line-height: 1.3;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease), transform 0.2s var(--ease);
}
.timeslot-pill:hover {
  border-color: var(--grey-400);
  transform: translateY(-1px);
}
.timeslot-pill.selected {
  border-color: var(--red);
  background: var(--red-tint);
  color: var(--red);
  font-weight: var(--fw-bold);
}

/* ---------- Option card check mark (multi-select) ---------- */
.option-card .opt-check {
  position: absolute;
  top: var(--s-2);
  right: var(--s-2);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  pointer-events: none;
}
.option-card.selected .opt-check {
  opacity: 1;
  transform: scale(1);
}
.svc-multi-hint {
  font-size: var(--fs-small);
  color: var(--grey-400);
  margin-top: var(--s-3);
  text-align: center;
}

/* ---------- Photo Upload ---------- */
.photo-drop {
  position: relative;          /* needed for the input overlay */
  border: 2px dashed var(--grey-300);
  border-radius: 10px;
  padding: var(--s-4);
  transition: border-color .2s;
}
.photo-drop.dragover {
  border-color: var(--red);
  background: rgba(225,27,34,.04);
}
/* Full transparent overlay — tap anywhere on the box to open picker (works on iOS & Android) */
.photo-drop input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.photo-drop-label {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  cursor: pointer; padding: var(--s-5) 0;
  color: var(--grey-600);
  pointer-events: none;   /* clicks fall through to the input above */
}
.photo-drop-label svg {
  width: 36px; height: 36px;
  stroke: var(--red); fill: none;
}
.photo-drop-text  { font-weight: 600; font-size: 0.95rem; color: var(--black); }
.photo-drop-hint  { font-size: 0.78rem; color: var(--grey-500); }

.photo-preview-grid {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px;
}
.photo-thumb {
  position: relative; width: 76px; height: 76px;
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--grey-200);
}
.photo-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.photo-thumb-remove {
  position: absolute; top: 2px; right: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,0,0,.65); color: #fff;
  border: none; cursor: pointer; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
