/* =========================================================
   Cleanr Detailing — Landing Page Styles
   Mobile-first. Single accent color: electric blue #00A8FF
   EDIT colors here:
   ========================================================= */
:root {
  --bg:        #0A0A0A;
  --bg-2:      #111111;
  --bg-3:      #161616;
  --line:      rgba(255,255,255,0.08);
  --text:      #F5F5F5;
  --text-dim:  #A1A1A1;
  --accent:    #00A8FF;     /* EDIT: swap to #D4AF37 for gold */
  --accent-2:  #0090DB;
  --danger:    #FF4747;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 10px 40px rgba(0,168,255,0.18);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 0;                     /* no dead space when sticky is hidden */
  transition: padding-bottom .3s ease;
}
body.has-sticky { padding-bottom: 80px; } /* reserve space when sticky is visible */

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 560px; }

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

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ===== Buttons — volume + lift ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, background .2s ease, filter .2s ease;
  min-height: 48px;
  white-space: nowrap;
  isolation: isolate;
  overflow: hidden;
}
/* Top-edge inner highlight — sells the dimensional feel */
.btn::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 45%);
  mix-blend-mode: overlay;
}
.btn--primary {
  background: linear-gradient(180deg, #29b5ff 0%, var(--accent) 60%, var(--accent-2) 100%);
  color: #001624;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.45) inset,
    0 -2px 0 rgba(0,0,0,0.18) inset,
    0 10px 28px rgba(0,168,255,0.35),
    0 2px 4px rgba(0,0,0,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.45) inset,
    0 -2px 0 rgba(0,0,0,0.18) inset,
    0 16px 36px rgba(0,168,255,0.45),
    0 4px 6px rgba(0,0,0,0.35);
}
.btn--primary:active {
  transform: translateY(0);
  filter: brightness(0.95);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset,
    0 4px 12px rgba(0,168,255,0.25);
}
.btn--secondary {
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 6px 18px rgba(0,0,0,0.30),
    0 1px 2px rgba(0,0,0,0.25);
}
.btn--secondary:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.06) 100%);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.15);
}
.btn--secondary:active { transform: translateY(0); filter: brightness(0.92); }
.btn--lg  { padding: 16px 28px; font-size: 16px; }
.btn--xl  { padding: 18px 32px; font-size: 17px; min-height: 56px; }
.btn--full   { width: 100%; }
.btn--center { display: flex; margin: 32px auto 0; max-width: 320px; }
/* Monumental — large, weighty submit button for the booking form */
.btn--monumental {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 22px 28px;
  min-height: 64px;
  border-radius: 18px;
}

/* ===== Logo — cinematic brand moment ===== */
.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.logo:hover { transform: translateY(-2px) scale(1.02); }

.logo__img {
  /* Logo PNG has pure-black bg. mix-blend-mode: screen knocks the black
     out (adds bg + fg, black = no contribution) so only the chrome render
     shows over the dark page. */
  mix-blend-mode: screen;
  height: 150px;
  width: auto;
  display: block;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(-8px) scale(.92);
  animation: logoIn 1.1s cubic-bezier(.2,.7,.2,1) .15s forwards;
  /* Crop the image's built-in padding so it sits clean against neighbors */
  margin: -28px auto -28px;
}
@keyframes logoIn {
  to { opacity: 1; transform: none; }
}

/* Outer atmospheric halo — supports the logo's own baked glow */
.logo::before {
  content: "";
  position: absolute;
  inset: -30px -40px;
  background: radial-gradient(
    ellipse 70% 80% at 50% 55%,
    rgba(0,168,255,0.22) 0%,
    rgba(0,168,255,0.08) 40%,
    transparent 70%
  );
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: haloIn 1.4s ease .3s forwards, haloBreath 5s ease-in-out 1.6s infinite;
}
@keyframes haloIn   { to { opacity: 1; } }
@keyframes haloBreath {
  0%, 100% { opacity: .85; transform: scale(1);    }
  50%      { opacity: 1;   transform: scale(1.1);  }
}

/* Footer treatment — bigger, brighter halo */
.logo--footer .logo__img {
  height: 110px;
  mix-blend-mode: screen;
  opacity: 1;
  transform: none;
  animation: none;
  margin-top: -40px;
  margin-bottom: -100px;
}
.logo--footer::before {
  inset: -16px -24px;
  background: radial-gradient(
    ellipse 80% 100% at 50% 50%,
    rgba(0,168,255,0.22) 0%,
    rgba(0,168,255,0.06) 45%,
    transparent 75%
  );
  filter: blur(20px);
  opacity: 1;
  animation: haloBreath 7s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .logo__img { animation: none; opacity: 1; transform: none; }
  .logo::before { animation: none; opacity: 1; }
}

/* ===== Animated background orb (mobile + desktop) ===== */
.hero__orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px; height: 560px;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0,168,255,0.32) 0%,
    rgba(0,168,255,0.12) 30%,
    transparent 70%
  );
  filter: blur(60px);
  animation: orbBreath 14s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes orbBreath {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: .9; }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

/* ===== Live "Next opening" chip ===== */
.hero__next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 11px;
  margin-bottom: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 4px 12px rgba(0,0,0,0.3),
    0 1px 2px rgba(0,0,0,0.25);
  transition: background .15s ease, border-color .15s ease, transform .15s ease, box-shadow .2s ease;
  width: fit-content;
}
.hero__next:hover {
  background: rgba(0,168,255,0.08);
  border-color: rgba(0,168,255,0.4);
  transform: translateY(-1px);
}
.hero__next-icon {
  display: inline-flex;
  color: var(--accent);
  animation: tick 2s ease-in-out infinite;
}
@keyframes tick {
  0%, 100% { transform: rotate(0); }
  50%      { transform: rotate(8deg); }
}
.hero__next-label { color: var(--text-dim); font-weight: 500; }
.hero__next-time { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }
.hero__next-arrow { color: var(--accent); margin-left: 2px; transition: transform .15s ease; }
.hero__next:hover .hero__next-arrow { transform: translateX(2px); }

/* ===== CTA pulse ring ===== */
.btn--pulse { position: relative; overflow: visible; }
.btn--pulse::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid rgba(0,168,255, 0.4);
  pointer-events: none;
  animation: ctaPulse 2.6s ease-out infinite;
  opacity: 0;
}
@keyframes ctaPulse {
  0%   { transform: scale(1);    opacity: .55; }
  70%  { transform: scale(1.10); opacity: 0; }
  100% { transform: scale(1.10); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__orb, .hero__next-icon, .btn--pulse::after { animation: none; }
}

/* ===== Interactive: letter-by-letter headline reveal ===== */
.hero__title .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.hero__title.letters-in .letter {
  opacity: 1;
  transform: none;
}

/* ===== Interactive: card tilt smoothing ===== */
.card {
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .15s ease, background .15s ease, box-shadow .3s ease;
  will-change: transform;
}
.card:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 -1px 0 rgba(0,0,0,0.5) inset,
    0 20px 50px rgba(0,0,0,0.45),
    0 4px 10px rgba(0,0,0,0.45);
}
.card--featured:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 -1px 0 rgba(0,0,0,0.5) inset,
    0 0 0 1px rgba(0,168,255,0.35),
    0 22px 56px rgba(0,168,255,0.25),
    0 6px 14px rgba(0,0,0,0.45);
}

/* ===== HERO — minimal & refined ===== */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding-bottom: 56px;
  /* Brighter top halo + same subtle lift — both fade smoothly inside the hero. */
  background-image:
    radial-gradient(ellipse 140% 70% at 50% 0%, rgba(0,168,255,0.18) 0%, rgba(0,168,255,0.06) 30%, transparent 70%);
}
.hero__bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px 20px 0;     /* small breathing room above the logo */
  position: relative;
  z-index: 2;
}
.hero__inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px 0;
  max-width: 760px;
  margin: 0 auto;
}

/* Live status row */
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.1px;
}
.hero__status-dot {
  position: relative;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22c55e;          /* green = live */
  box-shadow: 0 0 0 0 rgba(34,197,94, 0.4);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94, 0); }
}

/* Headline — volume-bearing typography */
.hero__title {
  font-size: clamp(44px, 13vw, 84px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  color: #ffffff;
  /* Layered shadows: rim-light + soft cast shadow + faint accent glow */
  text-shadow:
    0 1px 0 rgba(255,255,255,0.08),
    0 12px 28px rgba(0,0,0,0.55),
    0 0 60px rgba(0,168,255,0.08);
}
.hero__title-line2 {
  color: #8c8e94;
  font-weight: 500;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.04),
    0 10px 22px rgba(0,0,0,0.55);
}

.hero__sub {
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-dim);
  margin: 0 auto 32px;
  max-width: 380px;
  font-weight: 400;
}

/* CTA row */
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.hero__cta .btn { width: 100%; max-width: 420px; margin-left: auto; margin-right: auto; }
.hero__phone {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
  padding: 6px 4px;
}
.hero__phone:hover { color: var(--text); }

/* Stats footer */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}
.hero__stat { white-space: nowrap; }
.hero__stars {
  color: #FFC700;
  letter-spacing: 1.5px;
  margin-right: 2px;
}
.hero__dot {
  width: 3px; height: 3px;
  background: #333;
  border-radius: 50%;
}

/* ===== Section base ===== */
.section { padding: 48px 0; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--book { background: linear-gradient(180deg, var(--bg) 0%, #0d1117 100%); }
.section--book .section__title { font-size: clamp(30px, 8vw, 48px); }
.eyebrow {
  text-align: center;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 8px;
}
.section__title {
  text-align: center;
  font-size: clamp(24px, 6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.15;
  color: #ffffff;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.06),
    0 6px 18px rgba(0,0,0,0.45);
}
.section__sub {
  text-align: center;
  color: var(--text-dim);
  margin: 0 auto 28px;
  max-width: 520px;
  font-size: 14px;
}

/* ===== Cards (packages) ===== */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 8px;
}
.card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 30%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 -1px 0 rgba(0,0,0,0.5) inset,
    0 10px 30px rgba(0,0,0,0.35),
    0 2px 6px rgba(0,0,0,0.4);
}
.card--featured {
  border-color: rgba(0,168,255,0.5);
  background:
    linear-gradient(180deg, rgba(0,168,255,0.10) 0%, rgba(0,168,255,0) 40%),
    var(--bg-2);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 -1px 0 rgba(0,0,0,0.5) inset,
    0 0 0 1px rgba(0,168,255,0.25),
    0 14px 36px rgba(0,168,255,0.18),
    0 4px 10px rgba(0,0,0,0.4);
}
.card__badge {
  position: absolute;
  top: -10px; left: 16px;
  background: var(--accent);
  color: #001624;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
}
.card__icon {
  grid-row: 1;
  grid-column: 1;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,168,255,0.10);
  color: var(--accent);
  border-radius: 10px;
  margin: 0;
}
.card__icon svg { width: 24px; height: 24px; }
.card__name {
  grid-row: 1;
  grid-column: 2;
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  align-self: center;
}
.card__price {
  grid-row: 1;
  grid-column: 3;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
  align-self: center;
  white-space: nowrap;
}
.card__price--small { font-size: 16px; }
.card__price--small .card__currency { font-size: 0.85em; vertical-align: baseline; }
.card__currency { color: var(--text-dim); font-size: 0.65em; vertical-align: top; margin-right: 1px; }
.card__list {
  grid-row: 2;
  grid-column: 1 / -1;
  list-style: none;
  padding: 14px 0 4px;
  margin: 10px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 14px;
}
.card__list li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 13px;
  color: var(--text-dim);
}
.card__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 4px;
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
}
.card__cta {
  grid-row: 3;
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 14px;
}

/* ===== Reviews ===== */
.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.review {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 30%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 -1px 0 rgba(0,0,0,0.4) inset,
    0 8px 20px rgba(0,0,0,0.3),
    0 2px 4px rgba(0,0,0,0.3);
}
/* Variant with a photo at the top — inset frame, not full bleed */
.review--with-img { padding-top: 18px; }

/* Figure wraps the image, gives it a real "frame" feel */
.review__photo {
  position: relative;
  margin: 0 0 14px;
  border-radius: 12px;
  overflow: visible;                     /* allow the badge to overlap */
  isolation: isolate;
}
.review__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
  background: #0d0d0d;
  /* Hairline border + accent glow underneath */
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 10px 24px rgba(0,0,0,0.45),
    0 0 32px 4px rgba(0,168,255,0.32);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.review--with-img:hover .review__img {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(0,168,255,0.30),
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 14px 32px rgba(0,0,0,0.55),
    0 0 28px rgba(0,168,255,0.30);
}
/* Floating "Verified detail" pill overlapping the bottom-left of the photo */
.review__photo-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px 5px 7px;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.45);
}
.review__photo-tag svg {
  flex-shrink: 0;
  color: var(--accent);
}
.review__stars {
  color: #FFC700;
  letter-spacing: 2px;
  margin-bottom: 6px;
  font-size: 14px;
}
.review__quote {
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0 0 8px;
}
.review__author {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.review__author span { color: var(--text-dim); font-weight: 500; }

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 14px;
  row-gap: 2px;
  text-align: left;
  padding: 0;
}
.step__num {
  grid-row: 1 / span 2;
  grid-column: 1;
  align-self: center;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(0,168,255,0.20) 0%, rgba(0,168,255,0.06) 100%),
    var(--bg-2);
  color: var(--accent);
  border: 1px solid rgba(0,168,255,0.3);
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 -1px 0 rgba(0,0,0,0.4) inset,
    0 4px 12px rgba(0,168,255,0.18),
    0 2px 4px rgba(0,0,0,0.35);
}
.step__title {
  grid-row: 1; grid-column: 2;
  margin: 0; font-size: 16px; font-weight: 800;
  align-self: end;
}
.step__text  {
  grid-row: 2; grid-column: 2;
  margin: 0; color: var(--text-dim); font-size: 13.5px; line-height: 1.4;
  align-self: start;
}

/* ===== Form ===== */
.form { display: flex; flex-direction: column; gap: 16px; margin-top: 12px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.form__input {
  width: 100%;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 30%),
    var(--bg-2);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  min-height: 50px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 2px 6px rgba(0,0,0,0.25) inset;
  transition: border-color .15s ease, background .15s ease, box-shadow .2s ease;
}
.form__input:focus {
  outline: none;
  border-color: var(--accent);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0) 30%),
    var(--bg-3);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 2px 6px rgba(0,0,0,0.25) inset,
    0 0 0 3px rgba(0,168,255,0.18);
}
.form__input::placeholder { color: #555; }
select.form__input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1a1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form__legal {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin: 4px 0 0;
}

/* ===== Calendar — minimal month grid ===== */
.cal {
  margin-top: 4px;
}
.cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2px 14px;
}
.cal__title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.cal__nav-group {
  display: flex;
  gap: 4px;
}
.cal__nav {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: var(--text-dim);
  transition: color .15s ease, background .15s ease;
}
.cal__nav:hover:not(:disabled) {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.cal__nav:disabled {
  opacity: .25;
  cursor: not-allowed;
}
.cal__dows {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.cal__dows span {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: #4a4a4a;
  padding: 4px 0;
}
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.cal__day {
  position: relative;
  aspect-ratio: 1 / 1;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--text);
  font-family: inherit;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, transform .15s ease, box-shadow .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal__day:hover:not(:disabled):not(.is-active) {
  background: rgba(255,255,255,0.07);
  transform: translateY(-1px);
}
.cal__day:active:not(:disabled) {
  transform: scale(0.94);
}
.cal__day.is-today { color: var(--accent); font-weight: 600; }
.cal__day.is-active {
  background: linear-gradient(180deg, #ffffff 0%, #d4d4d4 100%);
  color: var(--bg);
  font-weight: 700;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset,
    0 6px 14px rgba(255,255,255,0.18),
    0 2px 4px rgba(0,0,0,0.35);
}
.cal__day:disabled,
.cal__day.is-empty {
  background: transparent;
  color: #2a2a2a;
  cursor: not-allowed;
  pointer-events: none;
}
.cal__day.is-empty { visibility: hidden; }

/* ===== Time slots — minimal ===== */
.times { animation: fadeIn .25s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}
.times__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 4px 2px 12px;
}
.times__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.times__count {
  font-size: 12px;
  color: #555;
  font-variant-numeric: tabular-nums;
}
.slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.slots__btn {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 100%),
    transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 11px 6px;
  color: var(--text);
  font-family: inherit;
  font-weight: 500;
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  min-height: 44px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 1px 2px rgba(0,0,0,0.25);
  transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease, box-shadow .2s ease;
}
.slots__btn:hover:not(.is-active) {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 4px 10px rgba(0,0,0,0.3);
}
.slots__btn:active:not(.is-active) {
  transform: translateY(0) scale(0.98);
}
.slots__btn.is-active {
  background: linear-gradient(180deg, #ffffff 0%, #d4d4d4 100%);
  border-color: #ffffff;
  color: var(--bg);
  font-weight: 700;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset,
    0 6px 16px rgba(255,255,255,0.20),
    0 2px 4px rgba(0,0,0,0.4);
}
.times__empty {
  text-align: center;
  color: #555;
  font-size: 13px;
  padding: 14px 12px;
  margin: 0;
}

/* ===== Success state ===== */
.success {
  text-align: center;
  background: var(--bg-2);
  border: 1px solid rgba(0,168,255,0.4);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  margin-top: 12px;
}
.success__check {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  background: var(--accent);
  color: #001624;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 900;
}
.success h3 { font-size: 26px; margin: 0 0 8px; font-weight: 800; }
.success p { margin: 0 0 14px; color: var(--text-dim); }
.success__note {
  font-size: 13px !important;
  color: #666 !important;
  margin-top: 18px !important;
  margin-bottom: 0 !important;
}
.success__note a {
  color: var(--text);
  border-bottom: 1px dotted var(--line);
  font-weight: 600;
}
.success__note a:hover { color: var(--accent); }

/* ===== Footer ===== */
.footer {
  background: var(--bg-2);
  padding: 40px 0 32px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.footer .logo { margin-bottom: 0; }
.footer__line { margin: 6px 0; font-size: 14px; color: var(--text-dim); }
.footer .logo + .footer__line { margin-top: -40px; }
.footer__line a { color: var(--text); border-bottom: 1px dotted var(--line); }
.footer__line a:hover { color: var(--accent); }
.footer__copy { margin-top: 22px; font-size: 12px; color: #555; }
/* Instagram chip — icon + handle */
.footer__ig {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 999px;
  padding: 5px 12px 5px 10px;
  font-weight: 600;
  font-size: 13px;
  transition: border-color .15s ease, color .15s ease, transform .15s ease;
}
.footer__ig:hover { transform: translateY(-1px); border-color: rgba(0,168,255,0.4) !important; color: var(--accent); }

/* ===== Sticky mobile CTA — slides up after hero scrolls out of view ===== */
.sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(20,20,20,0.96) 0%, rgba(8,8,8,0.96) 100%);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 -1px 0 rgba(255,255,255,0.05) inset,
    0 -10px 28px rgba(0,0,0,0.55);
  z-index: 100;
  /* Hidden by default — JS adds .is-visible once hero leaves the viewport */
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .25s ease;
}
.sticky.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky__book {
  flex: 1;
  /* Inherits all depth from .btn .btn--primary */
}

/* ===== Tablet ===== */
@media (min-width: 640px) {
  .slots { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Desktop ===== */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .sticky { display: none; }
  .section { padding: 90px 0; }
  .hero { padding-bottom: 90px; }
  .hero__inner { padding-top: 50px; }

  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .ba-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .step {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
    gap: 8px;
  }
  .step__num   { grid-row: 1; grid-column: 1; margin: 0 auto; }
  .step__title { grid-row: 2; grid-column: 1; align-self: auto; }
  .step__text  { grid-row: 3; grid-column: 1; align-self: auto; }
}

/* =========================================================
   ADMIN BACKEND (backend.html) — login + lead manager
   ========================================================= */
.admin-page {
  padding-bottom: 0;
  background: var(--bg);
  min-height: 100vh;
}

/* ===== Admin shell ===== */
.admin-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  z-index: 10;
}
.admin-bar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-bar__badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 8px;
  border: 1px solid rgba(0,168,255,0.4);
  border-radius: 4px;
}
.admin-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}

/* ===== Stats row ===== */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.admin-stat {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.admin-stat__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
}
.admin-stat__value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.admin-stat--accent {
  background: linear-gradient(135deg, rgba(0,168,255,0.10), rgba(0,168,255,0.02));
  border-color: rgba(0,168,255,0.25);
}
.admin-stat--accent .admin-stat__label { color: var(--accent); }
.admin-stat--accent .admin-stat__value { color: var(--accent); }

/* ===== Insight strip ===== */
.admin-insights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 22px;
}
.admin-insight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  min-width: 0;
}
.admin-insight__icon { font-size: 16px; flex-shrink: 0; }
.admin-insight__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  flex-shrink: 0;
}
.admin-insight__value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-left: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
@media (max-width: 480px) {
  .admin-insights { grid-template-columns: 1fr; }
}

/* ===== Lead cards ===== */
.admin-leads { display: flex; flex-direction: column; gap: 8px; }

.lead-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .15s ease;
}
.lead-card:hover { border-color: rgba(255,255,255,0.15); }
.lead-card.is-open { border-color: rgba(0,168,255,0.35); }

/* Header row: name + status + booking when */
.lead-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--line);
}
.lead-card__name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.lead-card__name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lead-card__when {
  font-size: 12.5px;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Meta — phone, vehicle, service, ZIP, time-ago */
.lead-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  margin: 0;
  padding: 12px 16px 10px;
  font-size: 13px;
}
.lead-card__meta > div { min-width: 0; }
.lead-card__meta dt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  font-weight: 600;
  margin-bottom: 1px;
}
.lead-card__meta dd {
  margin: 0;
  color: var(--text);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== Status badge ===== */
.lead-status {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid transparent;
}
.lead-status--new        { background: rgba(0,168,255,0.12);  color: #59c8ff; border-color: rgba(0,168,255,0.25); }
.lead-status--contacted  { background: rgba(255,200,0,0.12);  color: #ffd55a; border-color: rgba(255,200,0,0.25); }
.lead-status--confirmed  { background: rgba(34,197,94,0.14);  color: #4ade80; border-color: rgba(34,197,94,0.30); }
.lead-status--completed  { background: rgba(255,255,255,0.06); color: #999;   border-color: rgba(255,255,255,0.12); }
.lead-status--cancelled  { background: rgba(255,107,107,0.10); color: #ff8888; border-color: rgba(255,107,107,0.25); }

/* Action row (always visible) */
.lead-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 16px 14px;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 2px;
}
.lead-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all .15s ease;
}
.lead-action--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #001624;
}
.lead-action--primary:hover { transform: translateY(-1px); }
.lead-action--danger {
  color: #ff6b6b;
  border-color: rgba(255,107,107,0.25);
  margin-left: auto;
}
.lead-action--danger:hover { background: rgba(255,107,107,0.08); }

/* ===== Status quick-picker ===== */
.lead-status-picker { display: flex; gap: 4px; flex-wrap: wrap; }
.lead-status-btn {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-dim);
  cursor: pointer;
  transition: all .15s ease;
}
.lead-status-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.2); transform: translateY(-1px); }
.lead-status-btn--new:hover       { color: #59c8ff; border-color: rgba(0,168,255,0.4); }
.lead-status-btn--contacted:hover { color: #ffd55a; border-color: rgba(255,200,0,0.4); }
.lead-status-btn--confirmed:hover { color: #4ade80; border-color: rgba(34,197,94,0.4); }
.lead-status-btn--completed:hover { color: #ccc;   border-color: rgba(255,255,255,0.2); }
.lead-status-btn--cancelled:hover { color: #ff8888; border-color: rgba(255,107,107,0.4); }

/* ===== Empty / loading / error ===== */
.admin-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-dim);
  border: 1px dashed var(--line);
  border-radius: 12px;
}
.admin-empty__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.admin-empty__sub { font-size: 13px; margin: 0; max-width: 320px; margin: 0 auto; }

.admin-loading {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 40px 0;
}
.admin-loading__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot 1.2s ease-in-out infinite;
}
.admin-loading__dot:nth-child(2) { animation-delay: .15s; }
.admin-loading__dot:nth-child(3) { animation-delay: .30s; }
@keyframes dot {
  0%, 80%, 100% { opacity: .25; transform: scale(.8); }
  40%           { opacity: 1;   transform: scale(1); }
}

.admin-error {
  padding: 14px 16px;
  background: rgba(255,107,107,0.08);
  border: 1px solid rgba(255,107,107,0.25);
  border-radius: 10px;
  color: #ff8888;
  font-size: 13px;
}

/* =========================================================
   Simpler booking form: service picker + add-ons + day scroll
   ========================================================= */

/* Inline form hint text (e.g. "optional", "auto-detected") */
.form__hint {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  margin-left: 6px;
  text-transform: none;
  letter-spacing: 0;
}
.form__hint--detected {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  margin-top: 4px;
  margin-left: 0;
}
/* Vehicle classify hint (id=vehicleHint) — tone via data-tone */
#vehicleHint:not([hidden]) { display: block; }
#vehicleHint {
  margin-top: 6px;
  margin-left: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
}
#vehicleHint[data-tone="ok"]   { color: var(--accent); }
#vehicleHint[data-tone="info"] { color: var(--text-dim); }

/* ===== Service picker — two big tappable tiles ===== */
.service-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.service-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 60%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 2px 6px rgba(0,0,0,0.25);
}
.service-option:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.18); }
.service-option__name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.service-option__price {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.service-option.is-active {
  background: linear-gradient(180deg, rgba(0,168,255,0.18) 0%, rgba(0,168,255,0.04) 100%);
  border-color: var(--accent);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 0 0 1px rgba(0,168,255,0.4),
    0 8px 24px rgba(0,168,255,0.20),
    0 2px 4px rgba(0,0,0,0.35);
}
.service-option.is-active .service-option__price { color: var(--accent); }

/* ===== Add-ons — chip toggles ===== */
.addons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.addon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease, background .15s ease, color .15s ease;
}
.addon:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.18); }
.addon__price { font-variant-numeric: tabular-nums; color: var(--text-dim); font-weight: 500; }
.addon.is-active {
  background: linear-gradient(180deg, rgba(0,168,255,0.18) 0%, rgba(0,168,255,0.04) 100%);
  border-color: var(--accent);
  color: var(--accent);
}
.addon.is-active::before {
  content: "✓";
  font-weight: 800;
  margin-right: 2px;
}
.addon.is-active .addon__price { color: var(--accent); }

/* ===== Day scroll — horizontal pill list of next available days ===== */
.day-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 2px 10px;
  margin: 0 -2px;
}
.day-scroll::-webkit-scrollbar { display: none; }
.day-pill {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 64px;
  padding: 10px 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 100%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 2px 6px rgba(0,0,0,0.25);
}
.day-pill:hover:not(.is-active) {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.18);
}
.day-pill__dow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.day-pill__date {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.day-pill__mon {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.day-pill.is-active {
  background: linear-gradient(180deg, rgba(0,168,255,0.22) 0%, rgba(0,168,255,0.06) 100%);
  border-color: var(--accent);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 0 0 1px rgba(0,168,255,0.4),
    0 8px 22px rgba(0,168,255,0.25),
    0 2px 4px rgba(0,0,0,0.35);
}
.day-pill.is-active .day-pill__dow,
.day-pill.is-active .day-pill__mon { color: var(--accent); opacity: .85; }
/* Today, fully booked — still tappable, but visually muted with a strikethrough */
.day-pill--booked {
  opacity: 0.55;
}
.day-pill--booked .day-pill__date {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(255,255,255,0.3);
}
.day-pill--booked.is-active {
  opacity: 0.85;
}

/* =========================================================
   "Pick Your Detail" — shared inclusions + compact size tiles
   ========================================================= */

/* Shared "Every detail includes" card */
.pkg-included {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 30%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px 14px;
  margin: 0 0 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 -1px 0 rgba(0,0,0,0.45) inset,
    0 6px 18px rgba(0,0,0,0.3),
    0 2px 4px rgba(0,0,0,0.3);
}
.pkg-included__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.pkg-included__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
}
.pkg-included__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.35;
}
.pkg-included__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
}
.pkg-included__duration {
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* Two compact size tiles, side by side */
.pkg-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.pkg-tile {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 50%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 -1px 0 rgba(0,0,0,0.45) inset,
    0 8px 22px rgba(0,0,0,0.32),
    0 2px 4px rgba(0,0,0,0.35);
  transition: transform .2s ease, border-color .15s ease, box-shadow .25s ease;
}
.pkg-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.15);
}
.pkg-tile__icon {
  width: 64px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,168,255,0.10);
  color: var(--accent);
  border-radius: 10px;
  margin-bottom: 4px;
}
.pkg-tile__icon svg { width: 100%; height: auto; padding: 4px 8px; box-sizing: border-box; }
/* PNG icon variant — recolored to the accent via CSS mask */
.pkg-tile__icon--mask {
  background-color: currentColor;
  -webkit-mask-image: var(--icon);
          mask-image: var(--icon);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 80% auto;
          mask-size: 80% auto;
}
.pkg-tile__name {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.pkg-tile__price {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 4px;
  font-variant-numeric: tabular-nums;
}
.pkg-tile__currency {
  color: var(--text-dim);
  font-size: 0.6em;
  vertical-align: super;
  margin-right: 1px;
  font-weight: 700;
}
.pkg-tile__cta {
  width: 100%;
  margin-top: 4px;
  font-size: 13px;
  padding: 10px 14px;
  min-height: 40px;
}
/* Featured (SUV) variant — accent glow */
.pkg-tile--featured {
  border-color: rgba(0,168,255,0.45);
  background:
    linear-gradient(180deg, rgba(0,168,255,0.12) 0%, rgba(0,168,255,0) 50%),
    var(--bg-2);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 -1px 0 rgba(0,0,0,0.45) inset,
    0 0 0 1px rgba(0,168,255,0.25),
    0 12px 30px rgba(0,168,255,0.20),
    0 3px 8px rgba(0,0,0,0.4);
}
.pkg-tile__badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #001624;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Footnote pointing to add-ons (inside the booking form) */
.pkg-footnote {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-dim);
  margin: 16px 0 0;
}

/* =========================================================
   Admin — tabs + Schedule panel
   ========================================================= */
.admin-tabs {
  display: flex;
  gap: 4px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky; top: 0; z-index: 5;
}
.admin-tab {
  background: transparent;
  border: 0;
  color: var(--text-dim);
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 14px 12px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.admin-tab.is-active {
  color: var(--text);
  border-bottom-color: var(--accent);
}
.admin-tab:hover { color: var(--text); }

.admin-panel { display: none; }
.admin-panel.is-active { display: block; }

.sched-section {
  padding: 20px 16px 24px;
  border-bottom: 1px solid var(--line);
}
.sched-section:last-child { border-bottom: 0; }
.sched-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.sched-sub {
  font-size: 12.5px;
  color: var(--text-dim);
  margin: 0 0 14px;
  line-height: 1.45;
}
.sched-status {
  font-size: 12px;
  color: var(--accent);
  margin: 8px 0 0;
  min-height: 1em;
}

/* Weekly grid */
.sched-weekly { display: flex; flex-direction: column; gap: 8px; }
.sched-day {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.sched-day__toggle {
  display: flex; align-items: center; gap: 8px;
  flex: 0 0 auto;
  min-width: 110px;
  cursor: pointer;
  font-size: 13.5px;
}
.sched-day__name { font-weight: 600; }
.sched-day__times {
  display: flex; align-items: center; gap: 6px;
  flex: 1 1 auto;
  flex-wrap: wrap;
}
.sched-day__dash {
  color: var(--text-dim);
  font-size: 13px;
}
.sched-day__suffix {
  color: var(--text-dim);
  font-size: 12px;
}

.sched-input {
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 8px 10px;
  font: inherit;
  font-size: 13px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.sched-input--time { width: 96px; flex: 0 0 auto; }
.sched-input--num  { width: 64px; flex: 0 0 auto; text-align: right; }
.sched-input:focus { outline: 2px solid rgba(0,168,255,0.4); outline-offset: -1px; }

/* Override form */
.sched-override-form {
  display: flex; flex-direction: column; gap: 10px;
  padding: 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 14px;
}
.sched-field { display: flex; flex-direction: column; gap: 4px; }
.sched-field__label {
  font-size: 11.5px;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.sched-field__hint {
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-dim);
  font-weight: 500;
  margin-left: 4px;
}
.sched-field--toggle {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  cursor: pointer;
}
.sched-override-actions {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-top: 4px;
}
.sched-btn {
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.sched-btn:hover { border-color: rgba(255,255,255,0.18); }
.sched-btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #051620;
}
.sched-btn--primary:hover { background: var(--accent-2); border-color: var(--accent-2); }
.sched-btn--ghost { background: transparent; }
.sched-btn--danger { color: #ff6b6b; }
.sched-btn--danger:hover { border-color: rgba(255,107,107,0.4); }

/* Overrides list */
.sched-overrides-list { display: flex; flex-direction: column; gap: 6px; }
.sched-override {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.sched-override__main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sched-override__date { font-size: 13.5px; }
.sched-override__summary { font-size: 12px; color: var(--text-dim); }
.sched-override__note { font-size: 11.5px; color: var(--text-dim); font-style: italic; }
.sched-override__actions { display: flex; gap: 4px; flex-shrink: 0; }

.sched-empty {
  color: var(--text-dim);
  font-size: 12.5px;
  text-align: center;
  padding: 12px;
  margin: 0;
}

/* Preview */
.sched-preview { display: flex; flex-direction: column; gap: 6px; }
.sched-preview__day {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.sched-preview__day.is-closed { opacity: 0.55; }
.sched-preview__date {
  flex: 0 0 80px;
  font-size: 12.5px;
  color: var(--text);
}
.sched-preview__slots {
  display: flex; flex-wrap: wrap; gap: 4px;
  flex: 1 1 auto;
}
.sched-slot {
  font-size: 11.5px;
  color: var(--text-dim);
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 3px 7px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.sched-preview__empty { font-size: 12px; color: var(--text-dim); font-style: italic; }

/* =========================================================
   Admin — 7-day rolling schedule (Schedule tab)
   ========================================================= */
.week-head, .cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin: 4px 0 12px;
  gap: 12px;
}
.week-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.week-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color .12s ease, background .12s ease, transform .08s ease;
}
.week-row:hover { border-color: rgba(255,255,255,0.18); background: var(--bg-3); }
.week-row:active { transform: scale(0.995); }
.week-row__main {
  display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1;
}
.week-row__date {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.week-row__preview {
  font-size: 12px;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-variant-numeric: tabular-nums;
}
.week-row__right {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.week-row__badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(0,168,255,0.12);
  border: 1px solid rgba(0,168,255,0.20);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.week-row.is-closed .week-row__badge {
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
}
.week-row__chev {
  color: var(--text-dim);
  font-size: 22px;
  line-height: 1;
}
.week-row.is-today { border-color: rgba(0,168,255,0.45); }
.week-row.is-today .week-row__date { color: var(--accent); }
.week-row.is-selected {
  border-color: var(--accent);
  background: rgba(0,168,255,0.08);
  box-shadow: 0 0 0 1px var(--accent) inset;
}
.week-row.is-closed { opacity: 0.85; }

.week-actions {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 12px;
}
.week-actions .sched-btn {
  display: inline-flex; align-items: center; gap: 6px;
}

/* Old month-grid styles kept below for reference but no longer rendered. */
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin: 4px 0 10px;
  gap: 12px;
}
.cal-month {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cal-nav {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text);
  width: 36px; height: 36px;
  border-radius: 10px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s ease, background .15s ease;
}
.cal-nav:hover { border-color: rgba(255,255,255,0.18); background: var(--bg-3); }
.cal-nav:active { transform: scale(0.96); }

.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.cal-dow span {
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: 4px;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  transition: border-color .12s ease, background .12s ease, transform .08s ease;
}
.cal-cell:hover { border-color: rgba(255,255,255,0.20); background: var(--bg-3); }
.cal-cell:active { transform: scale(0.97); }
.cal-cell.is-blank {
  background: transparent;
  border-color: transparent;
  cursor: default;
  pointer-events: none;
}
.cal-cell__num {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.cal-cell__badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(0,168,255,0.10);
  padding: 1px 5px;
  border-radius: 999px;
  min-width: 16px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.cal-cell.is-closed .cal-cell__badge {
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
}
.cal-cell.is-closed { opacity: 0.65; }
.cal-cell.is-past   { opacity: 0.45; }
.cal-cell.is-today {
  border-color: rgba(0,168,255,0.45);
}
.cal-cell.is-today .cal-cell__num { color: var(--accent); }
.cal-cell.is-selected {
  border-color: var(--accent);
  background: rgba(0,168,255,0.08);
  box-shadow: 0 0 0 1px var(--accent) inset;
}

/* Editor panel below the grid */
.cal-editor {
  margin-top: 14px;
  padding: 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 10px;
}
.cal-editor__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.cal-editor__date {
  font-size: 15px;
  letter-spacing: -0.01em;
}
.cal-close {
  background: transparent;
  border: 0;
  color: var(--text-dim);
  font-size: 22px;
  line-height: 1;
  width: 28px; height: 28px;
  border-radius: 6px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.cal-close:hover { color: var(--text); background: var(--bg-3); }
.cal-field { display: flex; flex-direction: column; gap: 4px; }
.cal-field__label {
  font-size: 11.5px;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.cal-field__hint {
  text-transform: none; letter-spacing: 0;
  color: var(--text-dim); font-weight: 500;
  margin-left: 4px;
}
.cal-editor__actions {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-top: 4px;
}
.cal-editor__hint {
  font-size: 11.5px;
  color: var(--text-dim);
  margin: 4px 0 0;
}
