/* ═══════════════════════════════════════════
   BeautyZone — Master Page
   css/pages/master.css
   Used by /masters/{id}.html — imported after platform.css
   ═══════════════════════════════════════════ */

/* ─────────────────────────────────────────
   HEADER — app.js compat
   app.js adds .scrolled / .open classes;
   platform.css uses .is-scrolled / .is-open
   ───────────────────────────────────────── */
#header.scrolled {
  height: 60px;
  background: rgba(12, 43, 30, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-dark);
}

#nav-menu.open {
  transform: translateX(0);
}

#nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 24px;
}
#nav-burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
}

/* ─── Nav links (used by app.js for active state) ─── */
.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark-dim);
  transition: color var(--ease-fast);
  padding-block: var(--sp-2);
  position: relative;
}

.header__mobile-menu .nav-link {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark-muted);
  padding: var(--sp-4) var(--sp-6);
}

.header__mobile-menu .nav-link:hover {
  color: var(--gold-1);
  padding-left: var(--sp-8);
}

.header__nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transition: transform var(--ease-base);
  transform-origin: left;
}

.header__nav .nav-link:hover,
.header__nav .nav-link.active {
  color: var(--gold-1);
}

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

/* Reveal animations disabled */

/* ─────────────────────────────────────────
   BREADCRUMB
   ───────────────────────────────────────── */
.page-breadcrumb {
  padding: var(--sp-3) 0;
  margin-top: var(--header-h);
  font-size: var(--text-xs);
  color: var(--light-dim);
  background: var(--light-bg);
  border-bottom: 1px solid var(--light-border);
  letter-spacing: 0.02em;
}

.page-breadcrumb a {
  color: var(--light-muted);
  transition: color var(--ease-fast);
}

.page-breadcrumb a:hover {
  color: var(--light-text);
}

.page-breadcrumb span {
  margin-inline: var(--sp-2);
  opacity: 0.4;
}

/* ─────────────────────────────────────────
   SECTION GENERAL
   ───────────────────────────────────────── */
.master-page section {
  padding-block: var(--section-py-sm);
}

@media (min-width: 1024px) {
  .master-page section {
    padding-block: var(--section-py);
  }
}

.section-dark  { background: var(--dark-bg); }
.section-deep  { background: var(--dark-bg-deep); }
.section-light { background: var(--light-bg); }
.section-white { background: var(--light-bg-alt); }

/* ─── Section header (used in master page sections) ─── */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: var(--sp-4);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-2);
  display: block;
}

.section-ornament {
  width: 40px;
  height: 2px;
  background: var(--gold-grad);
  margin: var(--sp-5) auto 0;
  border-radius: 2px;
}

/* Override section-title colors per bg context */
.section-dark  .section-title,
.section-deep  .section-title { color: var(--dark-text); }
.section-light .section-title,
.section-white .section-title { color: var(--light-text); }

.section-dark  .section-label { color: var(--gold-2); }
.section-light .section-label { color: var(--gold-3); }

/* ─────────────────────────────────────────
   HERO (dark, above-the-fold)
   ───────────────────────────────────────── */
#hero {
  background: var(--dark-bg);
  overflow: hidden;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 40%, rgba(200, 146, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
  padding-block: 30px var(--sp-8);
  position: relative;
  z-index: 1;
}

@media (min-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    padding-block: var(--sp-16);
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: var(--sp-5);
}

.hero-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold-2);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.05;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: var(--text-base);
  color: var(--dark-muted);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: var(--sp-6);
}

.hero-meta {
  margin-bottom: var(--sp-8);
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--dark-muted);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-full);
}

.hero-rating .stars {
  color: var(--gold-1);
  letter-spacing: -2px;
}

.hero-rating .separator {
  opacity: 0.3;
  margin-inline: var(--sp-1);
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero-photo-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-dark), var(--gold-glow);
  aspect-ratio: 3 / 4;
  max-width: 380px;
  margin-inline: auto;
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (min-width: 800px) {
  .hero-photo-wrap {
    max-width: 100%;
    margin-inline: 0;
  }
}

/* ─────────────────────────────────────────
   ABOUT — light bg
   ───────────────────────────────────────── */
#about {
  background: var(--light-bg);
}

#about .section-title {
  color: var(--light-text);
}

#about .section-label {
  color: var(--gold-3);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

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

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
  }
}

.about-card {
  background: var(--light-bg-alt);
  border: 1px solid var(--light-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  transition: box-shadow var(--ease-base), transform var(--ease-base);
}

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

.about-icon {
  font-size: 1.75rem;
  color: var(--gold-2);
  margin-bottom: var(--sp-4);
  line-height: 1;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: var(--sp-2);
}

.about-card p {
  font-size: var(--text-sm);
  color: var(--light-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   SERVICES — light bg price list
   ───────────────────────────────────────── */
#services {
  background: var(--light-bg-alt);
}

#services .section-title {
  color: var(--light-text);
}

#services .section-label {
  color: var(--gold-3);
}

/* Override platform .service-card for master price list */
#services-grid.services-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

#services-grid .service-card {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--sp-4);
  background: var(--light-bg);
  border: 1px solid var(--light-border);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  cursor: pointer;
  transition: all var(--ease-base);
}

#services-grid .service-card:hover {
  border-color: var(--gold-2);
  background: var(--light-bg-alt);
  box-shadow: var(--shadow-sm);
}

.service-icon {
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 146, 42, 0.08);
  border-radius: var(--r-md);
  flex-shrink: 0;
}

.service-info {
  min-width: 0;
}

.service-name {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--light-text);
  margin-bottom: var(--sp-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.service-duration {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  color: var(--light-dim);
}

.service-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   GALLERY — dark bg
   ───────────────────────────────────────── */
#gallery {
  background: var(--dark-bg);
}

#gallery .section-title,
#reviews .section-title,
#booking .section-title { color: var(--dark-text); }

#gallery .section-label,
#reviews .section-label,
#booking .section-label { color: var(--gold-2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

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

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
}

.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
  cursor: pointer;
  background: var(--dark-bg-card);
  transition: transform var(--ease-base), box-shadow var(--ease-base);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 21, 16, 0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--ease-base);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-label {
  font-size: var(--text-sm);
  color: var(--dark-text);
  font-weight: 500;
}

/* ─── Lightbox ─── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 16, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 800px);
  max-height: 90vh;
  padding: var(--sp-6);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-dark);
}

.lightbox-close {
  position: absolute;
  top: -var(--sp-8);
  right: var(--sp-4);
  top: -2.5rem;
  right: 0;
  font-size: 1.5rem;
  color: var(--dark-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  transition: color var(--ease-fast);
  line-height: 1;
}

.lightbox-close:hover { color: var(--dark-text); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--dark-muted);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  width: 48px; height: 48px;
  cursor: pointer;
  transition: all var(--ease-fast);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.lightbox-prev { left: -var(--sp-16); left: calc(-1 * var(--sp-16)); }
.lightbox-next { right: calc(-1 * var(--sp-16)); }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.12);
  color: var(--dark-text);
}

@media (max-width: 640px) {
  .lightbox-prev { left: var(--sp-2); }
  .lightbox-next { right: var(--sp-2); }
}

.lightbox-caption {
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--dark-muted);
  text-align: center;
}

/* ─────────────────────────────────────────
   REVIEWS — deep dark bg
   ───────────────────────────────────────── */
#reviews {
  background: var(--dark-bg-deep);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

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

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

.review-card {
  background: var(--dark-bg-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: relative;
  transition: box-shadow var(--ease-base);
}

.review-card:hover {
  box-shadow: var(--shadow-dark);
}

.review-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--gold-2);
  opacity: 0.3;
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-5);
  user-select: none;
}

.review-stars {
  color: var(--gold-1);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: var(--sp-3);
}

.review-text {
  font-size: var(--text-sm);
  color: var(--dark-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--gold-grad);
  color: var(--dark-bg-deep);
  font-weight: 700;
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-info strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark-text);
}

.review-info span {
  font-size: var(--text-xs);
  color: var(--dark-muted);
}

/* ─────────────────────────────────────────
   BOOKING WIZARD — dark bg
   ───────────────────────────────────────── */
#booking {
  background: var(--dark-bg);
}

.booking-wrapper {
  max-width: 640px;
  margin-inline: auto;
}

/* Progress bar */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--sp-10);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  border: 2px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark-muted);
  transition: all var(--ease-base);
  background: transparent;
}

.step-label {
  font-size: var(--text-xs);
  color: var(--dark-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--ease-base);
  white-space: nowrap;
}

.progress-step.active .step-circle {
  border-color: var(--gold-2);
  background: var(--gold-grad);
  color: var(--dark-bg-deep);
  box-shadow: var(--gold-glow);
}

.progress-step.active .step-label {
  color: var(--gold-1);
}

.progress-step.done .step-circle {
  border-color: var(--gold-2);
  background: rgba(200, 146, 42, 0.15);
  color: var(--gold-1);
}

.progress-step.done .step-circle::after {
  content: '✓';
}

.progress-step.done .step-circle span {
  display: none;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--dark-border);
  min-width: 32px;
  max-width: 60px;
  margin-top: -16px;
  transition: background var(--ease-base);
}

.progress-line.done {
  background: var(--gold-2);
}

/* Booking panels */
.booking-panel {
  display: none;
  animation: panelIn 0.3s ease;
}

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

@keyframes panelIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.panel-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: var(--sp-6);
}

/* Service selector items */
.bs-item {
  display: grid;
  grid-template-columns: 18px auto 1fr auto auto;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-md);
  cursor: pointer;
  margin-bottom: var(--sp-2);
  transition: all var(--ease-base);
}

.bs-item:hover {
  background: rgba(245, 212, 133, 0.05);
  border-color: rgba(200, 146, 42, 0.3);
}

.bs-item.selected {
  background: rgba(245, 212, 133, 0.08);
  border-color: var(--gold-2);
  box-shadow: 0 0 0 1px rgba(200, 146, 42, 0.2);
}

/* Checkbox indicator */
.bs-check {
  width: 18px;
  height: 18px;
  border: 2px solid var(--dark-border);
  border-radius: 4px;
  flex-shrink: 0;
  transition: all var(--ease-fast);
  position: relative;
}

.bs-item.selected .bs-check {
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.bs-item.selected .bs-check::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: 2px solid #0C2B1E;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* Panel hint */
.panel-hint {
  font-size: var(--text-sm);
  color: var(--gold-1);
  opacity: 0.8;
  margin: calc(var(--sp-2) * -1) 0 var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.panel-hint::before {
  content: '✦';
  font-size: 0.6em;
  flex-shrink: 0;
}

/* Services summary bar */
.bs-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-5);
  background: rgba(200, 146, 42, 0.08);
  border: 1px solid rgba(200, 146, 42, 0.3);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--dark-text);
}

.bs-sum-left {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--dark-muted);
  font-size: var(--text-sm);
}

.bs-sum-right {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.bs-sum-sep {
  color: var(--dark-border);
}

#bs-sum-original {
  font-size: var(--text-sm);
  color: var(--dark-muted);
  text-decoration: line-through;
}

#bs-sum-price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bs-sum-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: rgba(200, 146, 42, 0.18);
  border: 1px solid rgba(200, 146, 42, 0.35);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold-1);
  letter-spacing: 0.03em;
}

.bs-icon {
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 146, 42, 0.08);
  border-radius: var(--r-md);
  flex-shrink: 0;
}

.bs-name {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--dark-text);
}

.bs-dur {
  font-size: var(--text-xs);
  color: var(--dark-muted);
  background: rgba(255,255,255,0.05);
  padding: 3px 8px;
  border-radius: var(--r-full);
}

.bs-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* Calendar */
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
}

.cal-month {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--dark-text);
  letter-spacing: -0.01em;
}

.cal-nav {
  width: 40px;
  height: 40px;
  border: 1px solid var(--dark-border);
  border-radius: var(--r-full);
  background: none;
  color: var(--dark-muted);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-fast);
}

.cal-nav:hover {
  border-color: var(--gold-2);
  color: var(--gold-1);
  background: rgba(200, 146, 42, 0.08);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--sp-1);
}

.cal-day-name {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--dark-muted);
  padding-block: var(--sp-2);
  letter-spacing: 0.05em;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--dark-text);
  cursor: pointer;
  transition: all var(--ease-fast);
}

.cal-day:not(.disabled):not(.empty):hover {
  background: rgba(245, 212, 133, 0.08);
  color: var(--gold-1);
}

.cal-day.today {
  border: 1px solid rgba(200, 146, 42, 0.4);
  color: var(--gold-1);
}

.cal-day.selected {
  background: var(--gold-grad);
  color: var(--dark-bg-deep);
  font-weight: 700;
  box-shadow: var(--gold-glow);
}

.cal-day.disabled {
  color: rgba(255,255,255,0.15);
  cursor: default;
  pointer-events: none;
}

.cal-day.empty {
  pointer-events: none;
}

/* Slots */
.slots-loading {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-6);
  color: var(--dark-muted);
  font-size: var(--text-sm);
}

.slots-loading::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid var(--dark-border);
  border-top-color: var(--gold-2);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

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

/* Баннер длительности сеанса */
.slots-session-info {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-3) var(--sp-5);
  margin-bottom: var(--sp-5);
  background: rgba(200, 146, 42, 0.07);
  border: 1px solid rgba(200, 146, 42, 0.22);
  border-radius: var(--r-md);
}

.slots-session-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.slots-session-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.slots-session-dur {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.slots-session-label {
  font-size: var(--text-xs);
  color: var(--dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slots-legend {
  display: flex;
  gap: var(--sp-6);
  margin-bottom: var(--sp-4);
  font-size: var(--text-xs);
  color: var(--dark-muted);
}

.legend-free,
.legend-busy {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.free  { background: var(--gold-2); }
.legend-dot.busy  { background: rgba(255,255,255,0.2); }

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
}

@media (min-width: 480px) {
  .slots-grid { grid-template-columns: repeat(5, 1fr); }
}

.slot-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: var(--sp-2) var(--sp-1);
  border-radius: var(--r-md);
  color: var(--dark-text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  cursor: pointer;
  min-height: 58px;
  transition: all var(--ease-fast);
}

.slot-start {
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.2;
}

.slot-arrow {
  font-size: 0.6rem;
  color: var(--dark-muted);
  line-height: 1;
}

.slot-end {
  font-size: var(--text-xs);
  color: var(--dark-muted);
  font-weight: 500;
  line-height: 1.2;
}

.slot-btn.selected .slot-arrow,
.slot-btn.selected .slot-end {
  color: rgba(12, 43, 30, 0.65);
}

.slot-btn:not(.busy):hover .slot-end {
  color: var(--gold-2);
}

.slot-busy-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.2);
}

.slot-btn:not(.busy):hover {
  background: rgba(245, 212, 133, 0.08);
  border-color: var(--gold-2);
  color: var(--gold-1);
}

.slot-btn.selected {
  background: var(--gold-grad);
  border-color: var(--gold-2);
  color: var(--dark-bg-deep);
  box-shadow: var(--gold-glow);
}

.slot-btn.busy {
  background: transparent;
  border-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.2);
  cursor: not-allowed;
  pointer-events: none;
}

.slot-btn.busy svg {
  opacity: 0.4;
}

.slots-empty {
  color: var(--dark-muted);
  font-size: var(--text-sm);
  padding: var(--sp-6) 0;
  text-align: center;
}

/* Booking summary */
.booking-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  margin-bottom: var(--sp-6);
  display: grid;
  gap: var(--sp-2);
}

.booking-summary p {
  font-size: var(--text-sm);
  color: var(--dark-muted);
  margin: 0;
}

.booking-summary p strong {
  color: var(--dark-text);
}

.summary-services {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: var(--sp-1);
}

.summary-service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--dark-text);
}

.summary-service-row span:last-child {
  font-weight: 600;
  color: var(--gold-1);
}

.summary-total {
  font-size: var(--text-base) !important;
  color: var(--dark-text) !important;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--dark-border);
  margin-top: var(--sp-1) !important;
}

.summary-total strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.summary-orig-price {
  font-size: var(--text-sm);
  color: var(--dark-muted);
  text-decoration: line-through;
  margin-left: var(--sp-2);
}

.summary-discount-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) 0;
  font-size: var(--text-sm);
  color: var(--dark-muted);
}

.summary-discount-badge {
  display: inline-flex;
  padding: 1px 7px;
  background: rgba(200, 146, 42, 0.15);
  border: 1px solid rgba(200, 146, 42, 0.3);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold-1);
}

.summary-discount-amount {
  margin-left: auto;
  font-weight: 600;
  color: var(--gold-1);
}

/* Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--dark-muted);
  letter-spacing: 0.02em;
}

.form-label span {
  color: var(--gold-2);
}

.form-input {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--dark-text);
  outline: none;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-input:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.15);
}

.form-input.error {
  border-color: #E05252;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.12);
}

.form-error {
  font-size: var(--text-xs);
  color: #E05252;
  min-height: 16px;
}

/* ─── Booking submit button ─── */
#submit-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  width: 100%;
  padding: var(--sp-4) var(--sp-6);
  min-height: 52px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: var(--gold-grad);
  color: var(--dark-bg-deep);
  transition: opacity var(--ease-fast), transform var(--ease-fast);
}

#submit-btn:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
}

#submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.loader-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.loader-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--dark-bg-deep);
  animation: dotBounce 1.2s ease-in-out infinite;
}

.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40%           { transform: scale(1);   opacity: 1; }
}

/* Success panel */
#panel-success {
  text-align: center;
  padding-block: var(--sp-6);
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--r-full);
  background: var(--gold-grad);
  color: var(--dark-bg-deep);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  box-shadow: var(--gold-glow);
}

.success-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: var(--sp-3);
}

.success-sub {
  font-size: var(--text-sm);
  color: var(--dark-muted);
  margin-bottom: var(--sp-6);
}

.success-details {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  text-align: left;
  margin-bottom: var(--sp-6);
  display: grid;
  gap: var(--sp-2);
}

.success-details p {
  font-size: var(--text-sm);
  color: var(--dark-muted);
  margin: 0;
}

.success-details p strong {
  color: var(--dark-text);
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* Navigation buttons */
.booking-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--dark-border);
}

/* WhatsApp button */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  min-height: 44px;
  border-radius: var(--r-md);
  font-size: var(--text-base);
  font-weight: 600;
  background: #25D366;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: filter var(--ease-fast), transform var(--ease-fast);
  text-decoration: none;
}

.btn-wa:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn-full { width: 100%; }

/* Button aliases for old class names */
.btn-gold     { /* same as .btn--gold — handled via new html classes */ }
.btn-outline  { /* same as .btn--outline */ }

/* ─────────────────────────────────────────
   CONTACTS — light bg
   ───────────────────────────────────────── */
#contacts {
  background: var(--light-bg);
}

#contacts .section-title { color: var(--light-text); }
#contacts .section-label { color: var(--gold-3); }

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

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

.contact-item {
  background: var(--light-bg-alt);
  border: 1px solid var(--light-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}

.contact-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: var(--sp-3);
}

.contact-value {
  font-size: var(--text-base);
  color: var(--light-text);
  line-height: 1.7;
}

.contact-value a {
  color: var(--light-text);
  transition: color var(--ease-fast);
}

.contact-value a:hover {
  color: var(--gold-2);
}

.contact-value em {
  font-style: italic;
  color: var(--light-muted);
  font-size: var(--text-sm);
}

/* ─────────────────────────────────────────
   FOOTER (minimal)
   ───────────────────────────────────────── */
.footer-minimal {
  background: var(--light-bg-alt);
  border-top: 1px solid var(--light-border);
  padding-block: var(--sp-8);
  text-align: center;
}

.footer-platform-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--light-muted);
  margin-bottom: var(--sp-3);
  transition: color var(--ease-fast);
}

.footer-platform-link:hover {
  color: var(--light-text);
}

.footer-minimal p {
  font-size: var(--text-xs);
  color: var(--light-dim);
}

/* ─────────────────────────────────────────
   MOBILE TWEAKS
   ───────────────────────────────────────── */
@media (max-width: 479px) {
  .bs-item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .bs-dur   { grid-column: 2; }
  .bs-price { grid-column: 2; font-size: var(--text-lg); }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn--gold,
  .hero-actions .btn--outline {
    width: 100%;
    justify-content: center;
  }
}

/* ─────────────────────────────────────────
   REVIEW SERVICE TAG (inline in card)
   ───────────────────────────────────────── */
.review-service {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--gold-2);
  background: rgba(200, 146, 42, 0.1);
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: var(--r-full);
  padding: 1px var(--sp-3);
  margin-bottom: var(--sp-2);
}

/* ─────────────────────────────────────────
   REVIEW FORM
   ───────────────────────────────────────── */
.review-form-wrap {
  margin-top: var(--sp-16);
  max-width: 640px;
  margin-inline: auto;
}

.rf-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.rf-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: var(--sp-2);
}

.rf-sub {
  font-size: var(--text-sm);
  color: var(--dark-muted);
}

.rf-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

/* Stars */
.rf-stars {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
}

.rf-star {
  font-size: 2rem;
  color: var(--dark-border);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-1);
  line-height: 1;
  transition: color var(--ease-fast), transform var(--ease-fast);
  -webkit-tap-highlight-color: transparent;
}

.rf-star:hover,
.rf-star.hover,
.rf-star.active {
  color: var(--gold-1);
}

.rf-star.active {
  transform: scale(1.15);
}

.rf-stars-hint {
  display: block;
  text-align: center;
  font-size: var(--text-xs);
  color: var(--dark-muted);
  margin-top: calc(-1 * var(--sp-3));
  min-height: 1.4em;
  transition: color var(--ease-fast);
}

/* Fields */
.rf-fields {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.rf-input,
.rf-select,
.rf-textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-md);
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--dark-text);
  outline: none;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  -webkit-appearance: none;
}

.rf-input::placeholder,
.rf-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.rf-input:focus,
.rf-select:focus,
.rf-textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.15);
}

.rf-chips-label {
  font-size: var(--text-xs);
  color: var(--dark-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: calc(-1 * var(--sp-2));
}

.rf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.rf-chip {
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--dark-muted);
  cursor: pointer;
  transition: all var(--ease-fast);
  -webkit-tap-highlight-color: transparent;
}

.rf-chip:hover {
  border-color: var(--gold-2);
  color: var(--dark-text);
}

.rf-chip.active {
  background: rgba(200, 146, 42, 0.15);
  border-color: var(--gold-2);
  color: var(--gold-1);
}

.rf-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Error */
.rf-error {
  display: block;
  font-size: var(--text-xs);
  color: #E05252;
  min-height: 1.2em;
}

/* Submit */
.rf-submit {
  padding: var(--sp-4) var(--sp-6);
  background: var(--gold-grad);
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-bg-deep);
  cursor: pointer;
  transition: filter var(--ease-fast), transform var(--ease-fast), box-shadow var(--ease-fast);
}

.rf-submit:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: var(--gold-glow);
}

.rf-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success */
.rf-success {
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
}

.rf-success-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-full);
  background: var(--gold-grad);
  color: var(--dark-bg-deep);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  box-shadow: var(--gold-glow);
}

.rf-success-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: var(--sp-2);
}

.rf-success-sub {
  font-size: var(--text-sm);
  color: var(--dark-muted);
}
