/* ── Theme: Ayala (taller de chapa y pintura — navy/naranja) ── */
:root {
  --bg: #061018;
  --bg-soft: rgba(13, 24, 35, 0.72);
  --bg-card: rgba(8, 18, 26, 0.58);
  --gold: #e8600a;
  --gold-light: #fbbf24;
  --emerald: #0c3d5e;
  --emerald-light: #38bdf8;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --line: rgba(232, 96, 10, 0.22);
  --line-strong: rgba(232, 96, 10, 0.46);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --gold-glow: 0 18px 54px rgba(232, 96, 10, 0.26);
  --emerald-glow: 0 18px 54px rgba(56, 189, 248, 0.3);
  --radius: 22px;
  --container: min(1180px, calc(100% - 36px));
  --grad-a: rgba(232, 96, 10, 0.2);
  --grad-b: rgba(56, 189, 248, 0.15);
}

/* ── Theme: Aurora (light pearl-rose) ───────────────────────── */
html[data-theme="aurora"] {
  --bg: #f4f6f8;
  --bg-soft: rgba(244,246,248,0.92);
  --bg-card: rgba(255,255,255,0.98);
  --gold: #e8600a;
  --gold-light: #fbbf24;
  --emerald: #0c3d5e;
  --emerald-light: #38bdf8;
  --text: #14181d;
  --muted: #5b6472;
  --line: rgba(232,96,10,0.16);
  --line-strong: rgba(232,96,10,0.42);
  --shadow: 0 12px 48px rgba(232,96,10,0.13);
  --gold-glow: 0 12px 40px rgba(232,96,10,0.22);
  --emerald-glow: 0 12px 36px rgba(12,61,94,0.18);
  --grad-a: rgba(156,163,175,0.09);
  --grad-b: rgba(100,116,139,0.05);
}
/* Aurora – body background: photo with pink tint overlay */
html[data-theme="aurora"] body.landing-body::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(156,163,175,0.18), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(100,116,139,0.12), transparent 32%),
    linear-gradient(180deg, rgba(244,246,248,0.93) 0%, rgba(230,234,238,0.95) 46%, rgba(244,246,248,0.93) 100%),
    var(--page-image);
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center;
  animation: none;
  transform: none;
}
html[data-theme="aurora"] body.landing-body::after {
  background: linear-gradient(120deg, transparent 0%, rgba(156,163,175,0.05) 42%, transparent 58%);
  opacity: 0.5;
  animation: none;
}
/* Aurora – hero: light metallic overlay (photo barely shows through) */
html[data-theme="aurora"] .lux-hero::before {
  background:
    linear-gradient(90deg, rgba(244,246,248,0.95) 0%, rgba(244,246,248,0.85) 46%, rgba(244,246,248,0.50) 100%),
    radial-gradient(circle at 20% 52%, rgba(156,163,175,0.18), transparent 28%);
}
html[data-theme="aurora"] .lux-hero::after {
  background: linear-gradient(180deg, transparent, rgba(244,246,248,0.94));
}
/* Aurora – hero text: dark on light photo */
html[data-theme="aurora"] .lux-hero h1 {
  color: #14181d;
  text-shadow: none;
}
html[data-theme="aurora"] .lux-hero__copy {
  color: #14181d;
  text-shadow: none;
}
/* Aurora – article cards: white glass so dark --text is readable */
html[data-theme="aurora"] .article-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(244,246,248,0.90));
  backdrop-filter: blur(18px) saturate(110%);
}
/* Aurora – text blocks: frosted glass on photo */
html[data-theme="aurora"] .lux-section-head,
html[data-theme="aurora"] .contact-copy {
  background: rgba(244,246,248,0.78);
  backdrop-filter: blur(10px) saturate(120%);
  border-radius: 20px;
  padding: 28px 32px;
}
html[data-theme="aurora"] .lux-page-header { background: rgba(244,246,248,0.72); }
/* Aurora – nav pill */
html[data-theme="aurora"] .lux-nav {
  border-color: rgba(232,96,10,0.20);
  background: linear-gradient(135deg, rgba(244,246,248,0.90), rgba(255,255,255,0.78));
  box-shadow: 0 12px 40px rgba(232,96,10,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}
html[data-theme="aurora"] .lux-nav__links a:not(.btn-lux) {
  color: rgba(26,11,17,0.78);
}
html[data-theme="aurora"] .lux-nav__links a:not(.btn-lux):hover {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(232,96,10,0.28);
}
html[data-theme="aurora"] .lux-nav__links {
  background: rgba(244,246,248,0.96);
  border-color: var(--line);
}
html[data-theme="aurora"] .lux-menu-toggle {
  background: rgba(244,246,248,0.88);
  border-color: var(--line);
  color: var(--text);
}
html[data-theme="aurora"] .lux-menu-toggle span { background: var(--gold); }
/* Aurora – article/advice body: light background so dark text is readable over photo */
html[data-theme="aurora"] .article-layout,
html[data-theme="aurora"] .advice-layout { background: rgba(244,246,248,0.90); }
html[data-theme="aurora"] .article-body { background: rgba(255,255,255,0.92); border-radius: 18px; }
html[data-theme="aurora"] .mini-card { background: rgba(255,255,255,0.92); }
/* Aurora – buttons */
html[data-theme="aurora"] .btn-lux-primary {
  color: #fff;
  background: linear-gradient(135deg, #f7dda1, var(--gold) 52%, #0c3d5e);
}
html[data-theme="aurora"] .btn-lux-primary:hover { box-shadow: 0 20px 56px rgba(232,96,10,0.40); }
html[data-theme="aurora"] .btn-lux-emerald {
  color: #fff;
  background: linear-gradient(135deg, #0e654a, var(--emerald));
  border-color: rgba(232,96,10,0.28);
}
html[data-theme="aurora"] .btn-lux-outline {
  color: var(--gold);
  background: rgba(244,246,248,0.40);
  border-color: rgba(232,96,10,0.52);
}
html[data-theme="aurora"] .btn-lux-outline:hover { background: rgba(232,96,10,0.08); }
html[data-theme="aurora"] .btn-lux-ghost {
  color: var(--gold);
  background: rgba(232,96,10,0.07);
  border-color: rgba(232,96,10,0.20);
}
/* Aurora – cards (white glass) */
html[data-theme="aurora"] .trust-grid article,
html[data-theme="aurora"] .service-card,
html[data-theme="aurora"] .price-band,
html[data-theme="aurora"] .cta-card,
html[data-theme="aurora"] .account-grid,
html[data-theme="aurora"] .contact-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(244,246,248,0.92));
  backdrop-filter: blur(18px) saturate(110%);
}
html[data-theme="aurora"] .cta-card {
  background:
    radial-gradient(circle at top right, rgba(156,163,175,0.14), transparent 36%),
    linear-gradient(135deg, rgba(148,163,184,0.20), rgba(244,246,248,0.95));
}
html[data-theme="aurora"] .service-card:hover {
  border-color: rgba(232,96,10,0.56);
  box-shadow: 0 22px 68px rgba(232,96,10,0.18), var(--gold-glow);
}
html[data-theme="aurora"] .gallery-cards img:hover {
  box-shadow: 0 22px 68px rgba(232,96,10,0.22), var(--gold-glow);
}
html[data-theme="aurora"] .lux-gallery {
  background: linear-gradient(180deg, transparent, rgba(148,163,184,0.15), transparent);
}
html[data-theme="aurora"] .lux-section::before {
  background: linear-gradient(90deg, transparent, rgba(232,96,10,0.24), transparent);
}
html[data-theme="aurora"] .contact-map-frame {
  background: rgba(244,246,248,0.90);
  border-color: rgba(232,96,10,0.22);
}
/* Aurora – page-header (inner pages) */
html[data-theme="aurora"] .lux-page-header::before {
  background:
    linear-gradient(90deg, rgba(244,246,248,0.90), rgba(244,246,248,0.64)),
    radial-gradient(circle at 18% 58%, rgba(156,163,175,0.12), transparent 30%);
}
html[data-theme="aurora"] .content-hero h1 {
  text-shadow: 0 4px 18px rgba(232,96,10,0.16);
}
html[data-theme="aurora"] .content-hero p { color: rgba(26,11,17,0.78); }
/* Aurora – footer: keep dark for contrast */
html[data-theme="aurora"] .footer-contact-chip {
  border-color: rgba(232,96,10,0.24);
  background: rgba(232,96,10,0.06);
}
html[data-theme="aurora"] .footer-contact-chip:hover {
  border-color: rgba(232,96,10,0.60);
  background: rgba(232,96,10,0.14);
}
/* Aurora – payment card */
html[data-theme="aurora"] .payment-result-card {
  background:
    radial-gradient(circle at top right, rgba(156,163,175,0.16), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(244,246,248,0.90));
  border-color: rgba(232,96,10,0.28);
  box-shadow: 0 24px 72px rgba(232,96,10,0.16), 0 12px 36px rgba(232,96,10,0.10);
}
html[data-theme="aurora"] .payment-summary {
  background: rgba(244,246,248,0.80);
  border-color: rgba(232,96,10,0.22);
}


/* ── Theme: Bosque (light milky-sage) ───────────────────────── */
html[data-theme="bosque"] {
  --bg: #f1f6f3;
  --bg-soft: rgba(241,246,243,0.92);
  --bg-card: rgba(250,254,251,0.98);
  --gold: #3d8855;
  --gold-light: #58a86e;
  --emerald: #1a4e2c;
  --emerald-light: #4caf6a;
  --text: #0e1c12;
  --muted: #4a6e55;
  --line: rgba(61,136,85,0.16);
  --line-strong: rgba(61,136,85,0.42);
  --shadow: 0 12px 48px rgba(61,136,85,0.13);
  --gold-glow: 0 12px 40px rgba(61,136,85,0.22);
  --emerald-glow: 0 12px 36px rgba(26,78,44,0.18);
  --grad-a: rgba(125,186,138,0.09);
  --grad-b: rgba(76,175,106,0.05);
}
/* Bosque – body background: photo with green tint overlay */
html[data-theme="bosque"] body.landing-body::before {
  background:
    radial-gradient(circle at 14% 16%, rgba(125,186,138,0.22), transparent 30%),
    radial-gradient(circle at 88% 74%, rgba(76,175,106,0.14), transparent 32%),
    linear-gradient(180deg, rgba(4,10,6,0.68) 0%, rgba(8,18,10,0.74) 46%, rgba(4,10,6,0.80) 100%),
    var(--page-image);
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center;
  animation: pageDrift 24s ease-in-out infinite alternate;
  transform: scale(1.04);
}
html[data-theme="bosque"] body.landing-body::after {
  background: linear-gradient(120deg, transparent 0%, rgba(125,186,138,0.05) 42%, transparent 58%);
  opacity: 0.5;
  animation: none;
}
/* Bosque – hero: dark overlay with green tint (photo shows through) */
html[data-theme="bosque"] .lux-hero::before {
  background:
    linear-gradient(90deg, rgba(2,8,4,0.88) 0%, rgba(5,14,7,0.68) 46%, rgba(2,8,4,0.36) 100%),
    radial-gradient(circle at 20% 52%, rgba(125,186,138,0.22), transparent 28%);
}
html[data-theme="bosque"] .lux-hero::after {
  background: linear-gradient(180deg, transparent, rgba(2,8,4,0.90));
}
/* Bosque – text blocks: frosted glass on photo */
html[data-theme="bosque"] .lux-section-head,
html[data-theme="bosque"] .contact-copy {
  background: rgba(241,246,243,0.78);
  backdrop-filter: blur(10px) saturate(120%);
  border-radius: 20px;
  padding: 28px 32px;
}
html[data-theme="bosque"] .lux-page-header { background: rgba(241,246,243,0.72); }
/* Bosque – nav pill */
html[data-theme="bosque"] .lux-nav {
  border-color: rgba(61,136,85,0.20);
  background: linear-gradient(135deg, rgba(241,246,243,0.90), rgba(250,254,251,0.78));
  box-shadow: 0 12px 40px rgba(61,136,85,0.12);
}
html[data-theme="bosque"] .lux-nav__links a:not(.btn-lux) { color: rgba(14,28,18,0.78); }
html[data-theme="bosque"] .lux-nav__links a:not(.btn-lux):hover {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(61,136,85,0.28);
}
html[data-theme="bosque"] .lux-nav__links {
  background: rgba(241,246,243,0.96);
  border-color: var(--line);
}
html[data-theme="bosque"] .lux-menu-toggle {
  background: rgba(241,246,243,0.88);
  border-color: var(--line);
  color: var(--text);
}
html[data-theme="bosque"] .lux-menu-toggle span { background: var(--gold); }
/* Bosque – hero text: light on dark photo */
html[data-theme="bosque"] .lux-hero h1 {
  color: #e8f5ea;
  text-shadow: 0 4px 22px rgba(125,186,138,0.32), 0 0 12px rgba(125,186,138,0.16);
}
html[data-theme="bosque"] .lux-hero__copy {
  color: #e8f5ea;
  text-shadow: 0 2px 16px rgba(2,14,6,0.70);
}
/* Bosque – article cards */
html[data-theme="bosque"] .article-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(241,246,243,0.90));
  backdrop-filter: blur(18px) saturate(110%);
}
/* Bosque – buttons */
html[data-theme="bosque"] .btn-lux-primary {
  color: #fff;
  background: linear-gradient(135deg, #80c490, var(--gold) 52%, #1a4e2c);
}
html[data-theme="bosque"] .btn-lux-primary:hover { box-shadow: 0 20px 56px rgba(61,136,85,0.38); }
html[data-theme="bosque"] .btn-lux-emerald {
  color: #fff;
  background: linear-gradient(135deg, #4aad65, var(--emerald));
  border-color: rgba(61,136,85,0.28);
}
html[data-theme="bosque"] .btn-lux-outline {
  color: var(--gold);
  background: rgba(241,246,243,0.40);
  border-color: rgba(61,136,85,0.52);
}
html[data-theme="bosque"] .btn-lux-outline:hover { background: rgba(61,136,85,0.08); }
html[data-theme="bosque"] .btn-lux-ghost {
  color: var(--gold);
  background: rgba(61,136,85,0.07);
  border-color: rgba(61,136,85,0.20);
}
/* Bosque – cards */
html[data-theme="bosque"] .trust-grid article,
html[data-theme="bosque"] .service-card,
html[data-theme="bosque"] .price-band,
html[data-theme="bosque"] .cta-card,
html[data-theme="bosque"] .account-grid,
html[data-theme="bosque"] .contact-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(241,246,243,0.92));
  backdrop-filter: blur(18px) saturate(110%);
}
html[data-theme="bosque"] .cta-card {
  background:
    radial-gradient(circle at top right, rgba(125,186,138,0.14), transparent 36%),
    linear-gradient(135deg, rgba(140,200,155,0.20), rgba(241,246,243,0.95));
}
html[data-theme="bosque"] .service-card:hover {
  border-color: rgba(61,136,85,0.56);
  box-shadow: 0 22px 68px rgba(61,136,85,0.18), var(--gold-glow);
}
html[data-theme="bosque"] .gallery-cards img:hover {
  box-shadow: 0 22px 68px rgba(61,136,85,0.22), var(--gold-glow);
}
html[data-theme="bosque"] .lux-gallery {
  background: linear-gradient(180deg, transparent, rgba(200,226,208,0.20), transparent);
}
html[data-theme="bosque"] .lux-section::before {
  background: linear-gradient(90deg, transparent, rgba(61,136,85,0.24), transparent);
}
html[data-theme="bosque"] .contact-map-frame {
  background: rgba(241,246,243,0.90);
  border-color: rgba(61,136,85,0.22);
}
/* Bosque – page-header (inner pages) */
html[data-theme="bosque"] .lux-page-header::before {
  background:
    linear-gradient(90deg, rgba(241,246,243,0.90), rgba(241,246,243,0.64)),
    radial-gradient(circle at 18% 58%, rgba(125,186,138,0.12), transparent 30%);
}
html[data-theme="bosque"] .content-hero h1 {
  text-shadow: 0 4px 18px rgba(61,136,85,0.16);
}
html[data-theme="bosque"] .content-hero p { color: rgba(14,28,18,0.78); }
/* Bosque – article/advice body: light background so dark text is readable over photo */
html[data-theme="bosque"] .article-layout,
html[data-theme="bosque"] .advice-layout { background: rgba(241,246,243,0.90); }
html[data-theme="bosque"] .article-body { background: rgba(255,255,255,0.92); border-radius: 18px; }
html[data-theme="bosque"] .mini-card { background: rgba(255,255,255,0.92); }
/* Bosque – footer chips */
html[data-theme="bosque"] .footer-contact-chip {
  border-color: rgba(61,136,85,0.24);
  background: rgba(61,136,85,0.06);
}
html[data-theme="bosque"] .footer-contact-chip:hover {
  border-color: rgba(61,136,85,0.60);
  background: rgba(61,136,85,0.14);
}
/* Bosque – payment card */
html[data-theme="bosque"] .payment-result-card {
  background:
    radial-gradient(circle at top right, rgba(125,186,138,0.16), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(241,246,243,0.90));
  border-color: rgba(61,136,85,0.28);
  box-shadow: 0 24px 72px rgba(61,136,85,0.16), 0 12px 36px rgba(61,136,85,0.10);
}
html[data-theme="bosque"] .payment-summary {
  background: rgba(241,246,243,0.80);
  border-color: rgba(61,136,85,0.22);
}

/* ── Light themes: booking form overrides ─────────────────── */
html[data-theme="aurora"] .public-booking-card,
html[data-theme="bosque"] .public-booking-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.80), var(--bg-card));
  border-color: var(--line-strong);
}
html[data-theme="aurora"] .lux-input,
html[data-theme="bosque"] .lux-input {
  background: rgba(255,255,255,0.92) !important;
  color: var(--text) !important;
  border-color: var(--line-strong);
  color-scheme: light;
}
html[data-theme="aurora"] .lux-input:focus,
html[data-theme="bosque"] .lux-input:focus {
  background: rgba(255,255,255,1) !important;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 18%, transparent);
}
html[data-theme="aurora"] select.lux-input,
html[data-theme="bosque"] select.lux-input {
  background-color: rgba(255,255,255,0.92) !important;
}
html[data-theme="aurora"] .lux-input option,
html[data-theme="bosque"] .lux-input option {
  background: #fff;
  color: #111;
}
html[data-theme="aurora"] input[type="date"].lux-input::-webkit-calendar-picker-indicator,
html[data-theme="bosque"] input[type="date"].lux-input::-webkit-calendar-picker-indicator {
  filter: none;
  opacity: 0.55;
}
html[data-theme="aurora"] .lux-field,
html[data-theme="bosque"] .lux-field {
  color: var(--text);
}
html[data-theme="aurora"] .lux-field small,
html[data-theme="bosque"] .lux-field small,
html[data-theme="aurora"] .form-error,
html[data-theme="bosque"] .form-error {
  color: #b03020;
}
html[data-theme="aurora"] .field-help,
html[data-theme="bosque"] .field-help {
  color: var(--muted) !important;
}
html[data-theme="aurora"] .booking-service-catalog,
html[data-theme="bosque"] .booking-service-catalog {
  background: linear-gradient(145deg, rgba(255,255,255,0.60), var(--bg-card));
  border-color: var(--line);
}
html[data-theme="aurora"] .booking-service-card,
html[data-theme="bosque"] .booking-service-card {
  background: rgba(255,255,255,0.78);
  border-color: var(--line);
}
html[data-theme="aurora"] .booking-service-card:hover,
html[data-theme="aurora"] .booking-service-card.is-selected,
html[data-theme="bosque"] .booking-service-card:hover,
html[data-theme="bosque"] .booking-service-card.is-selected {
  background: rgba(255,255,255,0.96);
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07), var(--gold-glow);
}
html[data-theme="aurora"] .service-filter-pill,
html[data-theme="bosque"] .service-filter-pill {
  background: rgba(255,255,255,0.72);
  border-color: var(--line-strong);
  color: var(--text);
}
html[data-theme="aurora"] .date-pill,
html[data-theme="bosque"] .date-pill {
  background: rgba(255,255,255,0.72);
  border-color: var(--line);
}
html[data-theme="aurora"] .date-pill:hover,
html[data-theme="aurora"] .date-pill.is-active,
html[data-theme="bosque"] .date-pill:hover,
html[data-theme="bosque"] .date-pill.is-active {
  background: rgba(255,255,255,0.98);
  border-color: var(--gold);
}
html[data-theme="aurora"] .slot-picker,
html[data-theme="bosque"] .slot-picker {
  background: linear-gradient(145deg, rgba(255,255,255,0.60), var(--bg-card));
  border-color: var(--line);
}
html[data-theme="aurora"] .master-slot-card,
html[data-theme="bosque"] .master-slot-card {
  background: rgba(255,255,255,0.78);
  border-color: var(--line);
}
html[data-theme="aurora"] .slot-time-button,
html[data-theme="bosque"] .slot-time-button {
  background: rgba(255,255,255,0.72);
  border-color: var(--line-strong);
  color: var(--text);
}
html[data-theme="aurora"] .selected-slot-summary,
html[data-theme="bosque"] .selected-slot-summary {
  background: linear-gradient(145deg, rgba(255,255,255,0.80), var(--bg-card));
  border-color: var(--line-strong);
}
html[data-theme="aurora"] .lux-field-card,
html[data-theme="bosque"] .lux-field-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.80), var(--bg-card));
  border-color: var(--line);
}
html[data-theme="aurora"] .booking-alert,
html[data-theme="bosque"] .booking-alert {
  background: rgba(180, 40, 20, 0.09);
  border-color: rgba(180, 40, 20, 0.28);
  color: #9c2010;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.landing-body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background-color: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}
body.landing-body::before,
body.landing-body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}
body.landing-body::before {
  z-index: 0;
  background:
    radial-gradient(circle at 16% 14%, rgba(240, 208, 145, 0.24), transparent 26%),
    radial-gradient(circle at 82% 34%, rgba(25, 168, 118, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(2, 6, 10, 0.82) 0%, rgba(6, 16, 24, 0.88) 42%, rgba(2, 6, 10, 0.94) 100%),
    var(--page-image);
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: pageDrift 24s ease-in-out infinite alternate;
}
body.landing-body::after {
  z-index: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(240, 208, 145, 0.08) 42%, transparent 58%);
  opacity: 0.28;
  transform: translateX(-18%);
  animation: veilSweep 11s ease-in-out infinite alternate;
}
body.landing-body > header,
body.landing-body > main,
body.landing-body > footer {
  position: relative;
  z-index: 1;
}
body.landing-body .page-glow {
  display: none;
}
a { color: inherit; }
img { max-width: 100%; }
.lux-container { width: var(--container); margin: 0 auto; }

.lux-hero {
  min-height: 90vh;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  isolation: isolate;
}
.lux-hero::before,
.lux-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.lux-hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 13, 0.92) 0%, rgba(4, 10, 15, 0.72) 46%, rgba(6, 16, 24, 0.42) 100%),
    radial-gradient(circle at 20% 54%, rgba(214, 167, 92, 0.2), transparent 28%);
  z-index: 0;
}
.lux-hero::after {
  left: -12%;
  right: -12%;
  bottom: -1px;
  height: 230px;
  background: linear-gradient(180deg, transparent, rgba(6, 16, 24, 0.94));
  z-index: 0;
}
.lux-nav {
  width: var(--container);
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 5;
  border: 1px solid rgba(240, 208, 145, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(7, 16, 24, 0.72), rgba(7, 16, 24, 0.38));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255,255,255,0.14), inset 0 -1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(22px) saturate(150%);
  animation: navFloatIn 0.9s ease both;
}
.lux-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}
.lux-brand__logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(240, 208, 145, 0.35), var(--gold-glow);
}
.lux-nav__links { display: flex; align-items: center; gap: 18px; }
.lux-nav__links a:not(.btn-lux) {
  text-decoration: none;
  color: rgba(247, 239, 227, 0.82);
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 0.24s ease, text-shadow 0.24s ease;
}
.lux-nav__links a:not(.btn-lux):hover { color: var(--gold-light); text-shadow: 0 0 22px rgba(240, 208, 145, 0.42); }
.lux-menu-toggle { display: none; width: 46px; height: 42px; border: 1px solid var(--line-strong); border-radius: 14px; background: rgba(7, 16, 24, 0.82); color: var(--text); cursor: pointer; }
.lux-menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--gold-light); border-radius: 99px; }

.lux-hero__content {
  width: var(--container);
  margin: auto;
  padding: 70px 0 118px;
  max-width: 720px;
  position: relative;
  z-index: 1;
  animation: heroReveal 1.05s cubic-bezier(0.2, 0.78, 0.26, 1) both;
}
.lux-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}
.lux-kicker::before { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-light)); }
.lux-hero h1,
.lux-section h2 {
  font-family: "Orbitron", Georgia, sans-serif;
  margin: 18px 0;
  letter-spacing: 0.02em;
}
.lux-hero h1 {
  max-width: 760px;
  font-size: 5.3rem;
  line-height: 0.98;
  font-weight: 700;
  text-shadow: 0 12px 48px rgba(0, 0, 0, 0.52), 0 0 34px rgba(214, 167, 92, 0.18);
}
.lux-hero__lead {
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--gold-light);
}
.lux-hero__copy { max-width: 600px; color: rgba(247, 239, 227, 0.88); font-size: 1.08rem; line-height: 1.72; }
.lux-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.lux-actions.centered { justify-content: center; }

.btn-lux {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}
.btn-lux::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 48%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  transition: left 0.72s ease;
}
.btn-lux:hover { transform: translateY(-3px); }
.btn-lux:hover::after { left: 124%; }
.btn-lux:active { transform: translateY(0); }
.btn-lux:focus-visible { outline: 3px solid rgba(240, 208, 145, 0.75); outline-offset: 4px; }
.btn-lux[disabled], .btn-lux.disabled { opacity: 0.48; pointer-events: none; }
.btn-lux-primary { color: #201206; background: linear-gradient(135deg, #f7dda1, var(--gold) 52%, #9f6f29); box-shadow: var(--gold-glow); }
.btn-lux-primary:hover { box-shadow: 0 24px 62px rgba(214, 167, 92, 0.42); }
.btn-lux-primary::before {
  content: ""; position: absolute; inset: -60% auto -60% -90%; width: 34%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.65), transparent);
  transform: skewX(-18deg);
  animation: btnPrimarySheen 4.2s ease-in-out infinite;
}
@keyframes btnPrimarySheen {
  0%, 55% { left: -90%; }
  100% { left: 140%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-lux-primary::before { animation: none; display: none; }
}
.btn-lux-emerald { color: var(--gold-light); background: linear-gradient(135deg, #0e654a, var(--emerald)); border-color: rgba(240, 208, 145, 0.28); box-shadow: var(--emerald-glow); }
.btn-lux-emerald:hover { box-shadow: 0 24px 62px rgba(11, 75, 56, 0.58); }
.btn-lux-outline { color: var(--gold-light); background: rgba(6, 16, 24, 0.34); border-color: rgba(240, 208, 145, 0.58); backdrop-filter: blur(12px); }
.btn-lux-outline:hover { box-shadow: var(--gold-glow); background: rgba(214, 167, 92, 0.08); }
.btn-lux-ghost { color: var(--gold-light); background: rgba(240, 208, 145, 0.07); border-color: rgba(240, 208, 145, 0.2); backdrop-filter: blur(10px); }
.btn-lux-ghost:hover { border-color: rgba(240, 208, 145, 0.58); box-shadow: var(--gold-glow); }
.btn-lux-small { min-height: 40px; padding: 0 16px; font-size: 0.9rem; }
.btn-lux-large { min-height: 56px; padding: 0 28px; }
.btn-lux-icon { width: 48px; padding: 0; }

.lux-section { padding: 92px 0; position: relative; }
.lux-section::before {
  content: "";
  position: absolute;
  inset: 26px auto auto 50%;
  width: min(620px, 68vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 208, 145, 0.32), transparent);
  transform: translateX(-50%);
  opacity: 0.72;
}
.lux-section-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.lux-section-head.align-left { text-align: left; margin: 0; }
.lux-section h2 { font-size: 3.75rem; line-height: 1.02; }
.lux-section p { color: var(--muted); line-height: 1.75; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-grid article,
.service-card,
.price-band,
.cta-card,
.account-grid,
.contact-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.032));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(132%);
  position: relative;
  overflow: hidden;
}
.trust-grid article::before,
.service-card::before,
.price-band::before,
.cta-card::before,
.account-grid::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 22%, transparent 70%, rgba(240, 208, 145, 0.1));
  opacity: 0.48;
  pointer-events: none;
}
.trust-grid article { padding: 22px; animation: cardRise 0.85s ease both; }
.trust-grid article:nth-child(2) { animation-delay: 0.08s; }
.trust-grid article:nth-child(3) { animation-delay: 0.16s; }
.trust-grid article:nth-child(4) { animation-delay: 0.24s; }
.trust-grid span { color: var(--gold-light); font-weight: 800; }
.trust-grid strong { display: block; margin: 12px 0 8px; }

.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease, filter 0.34s ease;
  animation: cardRise 0.9s ease both;
}
.service-card:nth-child(2) { animation-delay: 0.06s; }
.service-card:nth-child(3) { animation-delay: 0.12s; }
.service-card:nth-child(4) { animation-delay: 0.18s; }
.service-card:nth-child(5) { animation-delay: 0.24s; }
.service-card:hover {
  transform: translateY(-9px) scale(1.012);
  border-color: rgba(240, 208, 145, 0.64);
  box-shadow: 0 34px 94px rgba(0, 0, 0, 0.55), var(--gold-glow);
  filter: saturate(1.08);
}
.service-card img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.7s ease;
}
.service-card:hover img { transform: scale(1.055); filter: brightness(1.08); }
.service-card div { padding: 24px; display: flex; flex: 1; flex-direction: column; align-items: flex-start; position: relative; z-index: 1; }
.service-card h3 { min-height: 62px; margin: 0 0 12px; font-size: 1.16rem; line-height: 1.28; }
.service-card p { min-height: 92px; margin: 0 0 20px; }
.service-card .btn-lux { margin-top: auto; }

.lux-gallery { background: linear-gradient(180deg, transparent, rgba(13, 24, 35, 0.52), transparent); }
.gallery-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 42px; align-items: center; }
.gallery-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; min-height: 430px; perspective: 1200px; }
.gallery-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform 0.48s ease, box-shadow 0.48s ease, border-color 0.48s ease;
}
.gallery-cards img:nth-child(1) { animation: softFloat 6s ease-in-out infinite; }
.gallery-cards img:nth-child(2) { transform: translateY(42px); animation: softFloatMiddle 7s ease-in-out infinite; }
.gallery-cards img:nth-child(3) { animation: softFloat 6.6s ease-in-out infinite reverse; }
.gallery-cards img:hover { border-color: var(--line-strong); box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58), var(--gold-glow); }

.price-band,
.cta-card,
.account-grid,
.contact-grid { padding: 42px; }
.price-band { text-align: center; }
.cta-card,
.account-grid,
.contact-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.cta-card { background: radial-gradient(circle at top right, rgba(214, 167, 92, 0.22), transparent 34%), linear-gradient(135deg, rgba(11, 75, 56, 0.62), rgba(12, 23, 33, 0.72)); }
.account-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.contact-section { padding-bottom: 120px; }
.contact-grid { grid-template-columns: 1fr 0.75fr; }
.contact-copy { max-width: 560px; }
.contact-copy__lead { margin-bottom: 18px; color: var(--text) !important; }
.contact-details { display: grid; gap: 10px; }
.contact-details p { margin: 0; }
.contact-card { padding: 28px; }
.contact-card strong { color: var(--gold-light); letter-spacing: 0.12em; }
.contact-map-frame {
  margin: 18px 0 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(240, 208, 145, 0.24);
  background: rgba(6, 16, 24, 0.54);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.contact-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}
.lux-footer { border-top: 1px solid var(--line); padding: 30px 0; background: rgba(3, 7, 12, 0.88); backdrop-filter: blur(16px); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; color: var(--muted); }
.footer-grid strong { color: var(--text); letter-spacing: 0.12em; }
.footer-grid div:nth-child(2) { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.footer-grid div:last-child { display: grid; gap: 8px; justify-items: end; }
.footer-grid a { color: var(--gold-light); text-decoration: none; }
.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.footer-contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(240,208,145,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 800;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.footer-contact-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(240,208,145,0.64);
  box-shadow: var(--gold-glow);
  background: rgba(214,167,92,0.12);
}

@keyframes pageDrift {
  from { transform: scale(1.04) translate3d(-0.8%, -0.5%, 0); }
  to { transform: scale(1.08) translate3d(0.8%, 0.6%, 0); }
}
@keyframes veilSweep {
  from { transform: translateX(-22%) rotate(0.001deg); }
  to { transform: translateX(18%) rotate(0.001deg); }
}
@keyframes navFloatIn {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(26px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes cardRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes softFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-14px) rotateX(1deg); }
}
@keyframes softFloatMiddle {
  0%, 100% { transform: translateY(42px) rotateX(0deg); }
  50% { transform: translateY(24px) rotateX(-1deg); }
}

@supports (animation-timeline: view()) {
  .lux-section-head,
  .price-band,
  .cta-card,
  .account-grid,
  .contact-grid {
    animation: cardRise both;
    animation-timeline: view();
    animation-range: entry 8% cover 30%;
  }
}

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

@media (max-width: 980px) {
  .lux-menu-toggle { display: block; }
  .lux-nav { border-radius: 24px; }
  .lux-nav__links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    z-index: 101;
    background: #071018;
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    flex-direction: column;
    align-items: stretch;
    pointer-events: auto;
  }
  .lux-nav__links.is-open { display: flex; }
  .lux-nav__links .btn-lux { width: 100%; }
  .lux-hero h1 { font-size: 4.1rem; }
  .lux-section h2 { font-size: 3rem; }
  .trust-grid,
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-layout,
  .cta-card,
  .account-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .account-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid div:last-child { justify-items: center; }
}

@media (max-width: 640px) {
  body.landing-body::before { background-position: center top; }
  .lux-hero { min-height: 100vh; }
  .lux-nav { padding: 12px 14px; margin-top: 12px; }
  .lux-brand span { font-size: 0.82rem; letter-spacing: 0.08em; }
  .lux-brand__logo { width: 40px; height: 40px; }
  .lux-hero__content { padding: 50px 0 92px; }
  .lux-hero h1 { font-size: 3.05rem; line-height: 1.04; }
  .lux-hero__lead { font-size: 1.38rem; }
  .lux-hero__copy { font-size: 1rem; }
  .lux-actions .btn-lux { width: 100%; }
  .lux-section { padding: 70px 0; }
  .lux-section h2 { font-size: 2.35rem; }
  .trust-grid,
  .services-grid { grid-template-columns: 1fr; }
  .service-card img { height: 236px; }
  .service-card h3,
  .service-card p { min-height: 0; }
  .contact-map-frame iframe { min-height: 300px; }
  .gallery-cards { grid-template-columns: 1fr; min-height: 0; }
  .gallery-cards img,
  .gallery-cards img:nth-child(2) { height: 260px; transform: none; animation: none; }
  .price-band,
  .cta-card,
  .account-grid,
  .contact-grid { padding: 26px; }
}


.lux-page-header {
  position: relative;
  min-height: 46vh;
  padding-bottom: 38px;
  overflow: visible;
  isolation: isolate;
}
.lux-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 13, 0.92), rgba(4, 10, 15, 0.66)),
    radial-gradient(circle at 18% 58%, rgba(214, 167, 92, 0.18), transparent 28%);
  pointer-events: none;
}
.lux-page-header > * { position: relative; z-index: 1; }
.lux-page-header > .lux-nav { z-index: 100; }
.content-hero {
  padding: 84px 0 54px;
  animation: heroReveal 0.95s cubic-bezier(0.2, 0.78, 0.26, 1) both;
}
.content-hero h1 {
  max-width: 900px;
  margin: 18px 0;
  font-family: "Orbitron", Georgia, sans-serif;
  font-size: 4.5rem;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-shadow: 0 12px 48px rgba(0, 0, 0, 0.52), 0 0 34px rgba(214, 167, 92, 0.18);
}
.content-hero p {
  max-width: 720px;
  color: rgba(247, 239, 227, 0.88);
  font-size: 1.08rem;
  line-height: 1.75;
}
.content-hero--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 42px;
  align-items: center;
}
.content-hero--split img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow), var(--gold-glow);
  animation: softFloat 7s ease-in-out infinite;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}
.breadcrumbs a,
.breadcrumbs span {
  text-decoration: none;
  color: rgba(247, 239, 227, 0.74);
}
.breadcrumbs a::after {
  content: "/";
  margin-left: 10px;
  color: rgba(240, 208, 145, 0.58);
}
.breadcrumbs a:hover { color: var(--gold-light); }
.seo-section { padding-top: 78px; }
.seo-card-grid .portal-card h2,
.article-card h2,
.article-card h3 {
  margin: 0 0 12px;
  font-family: "Orbitron", Georgia, sans-serif;
  font-size: 1.45rem;
  line-height: 1.18;
}
.portal-card h2 { min-height: 68px; }
.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.032));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(132%);
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
  animation: cardRise 0.9s ease both;
}
.article-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 208, 145, 0.64);
  box-shadow: 0 34px 94px rgba(0, 0, 0, 0.55), var(--gold-glow);
}
.article-card img {
  width: 100%;
  height: 224px;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}
.article-card:hover img { transform: scale(1.05); filter: brightness(1.08); }
.article-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}
.article-card span {
  margin-bottom: 12px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}
.article-card p { margin: 0 0 22px; }
.article-card .btn-lux { margin-top: auto; }
.article-layout { padding-top: 72px; }
.article-body {
  max-width: 880px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.034));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(132%);
}
.article-body h2 {
  margin: 30px 0 14px;
  font-family: "Orbitron", Georgia, sans-serif;
  font-size: 2.05rem;
  line-height: 1.16;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.82;
}
.lux-list {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.lux-list li {
  position: relative;
  padding: 16px 18px 16px 44px;
  border: 1px solid rgba(240, 208, 145, 0.16);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(6, 16, 24, 0.36);
}
.lux-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px rgba(240, 208, 145, 0.56);
}
.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: radial-gradient(circle at top right, rgba(214, 167, 92, 0.16), transparent 36%), rgba(7, 16, 24, 0.48);
}
.inline-cta strong { max-width: 480px; font-size: 1.08rem; }
.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.mini-card {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 24px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.mini-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow), var(--gold-glow);
}
.mini-card strong { color: var(--text); font-size: 1.05rem; }
.mini-card span { color: var(--muted); line-height: 1.6; }
.footer-grid div:nth-child(2) a {
  color: var(--gold-light);
  text-decoration: none;
}
.footer-grid div:nth-child(2) a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .content-hero h1 { font-size: 3.5rem; }
  .content-hero--split,
  .article-card-grid,
  .mini-card-grid { grid-template-columns: 1fr; }
  .content-hero--split img { max-height: 520px; }
  .portal-card h2 { min-height: 0; }
}

@media (max-width: 640px) {
  .content-hero { padding: 58px 0 34px; }
  .content-hero h1 { font-size: 2.7rem; }
  .content-hero--split img { aspect-ratio: 1 / 1; animation: none; }
  .article-body { padding: 26px; }
  .article-body h2 { font-size: 1.7rem; }
  .article-card img { height: 218px; }
  .inline-cta .btn-lux { width: 100%; }
}


.lux-language-switcher {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.lux-language-switcher select {
  min-height: 40px;
  padding: 0 34px 0 14px;
  border: 1px solid rgba(240, 208, 145, 0.34);
  border-radius: 999px;
  color: var(--gold-light) !important;
  background: rgba(4, 11, 17, 0.86) !important;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(12px);
  color-scheme: dark;
}
.lux-language-switcher select option {
  color: #f7efe3;
  background: #071018;
}
.lux-language-switcher select:focus-visible {
  outline: 3px solid rgba(240, 208, 145, 0.45);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 980px) {
  .lux-language-switcher,
  .lux-language-switcher select { width: 100%; }
}


.public-booking-section { padding-top: 56px; }
.booking-hero { padding-bottom: 34px; }
.public-booking-layout {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
}
.public-booking-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035));
  border: 1px solid rgba(240, 208, 145, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.13);
  backdrop-filter: blur(24px) saturate(138%);
}
.public-booking-card { padding: clamp(22px, 4vw, 36px); }
.booking-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.booking-choice-grid { align-items: end; }
.booking-service-select {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.booking-service-catalog {
  margin: 8px 0 26px;
  padding: 18px;
  border: 1px solid rgba(240,208,145,0.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(6,16,24,0.34));
}
.booking-service-catalog__head {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 1.02rem;
  font-weight: 900;
}
.booking-service-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.service-filter-pill {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(240,208,145,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.service-filter-pill:hover,
.service-filter-pill.is-active {
  transform: translateY(-2px);
  border-color: rgba(240,208,145,0.68);
  background: rgba(214,167,92,0.16);
  box-shadow: var(--gold-glow);
}
.booking-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.booking-service-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(240,208,145,0.18);
  border-radius: 20px;
  background: rgba(2,8,13,0.38);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}
.booking-service-card:hover,
.booking-service-card.is-selected {
  transform: translateY(-3px);
  border-color: rgba(240,208,145,0.66);
  background: rgba(214,167,92,0.08);
  box-shadow: 0 24px 64px rgba(0,0,0,0.34), var(--gold-glow);
}
.booking-service-card[hidden] { display: none !important; }
.booking-service-card__meta {
  display: grid;
  gap: 8px;
}
.booking-service-card__meta span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.booking-service-card__meta strong {
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--text);
}
.booking-service-card__facts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}
.booking-service-card__facts strong {
  color: var(--gold-light);
  font-size: 1.08rem;
}
.booking-date-range { display: grid; grid-template-columns: minmax(0, 1fr) minmax(160px, 0.72fr); gap: 12px; }
.booking-date-strip {
  margin: 16px 0 20px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(74px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scrollbar-color: rgba(240,208,145,0.42) rgba(255,255,255,0.06);
}
.date-pill {
  min-height: 86px;
  border: 1px solid rgba(240,208,145,0.2);
  border-radius: 18px;
  color: var(--text);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(7,61,46,0.18));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  gap: 2px;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.date-pill span,
.date-pill small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.date-pill strong {
  color: var(--gold-light);
  font-family: "Orbitron", Georgia, sans-serif;
  font-size: 2rem;
  line-height: 0.96;
}
.date-pill:hover,
.date-pill.is-active {
  transform: translateY(-2px);
  border-color: rgba(240,208,145,0.72);
  background: linear-gradient(145deg, rgba(214,167,92,0.22), rgba(7,61,46,0.34));
  box-shadow: var(--gold-glow);
}
.date-pill:focus-visible {
  outline: 3px solid rgba(240,208,145,0.44);
  outline-offset: 3px;
}
.selected-slot-summary {
  margin: 20px 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(240,208,145,0.34);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(214,167,92,0.16), rgba(7,61,46,0.22));
  box-shadow: var(--gold-glow);
}
.selected-slot-summary[hidden] { display: none; }
.selected-slot-summary span { display: block; color: var(--muted); font-weight: 800; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; }
.selected-slot-summary strong { display: block; margin-top: 4px; color: var(--gold-light); font-size: 1.03rem; }
.service-selection-summary { margin-top: 0; margin-bottom: 18px; }
.public-booking-card.is-service-selected .booking-service-catalog { display: none; }
.public-booking-card.is-time-selected .slot-picker__body,
.public-booking-card.is-time-selected .slot-picker__actions { display: none; }
.public-booking-card.is-time-selected .slot-picker { padding-bottom: 16px; }
.booking-details-section {
  scroll-margin-top: 110px;
  padding-top: 4px;
}
.booking-details-grid {
  align-items: stretch;
}
.lux-field-card {
  min-height: 158px;
  padding: 16px;
  border: 1px solid rgba(240,208,145,0.18);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(7,61,46,0.16));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.lux-field { display: grid; gap: 8px; color: rgba(247,239,227,0.9); font-weight: 800; }
.lux-field span,
.lux-field > label { font-size: 0.88rem; color: var(--gold-light); }
.lux-field small,
.form-error { color: #ffd3c4; font-size: 0.85rem; }
.field-help {
  min-height: 20px;
  color: rgba(247,239,227,0.62) !important;
  font-weight: 600;
  line-height: 1.45;
}
.field-help-placeholder { visibility: hidden; }
.booking-password-recovery-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(240, 208, 145, 0.42);
  border-radius: 999px;
  color: var(--gold-light) !important;
  text-decoration: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.booking-password-recovery-link:hover {
  border-color: rgba(240, 208, 145, 0.82);
  background: rgba(240, 208, 145, 0.10);
}
.booking-details-grid .form-error { min-height: 20px; }
.lux-input.is-invalid { border-color: rgba(255, 211, 196, 0.72); box-shadow: 0 0 0 4px rgba(255, 120, 92, 0.16); }
.lux-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(240,208,145,0.26);
  border-radius: 16px;
  color: var(--text) !important;
  background: rgba(4, 11, 17, 0.78);
  padding: 0 15px;
  font: inherit;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
  color-scheme: dark;
}
.lux-input:focus { border-color: rgba(240,208,145,0.72); box-shadow: 0 0 0 4px rgba(214,167,92,0.16); background: rgba(4, 11, 17, 0.88); }
select.lux-input {
  background-color: rgba(4, 11, 17, 0.86);
  color: var(--text) !important;
}
.lux-input option {
  color: #f7efe3;
  background: #071018;
}
input[type="date"].lux-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.95;
  filter: invert(86%) sepia(28%) saturate(603%) hue-rotate(352deg) brightness(102%) contrast(92%);
}
.slot-picker {
  margin: 22px 0;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(25,168,118,0.24);
  background: linear-gradient(145deg, rgba(7,61,46,0.34), rgba(6,16,24,0.52));
}
.slot-picker__head { display: flex; justify-content: space-between; gap: 16px; align-items: start; margin-bottom: 16px; }
.slot-picker__head strong { color: var(--gold-light); font-size: 1.05rem; }
.slot-picker__head p { margin: 5px 0 0; color: var(--muted); }
.slot-picker__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.slot-picker__actions[hidden] { display: none; }
.slot-grid {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(150px, 1fr);
  gap: 10px; overflow-x: auto; padding-bottom: 6px; align-items: start;
}
.slot-day-column {
  border: 1px solid rgba(240,208,145,0.18); border-radius: 16px; background: rgba(2,8,13,0.42);
  padding: 12px 10px; display: grid; gap: 10px; min-width: 150px;
}
.slot-day-column__head { text-align: center; }
.slot-day-column__head span { display: block; color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; }
.slot-day-column__head strong { display: block; color: var(--gold-light); font-size: 0.92rem; }
.slot-day-column__body { display: flex; flex-direction: column; gap: 6px; }
.slot-day-column__empty { color: var(--muted); font-size: 0.8rem; text-align: center; margin: 0; padding: 8px 0; }
@media (max-width: 900px) {
  .slot-grid { grid-auto-columns: minmax(126px, 1fr); }
}
.master-slot-card {
  min-height: 116px;
  padding: 15px;
  border-radius: 18px;
  border: 1px solid rgba(240,208,145,0.18);
  background: rgba(2, 8, 13, 0.42);
  display: grid;
  gap: 12px;
  align-content: start;
}
.master-slot-card > strong { color: var(--gold-light); font-size: 1rem; }
.master-time-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.slot-time-button {
  min-height: 34px;
  min-width: 66px;
  padding: 0 12px;
  border: 1px solid rgba(240,208,145,0.2);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.06);
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.slot-time-button:hover,
.slot-time-button.is-selected { transform: translateY(-2px); border-color: rgba(240,208,145,0.7); background: rgba(214,167,92,0.18); box-shadow: var(--gold-glow); }
.slot-day-column__body .slot-time-button { width: 100%; }
.contact-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 18px;
  color: var(--muted);
  font-weight: 800;
}
.contact-toggle input { width: 18px; height: 18px; accent-color: var(--gold); }
.contact-fields[hidden] { display: none; }
.booking-submit-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.booking-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 211, 196, 0.32);
  background: rgba(120, 32, 20, 0.28);
  color: #ffd3c4;
  font-weight: 800;
}
.booking-mini-list { display: grid; gap: 10px; margin-top: 22px; }
.booking-mini-list span {
  padding: 12px 14px;
  border: 1px solid rgba(240,208,145,0.18);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  color: var(--gold-light);
  font-weight: 800;
}
.waitlist-card {
  margin-top: 24px;
  padding: 18px;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(240,208,145,0.24);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(7,61,46,0.22));
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
  backdrop-filter: blur(18px);
}
.waitlist-card--aside { margin-top: 24px; }

.waitlist-card.is-highlighted {
  animation: waitlistPulse 1.8s ease;
  border-color: rgba(240, 208, 145, 0.78);
  box-shadow: 0 22px 70px rgba(214, 167, 92, 0.22);
}

.booking-account-helper {
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(214, 167, 92, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.booking-account-helper p {
  margin: 0;
  color: var(--muted);
}

.booking-account-helper p + p {
  margin-top: 8px;
}

.booking-account-helper strong {
  color: var(--gold-light);
}

@keyframes waitlistPulse {
  0% { transform: translateY(0); }
  35% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
.waitlist-card h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: "Orbitron", Georgia, sans-serif;
  font-size: 1.55rem;
}
.waitlist-card p {
  margin: 0;
  color: var(--muted);
}
.waitlist-card .booking-alert.is-success {
  border-color: rgba(80, 220, 151, 0.34);
  background: rgba(7, 61, 46, 0.36);
  color: #b8ffd9;
}
.waitlist-modal {
  width: min(640px, calc(100vw - 24px));
  padding: 0;
  border: 1px solid rgba(240,208,145,0.35);
  border-radius: 28px;
  background: rgba(6,16,24,0.92);
  color: var(--text);
  box-shadow: 0 38px 120px rgba(0,0,0,0.78);
  backdrop-filter: blur(24px);
}
.waitlist-modal::backdrop {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
}
.waitlist-modal__panel {
  position: relative;
  padding: clamp(24px, 4vw, 34px);
}
.waitlist-modal__body {
  display: grid;
  gap: 18px;
}
.waitlist-modal__body h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: "Orbitron", Georgia, sans-serif;
  font-size: 2rem;
}
.waitlist-modal__body > p {
  margin: 0;
  color: var(--muted);
}
.waitlist-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(240,208,145,0.42);
  border-radius: 999px;
  background: rgba(6,16,24,0.68);
  color: var(--gold-light);
  font-size: 1.6rem;
  cursor: pointer;
}
.mandatory-prepayment-modal {
  width: min(720px, calc(100vw - 24px));
  border-color: rgba(240, 208, 145, 0.62);
}
.mandatory-prepayment-modal__panel {
  padding: clamp(30px, 6vw, 56px);
}
.mandatory-prepayment-modal__body {
  justify-items: center;
  text-align: center;
  gap: 22px;
}
.mandatory-prepayment-modal__body h3 {
  max-width: 560px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.04;
}
.mandatory-prepayment-modal__body > p {
  max-width: 590px;
  color: var(--text);
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  line-height: 1.65;
}
.mandatory-prepayment-modal__icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(240, 208, 145, 0.58);
  border-radius: 999px;
  background: rgba(240, 208, 145, 0.12);
  color: var(--gold-light);
  font-family: "Orbitron", Georgia, sans-serif;
  font-size: 2.2rem;
}
.mandatory-prepayment-modal__actions {
  display: grid;
  width: min(100%, 520px);
  gap: 12px;
}
.mandatory-prepayment-modal__actions .btn-lux {
  width: 100%;
  justify-content: center;
}
.instagram-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
.instagram-gallery-grid--featured {
  margin-top: 30px;
}
.instagram-gallery-grid--home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.instagram-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(240,208,145,0.62) rgba(255,255,255,0.08);
}
.instagram-carousel::-webkit-scrollbar {
  height: 8px;
}
.instagram-carousel::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}
.instagram-carousel::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 999px;
}
.instagram-carousel__slide {
  width: min(360px, calc(100vw - 42px));
  height: 520px;
  scroll-snap-align: start;
}
.instagram-card {
  min-height: 260px;
  padding: 14px;
  border: 1px solid rgba(240,208,145,0.22);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.105), rgba(7,61,46,0.2));
  box-shadow: 0 28px 80px rgba(0,0,0,0.42);
  backdrop-filter: blur(20px) saturate(132%);
  overflow: hidden;
}
.instagram-carousel__slide .instagram-media,
.instagram-carousel__slide iframe {
  max-height: 492px !important;
}
.instagram-deferred-card {
  min-height: 240px;
  height: 100%;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  color: var(--text);
  text-align: left;
  background:
    radial-gradient(circle at top right, rgba(240,208,145,0.2), transparent 38%),
    linear-gradient(145deg, rgba(6,16,24,0.62), rgba(7,61,46,0.42));
}
.instagram-deferred-card span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.instagram-deferred-card strong {
  font-family: "Orbitron", Georgia, sans-serif;
  font-size: 1.55rem;
}
.instagram-deferred-card p {
  margin: 0;
  color: var(--muted);
}
.instagram-card .instagram-media {
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
}
.instagram-link-card {
  min-height: 240px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 10px;
  border-radius: 18px;
  color: var(--text);
  text-decoration: none;
  background:
    radial-gradient(circle at top right, rgba(214,167,92,0.22), transparent 36%),
    linear-gradient(145deg, rgba(6,16,24,0.52), rgba(7,61,46,0.38));
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.instagram-link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}
.instagram-link-card span {
  color: var(--gold-light);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.instagram-link-card strong {
  font-family: "Orbitron", Georgia, sans-serif;
  font-size: 1.55rem;
  color: var(--text);
}
.instagram-link-card p {
  margin: 0;
  color: var(--muted);
}
.instagram-media-card {
  align-content: start;
  padding: 0;
  overflow: hidden;
}
.instagram-media-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.instagram-media-card span,
.instagram-media-card strong,
.instagram-media-card p {
  margin-inline: 18px;
}
.instagram-media-card span {
  margin-top: 18px;
}
.instagram-media-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 18px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.portfolio-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 4px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(240,208,145,0.62) rgba(255,255,255,0.08);
}
.portfolio-carousel::-webkit-scrollbar { height: 8px; }
.portfolio-carousel::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}
.portfolio-carousel::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 999px;
}
.portfolio-carousel__slide {
  width: min(360px, calc(100vw - 42px));
  scroll-snap-align: start;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(240,208,145,0.2);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035)),
    radial-gradient(circle at 85% 12%, rgba(214,167,92,0.14), transparent 32%),
    rgba(6,16,24,0.52);
  box-shadow: 0 28px 82px rgba(0,0,0,0.44);
  backdrop-filter: blur(20px) saturate(132%);
  transition: transform .34s ease, border-color .34s ease, box-shadow .34s ease;
}
.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240,208,145,0.42);
  box-shadow: 0 34px 96px rgba(0,0,0,0.54), 0 18px 48px rgba(214,167,92,0.18);
}
.portfolio-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 0;
  background: rgba(6,16,24,0.72);
  color: inherit;
  cursor: pointer;
  overflow: hidden;
}
.portfolio-card__media img,
.portfolio-card__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .5s ease, filter .5s ease;
}
.portfolio-card:hover .portfolio-card__media img,
.portfolio-card:hover .portfolio-card__media video {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}
.portfolio-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(6,16,24,0.5));
  pointer-events: none;
}
.portfolio-card__play,
.portfolio-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(240,208,145,0.45);
  border-radius: 999px;
  background: rgba(6,16,24,0.58);
  color: var(--gold-light);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  backdrop-filter: blur(14px);
  font-weight: 900;
}
.portfolio-card__body {
  display: grid;
  gap: 14px;
  padding: 18px;
}
.portfolio-card__caption {
  min-height: 4.6em;
  margin: 0;
  color: var(--text);
  line-height: 1.52;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.portfolio-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}
.portfolio-card__meta a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 800;
}
.portfolio-card__meta a:hover { text-decoration: underline; }
.portfolio-card__manual-embed {
  min-height: 320px;
  padding: 14px;
}
.portfolio-card__manual-embed .instagram-media {
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
}
.portfolio-card__fallback {
  min-height: 280px;
  padding: 24px;
  display: grid;
  align-content: end;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  background:
    radial-gradient(circle at top right, rgba(214,167,92,0.22), transparent 36%),
    linear-gradient(145deg, rgba(6,16,24,0.72), rgba(7,61,46,0.4));
}
.portfolio-card__fallback strong {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Orbitron", Georgia, sans-serif;
  font-size: 1.35rem;
}
.portfolio-card__fallback span {
  color: var(--gold-light);
  font-weight: 900;
}
.portfolio-modal {
  width: min(980px, calc(100vw - 28px));
  max-height: min(860px, calc(100vh - 28px));
  padding: 0;
  border: 1px solid rgba(240,208,145,0.35);
  border-radius: 28px;
  background: rgba(6,16,24,0.9);
  color: var(--text);
  box-shadow: 0 38px 120px rgba(0,0,0,0.78);
  backdrop-filter: blur(24px);
}
.portfolio-modal::backdrop {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
}
.portfolio-modal__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 0;
}
.portfolio-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(240,208,145,0.42);
  border-radius: 999px;
  background: rgba(6,16,24,0.68);
  color: var(--gold-light);
  font-size: 1.6rem;
  cursor: pointer;
}
.portfolio-modal__media {
  min-height: 420px;
  background: rgba(0,0,0,0.38);
}
.portfolio-modal__media img,
.portfolio-modal__media video {
  width: 100%;
  height: 100%;
  max-height: 78vh;
  object-fit: cover;
  display: block;
}
.portfolio-modal__content {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(24px, 4vw, 44px);
}
.portfolio-modal__content p {
  margin: 0;
  max-height: 52vh;
  overflow: auto;
  color: var(--text);
  line-height: 1.72;
  white-space: pre-wrap;
}
.portfolio-modal__content a {
  justify-self: start;
  color: var(--gold-light);
  font-weight: 900;
  text-decoration: none;
}
.portfolio-modal__content a:hover { text-decoration: underline; }
.theme-wave {
  position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  opacity: 0; overflow: hidden; background: #05070b;
  transition: opacity 0.42s ease;
}
.theme-wave.active { opacity: 1; }
.theme-wave.fade-out { opacity: 0; transition: opacity 1.15s cubic-bezier(.16,1,.3,1); }
.theme-wave[data-target="aurora"] { background: #fdf2f5; }
.theme-wave img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.03); filter: saturate(1.08) contrast(1.03);
  animation: waveReveal 1.25s ease both;
}
.theme-wave.fade-out img { animation: none; }
@keyframes waveReveal {
  0% { opacity: 0; transform: scale(1.1); }
  28% { opacity: 0.92; transform: scale(1.045); }
  100% { opacity: 1; transform: scale(1.02); }
}
.theme-toggle { display: flex; gap: 4px; background: rgba(0,0,0,0.24); border-radius: 999px; padding: 3px; }
.theme-toggle button {
  border: none; background: transparent; color: var(--muted); font-size: 0.78rem; font-weight: 800;
  padding: 6px 12px; border-radius: 999px; cursor: pointer; white-space: nowrap;
}
.theme-toggle button.active { background: var(--gold); color: #201206; }
.ba-carousel {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 300px); gap: 16px;
  max-width: 100%; overflow-x: auto; overflow-y: hidden; padding: 10px 4px 20px;
  scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: rgba(240,208,145,0.62) rgba(255,255,255,0.08);
}
.ba-carousel::-webkit-scrollbar { height: 8px; }
.ba-carousel::-webkit-scrollbar-track { background: rgba(255,255,255,0.08); border-radius: 999px; }
.ba-carousel::-webkit-scrollbar-thumb { background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 999px; }
.ba-carousel__slide { scroll-snap-align: start; }
.ba-grid-large {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); gap: 24px;
}
.ba-photo--large { aspect-ratio: 16 / 11; border-radius: 20px; }
.ba-photo--large .ba-tag { font-size: 0.8rem; padding: 5px 14px; }
.ba-photo--large .ba-caption { font-size: 0.95rem; padding: 10px 14px; }
@media (max-width: 640px) {
  .ba-grid-large { grid-template-columns: 1fr; }
}
.ba-caption {
  position: absolute; left: 8px; right: 8px; bottom: 8px; padding: 3px 10px; border-radius: 8px;
  font-size: 0.72rem; font-weight: 700; color: #fff; background: rgba(0,0,0,0.5);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ba-photo {
  position: relative; display: block; padding: 0; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; cursor: zoom-in; background: none; aspect-ratio: 4 / 3; width: 100%;
}
.ba-photo img,
.ba-photo video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.ba-photo:hover img, .ba-photo:hover video { transform: scale(1.06); }
.ba-modal__media video { width: 100%; max-height: 68vh; display: block; }
.ba-tag {
  position: absolute; left: 8px; top: 8px; padding: 3px 10px; border-radius: 999px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(6,16,24,0.72); color: var(--gold-light); border: 1px solid rgba(240,208,145,0.35);
}
.login-modal {
  width: min(420px, calc(100vw - 28px)); padding: 0; border: 1px solid rgba(240,208,145,0.35);
  border-radius: 22px; background: linear-gradient(160deg, rgba(232,96,10,0.08), rgba(6,16,24,0.94));
  color: var(--text); box-shadow: 0 38px 120px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(24px) saturate(140%); position: relative; overflow: hidden;
}
.login-modal::backdrop { background: rgba(0,0,0,0.68); backdrop-filter: blur(8px); }
.login-modal::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
}
.login-modal__panel { padding: 32px; }
.login-modal__close {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid rgba(240,208,145,0.35); background: rgba(6,16,24,0.6); color: var(--gold-light);
  font-size: 1.4rem; cursor: pointer; line-height: 1;
}
.login-modal__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.login-modal__brand img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.login-modal__brand strong { font-family: "Orbitron", Georgia, sans-serif; font-size: 1rem; }
.login-modal h2 { font-family: "Orbitron", Georgia, sans-serif; font-size: 1.4rem; margin: 0 0 8px; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.02em; }
.login-modal__lead { color: var(--muted); margin: 0 0 22px; font-size: 0.9rem; }
.login-modal__field { display: grid; gap: 6px; margin-bottom: 14px; }
.login-modal__field label { font-size: 0.82rem; color: var(--muted); font-weight: 700; }
.login-modal__field input {
  min-height: 46px; padding: 0 14px; border-radius: 12px; border: 1px solid rgba(240,208,145,0.24);
  background: rgba(255,255,255,0.05); color: var(--text); font-size: 0.95rem;
}
.login-modal__field input:focus { outline: none; border-color: rgba(240,208,145,0.7); box-shadow: var(--gold-glow); }
.login-modal__submit { width: 100%; margin-top: 6px; }
.login-modal__forgot { display: block; text-align: center; margin-top: 14px; color: var(--muted); font-size: 0.85rem; text-decoration: none; }
.login-modal__forgot:hover { color: var(--gold-light); }
.ba-modal {
  width: min(920px, calc(100vw - 28px)); max-height: min(820px, calc(100vh - 28px));
  padding: 0; border: 1px solid rgba(240,208,145,0.35); border-radius: 24px;
  background: rgba(6,16,24,0.92); color: var(--text); box-shadow: 0 38px 120px rgba(0,0,0,0.78); backdrop-filter: blur(24px);
}
.ba-modal::backdrop { background: rgba(0,0,0,0.72); backdrop-filter: blur(8px); }
.ba-modal__panel { position: relative; display: flex; flex-direction: column; }
.ba-modal__media { min-height: 320px; background: rgba(0,0,0,0.38); display: flex; align-items: center; justify-content: center; }
.ba-modal__media img { width: 100%; max-height: 68vh; object-fit: contain; display: block; }
.ba-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 3; width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid rgba(240,208,145,0.42); background: rgba(6,16,24,0.68); color: var(--gold-light); font-size: 1.6rem; cursor: pointer;
}
.ba-modal__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid rgba(240,208,145,0.42); background: rgba(6,16,24,0.68); color: var(--gold-light); font-size: 1.6rem; cursor: pointer;
}
.ba-modal__nav--prev { left: 12px; }
.ba-modal__nav--next { right: 12px; }
.ba-modal__caption { padding: 16px 22px 20px; display: flex; flex-direction: column; gap: 2px; }
.ba-modal__caption strong { color: var(--text); }
.ba-modal__caption span { color: var(--muted); font-size: 0.9rem; }
@media (max-width: 620px) {
  .ba-photos--3, .ba-photos--4 { grid-template-columns: repeat(2, 1fr); }
}
.empty-lux-state {
  grid-column: 1 / -1;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(240,208,145,0.24);
  border-radius: 24px;
  text-align: center;
  background: rgba(6,16,24,0.42);
}
.empty-lux-state h2 {
  margin: 12px 0;
  font-family: "Orbitron", Georgia, sans-serif;
  color: var(--text);
}
@media (max-width: 900px) {
  .public-booking-layout { width: min(100%, calc(100% - 24px)); }
  .slot-grid { grid-template-columns: 1fr; }
  .booking-date-range { grid-template-columns: 1fr; }
  .booking-service-grid { grid-template-columns: 1fr; }
  .instagram-gallery-grid,
  .instagram-gallery-grid--home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .instagram-carousel { grid-auto-columns: minmax(270px, 340px); }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-carousel { grid-auto-columns: minmax(270px, 340px); }
  .portfolio-modal__panel { grid-template-columns: 1fr; }
  .portfolio-modal__media { min-height: 320px; }
}
@media (max-width: 620px) {
  .booking-form-grid,
  .slot-grid,
  .booking-date-range { grid-template-columns: 1fr; }
  .slot-picker__head,
  .selected-slot-summary,
  .booking-submit-row { align-items: stretch; flex-direction: column; }
  .slot-picker__actions { justify-content: stretch; }
  .slot-picker__actions .btn-lux { width: 100%; }
  .booking-submit-row .btn-lux { width: 100%; }
  .footer-contact-links { justify-content: center; }
  .instagram-gallery-grid,
  .instagram-gallery-grid--home { grid-template-columns: 1fr; }
  .instagram-carousel {
    grid-auto-columns: minmax(260px, calc(100vw - 34px));
    margin-inline: -2px;
  }
  .instagram-carousel__slide {
    width: calc(100vw - 34px);
    height: 500px;
  }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-carousel {
    grid-auto-columns: minmax(260px, calc(100vw - 34px));
    margin-inline: -2px;
  }
  .portfolio-carousel__slide { width: calc(100vw - 34px); }
  .portfolio-card__caption { min-height: auto; }
  .portfolio-modal__media { min-height: 260px; }
}

.payment-result-section {
  min-height: 72vh;
  display: grid;
  align-items: center;
}
.payment-result-card {
  max-width: 760px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(240, 208, 145, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(214, 167, 92, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035));
  box-shadow: 0 34px 96px rgba(0,0,0,0.56), 0 18px 54px rgba(214,167,92,0.16);
  backdrop-filter: blur(22px) saturate(132%);
  text-align: center;
}
.payment-result-card h1 {
  margin: 12px 0;
  font-family: "Orbitron", Georgia, sans-serif;
  font-size: clamp(2.25rem, 4vw, 4.1rem);
  line-height: 1;
  color: var(--text);
}
.payment-result-card p {
  max-width: 560px;
  margin: 0 auto 22px;
  color: var(--muted);
}
.payment-summary {
  width: min(100%, 420px);
  margin: 22px auto;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(240,208,145,0.24);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(6,16,24,0.44);
}
.payment-summary strong { color: var(--gold-light); }
.payment-note {
  margin-top: 16px !important;
  font-size: 0.9rem;
}


/* ── Demo theme switcher widget ──────────────────────────────── */
.theme-switcher {
  position: fixed;
  bottom: 22px;
  right: 22px;
  display: flex;
  gap: 8px;
  z-index: 9999;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 40px;
  padding: 6px 10px;
  transition: background 0.3s, border-color 0.3s;
}
html[data-theme="aurora"] .theme-switcher,
html[data-theme="bosque"] .theme-switcher {
  background: rgba(255,255,255,0.72);
  border-color: rgba(0,0,0,0.12);
}
.theme-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, border-color 0.15s;
  background: none;
}
.theme-dot:hover { transform: scale(1.2); }
.theme-dot.active { border-color: rgba(255,255,255,0.70); transform: scale(1.15); }
html[data-theme="aurora"] .theme-dot.active,
html[data-theme="bosque"] .theme-dot.active { border-color: rgba(0,0,0,0.40); }

/* ── Theme switcher label ──────────────────────────────────────── */
.theme-switcher__label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; align-self: center;
  color: rgba(255,255,255,0.52); padding: 0 4px 0 2px; white-space: nowrap;
}
html[data-theme="aurora"] .theme-switcher__label,
html[data-theme="bosque"] .theme-switcher__label { color: rgba(0,0,0,0.42); }

/* ── Demo Hints ────────────────────────────────────────────────── */
.demo-hint {
  display: inline-flex;
  position: relative;
  vertical-align: middle;
  margin-left: 8px;
}
.demo-hint__btn {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  border: none; cursor: pointer;
  font-size: 11px; font-weight: 800; font-family: inherit;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.80;
  transition: opacity 0.15s, transform 0.15s;
  flex-shrink: 0; line-height: 1;
}
.demo-hint__btn:hover { opacity: 1; transform: scale(1.12); }
.demo-hint__pop {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%; transform: translateX(-50%);
  background: rgba(6,10,20,0.97);
  border: 1px solid rgba(240,208,145,0.28);
  border-radius: 14px;
  padding: 13px 15px;
  width: 240px;
  box-shadow: 0 18px 56px rgba(0,0,0,0.44);
  font-size: 13px; line-height: 1.55;
  color: #f0e8d8;
  display: none; z-index: 9990;
  backdrop-filter: blur(16px);
  text-align: left; font-family: inherit;
}
.demo-hint__pop strong {
  display: block; margin-bottom: 5px;
  color: var(--gold); font-size: 12.5px;
}
.demo-hint.is-open .demo-hint__pop { display: block; }
.demo-hint__pop::after {
  content: ''; position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(240,208,145,0.28);
}
.demo-hint__pop--down { bottom: auto; top: calc(100% + 10px); }
.demo-hint__pop--down::after {
  top: auto; bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: rgba(240,208,145,0.28);
}
@media (max-width: 520px) {
  .demo-hint__pop { width: 200px; font-size: 12px; left: auto; right: -4px; transform: none; }
  .demo-hint__pop::after { left: auto; right: 10px; transform: none; }
  .demo-hint__pop--down { left: auto; right: -4px; transform: none; }
}

/* ── Reviews page ───────────────────────────────────────────── */
.reviews-page { padding-bottom: 80px; }

.reviews-summary {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 36px;
  backdrop-filter: blur(18px);
}
.reviews-summary__score { text-align: center; min-width: 110px; }
.reviews-summary__big {
  display: block;
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.reviews-summary__stars { margin: 6px 0 4px; font-size: 1.3rem; }
.reviews-summary__count { font-size: 0.82rem; color: var(--muted); }
.reviews-summary__bars { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.reviews-summary__cta { display: flex; align-items: center; }
.btn-review-google {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 8px;
  background: #fff; border: 1.5px solid #dadce0;
  color: #3c4043; font-size: 0.85rem; font-weight: 500;
  text-decoration: none; white-space: nowrap;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.btn-review-google:hover { box-shadow: 0 1px 6px rgba(32,33,36,.28); border-color: #c6c6c6; }
.reviews-bar { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; }
.reviews-bar__label { width: 22px; text-align: right; color: var(--muted); }
.reviews-bar__track { flex: 1; height: 8px; border-radius: 4px; background: var(--line); overflow: hidden; }
.reviews-bar__fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.reviews-bar__num { width: 28px; color: var(--muted); font-size: 0.8rem; }

.reviews-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 28px;
}
.reviews-filters__group { display: flex; flex-direction: column; gap: 4px; }
.reviews-filters__group label { font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.reviews-filters__group select {
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.9rem;
  cursor: pointer;
}
.reviews-filters__clear {
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  align-self: flex-end;
}
.reviews-filters__clear:hover { border-color: var(--gold); color: var(--gold); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(18px) saturate(120%);
  box-shadow: var(--shadow);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.review-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 18px 54px rgba(0,0,0,0.28), var(--gold-glow);
  transform: translateY(-3px);
}
.review-card__header { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--emerald));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.review-card__meta { flex: 1; }
.review-card__name { display: block; font-size: 0.94rem; color: var(--text); }
.review-card__date { font-size: 0.78rem; color: var(--muted); }
.review-card__verified {
  color: #19a876; font-size: 0.78rem; font-weight: 700;
  border: 1px solid rgba(25,168,118,0.35);
  border-radius: 20px; padding: 2px 7px;
}
.review-card__stars { font-size: 1rem; line-height: 1; }
.review-card__stars .star { color: var(--line-strong); }
.review-card__stars .star.filled { color: #f5a623; }
.review-card__text {
  font-size: 0.9rem; line-height: 1.65; color: var(--text);
}
.review-card__text.is-clamped {
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.review-card__readmore {
  background: none; border: none; padding: 0; margin-top: 4px;
  font-size: 0.82rem; color: var(--gold); cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
.review-card__readmore:hover { opacity: 0.8; }
.review-card__services { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.review-card__tag {
  font-size: 0.72rem; font-weight: 600; padding: 3px 9px;
  border-radius: 20px; border: 1px solid var(--line-strong);
  color: var(--gold-light); background: rgba(255,255,255,0.04);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.review-card__source {
  display: flex; align-items: center; gap: 6px;
  margin-top: auto; padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 0.74rem; color: var(--muted);
}
.review-card__tw-logo { height: 14px; opacity: 0.6; }

.reviews-grid--home { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.reviews-empty { color: var(--muted); text-align: center; padding: 48px; grid-column: 1/-1; }

.lux-pagination {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 8px;
}
.lux-page-btn {
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--gold); text-decoration: none; font-size: 0.88rem;
  transition: background 0.2s, border-color 0.2s;
}
.lux-page-btn:hover { background: rgba(214,167,92,0.12); border-color: var(--gold); }
.lux-page-info { font-size: 0.84rem; color: var(--muted); }

/* Light theme overrides for reviews */
html[data-theme="aurora"] .review-card,
html[data-theme="bosque"] .review-card {
  background: rgba(255,255,255,0.94);
}
html[data-theme="aurora"] .review-card__tag { color: var(--gold); }
html[data-theme="bosque"] .review-card__tag { color: var(--gold); }
html[data-theme="aurora"] .reviews-summary,
html[data-theme="bosque"] .reviews-summary {
  background: rgba(255,255,255,0.92);
}

.google-reviews-block {
  margin-bottom: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.google-reviews-block__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.google-reviews-block__title { flex: 1; font-size: 0.9rem; color: var(--text); }
.google-reviews-block__cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: #4285F4;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.google-reviews-block__cta:hover { opacity: 0.88; }
.google-g { flex-shrink: 0; }
.google-g--card { margin-left: auto; opacity: 0.7; }
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0;
}
.review-card--google {
  border: none;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  background: var(--bg-card);
}
.review-card--google:hover { transform: none; box-shadow: inset 0 0 0 1px var(--line-strong); }
.review-card__avatar--photo {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}

@media (max-width: 700px) {
  .reviews-summary { flex-direction: column; gap: 24px; padding: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-filters { gap: 8px; }
  .google-reviews-grid { grid-template-columns: 1fr; }
}

/* ── Aurora (light) – legibility fixes ─────────────────────────────
   --gold-light (#fbbf24) is meant for dark surfaces; on the light theme's
   white cards it reads at ~1.5:1. --gold-text is the accent for text on
   light surfaces (>= 4.5:1). Dark surfaces (footer, modals, language
   select, photo badges) keep --gold-light. */
html[data-theme="aurora"] { --gold-text: #a64a06; }
html[data-theme="aurora"] .lux-kicker,
html[data-theme="aurora"] .lux-hero__lead,
html[data-theme="aurora"] .trust-grid span,
html[data-theme="aurora"] .contact-card strong,
html[data-theme="aurora"] .article-card span,
html[data-theme="aurora"] .booking-service-catalog__head,
html[data-theme="aurora"] .booking-service-card__meta span,
html[data-theme="aurora"] .booking-service-card__facts strong,
html[data-theme="aurora"] .date-pill strong,
html[data-theme="aurora"] .selected-slot-summary strong,
html[data-theme="aurora"] .lux-field span,
html[data-theme="aurora"] .lux-field > label,
html[data-theme="aurora"] .booking-password-recovery-link,
html[data-theme="aurora"] .slot-picker__head strong,
html[data-theme="aurora"] .slot-day-column__head strong,
html[data-theme="aurora"] .master-slot-card > strong,
html[data-theme="aurora"] .booking-mini-list span,
html[data-theme="aurora"] .booking-account-helper strong,
html[data-theme="aurora"] .payment-summary strong,
html[data-theme="aurora"] .instagram-deferred-card span,
html[data-theme="aurora"] .instagram-link-card span,
html[data-theme="aurora"] .review-card__tag,
html[data-theme="aurora"] .btn-lux-outline,
html[data-theme="aurora"] .btn-lux-ghost { color: var(--gold-text); }
html[data-theme="aurora"] .lux-kicker::before { background: linear-gradient(90deg, transparent, var(--gold-text)); }

/* Aurora – breadcrumbs sit on the light page header */
html[data-theme="aurora"] .breadcrumbs a,
html[data-theme="aurora"] .breadcrumbs span { color: var(--muted); }
html[data-theme="aurora"] .breadcrumbs a::after { color: var(--line-strong); }
html[data-theme="aurora"] .breadcrumbs a:hover { color: var(--gold-text); }

/* Aurora – footer stays dark, so give it the dark theme's text tokens back */
html[data-theme="aurora"] .lux-footer {
  --text: #f1f5f9;
  --muted: #b4bfcd;
  background: rgba(20, 24, 29, 0.96);
}

/* Aurora – inactive label of the theme toggle */
html[data-theme="aurora"] .theme-toggle button:not(.active) { color: #3f4652; }

/* Aurora – day columns of the slot picker (dark fill left over from the dark theme) */
html[data-theme="aurora"] .slot-day-column {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}
