/* ═══════════════════════════════════════
   Nails Lisa — luxury mobile landing
   ═══════════════════════════════════════ */
:root {
  --bg: #0c080b;
  --bg-elevated: #161018;
  --glass: rgba(255, 248, 252, 0.05);
  --glass-hover: rgba(255, 248, 252, 0.09);
  --border: rgba(255, 210, 230, 0.12);
  --border-glow: rgba(255, 170, 200, 0.4);
  --rose: #f2b8cc;
  --rose-deep: #c76b8a;
  --champagne: #ecd9be;
  --gold: #d4a574;
  --lavender: #c9b8e0;
  --text: #fff8fa;
  --muted: rgba(255, 248, 250, 0.52);
  --gradient: linear-gradient(135deg, #f2b8cc, #ecd9be 45%, #c9b8e0);
  --gradient-btn: linear-gradient(135deg, #e88aaa 0%, #d4a574 50%, #b89ad4 100%);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 22px;
  --radius-sm: 14px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --nav-h: 76px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
}

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

/* Lucide / iOS-style icons */
.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
  stroke-width: 2;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-lg {
  width: 34px;
  height: 34px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body), -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  padding-bottom: calc(var(--nav-h) + var(--safe-b) + 24px);
}

/* ── Rich layered background ── */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(180, 70, 110, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 15%, rgba(120, 70, 150, 0.18), transparent 50%),
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(180, 120, 70, 0.12), transparent 55%),
    linear-gradient(180deg, #120a10 0%, #0c080b 40%, #0e0a12 100%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 200, 220, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 200, 220, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 75%);
}

/* Aurora ribbons */
.bg-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.aurora {
  position: absolute;
  width: 140%;
  height: 45%;
  left: -20%;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.aurora.a1 {
  top: 5%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 100, 140, 0.35) 25%,
    rgba(200, 160, 220, 0.3) 50%,
    rgba(240, 180, 120, 0.25) 75%,
    transparent
  );
  animation: auroraWave 14s var(--ease) infinite;
}

.aurora.a2 {
  top: 35%;
  height: 35%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(140, 90, 180, 0.28) 30%,
    rgba(220, 140, 160, 0.22) 60%,
    transparent
  );
  animation: auroraWave 18s var(--ease) infinite reverse;
  animation-delay: -5s;
}

.aurora.a3 {
  bottom: 10%;
  top: auto;
  height: 40%;
  background: linear-gradient(
    80deg,
    transparent,
    rgba(180, 120, 90, 0.2) 40%,
    rgba(200, 100, 130, 0.25) 70%,
    transparent
  );
  animation: auroraWave 22s var(--ease) infinite;
  animation-delay: -9s;
}

@keyframes auroraWave {
  0%, 100% { transform: translateX(-8%) skewY(-3deg) scaleY(1); }
  50% { transform: translateX(8%) skewY(3deg) scaleY(1.08); }
}

/* Soft ambient orbs — slow drift, no harsh lines */
.bg-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  will-change: transform;
}

.orb-1 {
  width: min(55vw, 320px);
  height: min(55vw, 320px);
  top: -8%;
  right: -12%;
  background: radial-gradient(circle, rgba(200, 100, 140, 0.45) 0%, transparent 70%);
  animation: orbDrift1 28s var(--ease) infinite;
}

.orb-2 {
  width: min(70vw, 400px);
  height: min(70vw, 400px);
  bottom: 5%;
  left: -20%;
  background: radial-gradient(circle, rgba(120, 80, 160, 0.35) 0%, transparent 70%);
  animation: orbDrift2 34s var(--ease) infinite;
  animation-delay: -12s;
}

.orb-3 {
  width: min(45vw, 260px);
  height: min(45vw, 260px);
  top: 42%;
  left: 35%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.28) 0%, transparent 70%);
  animation: orbDrift3 26s var(--ease) infinite;
  animation-delay: -6s;
}

@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6%, 8%) scale(1.06); }
}

@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10%, -6%) scale(1.05); }
}

@keyframes orbDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.28; }
  50% { transform: translate(-5%, 5%) scale(1.08); opacity: 0.38; }
}

@media (prefers-reduced-motion: reduce) {
  .orb {
    animation: none;
  }
}

/* Floating sparkles */
.bg-particles {
  position: absolute;
  inset: 0;
}

.bg-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 220, 235, 0.7);
  box-shadow: 0 0 6px rgba(242, 184, 204, 0.8);
  animation: sparkle 6s var(--ease) infinite;
}

.bg-particles span:nth-child(1)  { left: 8%;  top: 18%; animation-delay: 0s;    animation-duration: 7s; }
.bg-particles span:nth-child(2)  { left: 22%; top: 42%; animation-delay: -1s;  width: 2px; height: 2px; }
.bg-particles span:nth-child(3)  { left: 78%; top: 12%; animation-delay: -2s;  animation-duration: 8s; }
.bg-particles span:nth-child(4)  { left: 88%; top: 55%; animation-delay: -3s;  }
.bg-particles span:nth-child(5)  { left: 55%; top: 28%; animation-delay: -0.5s; width: 4px; height: 4px; }
.bg-particles span:nth-child(6)  { left: 12%; top: 72%; animation-delay: -4s;  animation-duration: 9s; }
.bg-particles span:nth-child(7)  { left: 65%; top: 68%; animation-delay: -2.5s; }
.bg-particles span:nth-child(8)  { left: 38%; top: 8%;  animation-delay: -1.5s; width: 2px; height: 2px; }
.bg-particles span:nth-child(9)  { left: 92%; top: 82%; animation-delay: -5s;  }
.bg-particles span:nth-child(10) { left: 48%; top: 88%; animation-delay: -3.5s; animation-duration: 7.5s; }
.bg-particles span:nth-child(11) { left: 28%; top: 58%; animation-delay: -6s;  width: 2px; height: 2px; }
.bg-particles span:nth-child(12) { left: 72%; top: 38%; animation-delay: -4.5s; }

@keyframes sparkle {
  0%, 100% { opacity: 0.15; transform: translateY(0) scale(1); }
  50% { opacity: 0.9; transform: translateY(-18px) scale(1.3); }
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 40%, transparent 30%, rgba(5, 3, 6, 0.65) 100%);
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* ── Topbar ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(10, 7, 9, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.topbar-cta {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--gradient-btn);
  color: #1a0e14;
  text-decoration: none;
  letter-spacing: 0.02em;
}

/* ── Page ── */
.page {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Hero ── */
.hero {
  padding: 32px 0 48px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  background: var(--glass);
  backdrop-filter: blur(12px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 12vw, 4.2rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-line {
  display: block;
}

.hero-line.accent {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
  max-width: 320px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: #1a0e14;
  background: var(--gradient-btn);
  background-size: 200% 200%;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 40px rgba(232, 138, 170, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.btn-glow:active { transform: scale(0.98); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn-ghost:hover { background: var(--glass); border-color: var(--border-glow); }

.btn-full { width: 100%; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.stat {
  flex: 1;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--champagne);
  line-height: 1.2;
}

.stat span {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── Sections ── */
.section {
  padding: 48px 0;
  scroll-margin-top: 60px;
}

.section-head {
  margin-bottom: 24px;
}

.section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 2.75rem);
  font-weight: 500;
  line-height: 1.1;
}

.section-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ── Pricelist ── */
.pricelist-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 10px;
  max-width: 420px;
}

.pricelist {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price-category {
  background: linear-gradient(165deg, rgba(255, 248, 252, 0.07) 0%, rgba(255, 248, 252, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.price-category--manicure {
  border-color: rgba(242, 184, 204, 0.28);
  box-shadow: 0 12px 40px rgba(180, 80, 120, 0.12);
}

.price-category--pedicure {
  border-color: rgba(212, 165, 116, 0.28);
  box-shadow: 0 12px 40px rgba(160, 110, 60, 0.1);
}

.price-category--extra {
  border-color: rgba(201, 184, 224, 0.28);
  box-shadow: 0 12px 40px rgba(120, 90, 160, 0.1);
}

.price-category-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.price-category-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4.5vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px 12px;
}

.price-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
  row-gap: 8px;
  padding: 14px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.price-card:hover {
  background: rgba(255, 248, 252, 0.06);
}

.price-card-main {
  min-width: 0;
  grid-column: 1;
}

.price-name {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.price-leader {
  display: none;
}

.price-badge {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(236, 217, 190, 0.22), rgba(242, 184, 204, 0.18));
  border: 1px solid rgba(236, 217, 190, 0.35);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4.5vw, 1.6rem);
  font-weight: 600;
  line-height: 1;
  color: #fff5e8;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 12px rgba(212, 165, 116, 0.45);
}

.price-currency {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--champagne);
  opacity: 0.95;
}

/* ── Service picker (booking) ── */
.field-service .service-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.service-picker {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: min(52vh, 380px);
  overflow-y: auto;
  padding: 4px 2px 8px;
  margin: 0 -2px;
  scrollbar-width: thin;
  scrollbar-color: var(--rose-deep) transparent;
}

.service-picker-empty {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 12px 0;
}

.service-group-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-group-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s var(--ease-spring);
}

.service-card:hover {
  border-color: rgba(242, 184, 204, 0.35);
  background: rgba(255, 248, 252, 0.06);
}

.service-card.selected {
  border-color: var(--rose);
  background: linear-gradient(135deg, rgba(242, 184, 204, 0.18), rgba(212, 165, 116, 0.1));
  box-shadow: 0 0 0 3px rgba(240, 180, 200, 0.12);
}

.service-card-name {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  min-width: 0;
  overflow-wrap: break-word;
}

.service-card-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--champagne);
  white-space: nowrap;
  justify-self: end;
}

.service-card-price small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.85;
}

@media (max-width: 380px) {
  .price-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .price-badge {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }
}

/* ── Gallery (works) — editorial slider ── */
.section-works .section-head {
  margin-bottom: 16px;
}

.gallery-wrap {
  margin: 0 -20px;
}

.gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 calc((100% - min(86vw, 340px)) / 2) 8px;
  scrollbar-width: none;
  touch-action: pan-x;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 min(86vw, 340px);
  scroll-snap-align: center;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 210, 230, 0.1);
}

.gallery-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  vertical-align: middle;
}

.gallery-ui {
  margin-top: 22px;
  padding: 0 20px;
  transition: opacity 0.35s var(--ease);
}

.gallery-ui.hidden {
  display: none;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5vw, 1.65rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
  min-height: 2.5rem;
  margin-bottom: 14px;
  transition: opacity 0.25s var(--ease);
}

.gallery-title.is-fading {
  opacity: 0.35;
}

.gallery-ui-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gallery-num {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  min-width: 1.6rem;
}

.gallery-num-total {
  text-align: right;
}

.gallery-progress {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 248, 252, 0.1);
  overflow: hidden;
}

.gallery-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--gradient-btn);
  transition: width 0.4s var(--ease);
}

.gallery-skeleton {
  flex: 0 0 min(86vw, 340px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: rgba(255, 248, 252, 0.05);
  animation: shimmer 1.4s infinite;
}

/* ── Reviews ── */
.reviews-wrap { position: relative; }

.reviews-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 calc(100% - 8px);
  scroll-snap-align: center;
  padding: 28px 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--rose);
  opacity: 0.12;
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 248, 250, 0.88);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-author strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.review-author span {
  font-size: 0.75rem;
  color: var(--muted);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.review-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--gradient-btn);
}

/* ── Contact ── */
.contact-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px);
}

.map-embed-wrap {
  position: relative;
  width: 100%;
  height: min(52vw, 260px);
  min-height: 200px;
  background: #0e0a0c;
}

.map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.telegram-channel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6eb6ff;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  background: rgba(110, 182, 255, 0.06);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.telegram-channel-link:active {
  background: rgba(110, 182, 255, 0.12);
}

.telegram-channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.telegram-channel-icon .icon {
  width: 20px;
  height: 20px;
  color: #6eb6ff;
}

.map-open-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rose);
  text-decoration: none;
  border-bottom: none;
  transition: background 0.25s var(--ease);
}

.contact-card:has(.contact-meta:not(:empty)) .map-open-link {
  border-bottom: 1px solid var(--border);
}

.map-open-link:active {
  background: var(--glass);
}

.map-open-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-open-icon .icon {
  width: 17px;
  height: 17px;
}

.contact-muted {
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-meta {
  display: flex;
  flex-direction: column;
}

.contact-meta.hidden {
  display: none;
}

.contact-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}

.contact-meta-row .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--rose);
  opacity: 0.85;
}

.contact-meta-row:active {
  background: var(--glass);
}

a.contact-meta-row:hover {
  color: var(--rose);
}

/* ── Booking card ── */
.booking-section { scroll-margin-top: 80px; }

.booking-card {
  padding: 24px 20px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.booking-card--off {
  padding-top: 20px;
}

.booking-off-note {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
  margin-bottom: 18px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.booking-tg-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.booking-tg-icon .icon {
  width: 20px;
  height: 20px;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 0 20px;
}

.step-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-dot.active {
  width: 11px;
  height: 11px;
  background: var(--gradient-btn);
  box-shadow: 0 0 16px rgba(240, 180, 200, 0.5);
}

.step-dot.done { background: var(--champagne); opacity: 0.6; }

.step-line {
  flex: 1;
  max-width: 50px;
  height: 2px;
  margin: 0 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  transition: background 0.3s;
}

.step-line.filled {
  background: linear-gradient(90deg, var(--rose), var(--gold));
}

.panel { display: none; animation: fadeUp 0.4s ease; }
.panel.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.panel-sub {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--rose);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0 0 12px;
  margin-top: -4px;
}

.back-btn .icon {
  width: 18px;
  height: 18px;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.date-card {
  padding: 16px 8px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  color: var(--text);
  transition: all 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.date-card:active { transform: scale(0.96); }

.date-card.selected,
.date-card:hover {
  border-color: var(--border-glow);
  background: rgba(240, 180, 200, 0.1);
  box-shadow: 0 0 24px rgba(240, 180, 200, 0.15);
}

.date-card .weekday {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose);
  margin-bottom: 4px;
}

.date-card .day {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}

.date-card .month {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 4px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.slot-btn {
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.slot-btn:disabled {
  opacity: 0.3;
  text-decoration: line-through;
  cursor: not-allowed;
}

.slot-btn.selected {
  border-color: var(--rose);
  background: rgba(240, 180, 200, 0.15);
}

.booking-form { display: flex; flex-direction: column; gap: 14px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field span { font-size: 0.8rem; color: var(--muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(240, 180, 200, 0.12);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f0b4c8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.success-block {
  text-align: center;
  padding: 24px 8px;
}

.success-ring {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0e14;
  animation: pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-ring .icon {
  width: 28px;
  height: 28px;
}

@keyframes pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.success-block h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.success-block p { color: var(--muted); line-height: 1.7; }

.btn-loader {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0,0,0,0.15);
  border-top-color: #1a0e14;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.empty-msg {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 20px 8px;
  line-height: 1.6;
}

.skeleton-loader {
  grid-column: 1 / -1;
  height: 80px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, var(--glass) 25%, rgba(255,255,255,0.06) 50%, var(--glass) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hidden { display: none !important; }

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 28px 20px 12px;
  position: relative;
  z-index: 1;
}

.footer-address {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .footer-address {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
  }
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── Bottom nav (flat dock, no bubble) ── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 16px calc(12px + var(--safe-b));
  pointer-events: none;
}

.nav-dock {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 480px;
  margin: 0 auto;
  padding: 6px 8px;
  background: rgba(14, 10, 14, 0.88);
  backdrop-filter: blur(28px) saturate(1.6);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  min-width: 0;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 500;
  border-radius: 14px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.nav-item .icon {
  width: 23px;
  height: 23px;
  transition: transform 0.3s var(--ease-spring), opacity 0.3s;
}

.nav-item:not(.active) .icon {
  opacity: 0.55;
}

.nav-item.active {
  color: var(--rose);
  background: rgba(242, 184, 204, 0.08);
}

.nav-item.active .icon {
  transform: scale(1.06);
  opacity: 1;
}

.nav-item.nav-book.active {
  color: var(--champagne);
  background: rgba(212, 165, 116, 0.1);
}

.nav-item:active {
  opacity: 0.75;
}

/* ── Toast (скрыт, пока нет текста) ── */
.toast {
  position: fixed;
  bottom: calc(var(--nav-h) + 16px + var(--safe-b));
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  max-width: calc(100% - 40px);
  padding: 14px 22px;
  background: rgba(20, 14, 18, 0.95);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.88rem;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.toast[hidden] {
  display: none !important;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast.error {
  border-color: rgba(255, 100, 120, 0.45);
  background: rgba(28, 12, 16, 0.96);
}

/* ── Desktop ── */
@media (min-width: 768px) {
  .page { max-width: 560px; }
  .hero-actions { flex-direction: row; justify-content: center; }
  .gallery-slide { flex: 0 0 min(82vw, 300px); }
  .review-card { flex: 0 0 100%; }
  .nav-dock { max-width: 420px; }
}

html.site-protected body {
  -webkit-user-select: none;
  user-select: none;
}

html.site-protected input,
html.site-protected textarea,
html.site-protected select,
html.site-protected button,
html.site-protected a,
html.site-protected .date-card,
html.site-protected .slot-btn,
html.site-protected .service-card {
  -webkit-user-select: text;
  user-select: text;
}
