/* Blue Bear Detail — mobile-first, brand #02396b */
:root {
  --brand: #02396b;
  --brand-light: #0a4d8a;
  --brand-faint: rgba(2, 57, 107, 0.08);
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --bg: #fafbfc;
  --white: #ffffff;
  --footer-bg: #0a0a0a;
  --footer-text: #b8b8b8;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(2, 57, 107, 0.12);
  --header-h: 75px;
  --footer-min-h: 200px;
  --space: clamp(1rem, 4vw, 2rem);
  --max: 1100px;
  --premium-bg: #0a0a0c;
  --premium-bg-deep: #060607;
  --premium-line: rgba(255, 255, 255, 0.09);
  --premium-muted: rgba(255, 255, 255, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  padding-top: var(--header-h);
}

main {
  flex: 1 0 auto;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--brand-faint);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space);
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: var(--brand);
}

.logo__img {
  display: block;
  height: 2.45rem;
  width: auto;
  max-width: min(220px, 58vw);
  object-fit: contain;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.92;
}

.logo:hover .logo__img {
  opacity: 0.95;
}

@media (min-width: 768px) {
  .logo__img {
    height: 2.65rem;
    max-width: 240px;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--brand-faint);
  padding: 0.75rem var(--space) 1rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow);
}

.nav-panel.is-open {
  display: flex;
}

.nav-panel a {
  padding: 0.65rem 0;
  color: #383838;
  font-weight: 400;
  border-bottom: 1px solid var(--brand-faint);
}

.nav-panel > a:last-of-type {
  border-bottom: none;
}

.nav-panel a:hover {
  color: #4a4a4a;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .nav-panel a {
    padding: 0;
    border: none;
    font-size: 1rem;
  }

  .account-menu__dropdown {
    right: 0;
    left: auto;
  }
}

/* Account icon dropdown (Lucide circle-user) */
.account-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.account-menu__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(2, 57, 107, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #aebfd4;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.account-menu__trigger:hover {
  border-color: rgba(2, 57, 107, 0.3);
  color: #3f4750;
  box-shadow: 0 8px 18px rgba(2, 57, 107, 0.12);
  transform: translateY(-1px);
}

.account-menu__trigger[aria-expanded="true"] {
  border-color: rgba(2, 57, 107, 0.35);
  color: #2e3640;
  box-shadow: 0 10px 22px rgba(2, 57, 107, 0.14);
}

/* Stacked in one grid cell: default icon when signed out or no photo; photo when signed in + saved */
.account-menu__trigger-visual {
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  flex: 0 0 auto;
}

.account-menu__trigger-visual > .account-menu__avatar,
.account-menu__trigger-visual > .account-menu__lucide {
  grid-area: 1 / 1;
}

.account-menu__lucide {
  width: 1.4rem;
  height: 1.4rem;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-menu__avatar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

.account-menu__trigger-visual > .account-menu__avatar[hidden],
.account-menu__trigger-visual > .account-menu__lucide[hidden] {
  display: none !important;
}

.account-menu__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  min-width: 12.5rem;
  width: max-content;
  max-width: min(92vw, 16rem);
  padding: 0.5rem;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(2, 57, 107, 0.14);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(2, 57, 107, 0.16);
  backdrop-filter: blur(8px);
  z-index: 1100;
}

.account-menu__item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem 0.55rem 0.6rem;
  border: none;
  border-radius: 10px;
  background: none;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}

/* Critical: ensure JS-hidden dropdown items stay hidden */
.account-menu__dropdown[hidden] {
  display: none !important;
}

.account-menu__item[hidden] {
  display: none !important;
}

.account-menu__item-icon {
  flex: 0 0 1.35rem;
  width: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: rgba(2, 57, 107, 0.78);
}

.account-menu__item-label {
  flex: 1;
  padding: 0.1rem 0;
  line-height: 1.4;
  min-width: 0;
}

.account-menu__item:hover {
  background: rgba(2, 57, 107, 0.07);
  color: var(--brand);
  text-decoration: none;
}

.account-menu__item:hover .account-menu__item-icon {
  color: var(--brand);
}

.account-menu__item--logout {
  color: #b91c1c;
}

.account-menu__item--logout .account-menu__item-icon {
  color: rgba(185, 28, 28, 0.85);
}

.account-menu__item--logout:hover {
  color: #991b1b;
  background: rgba(185, 28, 28, 0.08);
}

@media (max-width: 767px) {
  .account-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.35rem;
    margin-top: 0.25rem;
    border-top: 1px solid var(--brand-faint);
  }

  .account-menu__trigger {
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    height: auto;
    min-height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(2, 57, 107, 0.12);
    background: rgba(255, 255, 255, 0.06);
  }

  .account-menu__trigger-visual {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 2.75rem;
  }

  .account-menu__trigger::after {
    content: "Account";
    font-size: 1rem;
    font-weight: 600;
    color: #3f4750;
    flex: 1;
    text-align: left;
  }

  .account-menu__dropdown {
    position: static;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.4rem;
    box-shadow: 0 8px 24px rgba(2, 57, 107, 0.12);
    border: 1px solid rgba(2, 57, 107, 0.1);
    border-radius: 12px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .account-menu__item {
    border-radius: 10px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-light);
  text-decoration: none;
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--brand-faint);
  text-decoration: none;
}

.btn--square {
  border-radius: 0;
}

/* Hero — landing splash (index only uses .hero--splash) */
.hero {
  padding: clamp(2.5rem, 8vw, 4.5rem) var(--space);
  text-align: center;
  max-width: var(--max);
  margin: 0 auto;
}

.hero.hero--splash {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: min(78vh, 760px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  transform: scale(1.02);
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 0;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__carousel-hits {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: row;
  pointer-events: none;
}

.hero__carousel-hit {
  flex: 1;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.hero__content {
  position: relative;
  z-index: 2;
  pointer-events: none;
  padding: 1.15rem var(--space) 2rem;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.hero__card {
  max-width: 50%;
  width: 100%;
  min-width: 0;
  padding: 1.15rem 1.2rem;
  background: transparent;
  box-sizing: border-box;
  overflow-wrap: break-word;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  pointer-events: auto;
}

.hero.hero--splash .hero__card .hero__brand-mark {
  display: block;
  height: clamp(3.25rem, 12vw, 5rem);
  width: auto;
  max-width: min(11rem, 42vw);
  object-fit: contain;
  margin: 0 0 0.65rem;
  align-self: flex-start;
}

.hero.hero--splash .hero__card .hero__eyebrow {
  display: block;
  width: 100%;
  margin: 0 0 0.75rem;
  transition: color 0.45s ease;
}

/* Dark / busy photo — light text */
.hero.hero--splash .hero__card:not(.hero__card--dark-text) .hero__eyebrow {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: none;
}

/* Bright photo behind copy — dark text */
.hero.hero--splash .hero__card.hero__card--dark-text .hero__eyebrow {
  color: var(--brand);
  text-shadow: none;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}

.hero__card .hero__actions .btn-primary,
.hero__card .hero__actions .btn-outline {
  width: 100%;
  max-width: 100%;
}

.hero.hero--splash .hero__card:not(.hero__card--dark-text) .hero__btn-call {
  border-color: rgba(255, 255, 255, 0.65);
  color: rgba(255, 255, 255, 0.98);
  background: rgba(0, 0, 0, 0.18);
}

.hero.hero--splash .hero__card:not(.hero__card--dark-text) .hero__btn-call:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transform: translateY(-1px);
}

.hero.hero--splash .hero__card.hero__card--dark-text .hero__btn-call:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: none;
}

.hero.hero--splash .hero__card h1,
.hero.hero--splash .hero__card .hero__desc {
  transition: color 0.45s ease;
}

.hero.hero--splash .hero__card:not(.hero__card--dark-text) h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 4.2vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.12;
  text-shadow: none;
  max-width: none;
}

.hero.hero--splash .hero__card:not(.hero__card--dark-text) .hero__desc {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.82rem, 2.2vw, 1.15rem);
  line-height: 1.45;
  max-width: none;
  text-shadow: none;
}

.hero.hero--splash .hero__card.hero__card--dark-text h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 4.2vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1.12;
  text-shadow: none;
  max-width: none;
}

.hero.hero--splash .hero__card.hero__card--dark-text .hero__desc {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: clamp(0.82rem, 2.2vw, 1.15rem);
  line-height: 1.45;
  max-width: none;
  text-shadow: none;
}

.hero.hero--splash .hero__card .hero__actions .btn-primary,
.hero.hero--splash .hero__card .hero__actions .btn-outline {
  min-width: 0;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: none;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 5.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
  line-height: 1.15;
}

.hero p {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn-primary {
  min-width: 200px;
}

/* Splash hero — copy column uses more width on phones (base .hero__card is 50%) */
@media (max-width: 767px) {
  .hero.hero--splash .hero__card {
    max-width: 60%;
  }
}

@media (min-width: 768px) {
  .hero.hero--splash {
    align-items: center;
    justify-content: center;
  }

  .hero__content {
    padding: clamp(2.25rem, 7vw, 4rem) var(--space);
    padding-top: clamp(2.5rem, 7vw, 4rem);
    padding-bottom: clamp(2.5rem, 7vw, 4.5rem);
  }

  .hero.hero--splash .hero__card h1 {
    font-size: clamp(2rem, 4vw, 3.15rem);
  }

  .hero.hero--splash .hero__desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
  }

  .hero.hero--splash .hero__card .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero.hero--splash .hero__card .hero__actions .btn-primary,
  .hero.hero--splash .hero__card .hero__actions .btn-outline {
    width: auto;
    min-width: 200px;
    padding: 1rem 1.85rem;
    font-size: 1.05rem;
  }
}

/* Sections */
.section {
  padding: clamp(2rem, 6vw, 3rem) var(--space);
  max-width: var(--max);
  margin: 0 auto;
}

.section--brand-full {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(3.25rem, 9vw, 5.25rem) var(--space);
  /* Do not clip here — .services-card--brand shadows need to paint past edges */
  background: linear-gradient(
    168deg,
    #121214 0%,
    var(--premium-bg) 38%,
    var(--premium-bg-deep) 100%
  );
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section--brand-full__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand);
}

.section-title--on-dark {
  margin: 0 0 1.75rem;
  padding-bottom: 1.15rem;
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--premium-line);
  max-width: 22ch;
}

/* Services card */
.services-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid var(--brand-faint);
}

.services-card p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.services-card .btn {
  width: 100%;
}

.services-card--brand {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  border: 1px solid rgba(0, 0, 0, 0.55);
  padding: 0;
  display: grid;
  gap: 0;
  overflow: visible;
  border-radius: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 28px 70px -8px rgba(0, 0, 0, 0.75);
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.services-card--brand:hover {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 70px -8px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.22);
}

.services-card__media {
  min-height: 200px;
  overflow: hidden;
}

.services-card__media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.03);
}

.services-card__body {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.services-card--brand p {
  margin: 0 0 1.5rem;
  color: var(--premium-muted);
  font-size: clamp(0.95rem, 2.2vw, 1.06rem);
  line-height: 1.65;
  letter-spacing: 0.015em;
  font-weight: 400;
}

.services-card__headline {
  margin: 0 0 0.55rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.15rem, 2.3vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.services-card--brand .button {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .services-card--brand {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .services-card__media {
    min-height: 100%;
  }

  .services-card__media img {
    min-height: 280px;
  }

  .services-card--brand .button {
    width: auto;
    align-self: flex-start;
  }
}

.services-card--brand .button.button--cta-lg {
  min-height: 72px;
  padding: 18px 30px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

@media (min-width: 480px) {
  .services-card:not(.services-card--brand) .btn {
    width: auto;
  }
}

/* From Uiverse.io by cn_9433 — animated border glow (boxy / no radius) */
.services-card .button {
  --u-black: #000000;
  --u-ch-black: #141414;
  --u-eer-black: #1b1b1b;
  --u-night-rider: #2e2e2e;
  --u-btn-white: #ffffff;
  --u-af-white: #f3f3f3;
  --u-ch-white: #e1e1e1;
  border-radius: 0;
  min-width: min(100%, 220px);
  min-height: 48px;
  height: auto;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: none;
  color: var(--u-btn-white);
  position: relative;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition-duration: 0.2s;
  background-color: var(--u-ch-black);
  isolation: isolate;
  z-index: 0;
}

.services-card .button:before,
.services-card .button:after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  border-radius: 0;
  background: linear-gradient(
    45deg,
    var(--u-ch-black),
    var(--u-eer-black),
    var(--u-night-rider),
    var(--u-ch-white),
    var(--u-night-rider),
    var(--u-eer-black),
    var(--u-ch-black),
    var(--u-ch-black)
  );
  background-size: 400%;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: -1;
  animation: steam-border 20s linear infinite;
}

.services-card .button:after {
  filter: blur(50px);
}

@keyframes steam-border {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.services-card .button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 3px;
}

.services-card--brand .button.button--cta-lg:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.88);
}

/* Map */
.map-section {
  background: var(--white);
  border-top: 1px solid var(--brand-faint);
  border-bottom: 1px solid var(--brand-faint);
  padding: clamp(2rem, 6vw, 3rem) var(--space);
}

.map-section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.map-section h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand);
}

.map-section .sub {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.map-wrap {
  height: min(55vh, 380px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--brand-faint);
}

.map-wrap .leaflet-container {
  font-family: inherit;
}

.map-legend {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.map-legend a {
  color: var(--brand);
  font-weight: 600;
}

.map-legend a:hover {
  text-decoration: underline;
}

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(1.5rem, 5vw, 2.5rem) var(--space) 1rem;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--brand);
}

.page-hero p {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
}

.content-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space) clamp(2.5rem, 8vw, 4rem);
}

.page-admin .content-block.admin-panel {
  max-width: none;
  width: 100%;
  padding-left: clamp(1rem, 4vw, 3rem);
  padding-right: clamp(1rem, 4vw, 3rem);
}

.content-block h2 {
  font-size: 1.15rem;
  color: var(--brand);
  margin: 1.5rem 0 0.5rem;
}

.content-block p,
.content-block li {
  color: var(--text-muted);
}

.content-block ul {
  padding-left: 1.25rem;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, var(--brand-faint), #e8eef3);
  border: 1px solid var(--brand-faint);
}

.gallery-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem;
}

/* Services list */
.service-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-item {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--brand-faint);
  box-shadow: 0 2px 12px rgba(2, 57, 107, 0.06);
}

.service-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--brand);
}

.service-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Services, About, Contact — dark theme */
.page-services,
.page-dark {
  width: 100%;
  background: linear-gradient(
    168deg,
    #121214 0%,
    var(--premium-bg) 38%,
    var(--premium-bg-deep) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Contact page: lighter grey behind content (body + main) */
body.page-contact {
  background: linear-gradient(
    168deg,
    #2f2f33 0%,
    #4c4c56 42%,
    #42424a 100%
  );
}

.page-contact.page-dark {
  background: linear-gradient(
    180deg,
    #000000 0%,
    #000000 42%,
    #061524 100%
  );
  border-top-color: rgba(255, 255, 255, 0.1);
}

.page-services {
  position: relative;
  overflow-x: hidden;
}

/* Viewport-fixed watermark (not inside scroll height — behaves like a cover layer) */
.page-services__bruin {
  position: fixed;
  top: 38%;
  right: 0;
  left: auto;
  z-index: 0;
  /* Prior size ×1.7 (70% larger) */
  width: min(198.9vw, 1377px);
  max-height: 85vh;
  pointer-events: none;
  /* right:0 + translateX(45%): under half the graphic extends past the right edge */
  transform: translateX(45%);
}

.page-services__bruin img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.18;
  filter: grayscale(1) saturate(0);
}

.page-services .page-hero,
.page-services .content-block {
  position: relative;
  z-index: 1;
}

.page-dark .content-block h2,
.content-block--dark .section-title {
  color: rgba(255, 255, 255, 0.92);
}

.page-dark .content-block p,
.page-dark .content-block li {
  color: rgba(255, 255, 255, 0.72);
}

.page-dark .contact-alt {
  color: rgba(255, 255, 255, 0.45);
}

.page-dark .contact-hint {
  color: rgba(255, 255, 255, 0.5);
}

.page-dark .contact-form label {
  color: rgba(255, 255, 255, 0.82);
}

.page-dark .contact-form input,
.page-dark .contact-form textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
}

.page-dark .contact-form input::placeholder,
.page-dark .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.page-dark .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.booking-landing__extras .btn-outline:hover {
  background: var(--brand-faint);
  color: var(--brand);
}

.page-hero--dark h1 {
  color: rgba(255, 255, 255, 0.96);
}

.page-hero--dark p {
  color: var(--premium-muted);
  max-width: 42ch;
}

/* Admin — full-width, monochrome */
body.page-admin {
  background: #000;
}

body.page-admin .page-dark {
  width: 100%;
  max-width: none;
  overflow-x: hidden;
}

.page-hero--admin {
  text-align: left;
  padding-bottom: 0.75rem;
  max-width: none;
}

.page-hero--admin.page-hero {
  padding-left: clamp(1rem, 4vw, 3rem);
  padding-right: clamp(1rem, 4vw, 3rem);
}

.page-hero__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.page-hero--admin .page-hero__kicker {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

.page-hero--admin .page-hero__title,
.page-hero--admin h1.page-hero__title {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
}

.page-hero--admin .page-hero__lede,
.page-hero--admin p.page-hero__lede {
  margin: 0.5rem 0 0;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.page-book-landing.page-dark {
  background: linear-gradient(
    90deg,
    #000000 0%,
    #0a0a0a 22%,
    #151518 50%,
    #0a0a0a 78%,
    #000000 100%
  );
}

.content-block--dark {
  padding-bottom: clamp(3rem, 10vw, 5rem);
}

.content-block--dark .package-card__tagline {
  color: rgba(255, 255, 255, 0.62);
}

.content-block--dark .package-card__list li {
  color: rgba(255, 255, 255, 0.72);
}

.package-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  overflow: visible;
}

@media (min-width: 900px) {
  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
  }
}

.package-grid > .package-card-wrap {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.package-grid > .package-card-wrap > .package-card {
  flex: 1 1 auto;
}

.package-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #060606;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Premium tiers: black → silver / blue / gold (no colored glow) */
.package-card--tier-silver {
  border-color: rgba(138, 152, 168, 0.3);
  background: linear-gradient(
    155deg,
    #030303 0%,
    #070809 40%,
    rgba(72, 82, 94, 0.38) 100%
  );
}

.package-card--tier-blue {
  border-color: rgba(36, 88, 142, 0.38);
  background: linear-gradient(
    155deg,
    #020204 0%,
    #050810 40%,
    rgba(2, 57, 107, 0.48) 100%
  );
}

.package-card--tier-gold {
  border-color: rgba(148, 122, 48, 0.34);
  background: linear-gradient(
    155deg,
    #030302 0%,
    #0a0905 40%,
    rgba(108, 86, 28, 0.36) 100%
  );
}

.package-card--tier-silver .package-card__eyebrow {
  color: rgba(186, 200, 214, 0.92);
}

.package-card--tier-blue .package-card__eyebrow {
  color: rgba(124, 182, 232, 0.95);
}

.package-card--tier-gold .package-card__eyebrow {
  color: rgba(218, 192, 108, 0.95);
}

.package-card--tier-silver .package-card__title-label {
  background: linear-gradient(
    118deg,
    #ffffff 0%,
    #d0dae4 26%,
    #8fa2b4 50%,
    #c4d0dc 74%,
    #f2f5f8 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.package-card--tier-blue .package-card__title-label {
  background: linear-gradient(
    118deg,
    #e4f2ff 0%,
    #72b0e8 30%,
    #1e5a94 52%,
    #4a9ad8 74%,
    #cfe8ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.package-card--tier-gold .package-card__title-label {
  background: linear-gradient(
    118deg,
    #fff9e8 0%,
    #edd060 24%,
    #a67c18 48%,
    #dfc04a 72%,
    #fff6d8 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.content-block--dark .package-card--tier-silver .package-card__tagline,
.content-block--dark .package-card--tier-silver .package-card__list li {
  color: rgba(188, 202, 216, 0.8);
}

.content-block--dark .package-card--tier-blue .package-card__tagline,
.content-block--dark .package-card--tier-blue .package-card__list li {
  color: rgba(158, 198, 238, 0.8);
}

.content-block--dark .package-card--tier-gold .package-card__tagline,
.content-block--dark .package-card--tier-gold .package-card__list li {
  color: rgba(222, 202, 138, 0.8);
}

.package-card--tier-silver .package-card__list li::marker {
  color: rgba(132, 148, 165, 0.88);
}

.package-card--tier-blue .package-card__list li::marker {
  color: rgba(72, 132, 196, 0.88);
}

.package-card--tier-gold .package-card__list li::marker {
  color: rgba(176, 148, 64, 0.9);
}

.package-card__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(180, 190, 200, 0.85);
}

.package-card__title {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 3vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
}

.package-card__title-label {
  line-height: 1.15;
}

.package-card__title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98em;
  line-height: 1;
  opacity: 0.95;
}

.package-card__title-icon i {
  display: block;
}

.package-card--tier-silver .package-card__title-icon {
  color: rgba(200, 214, 228, 0.95);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.package-card--tier-blue .package-card__title-icon {
  color: rgba(130, 190, 255, 0.96);
  filter: drop-shadow(0 0 12px rgba(80, 160, 255, 0.35));
}

.package-card--tier-gold .package-card__title-icon {
  color: rgba(230, 200, 95, 0.96);
  filter: drop-shadow(0 0 10px rgba(220, 180, 60, 0.35));
}

.package-card__tagline {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.package-card__list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
}

.package-card__list li {
  margin-bottom: 0.4rem;
}

.package-card__list li:last-child {
  margin-bottom: 0;
}

.package-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.28s ease;
  position: relative;
}

.package-card--link:visited {
  color: inherit;
}

.package-card--link:hover {
  transform: scale(1.045);
  z-index: 2;
}

.package-card--link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 3px;
}

.package-card__price {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.package-card__price-old {
  display: inline-block;
  margin-right: 0.55rem;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.45);
}

.package-card__price-num {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(255, 255, 255, 0.98);
}

.promo-marquee-wrap {
  margin: 0 0 0.85rem;
}

.promo-marquee-wrap[hidden] {
  display: none;
}

.promo-marquee {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(2, 57, 107, 0.22);
  overflow: hidden;
  white-space: nowrap;
}

.package-card__promo-note {
  margin: 0.5rem 0 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(255, 255, 255, 0.62);
}

.package-card__promo-note__text {
  display: inline;
}

.page-services--promo-off .package-card__promo-note {
  display: none;
}

.promo-marquee__track {
  display: inline-flex;
  gap: 2.25rem;
  min-width: 200%;
  padding: 0.65rem 0;
  color: #f4f9ff;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: promo-scroll-left 14s linear infinite;
}

@keyframes promo-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.page-services .package-card__title,
.page-services .package-card__tagline,
.page-services .package-card__list li,
.page-services .package-card__price,
.page-services .package-card__price-num {
  color: rgba(255, 255, 255, 0.94);
}

.page-services .package-card__title-label {
  -webkit-text-fill-color: transparent !important;
}

.package-card--disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.package-card--disabled:hover {
  transform: none;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 14px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
}

.package-card-wrap {
  position: relative;
  margin: 0;
  min-height: 0;
}

.package-card-wrap .package-card__info-btn {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
}

.package-card-wrap .package-card__info-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  transform: scale(1.05);
}

.package-card-wrap .package-card__info-btn:focus-visible {
  outline: 2px solid rgba(120, 185, 255, 0.85);
  outline-offset: 2px;
}

.package-info-dialog {
  padding: 0;
  margin: auto;
  max-width: min(32rem, calc(100vw - 2rem));
  width: 100%;
  border: none;
  border-radius: 16px;
  background: transparent;
  color: inherit;
}

.package-info-dialog::backdrop {
  background: rgba(2, 20, 40, 0.62);
  backdrop-filter: blur(4px);
}

.package-info-dialog__panel {
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    165deg,
    rgba(18, 52, 88, 0.98) 0%,
    rgba(8, 32, 58, 0.99) 100%
  );
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.package-info-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.1rem 0.65rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-info-dialog__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
}

.package-info-dialog__close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: -0.2rem -0.25rem 0 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.package-info-dialog__close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.package-info-dialog__body {
  padding: 1rem 1.25rem 1.15rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.package-info-dialog__body p {
  margin: 0 0 0.85rem;
}

.package-info-dialog__body p:last-child {
  margin-bottom: 0;
}

.package-info-dialog__body strong {
  color: rgba(200, 225, 255, 0.98);
  font-weight: 600;
}

.package-info-dialog__footer {
  padding: 0 1.25rem 1.2rem;
  display: flex;
  justify-content: flex-end;
}

.package-info-dialog__footer .btn {
  min-width: 7rem;
}

.booking-card--disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.booking-card--disabled .booking-card__body {
  border-color: rgba(255, 255, 255, 0.2);
  background: #121212;
}

.page-services__cta {
  margin: 2rem 0 0;
  text-align: center;
}

@media (min-width: 640px) {
  .page-services__cta {
    text-align: left;
  }
}

/* Contact form */
.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 480px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--brand-faint);
  border-radius: 8px;
  font: inherit;
}

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

.contact-form button {
  justify-self: start;
}

.page-contact .contact-page {
  text-align: center;
  background: transparent;
}

.contact-page__card {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  background: linear-gradient(
    155deg,
    #2c2c32 0%,
    #1e1e24 42%,
    #15151a 100%
  );
  border-radius: 14px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  text-align: left;
}

.contact-page__links {
  margin: 0 0 2rem;
  font-size: 0.95rem;
}

.contact-page__text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  text-decoration: none;
}

.contact-page__text-link:hover {
  color: var(--white);
  text-decoration: none;
}

.contact-page__split {
  display: grid;
  gap: 0;
  text-align: left;
}

@media (min-width: 900px) {
  .contact-page__split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 420px;
  }
}

.contact-page__form-col {
  padding: 1.5rem 1.35rem 1.75rem;
  background: var(--brand);
}

@media (min-width: 900px) {
  .contact-page__form-col {
    padding: 1.75rem 1.5rem 1.75rem 1.75rem;
  }
}

.contact-page__form-heading {
  margin-top: 0;
  text-align: left;
}

.contact-form--split {
  max-width: none;
}

.page-contact .contact-form {
  gap: 1.2rem;
}

.page-contact .contact-form label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.page-contact .contact-form input,
.page-contact .contact-form textarea {
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #0f172a;
  padding: 0.85rem 1rem;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.page-contact .contact-form textarea {
  min-height: 132px;
  line-height: 1.55;
  resize: vertical;
}

.page-contact .contact-form input::placeholder,
.page-contact .contact-form textarea::placeholder {
  color: rgba(15, 23, 42, 0.42);
}

.page-contact .contact-form input:hover,
.page-contact .contact-form textarea:hover {
  border-color: rgba(15, 23, 42, 0.18);
  background: #ffffff;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.page-contact .contact-form input:focus,
.page-contact .contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.95);
  background: #ffffff;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.35),
    0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-contact .contact-form .btn-primary {
  background: #ffffff;
  color: var(--brand);
}

.page-contact .contact-form .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
}

.contact-page__photo {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 0;
}

.contact-photo-carousel {
  min-height: 320px;
}

.contact-photo-carousel__slides {
  position: absolute;
  inset: 0;
  min-height: 320px;
}

.contact-photo-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
  pointer-events: none;
}

.contact-photo-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.contact-photo-carousel__hits {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: row;
  pointer-events: none;
}

.contact-photo-carousel__hit {
  flex: 1;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 900px) {
  .contact-page__photo {
    min-height: 100%;
  }

  .contact-photo-carousel__slides {
    min-height: 100%;
  }
}

/* Legal */
.legal-doc {
  max-width: 720px;
}

.legal-doc h2 {
  font-size: 1.1rem;
  margin-top: 2rem;
}

.legal-doc h2:first-of-type {
  margin-top: 1rem;
}

.legal-doc p,
.legal-doc li {
  font-size: 0.95rem;
}

/* Call strip (pre-footer) */
.call-strip {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, var(--brand-faint) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.35rem var(--space);
}

.call-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  text-align: center;
}

.call-strip__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.call-strip__phone {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.call-strip__phone:hover {
  color: var(--brand);
  text-decoration: none;
}

/* Footer */
.site-footer {
  flex-shrink: 0;
  min-height: var(--footer-min-h);
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 2rem var(--space) 2.25rem;
}

.footer-top {
  display: grid;
  gap: 2rem;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: minmax(180px, 1fr) auto auto minmax(180px, 1fr);
    gap: 2rem 2.5rem;
  }
}

.footer-col--brand {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-col--brand {
    text-align: left;
  }
}

.footer-brand-mark {
  display: block;
  height: 4.25rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 0.45rem;
  filter: grayscale(1) saturate(0);
  opacity: 0.78;
}

@media (min-width: 768px) {
  .footer-col--brand .footer-brand-mark {
    margin-left: 0;
    margin-right: auto;
  }
}

.footer-copy {
  margin: 0.35rem auto 0;
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 320px;
}

@media (min-width: 768px) {
  .footer-col--brand .footer-copy {
    margin-left: 0;
    margin-right: auto;
  }
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 0.65rem 2rem;
  justify-content: center;
  justify-items: start;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: start;
  }
}

.footer-col--phone {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-col--phone {
    text-align: left;
    justify-self: start;
  }
}

.footer-call-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-phone {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.footer-phone:hover {
  color: var(--brand-light);
  text-decoration: none;
}

.footer-nav__col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e8e8e8;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-link-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.95;
}

.footer-col--legal-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-col--legal-social {
    align-items: flex-end;
    text-align: right;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-links {
    justify-content: flex-end;
  }
}

.footer-links a {
  color: #e0e0e0;
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

/* Payment brands — Shopify Dawn–style strip: light band, list-payment row, ~24px icons */
.footer-payments-bar {
  flex-shrink: 0;
  background: rgb(250, 250, 250);
  border-top: 0.1rem solid rgba(0, 0, 0, 0.08);
  padding: 0.75rem var(--space);
}

.footer-payments-bar.footer-payments-bar--dark {
  background: #060606;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.08);
}

.footer-payments-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__payment {
  width: 100%;
}

/* Mirrors Shopify Dawn `component-list-payment.css` */
.footer__payment .list-payment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: -0.5rem 0;
  padding: 0;
  list-style: none;
}

.footer__payment .list-payment__item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  margin: 0;
  line-height: 0;
}

/* Dawn payment SVGs are ~24px tall; width varies by mark */
.footer__payment .list-payment__icon {
  display: block;
  height: 1.5rem;
  width: auto;
  max-width: 2.375rem;
  object-fit: contain;
  vertical-align: middle;
}

.footer-payments-bar--dark .list-payment__icon {
  filter: grayscale(1) brightness(2.25);
  opacity: 0.9;
}

.footer-payments-bar--dark .list-payment__item:nth-child(7) .list-payment__icon,
.footer-payments-bar--dark .list-payment__item:nth-child(8) .list-payment__icon {
  filter: brightness(0) invert(1);
  opacity: 1;
}

/* Wider marks (Amex, Discover, Apple Pay, Google Pay wordmarks) */
.footer__payment .list-payment__item:nth-child(3) .list-payment__icon,
.footer__payment .list-payment__item:nth-child(4) .list-payment__icon,
.footer__payment .list-payment__item:nth-child(7) .list-payment__icon,
.footer__payment .list-payment__item:nth-child(8) .list-payment__icon {
  max-width: 2.75rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.85rem;
}

@media (min-width: 768px) {
  .social-row {
    justify-content: flex-end;
  }
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e0e0e0;
  font-size: 1.35rem;
  line-height: 1;
  transition: color 0.2s, opacity 0.2s;
}

.social-row a:hover {
  color: var(--white);
  text-decoration: none;
  opacity: 0.92;
}

#book {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Booking wizard */
.page-book .booking-wrap {
  max-width: 1000px;
}

.booking-progress {
  margin-bottom: 1.5rem;
}

.booking-progress__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  counter-reset: book-step;
}

@media (min-width: 640px) {
  .booking-progress__steps {
    justify-content: flex-start;
  }
}

.booking-progress__step {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.booking-progress__step::before {
  content: counter(book-step);
  counter-increment: book-step;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
}

.booking-progress__step.is-active {
  color: rgba(255, 255, 255, 0.95);
}

.booking-progress__step.is-active::before {
  background: var(--brand);
  color: var(--white);
}

.booking-progress__step.is-done {
  color: rgba(255, 255, 255, 0.65);
}

.booking-progress__step.is-done::before {
  background: rgba(2, 57, 107, 0.45);
  color: rgba(255, 255, 255, 0.9);
}

.booking-error {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(180, 60, 60, 0.2);
  border: 1px solid rgba(255, 120, 120, 0.35);
  color: rgba(255, 220, 220, 0.95);
  font-size: 0.9rem;
}

.booking-step__title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.96);
}

.booking-step__hint {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
}

.booking-choice-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .booking-choice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .booking-choice-grid {
    gap: 1rem;
  }

  .booking-step[data-step="1"] .booking-card__body {
    min-height: 15rem;
    padding: 1.35rem 1.2rem 1.5rem;
  }

  .booking-step[data-step="2"] .booking-card__body {
    min-height: 15.25rem;
    padding: 1.3rem 1.2rem 1.35rem;
  }
}

.booking-card {
  display: block;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.booking-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  height: 100%;
  padding: 1.12rem 1.08rem 1.18rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: #171717;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.booking-step[data-step="1"] .booking-card__body {
  min-height: 13.4rem;
}

.booking-step[data-step="2"] .booking-card__body {
  min-height: 14rem;
}

.booking-card:hover .booking-card__body {
  border-color: #ffffff;
  background: #1d1d1d;
}

.booking-card input:focus-visible + .booking-card__body {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

.booking-card input:checked + .booking-card__body {
  border-color: rgba(56, 139, 220, 0.95);
  background: rgba(2, 57, 107, 0.42);
  box-shadow: inset 0 0 0 1px rgba(112, 182, 244, 0.35);
}

.booking-card--featured input:checked + .booking-card__body {
  box-shadow:
    inset 0 0 0 1px rgba(126, 193, 251, 0.48),
    0 8px 20px rgba(2, 57, 107, 0.32);
}

/* Step 1 only: selected package cards follow tier colors */
.booking-step[data-step="1"] .booking-card input[value="essential"]:checked + .booking-card__body {
  border-color: rgba(188, 200, 214, 0.95);
  background: linear-gradient(
    145deg,
    rgba(120, 132, 148, 0.5) 0%,
    rgba(78, 90, 106, 0.42) 100%
  );
  box-shadow: inset 0 0 0 1px rgba(220, 230, 242, 0.38);
}

.booking-step[data-step="1"] .booking-card input[value="complete"]:checked + .booking-card__body {
  border-color: rgba(74, 154, 216, 0.95);
  background: linear-gradient(
    145deg,
    rgba(20, 88, 154, 0.56) 0%,
    rgba(12, 60, 108, 0.45) 100%
  );
  box-shadow:
    inset 0 0 0 1px rgba(128, 196, 252, 0.4),
    0 8px 20px rgba(2, 57, 107, 0.32);
}

.booking-step[data-step="1"] .booking-card input[value="signature"]:checked + .booking-card__body {
  border-color: rgba(222, 190, 90, 0.95);
  background: linear-gradient(
    145deg,
    rgba(154, 116, 20, 0.56) 0%,
    rgba(110, 76, 12, 0.45) 100%
  );
  box-shadow: inset 0 0 0 1px rgba(245, 216, 130, 0.38);
}

.booking-card__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.booking-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
}

.booking-card__desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

.booking-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.booking-tick-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.booking-tick {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s, border-color 0.2s;
}

.booking-tick:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.booking-tick input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.booking-tick__box {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 4px;
  border: 2px solid rgba(110, 174, 232, 0.95);
  background: #ffffff;
  position: relative;
}

.booking-tick input:checked + .booking-tick__box {
  border-color: var(--brand);
  background: var(--brand);
}

.booking-tick input:checked + .booking-tick__box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.booking-tick input:focus-visible ~ .booking-tick__label {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.booking-tick:has(input:focus-visible) {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.booking-tick__label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.booking-tick:has(input:checked) {
  border-color: rgba(2, 57, 107, 0.75);
  background: rgba(2, 57, 107, 0.22);
}

.booking-addon-grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .booking-addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.booking-addon-card {
  display: block;
  margin: 0;
  cursor: pointer;
  position: relative;
}

.booking-addon-card-wrap--has-info {
  position: relative;
  display: block;
}

.booking-addon-card-wrap--has-info > .booking-addon-card {
  display: block;
}

.booking-addon-card-wrap--has-info .booking-addon-card__text--with-side-info {
  padding-right: 2.5rem;
}

.booking-addon-card-wrap--has-info .booking-addon-card__info-btn--outside-label {
  position: absolute;
  right: 3.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  margin: 0;
}

@media (max-width: 419px) {
  .booking-addon-card-wrap--has-info .booking-addon-card__text--with-side-info {
    padding-right: 2.65rem;
  }

  .booking-addon-card-wrap--has-info .booking-addon-card__info-btn--outside-label {
    right: 2.85rem;
  }
}

.booking-addon-card__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
  padding: 0.85rem 1rem 0.85rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(120, 182, 238, 0.9);
  background: linear-gradient(
    145deg,
    rgba(23, 98, 168, 0.92) 0%,
    rgba(14, 76, 136, 0.92) 100%
  );
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.booking-addon-card:hover .booking-addon-card__inner {
  border-color: rgba(157, 209, 255, 0.95);
  background: linear-gradient(
    145deg,
    rgba(31, 112, 187, 0.95) 0%,
    rgba(18, 86, 151, 0.95) 100%
  );
}

.booking-addon-card:has(input:focus-visible) .booking-addon-card__inner {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

.booking-addon-card:has(input:checked) .booking-addon-card__inner {
  border-color: rgba(56, 139, 220, 0.95);
  background: linear-gradient(
    145deg,
    rgba(18, 103, 181, 0.98) 0%,
    rgba(10, 73, 134, 0.98) 100%
  );
  box-shadow: inset 0 0 0 1px rgba(160, 214, 255, 0.35);
}

.booking-addon-card__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.35;
  min-width: 0;
}

.booking-addon-card__name {
  display: block;
}

/* Stain Spot Treatment only — info control is outside the label so the row still toggles the checkbox */
.booking-addon-card__info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.booking-addon-card__info-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.booking-addon-card__info-btn:focus-visible {
  outline: 2px solid rgba(120, 185, 255, 0.9);
  outline-offset: 2px;
}

.booking-addon-card__note {
  display: block;
  max-width: 100%;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.58);
}

.booking-addon-card__price {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(186, 230, 255, 0.96);
}

.booking-addon-card__price-note {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 0.25rem;
}

.booking-schedule {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.booking-schedule--split {
  align-items: stretch;
}

@media (min-width: 768px) {
  .booking-schedule--split {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

  .booking-calendar-panel {
    flex: 1;
    min-width: 0;
    max-width: 400px;
  }

  .booking-time-panel {
    flex: 0 0 220px;
  }
}

.page-book .booking-form #booking-time-select {
  border-radius: 0;
  width: 100%;
}

.booking-calendar-panel {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
}

.booking-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.booking-calendar__month {
  margin: 0;
  flex: 1;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.booking-cal-nav {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.booking-cal-nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.booking-cal-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.booking-cal-cell--pad {
  min-height: 2.4rem;
}

.booking-cal-day {
  min-height: 2.4rem;
  padding: 0.2rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.booking-cal-day:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
}

.booking-cal-day--muted {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-cal-day.is-selected {
  border-color: var(--brand);
  background: rgba(2, 57, 107, 0.55);
  color: var(--white);
}

.booking-schedule label,
.booking-schedule__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.booking-fields {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.booking-profile-tools {
  margin: 0 0 0.9rem;
  padding: 0;
  border: 0;
  background: transparent;
  width: auto;
  max-width: 100%;
}

.booking-profile-tools__hint {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.64);
}

.booking-profile-tools__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  justify-items: start;
}

.booking-profile-tools__btn {
  min-width: 0;
  width: auto;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  background: #fff;
  color: #0b1220;
  border: 1px solid #fff;
}

.booking-profile-tools__btn:hover {
  background: #e8edf4;
  color: #0b1220;
  border-color: #e8edf4;
  text-decoration: none;
}

.booking-profile-tools__vehicle-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.booking-profile-tools__vehicle label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}

.booking-profile-tools__vehicle #booking-saved-vehicle-select {
  min-width: 11rem;
  width: auto;
}

.booking-profile-tools__status {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
}

@media (min-width: 560px) {
  .booking-fields {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-fields__full {
    grid-column: 1 / -1;
  }
}

.page-book .booking-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

/* Card-style option labels — not field labels; avoid form label/input defaults */
.page-book .booking-form .booking-complete-card {
  margin-bottom: 0;
  font-weight: inherit;
}

.page-book .booking-form .optional {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

/* Text fields only — radios/checkboxes use card-specific styles (width:100% breaks checkout radios) */
.page-book .booking-form input:not([type="radio"]):not([type="checkbox"]),
.page-book .booking-form textarea,
.page-book .booking-form select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-family: inherit;
}

.page-book .booking-form select {
  cursor: pointer;
  appearance: auto;
}

.page-book .booking-form textarea {
  resize: vertical;
  min-height: 100px;
}

.page-book .booking-form input::placeholder,
.page-book .booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.page-book .booking-step[data-step="5"] .booking-fields input,
.page-book .booking-step[data-step="5"] .booking-fields textarea,
.page-book .booking-step[data-step="5"] .booking-fields select {
  border-radius: 0;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-actions .btn {
  min-width: 140px;
}

.booking-actions .booking-next,
.booking-actions .booking-submit {
  margin-left: auto;
}

.booking-actions .booking-submit[hidden] {
  display: none !important;
}

@media (max-width: 559px) {
  .booking-actions .booking-next,
  .booking-actions .booking-submit {
    margin-left: 0;
    width: 100%;
  }

  .booking-actions .booking-back {
    width: 100%;
  }
}

.booking-done {
  margin-top: 1rem;
  padding: 2rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.booking-done__title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.96);
}

.booking-done__text {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.5;
}

.booking-done__summary {
  margin: 0 0 1.25rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  line-height: 1.5;
  white-space: pre-wrap;
  overflow-x: auto;
  max-height: 320px;
}

.booking-done__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Book landing (book.html) — no subscription UI in book-flow wizard */
.page-book-landing .booking-landing {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.booking-landing__panel {
  margin-bottom: 0;
  padding-bottom: 2rem;
  border-bottom: none;
}

.booking-landing__panel.booking-landing__panel--split {
  padding-bottom: 0;
}

.booking-landing__panel--split {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .booking-landing__panel--split {
    flex-direction: row;
    align-items: stretch;
    min-height: 0;
  }
}

.booking-landing__panel-main {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .booking-landing__panel-main {
    flex: 1 1 0;
    width: 50%;
    max-width: 50%;
  }
}

.booking-landing__panel-visual {
  position: relative;
  min-height: 0;
}

.booking-landing__panel-visual--cycle {
  background: #050505;
  display: block;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .booking-landing__panel-visual--cycle {
    flex: 1 1 0;
    width: 50%;
    max-width: 50%;
    align-self: stretch;
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .booking-landing__panel-visual--cycle {
    flex: none;
    width: 100%;
    max-width: none;
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }
}

.booking-landing__panel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.15s ease;
  pointer-events: none;
}

.booking-landing__panel-slide.is-active {
  opacity: 1;
}

.btn--book-start {
  background: #000000;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 0;
  padding: 0.85rem 1.65rem;
  font-weight: 600;
}

.btn--book-start:hover {
  background: #141414;
  color: #ffffff;
  text-decoration: none;
}

.booking-landing__panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.96);
}

.booking-landing__lede {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 62ch;
}

.booking-landing__lede--on-light {
  color: var(--text-muted);
}

.booking-landing__extras {
  width: 100%;
  background: var(--white);
  color: var(--text);
  border-top: 1px solid rgba(2, 57, 107, 0.12);
  padding: 0 0 clamp(2rem, 6vw, 3rem);
}

.booking-landing__subs-head {
  color: var(--white);
  padding: calc(1rem + 25px) 0;
  margin: 0;
  position: relative;
  isolation: isolate;
  background-color: #02396b;
  background-image:
    radial-gradient(
      120% 80% at 85% 20%,
      rgba(120, 185, 255, 0.22) 0%,
      rgba(120, 185, 255, 0) 55%
    ),
    radial-gradient(
      90% 70% at 10% 90%,
      rgba(0, 15, 35, 0.55) 0%,
      rgba(0, 15, 35, 0) 50%
    ),
    linear-gradient(
      118deg,
      #000f1f 0%,
      #001a33 9%,
      #012948 17%,
      #02396b 28%,
      #063d72 36%,
      #0a4d8a 44%,
      #0c5594 50%,
      #0a4d8a 56%,
      #074a82 64%,
      #02396b 72%,
      #022a50 82%,
      #011a2e 91%,
      #000814 100%
    );
  background-size: 100% 100%, 100% 100%, 320% 320%;
  background-blend-mode: normal, normal, normal;
  animation: booking-subs-gradient 14s ease-in-out infinite alternate;
}

@keyframes booking-subs-gradient {
  0% {
    background-position: 0% 0%, 0% 0%, 12% 35%;
  }

  100% {
    background-position: 0% 0%, 0% 0%, 88% 65%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-landing__subs-head {
    animation: none;
    background-color: #02396b;
    background-image: linear-gradient(
      118deg,
      #001a33 0%,
      #02396b 22%,
      #0a4d8a 48%,
      #02396b 72%,
      #011428 100%
    );
    background-size: 100% 100%;
  }
}

.booking-landing__subs-head-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.booking-landing__subs-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  line-height: 1;
  opacity: 0.95;
}

.booking-landing__subs-head h2 {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.booking-landing__subs-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem var(--space) 0;
  box-sizing: border-box;
  width: 100%;
}

.booking-landing__gift {
  width: 100%;
  margin: 0;
  padding: 2.75rem 0 clamp(2rem, 6vw, 3rem);
  border-top: none;
  box-sizing: border-box;
  background: linear-gradient(
    180deg,
    #e8eef5 0%,
    #dfe8f2 45%,
    #f2f6fa 100%
  );
  border-bottom: 1px solid rgba(2, 57, 107, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.booking-landing__gift-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
  box-sizing: border-box;
  width: 100%;
}

.booking-landing__gift-title-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.75rem;
}

.booking-landing__gift-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 1.5rem;
  line-height: 1;
}

.booking-landing__gift-title-row h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.booking-landing__gift-cta {
  margin: 1rem 0 0;
}

.booking-gift-mock {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0 0;
  align-items: start;
}

@media (min-width: 640px) {
  .booking-gift-mock {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 2rem;
  }
}

.booking-gift-card {
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(
    155deg,
    #012a52 0%,
    #02396b 28%,
    #0a4d8a 55%,
    #5ba3e8 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 40px rgba(2, 57, 107, 0.35);
  text-align: center;
}

.booking-gift-card__logo {
  width: 72px;
  height: auto;
  margin: 0 auto 0.75rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.booking-gift-card__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.booking-gift-card__amount {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.booking-gift-controls {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.booking-gift-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.booking-gift-slider {
  width: 100%;
  accent-color: var(--brand);
}

.booking-gift-custom {
  width: 100%;
  max-width: 200px;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(2, 57, 107, 0.2);
  border-radius: 6px;
  font: inherit;
}

.booking-gift-hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.booking-landing__extras .booking-landing__card {
  background: var(--bg);
  border: 1px solid rgba(2, 57, 107, 0.12);
}

.booking-landing__extras .booking-landing__card-title {
  color: var(--text);
}

.booking-landing__extras .booking-landing__card p {
  color: var(--text-muted);
}

.booking-landing__extras .booking-landing__card--subs {
  min-height: 280px;
  padding: 1.75rem 1.5rem;
  border-radius: 0;
  gap: 1rem;
  position: relative;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease;
}

.booking-landing__extras .booking-landing__card--subs:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 22px 50px rgba(2, 57, 107, 0.22);
  z-index: 2;
}

.booking-landing__extras .booking-landing__card--credit {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(72, 80, 90, 0.4);
}

.booking-landing__extras .booking-landing__card--credit-25 {
  background:
    radial-gradient(
      125% 100% at 14% 16%,
      rgba(45, 212, 191, 0.18) 0%,
      rgba(45, 212, 191, 0.07) 36%,
      transparent 64%
    ),
    radial-gradient(
      95% 75% at 92% 86%,
      rgba(13, 148, 136, 0.09) 0%,
      transparent 58%
    ),
    var(--bg);
}

.booking-landing__extras .booking-landing__card--credit-50 {
  background:
    radial-gradient(
      140% 120% at 50% 22%,
      rgba(251, 113, 133, 0.38) 0%,
      rgba(244, 114, 182, 0.26) 32%,
      rgba(236, 72, 153, 0.14) 52%,
      transparent 70%
    ),
    radial-gradient(
      110% 90% at 8% 88%,
      rgba(244, 63, 94, 0.18) 0%,
      rgba(219, 39, 119, 0.1) 45%,
      transparent 62%
    ),
    radial-gradient(
      85% 70% at 92% 40%,
      rgba(252, 165, 165, 0.16) 0%,
      transparent 50%
    ),
    var(--bg);
}

.booking-landing__extras .booking-landing__card--credit-25 .booking-landing__card-title {
  color: #0d9488;
}

.booking-landing__extras .booking-landing__card--credit-50 .booking-landing__card-title {
  color: #db2777;
}

.booking-landing__card-title--stacked {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.booking-landing__card-brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.booking-landing__card-brand sup {
  font-size: 0.55em;
  font-weight: 700;
  top: -0.2em;
}

.booking-landing__card-sub {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.booking-landing__extras .booking-landing__card--washpass {
  background: linear-gradient(
    125deg,
    #050a14 0%,
    #0d1f3c 22%,
    #123a62 48%,
    #1e4d7a 72%,
    #2a1a40 100%
  );
  border-width: 1px;
  border-color: rgba(120, 190, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 36px rgba(2, 20, 50, 0.35);
}

.booking-landing__extras .booking-landing__card--washpass .booking-landing__card-title,
.booking-landing__extras .booking-landing__card--washpass .booking-landing__card-brand,
.booking-landing__extras .booking-landing__card--washpass .booking-landing__card-sub,
.booking-landing__extras .booking-landing__card--washpass p,
.booking-landing__extras .booking-landing__card--washpass strong {
  color: rgba(255, 255, 255, 0.96);
}

.booking-landing__extras .booking-landing__card--washpass .booking-landing__card-sub {
  color: rgba(255, 255, 255, 0.72);
}

.booking-landing__extras .booking-landing__card--washpass:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 56px rgba(30, 80, 140, 0.45);
}

.btn-subscribe {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
  align-self: flex-start;
}

.btn-subscribe:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-subscribe--mint {
  background: linear-gradient(135deg, #2dd4bf, #0d9488);
  color: #fff;
}

.btn-subscribe--violet {
  background: linear-gradient(135deg, #fb7185, #db2777);
  color: #fff;
}

.btn-subscribe--sunset {
  background: linear-gradient(135deg, #fb923c, #f43f5e);
  color: #fff;
}

.booking-landing__cta {
  margin: 0;
}

.booking-landing__cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  overflow: visible;
}

@media (min-width: 768px) {
  .booking-landing__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
  }
}

.booking-landing__card {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-landing__card p {
  margin: 0;
  flex: 1;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.5;
}

.booking-landing__card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.booking-landing__card .btn {
  align-self: flex-start;
}

.booking-flow-back {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.booking-flow-back a {
  color: rgba(255, 255, 255, 0.55);
}

.booking-flow-back a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.booking-complete-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .booking-complete-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.booking-complete-card {
  display: block;
  margin: 0;
  cursor: pointer;
}

.booking-complete-card__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  height: 100%;
  min-height: 11.25rem;
  padding: 1.35rem 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: #ffffff;
  transition: border-color 0.22s, background 0.22s, transform 0.22s, box-shadow 0.22s;
}

.booking-step[data-step="6"] .booking-complete-card__inner {
  min-height: 12.5rem;
  padding: 1.45rem 1.2rem;
}

.booking-complete-card__radio {
  flex-shrink: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  max-width: none;
  height: 1.125rem;
  margin: 0.2rem 0 0 0;
  padding: 0;
  box-sizing: border-box;
  cursor: pointer;
  position: static;
  opacity: 1;
  pointer-events: auto;
  accent-color: var(--brand);
}

.booking-complete-card--pay .booking-complete-card__radio {
  accent-color: #ffffff;
}

.booking-complete-card__panel {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
  position: relative;
}

.booking-complete-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #121826;
}

.booking-complete-card__desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #394254;
}

.booking-complete-card__secure {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0c5fb3;
}

.booking-complete-card__secure i {
  font-size: 1rem;
  color: #0c5fb3;
}

/* Book appointment — light card; selected = dark */
.booking-complete-card--book:hover .booking-complete-card__inner {
  border-color: rgba(122, 154, 232, 0.88);
  background: #fafbff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(12, 24, 45, 0.18);
}

.booking-complete-card--book:has(.booking-complete-card__radio:checked) .booking-complete-card__inner {
  transform: translateY(-2px) scale(1.01);
  border: 2px solid #ffffff !important;
  outline: none !important;
  background: #0a0a0a !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.booking-complete-card--book:has(.booking-complete-card__radio:checked) .booking-complete-card__inner:hover {
  background: #0a0a0a !important;
  border-color: #ffffff !important;
}

.booking-complete-card--book:has(.booking-complete-card__radio:checked) .booking-complete-card__title,
.booking-complete-card--book:has(.booking-complete-card__radio:checked) .booking-complete-card__desc,
.booking-complete-card--book:has(.booking-complete-card__radio:checked) .booking-complete-card__secure,
.booking-complete-card--book:has(.booking-complete-card__radio:checked) .booking-complete-card__secure i {
  color: #ffffff;
}

.booking-complete-card--book .booking-complete-card__radio:focus-visible {
  outline: 2px solid rgba(2, 57, 107, 0.65);
  outline-offset: 2px;
}

.booking-complete-card--book:has(.booking-complete-card__radio:focus-visible) .booking-complete-card__inner {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.booking-complete-card--book:has(.booking-complete-card__radio:checked:focus-visible) .booking-complete-card__inner {
  outline: 2px solid rgba(255, 255, 255, 0.65) !important;
  outline-offset: 2px;
}

/* Pay online — full brand background */
.booking-complete-card--pay .booking-complete-card__inner {
  background: var(--brand);
  border-color: rgba(255, 255, 255, 0.35);
}

.booking-complete-card--pay:hover .booking-complete-card__inner {
  background: var(--brand-light);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(2, 57, 107, 0.35);
}

.booking-complete-card--pay:has(.booking-complete-card__radio:checked) .booking-complete-card__inner {
  border: 2px solid #ffffff !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px) scale(1.01);
}

.booking-complete-card--pay .booking-complete-card__title,
.booking-complete-card--pay .booking-complete-card__desc,
.booking-complete-card--pay .booking-complete-card__secure,
.booking-complete-card--pay .booking-complete-card__secure i {
  color: rgba(255, 255, 255, 0.96);
}

.booking-complete-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
}

/* Step 6: never show Continue — only submit actions */
.booking-form[data-current-step="6"] #booking-next {
  display: none !important;
}

.booking-pay-notice {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: #080808;
}

.booking-pay-ack {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  cursor: pointer;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  position: relative;
}

.booking-pay-ack input {
  display: none;
}

.booking-pay-ack__text {
  display: block;
  flex: 1;
  min-width: 0;
}

/* User-provided checkbox pattern */
.booking-form .container {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.booking-form .container input {
  display: none;
}

.booking-form .checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
  background-color: #101010;
  border: 1px solid #101010;
  border-radius: 0.25em;
  transition: all 0.25s;
}

.booking-form .container input:checked ~ .checkmark {
  background-color: #101010;
  border-color: #101010;
}

.booking-form .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 0.1em solid #101010;
  left: 50%;
  top: 50%;
  width: 0.28em;
  height: 0.56em;
  border-radius: 0;
  transition: all 0.25s, border-width 0.1s;
}

.booking-form .container input:checked ~ .checkmark:after {
  opacity: 1;
  left: 50%;
  top: 50%;
  width: 0.28em;
  height: 0.56em;
  border-color: #fff0 white white #fff0;
  border-width: 0 0.15em 0.15em 0;
  border-radius: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Keep checkboxes aligned in booking layouts */
.booking-addon-card__check.container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
}

/* Add-ons: dodger blue checkbox */
.booking-addon-card__check.container .checkmark {
  background-color: transparent;
  border-color: #1e90ff;
}

.booking-addon-card__check.container .checkmark:after {
  border-color: transparent;
}

.booking-addon-card__check.container input:checked ~ .checkmark {
  background-color: #1e90ff;
  border-color: #1e90ff;
}

.booking-pay-ack.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.6rem;
  font-size: 16px;
  width: 100%;
  text-align: center;
}

.booking-pay-ack__text {
  order: 1;
  padding-top: 0.04rem;
  margin-left: 0;
  width: 100%;
  text-align: center;
}

.booking-pay-ack__box {
  order: 2;
  align-self: center;
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.25rem;
  border: 2px solid #73b5f0;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(5, 20, 38, 0.4);
  position: relative;
  margin-inline: auto;
}

.booking-pay-ack .checkmark {
  display: none !important;
}

.booking-pay-ack input:checked ~ .booking-pay-ack__box {
  background: #1e90ff;
  border-color: #1e90ff;
}

.booking-pay-ack input:checked ~ .booking-pay-ack__box::after {
  content: "";
  position: absolute;
  left: 0.46rem;
  top: 0.21rem;
  width: 0.28rem;
  height: 0.56rem;
  border-color: #fff0 #ffffff #ffffff #fff0;
  border-style: solid;
  border-width: 0 0.15rem 0.15rem 0;
  transform: rotate(45deg);
}

.booking-submit--book,
.booking-submit--pay {
  border: none !important;
}

/* Subscriptions page — card grid */
.page-subscriptions .content-block {
  max-width: 1024px;
}

.subs-intro {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
}

.subs-intro a {
  color: rgba(255, 255, 255, 0.55);
}

.subs-band {
  margin-bottom: 2.25rem;
}

.subs-band:last-child {
  margin-bottom: 0;
}

.subs-band__title {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.subs-band__reg {
  font-size: 0.65em;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
  text-transform: none;
}

.subs-band__lede {
  margin: 0 0 1.25rem;
  max-width: 38rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

.subs-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .subs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .subs-grid--tri {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.subs-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 1.2rem 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
}

.subs-card__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.subs-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.96);
}

.subs-card__price {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.subs-card__price span {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.93);
}

.subs-card__list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.subs-card__list li {
  margin-bottom: 0.35rem;
}

.subs-card__list li:last-child {
  margin-bottom: 0;
}

.subs-card__cta {
  margin-top: auto;
  padding-top: 1.1rem;
}

.subs-card__cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
}

.subs-card--featured {
  border-color: rgba(2, 57, 107, 0.5);
  background: rgba(2, 57, 107, 0.14);
}

.subs-footnote {
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.subs-footnote a {
  color: rgba(140, 190, 255, 0.95);
  text-decoration: none;
}

.subs-footnote a:hover {
  text-decoration: underline;
}

/* Book landing — Wash Pass X tier view toggle */
.booking-landing__membership-views {
  position: relative;
}

.booking-landing__wash-tiers-view[hidden] {
  display: none !important;
}

.booking-landing__membership-default[hidden] {
  display: none !important;
}

.booking-landing__wash-tiers-toolbar {
  margin: 0 0 1rem;
}

.btn--wash-tiers-back {
  font-weight: 600;
}

.booking-landing__wash-tiers-intro {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 62ch;
}

.booking-landing__wallet-hint {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(2, 57, 107, 0.06);
  border: 1px solid rgba(2, 57, 107, 0.1);
}

.booking-landing__extras .booking-landing__card--tier-silver {
  background:
    linear-gradient(145deg, rgba(148, 163, 184, 0.2) 0%, transparent 55%),
    var(--bg);
  border-color: rgba(100, 116, 139, 0.45);
}

.booking-landing__extras .booking-landing__card--tier-silver .booking-landing__card-title {
  color: #475569;
}

.booking-landing__extras .booking-landing__card--tier-blue {
  background:
    linear-gradient(145deg, rgba(2, 57, 107, 0.12) 0%, rgba(10, 77, 138, 0.08) 100%),
    var(--bg);
  border-color: rgba(2, 57, 107, 0.35);
}

.booking-landing__extras .booking-landing__card--tier-blue .booking-landing__card-title {
  color: var(--brand);
}

.booking-landing__extras .booking-landing__card--tier-gold {
  background:
    linear-gradient(145deg, rgba(234, 179, 8, 0.22) 0%, rgba(245, 158, 11, 0.12) 45%, transparent 70%),
    var(--bg);
  border-color: rgba(180, 130, 20, 0.45);
}

.booking-landing__extras .booking-landing__card--tier-gold .booking-landing__card-title {
  color: #b45309;
}

.btn-subscribe--silver {
  background: linear-gradient(135deg, #94a3b8, #64748b);
  color: #fff;
}

.btn-subscribe--blue {
  background: linear-gradient(135deg, #0a4d8a, #02396b);
  color: #fff;
}

.btn-subscribe--gold {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #1a1a1a;
}

/* Account dashboard */
.page-account .content-block--dark.account-page {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

main.page-account.page-dark {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(2, 57, 107, 0.18) 0%, transparent 55%),
    radial-gradient(90% 60% at 0% 100%, rgba(255, 255, 255, 0.04) 0%, transparent 45%),
    linear-gradient(180deg, #0c0c0f 0%, #09090b 50%, #060608 100%);
}

.page-hero--account.page-hero {
  padding-bottom: 0.5rem;
}

.page-hero--account h1 {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.page-hero--account.page-hero p {
  max-width: 40rem;
  line-height: 1.55;
}

.account-nav {
  margin: 0 0 2rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.15s;
}

.account-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.account-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(2, 57, 107, 0.5);
  border-color: rgba(120, 185, 255, 0.35);
}

.account-section {
  scroll-margin-top: calc(var(--header-h) + 1rem);
  margin-bottom: 2.75rem;
}

.account-section:last-of-type {
  margin-bottom: 0;
}

.account-section__title {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.98);
}

.account-section__subtitle {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.account-section__subtitle--flush-top {
  margin-top: 0;
  font-size: 1.05rem;
}

.account-inline-link {
  color: rgba(120, 185, 255, 0.95);
  text-decoration: none;
}

.account-inline-link:hover {
  text-decoration: underline;
}

.account-dashboard-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .account-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .account-dashboard-grid--stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.account-stat-card {
  min-width: 0;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 42%,
    rgba(0, 0, 0, 0.15) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 12px 40px rgba(0, 0, 0, 0.28);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.account-stat-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 16px 44px rgba(0, 0, 0, 0.32);
}

.account-stat-card__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.account-stat-card__value {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.03em;
}

.account-stat-card__value--lg {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.account-stat-card__value--md {
  font-size: 1.1rem;
  font-weight: 800;
}

.account-stat-card__meta {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

.account-stat-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .account-stat-card--wide {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  .account-stat-card--wide {
    grid-column: span 3;
  }
}

.account-activity-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-activity-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.account-activity-list li:last-child {
  border-bottom: none;
}

.account-activity-list strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.account-hero-greeting {
  margin: 0.15rem 0 0;
  font-size: clamp(1.55rem, 4.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
  background: linear-gradient(120deg, #9ed2ff 0%, #60a5fa 44%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.account-hero-description {
  margin: 0.45rem 0 0;
  color: rgba(228, 239, 252, 0.9);
  font-size: 0.98rem;
  line-height: 1.5;
}

.account-stat-card__actions {
  margin: 0.85rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.account-card-btn {
  min-width: 9.25rem;
  padding: 0.56rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.account-stat-card__actions .account-card-btn {
  background: #fff;
  color: #0b1220;
  border: 1px solid #fff;
}

.account-stat-card__actions .account-card-btn:hover {
  background: #e8edf4;
  color: #0b1220;
  border-color: #e8edf4;
  text-decoration: none;
}

.account-stat-card__actions .account-card-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.account-vehicles-modal-list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(230, 240, 250, 0.9);
  line-height: 1.55;
}

.account-vehicles-modal-list li {
  margin: 0 0 0.5rem;
}

.account-vehicles-modal-list li:last-child {
  margin-bottom: 0;
}

.account-vehicles-form {
  margin-bottom: 0.9rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.account-vehicles-form__grid {
  display: grid;
  gap: 0.75rem;
}

.account-vehicles-form__actions {
  margin-top: 0.65rem;
}

.account-vehicles-form .form-row {
  margin: 0;
}

.account-vehicles-form .form-row label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(220, 235, 248, 0.84);
}

.account-vehicles-form .form-row input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.95);
  font: inherit;
}

.account-vehicles-form .form-row select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.95);
  font: inherit;
}

.account-vehicles-form .form-row input:focus {
  outline: none;
  border-color: rgba(120, 185, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(2, 57, 107, 0.35);
}

.account-vehicles-form .form-row select:focus {
  outline: none;
  border-color: rgba(120, 185, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(2, 57, 107, 0.35);
}

.account-vehicles-form__actions .account-card-btn {
  background: #fff;
  color: #0b1220;
  border: 1px solid #fff;
}

.account-vehicles-form__actions .account-card-btn:hover {
  background: #e8edf4;
  color: #0b1220;
  border-color: #e8edf4;
  text-decoration: none;
}

@media (min-width: 640px) {
  .account-vehicles-form__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.account-vehicles-modal-list .account-vehicles-modal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.account-vehicles-modal-remove {
  border: none;
  border-radius: 8px;
  padding: 0.35rem 0.55rem;
  background: rgba(185, 28, 28, 0.12);
  color: rgba(254, 202, 202, 0.95);
  font-size: 0.78rem;
  cursor: pointer;
}

/* Legacy — profile now uses .account-card + .account-profile-forms */
.account-profile-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.account-card {
  margin: 0 0 2rem;
  padding: 1.35rem 1.5rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.055) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(0, 0, 0, 0.12) 100%
  );
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.account-card--profile-photo {
  margin-bottom: 2rem;
}

.account-card__title {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.account-card__lede {
  margin: 0 0 1.25rem;
  max-width: 42rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.52);
}

.account-card__lede--tight {
  margin-bottom: 1rem;
}

.account-card__head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 0.35rem;
}

.account-card__head-row .account-card__title--left {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.92);
}

.account-contact-edit-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  border-radius: 10px;
}

.account-contact-edit-btn i {
  font-size: 0.95em;
  opacity: 0.92;
}

.account-profile-view {
  margin-top: 0.15rem;
}

.account-profile-dl {
  margin: 0;
}

.account-profile-dl__row {
  display: grid;
  grid-template-columns: minmax(6.5rem, 12rem) 1fr;
  gap: 0.35rem 1.25rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  align-items: baseline;
}

.account-profile-dl__row:last-child {
  border-bottom: none;
}

.account-profile-dl dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.48);
}

.account-profile-dl dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  word-break: break-word;
}

.account-profile-dl__dd--empty {
  color: rgba(255, 255, 255, 0.38);
  font-style: italic;
}

.form-row--email-confirm {
  box-sizing: border-box;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(120, 185, 255, 0.2);
}

.form-row--email-confirm:not([hidden]) {
  margin-bottom: 1rem;
}

.form-row--email-confirm__actions {
  margin-top: 0.5rem;
}

@media (max-width: 479px) {
  .account-profile-dl__row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

.account-profile-forms {
  max-width: 520px;
}

@media (min-width: 720px) {
  .account-profile-forms {
    max-width: none;
  }
}

.account-photo-preview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.account-photo-preview--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.35);
}

.account-photo-input {
  font-size: 0.8rem;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.65);
}

.account-form .form-row {
  margin-bottom: 1rem;
}

.account-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.account-form input {
  width: 100%;
  max-width: 420px;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.95);
  font: inherit;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.account-form input:focus {
  outline: none;
  border-color: rgba(120, 185, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(2, 57, 107, 0.35);
}

#account-dashboard > .account-section__subtitle {
  margin-top: 1.75rem;
}

.account-form-hint {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.account-form-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.account-divider {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.account-mock-banner {
  margin: 0 0 1.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(2, 57, 107, 0.28);
  border: 1px solid rgba(120, 185, 255, 0.22);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.account-page .account-divider {
  margin: 2.25rem 0;
}

/* Login / signup (Supabase auth) */
.auth-page-card {
  max-width: 440px;
  margin: 0 auto;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.auth-page-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.96);
}

.auth-provider-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.auth-provider-note__logo {
  flex-shrink: 0;
  display: block;
  width: 14px;
  height: 14px;
  opacity: 0.65;
}

.auth-page-card__lede {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.auth-page-card label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.auth-page-card input[type="email"],
.auth-page-card input[type="text"],
.auth-page-card input[type="password"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.95);
  font: inherit;
  box-sizing: border-box;
}

.auth-password-wrap {
  position: relative;
}

.auth-password-wrap input[type="password"],
.auth-password-wrap input[type="text"] {
  padding-right: 2.8rem;
}

.auth-password-toggle {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.15rem;
  height: 2.15rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.auth-password-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.auth-password-toggle:focus-visible {
  outline: 2px solid rgba(120, 185, 255, 0.7);
  outline-offset: 1px;
}

.auth-page-card input:focus {
  outline: 2px solid rgba(120, 185, 255, 0.45);
  outline-offset: 1px;
}

.auth-page-card .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.auth-alert {
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.45;
}

.auth-alert--error {
  color: #fecaca;
  background: rgba(185, 28, 28, 0.25);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.auth-alert--success {
  color: #bbf7d0;
  background: rgba(22, 163, 74, 0.2);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.auth-page-footer {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.auth-page-footer a {
  color: rgba(120, 185, 255, 0.95);
  font-weight: 600;
  text-decoration: none;
}

.auth-page-footer a:hover {
  text-decoration: underline;
}

.auth-forgot {
  margin-top: 0.25rem;
}

.auth-forgot__toggle {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  padding: 0.2rem 0;
  font-size: 0.88rem;
  text-decoration: underline;
  cursor: pointer;
}

.auth-forgot__form {
  margin-top: 0.6rem;
}

.auth-form-hint {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Account onboarding modal (vehicle + profile prompts, skippable) */
.account-onboarding-dialog {
  padding: 0;
  margin: auto;
  width: min(34rem, calc(100vw - 1.5rem));
  border: none;
  background: transparent;
}

.account-onboarding-dialog::backdrop {
  background: rgba(1, 11, 24, 0.72);
  backdrop-filter: blur(5px);
}

.account-onboarding-dialog__panel {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(165deg, rgba(18, 52, 88, 0.98) 0%, rgba(8, 32, 58, 0.99) 100%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  padding: 1.1rem 1.15rem 1.1rem;
}

.account-onboarding-dialog__close {
  position: absolute;
  right: 0.65rem;
  top: 0.55rem;
  width: 2.2rem;
  height: 2.2rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  cursor: pointer;
}

.account-onboarding-dialog__title {
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.2rem;
}

.account-onboarding-dialog__lede {
  margin: 0 0 0.85rem;
  color: rgba(215, 231, 248, 0.85);
  font-size: 0.9rem;
}

.account-onboarding-dialog__body .form-row label {
  color: rgba(220, 235, 248, 0.86);
}

.account-onboarding-dialog__body .form-row input {
  width: 100%;
  padding: 0.62rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.95);
}

.account-onboarding-dialog__body .form-row select {
  width: 100%;
  padding: 0.62rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.95);
}

.account-onboarding-dialog__error {
  margin: 0.25rem 0 0;
  color: #fecaca;
  font-size: 0.85rem;
}

.account-onboarding-dialog__actions {
  margin-top: 0.85rem;
  display: flex;
  gap: 0.55rem;
  justify-content: flex-end;
}

.about-photo-grid {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@media (min-width: 768px) {
  .about-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.admin-panel {
  max-width: none;
  width: 100%;
}

.admin-board {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.admin-section {
  position: relative;
  border-radius: 0;
  border: 1px solid #333;
  background: #0a0a0a;
  padding: 1.5rem 1.75rem 1.75rem;
  box-shadow: none;
}

.admin-section__header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 0 0 1.25rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid #2a2a2a;
}

.admin-section__icon {
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 1.05rem;
  color: #fff;
  background: #111;
  border: 1px solid #444;
}

.admin-section__titles {
  flex: 1;
  min-width: 0;
}

.admin-section__title {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.admin-section__lead {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.admin-section__body {
  margin: 0;
  padding: 0;
}

.admin-section__footer {
  margin-top: 1.25rem;
  padding: 1rem 0 0;
  border-top: 1px solid #2a2a2a;
}

.admin-section__footer--split {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.admin-subgrid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .admin-subgrid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

.admin-subcard {
  border-radius: 0;
  border: 1px solid #333;
  background: #080808;
  padding: 1.25rem 1.35rem;
}

.admin-subcard__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.admin-subcard__ico {
  font-size: 0.9rem;
  opacity: 0.9;
  color: #fff;
}

.btn-admin-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 0;
  cursor: pointer;
  color: #000;
  background: #fff;
  transition:
    background 0.15s,
    color 0.15s;
}

.btn-admin-primary:hover {
  background: #e5e5e5;
  color: #000;
}

.btn-admin-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  color: #fff;
  background: transparent;
  border: 1px solid #666;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.btn-admin-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #999;
}

.admin-page-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Ledger: single stack, no nested card chrome */
.admin-ledger {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #333;
  background: #0d0d0d;
}

.admin-ledger__segment {
  padding: 1.35rem 1.25rem 1.5rem;
  border-bottom: 1px solid #2a2a2a;
}

.admin-ledger__segment:last-child {
  border-bottom: none;
}

.admin-ledger__label {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.admin-ledger__tool-lede {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.48);
}

.admin-ledger__tool-hint {
  margin: 0.5rem 0 1rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.4);
}

.admin-grid--credit-tools {
  display: grid;
  gap: 0.85rem 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 0.25rem;
}

@media (min-width: 720px) {
  .admin-grid--credit-tools {
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
    align-items: end;
  }
}

.page-admin .admin-panel-select {
  width: 100%;
  max-width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.page-admin .admin-panel-select:focus {
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: 1px;
}

.admin-refund-btn {
  font-size: 0.72rem !important;
  padding: 0.35rem 0.65rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-refund-done {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.page-admin .admin-table-actions {
  white-space: nowrap;
  vertical-align: middle;
}

/* Availability: full-width breathing room */
.admin-availability {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.admin-availability__panel {
  border: 1px solid #333;
  background: #080808;
  padding: 1.75rem 1.75rem 2rem;
}

.admin-availability__title {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.admin-availability__hint {
  margin: 0 0 1.35rem;
  font-size: 0.875rem;
  line-height: 1.45;
}

.admin-availability__row {
  display: grid;
  gap: 1.35rem 1.5rem;
  align-items: end;
}

.admin-availability__row--day {
  grid-template-columns: minmax(0, 1fr) auto;
}

@media (max-width: 639px) {
  .admin-availability__row--day {
    grid-template-columns: 1fr;
  }

  .admin-availability__actions {
    justify-self: stretch;
  }

  .admin-availability__actions .btn-admin-primary {
    width: 100%;
    justify-content: center;
  }

  .admin-availability__row--times {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) {
  .admin-availability__row--times {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.admin-availability__field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.admin-availability__actions {
  padding-bottom: 0.05rem;
}

.admin-availability__row--submit {
  margin-top: 0.25rem;
}

.admin-subcard__hint {
  margin: 0 0 0.85rem;
}

.admin-subcard__action-row {
  margin: 0.85rem 0 0;
}

.admin-inline-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: flex-end;
  margin-bottom: 0.5rem;
}

.admin-inline-fields__field {
  flex: 1 1 12rem;
  min-width: 0;
}

.admin-inline-fields__action {
  flex: 0 0 auto;
}

.admin-list-msg {
  margin: 0.5rem 0 0;
}

.admin-panel label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.admin-panel input,
.admin-panel textarea,
.admin-panel select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  font: inherit;
}

.admin-panel textarea {
  min-height: 4.5rem;
  resize: vertical;
  line-height: 1.45;
}

/* Date/time pickers — visible controls on dark fields */
.page-admin .admin-panel input[type="date"],
.page-admin .admin-panel input[type="time"],
.page-admin .admin-input-datetime {
  color-scheme: dark;
  min-height: 2.95rem;
  padding-right: 2.75rem;
  background: #111;
  border: 1px solid #666;
}

.page-admin .admin-panel input[type="date"]::-webkit-calendar-picker-indicator,
.page-admin .admin-panel input[type="time"]::-webkit-calendar-picker-indicator,
.page-admin .admin-input-datetime::-webkit-calendar-picker-indicator {
  opacity: 1;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.15rem;
  margin-left: 0.25rem;
  /* Force pure white calendar / clock affordances on dark fields */
  filter: brightness(0) invert(1);
  background-color: transparent;
}

.page-admin .admin-panel input[type="date"]::-moz-calendar-picker-indicator,
.page-admin .admin-input-datetime::-moz-calendar-picker-indicator {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.page-admin .admin-panel input[type="date"]::-webkit-clear-button,
.page-admin .admin-panel input[type="time"]::-webkit-clear-button {
  filter: invert(1);
  opacity: 1;
}

.admin-section__body .admin-page-edit-group:first-of-type {
  margin-top: 0;
}

.admin-page-edit-group {
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 0;
  border: 1px solid #333;
  background: #080808;
}

.admin-page-card__summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.85rem;
  padding: 0.55rem 0.85rem 0.55rem 0.65rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  user-select: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.admin-page-card__summary::-webkit-details-marker {
  display: none;
}

.admin-page-card__summary:hover {
  background: rgba(255, 255, 255, 0.04);
}

.admin-page-card__chevron {
  flex: 0 0 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 0.22s ease;
  font-size: 0.7rem;
}

.admin-page-edit-group[open] > .admin-page-card__summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-page-edit-group[open] .admin-page-card__chevron {
  transform: rotate(90deg);
  color: #fff;
}

.admin-page-card__page-icon {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 0.9rem;
  color: #fff;
  background: #111;
  border: 1px solid #444;
}

.admin-page-card__name {
  flex: 1;
  min-width: 0;
  letter-spacing: 0.03em;
}

.admin-page-card__drawer {
  padding: 0.65rem 0.85rem 0.85rem;
}

.admin-page-pane--view {
  padding: 0.35rem 0 0.25rem;
}

.admin-page-pane--edit {
  padding: 0.35rem 0 0.5rem;
}

.admin-page-field {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.admin-page-field:last-child {
  margin-bottom: 0;
}

@media (min-width: 560px) {
  .admin-page-field {
    grid-template-columns: minmax(7rem, 11rem) minmax(0, 1fr);
    gap: 0.65rem 1rem;
    align-items: start;
  }
}

.admin-page-field__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.35;
}

.admin-page-field__value {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  white-space: pre-wrap;
  word-break: break-word;
}

.admin-page-field--edit label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.admin-page-group-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.55rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-page-group-actions .btn-admin-primary,
.admin-page-group-actions .btn-admin-ghost {
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
}

.admin-list-remove {
  font-size: 0.72rem !important;
  padding: 0.32rem 0.6rem !important;
  text-transform: none;
  letter-spacing: 0;
}

.admin-data-table-wrap {
  margin-top: 0.35rem;
  border-radius: 0;
  border: 1px solid #333;
  background: #0d0d0d;
}

.admin-ledger .admin-data-table-wrap {
  margin-top: 0.5rem;
  border: 1px solid #2a2a2a;
  background: #080808;
}

.admin-data-table-wrap--ledger {
  overflow-x: visible;
  margin-top: 0;
}

.page-admin .admin-data-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.page-admin .admin-data-table th,
.page-admin .admin-data-table td {
  padding: 0.55rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid #2a2a2a;
  vertical-align: top;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.admin-data-table th {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.admin-data-table td {
  color: rgba(255, 255, 255, 0.88);
}

.admin-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .admin-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.admin-field-span {
  grid-column: 1 / -1;
}

.admin-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.admin-checkbox-label input[type="checkbox"] {
  width: auto;
  min-width: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--brand, #02396b);
}

.admin-grid--package-bullets {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .admin-grid--package-bullets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.admin-subcard--package-bullets {
  margin-top: 0.75rem;
}

.admin-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.admin-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.page-admin .admin-list li {
  border-radius: 0;
  border-color: #333;
  background: #0a0a0a;
  flex-wrap: wrap;
  row-gap: 0.35rem;
}

.admin-empty {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

/* Admin — profile photo (local preview) */
.admin-profile-photo {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

@media (min-width: 560px) {
  .page-admin .admin-section__body.admin-profile-photo {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* Account dashboard: never squeeze photo + actions in a tiny column */
.admin-profile-photo--account {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .admin-profile-photo--account {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.admin-profile-photo__col {
  flex: 1;
  min-width: 0;
}

.admin-profile-photo__preview-wrap {
  position: relative;
  flex: 0 0 auto;
  width: 7.5rem;
  height: 7.5rem;
  border: 1px solid #333;
  background: #080808;
}

.admin-profile-photo__preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-profile-photo__preview[hidden] {
  display: none !important;
}

.admin-profile-photo__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.admin-profile-photo__placeholder[hidden] {
  display: none !important;
}

.admin-profile-photo__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.admin-profile-photo__file-input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.admin-profile-photo__hint {
  margin: 0;
  width: 100%;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
}

.page-admin .admin-profile-photo__actions .btn {
  border-radius: 0;
}

/* Account dashboard — profile photo actions (dark card) */
.page-account .account-card--profile-photo .admin-profile-photo__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
}

.page-account .account-card--profile-photo .admin-profile-photo__actions .btn {
  border-radius: 10px;
  padding: 0.5rem 1.05rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.page-account .account-card--profile-photo .admin-profile-photo__actions label.btn {
  margin: 0;
  cursor: pointer;
}

/* Choose image — neutral secondary */
.page-account .account-card--profile-photo .admin-profile-photo__actions label.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
}

.page-account .account-card--profile-photo .admin-profile-photo__actions label.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  transform: none;
}

/* Save — primary */
.page-account .account-card--profile-photo .admin-profile-photo__actions .btn-primary {
  border: none;
  box-shadow: 0 2px 14px rgba(2, 57, 107, 0.38);
}

.page-account .account-card--profile-photo .admin-profile-photo__actions .btn-primary i {
  margin-inline-end: 0.7rem;
}

.page-account .account-card--profile-photo .admin-profile-photo__actions .btn-primary:hover {
  box-shadow: 0 4px 18px rgba(2, 57, 107, 0.45);
}

/* Remove — soft danger */
.page-account .account-card--profile-photo .admin-profile-photo__actions button[data-bbd-avatar-remove].btn-outline {
  background: rgba(248, 113, 113, 0.06);
  border: 1px solid rgba(248, 113, 113, 0.42);
  color: rgba(254, 202, 202, 0.98);
}

.page-account .account-card--profile-photo .admin-profile-photo__actions button[data-bbd-avatar-remove].btn-outline:hover {
  background: rgba(248, 113, 113, 0.14);
  border-color: rgba(248, 113, 113, 0.55);
  transform: none;
}

@media (max-width: 479px) {
  .page-account .account-card--profile-photo .admin-profile-photo__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-account .account-card--profile-photo .admin-profile-photo__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.account-form-hint--tight {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

/* Admin — avatar crop / zoom modal */
.admin-avatar-crop-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.admin-avatar-crop-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.admin-avatar-crop-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 22rem;
  padding: 1.35rem 1.5rem 1.5rem;
  border: 1px solid #444;
  background: #0a0a0a;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
}

.admin-avatar-crop-modal__title {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.admin-avatar-crop-modal__sub {
  margin: 0 0 1.1rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
}

.admin-avatar-crop-modal__stage {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.admin-avatar-crop-modal__canvas {
  display: block;
  width: min(100%, 280px);
  height: auto;
  max-height: 70vh;
  aspect-ratio: 1;
  cursor: grab;
  touch-action: none;
  border: 1px solid #333;
  background: #1a1a1a;
}

.admin-avatar-crop-modal__canvas:active {
  cursor: grabbing;
}

.admin-avatar-crop-modal__zoom {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.admin-avatar-crop-modal__zoom-label {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.admin-avatar-crop-modal__range {
  flex: 1;
  min-width: 0;
  accent-color: #fff;
}

.admin-avatar-crop-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.admin-avatar-crop-modal__actions .btn {
  border-radius: 0;
  font-size: 0.85rem;
}

/* Toasts (bbdShowToast — top-right stack) */
.bbd-toast-stack {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
  z-index: 25000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  pointer-events: none;
  max-width: min(22rem, calc(100vw - 1.5rem));
}

.bbd-toast {
  pointer-events: auto;
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(18, 22, 28, 0.96);
  color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateX(120%);
  transition:
    opacity 0.28s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.bbd-toast--show {
  opacity: 1;
  transform: translateX(0);
}

.bbd-toast--leave {
  opacity: 0;
  transform: translateX(24%);
  transition:
    opacity 0.22s ease,
    transform 0.26s ease;
}

.bbd-toast--info {
  border-color: rgba(96, 165, 250, 0.35);
  background: rgba(17, 26, 40, 0.97);
}

.bbd-toast--success {
  border-color: rgba(52, 211, 153, 0.45);
  background: rgba(14, 32, 28, 0.97);
  color: rgba(220, 252, 231, 0.98);
}

.bbd-toast--error {
  border-color: rgba(248, 113, 113, 0.45);
  background: rgba(40, 22, 24, 0.97);
  color: rgba(254, 226, 226, 0.98);
}

@media (max-width: 479px) {
  .bbd-toast-stack {
    max-width: calc(100vw - 1.25rem);
  }

  .bbd-toast {
    font-size: 0.85rem;
    padding: 0.7rem 0.85rem;
  }
}

/* Coming soon gates — full markup stays in __track for later launch; overlay hides interaction until preview unlock (Ctrl+H). */
.bbd-coming-soon-gate {
  position: relative;
  isolation: isolate;
}

.bbd-coming-soon-gate__track {
  display: block;
}

body:not(.bbd-preview-unlocked) .bbd-coming-soon-gate__track {
  pointer-events: none;
  user-select: none;
  filter: grayscale(1) brightness(0.72);
}

/* Subscriptions page only — frosted overlay; book.html stays gray with no blur */
body:not(.bbd-preview-unlocked) .bbd-coming-soon-gate--blur .bbd-coming-soon-gate__track {
  filter: none;
}

.bbd-coming-soon-gate--blur .bbd-coming-soon-gate__overlay {
  background: rgba(6, 18, 32, 0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bbd-coming-soon-gate__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: rgba(42, 45, 52, 0.78);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.bbd-coming-soon-gate__message {
  max-width: 22rem;
}

.bbd-coming-soon-gate__label {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.bbd-coming-soon-gate__hint {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(220, 232, 245, 0.88);
}

body.bbd-preview-unlocked .bbd-coming-soon-gate__overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Password dialog (Ctrl+H) — matches site dark panels */
.bbd-preview-unlock-dialog {
  padding: 0;
  margin: auto;
  max-width: min(28rem, calc(100vw - 2rem));
  width: 100%;
  border: none;
  border-radius: 16px;
  background: transparent;
  color: inherit;
}

.bbd-preview-unlock-dialog::backdrop {
  background: rgba(2, 20, 40, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.bbd-preview-unlock-dialog__panel {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    165deg,
    rgba(18, 52, 88, 0.98) 0%,
    rgba(8, 32, 58, 0.99) 100%
  );
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.bbd-preview-unlock-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.1rem 0.65rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bbd-preview-unlock-dialog__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
}

.bbd-preview-unlock-dialog__close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: -0.2rem -0.25rem 0 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.bbd-preview-unlock-dialog__close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.bbd-preview-unlock-dialog__body {
  padding: 1rem 1.25rem 1.15rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.bbd-preview-unlock-dialog__body p {
  margin: 0 0 0.65rem;
}

.bbd-preview-unlock-dialog__body p:last-child {
  margin-bottom: 0;
}

.bbd-preview-unlock-dialog__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(210, 225, 245, 0.92);
}

.bbd-preview-unlock-dialog__input {
  box-sizing: border-box;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
}

.bbd-preview-unlock-dialog__input:focus {
  outline: 2px solid rgba(120, 185, 255, 0.75);
  outline-offset: 1px;
}

.bbd-preview-unlock-dialog__error {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: rgba(252, 165, 165, 0.95);
}

.bbd-preview-unlock-dialog__footer {
  padding: 0 1.25rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.bbd-preview-unlock-dialog__footer .btn {
  min-width: 6.5rem;
}
