/*
 * Public booking landing — expandable_cards variant.
 *
 * Editorial direction: dark hero with italic-serif accent, light card list
 * below, two-column expansion (slots / what's included). Single-open
 * accordion via Alpine.store('bklAcc'). Zero icons or emoji glyphs.
 * Theme tokens only; dark mode via body.theme-dark class.
 */

.bkl-shell {
  --bkl-serif: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --bkl-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bkl-accent: var(--theme-primary, #db2777);
  --bkl-ink:    #0a0a0d;
  --bkl-paper:  #f7f5f0;
  --bkl-line:   rgba(15, 15, 20, 0.08);
  --bkl-line-soft: rgba(15, 15, 20, 0.05);
  --bkl-muted:  rgba(15, 15, 20, 0.52);

  font-family: var(--bkl-sans);
  background: var(--public-page-bg, var(--bkl-paper));
  color: var(--public-text-strong, var(--bkl-ink));
  min-height: 100vh;
}

/* ── Dark hero ─────────────────────────────────────────────────────── */
.bkl-hero {
  background: var(--bkl-ink);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 6rem) 1.25rem clamp(4rem, 9vw, 6.5rem);
  text-align: center;
}
.bkl-hero-inner { max-width: 720px; margin: 0 auto; }

.bkl-eyebrow {
  font-family: var(--bkl-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.bkl-eyebrow--accent {
  color: var(--bkl-accent);
  display: inline-block;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--bkl-accent);
}
.bkl-eyebrow--muted { color: rgba(15,15,20,0.42); }

.bkl-hero-title {
  font-family: var(--bkl-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.5vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0 0 1.4rem;
  color: #fff;
}
.bkl-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--bkl-accent);
}

.bkl-hero-sub {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 28rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.72);
}

.bkl-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.58);
  flex-wrap: wrap;
  justify-content: center;
}
.bkl-trust-item { white-space: nowrap; }
.bkl-trust-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: currentColor; opacity: 0.6;
}

/* ── Light card list ──────────────────────────────────────────────── */
.bkl-list-section {
  padding: clamp(2.5rem, 5vw, 4rem) 1.25rem 5rem;
}
.bkl-container {
  max-width: 880px;
  margin: 0 auto;
}
.bkl-list-eyebrow {
  text-align: center;
  display: block;
  margin: 0 auto 1.75rem;
}

.bkl-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── Card ─────────────────────────────────────────────────────────── */
.bkl-card {
  background: var(--public-card-bg, #ffffff);
  border: 1px solid var(--bkl-line);
  border-radius: 0.55rem;
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
  position: relative;
}
.bkl-card[data-open="true"] {
  border-color: var(--bkl-accent);
  box-shadow: 0 0 0 1px var(--bkl-accent) inset;
}

.bkl-card-summary {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.bkl-card-summary:focus-visible {
  outline: 2px solid var(--bkl-accent);
  outline-offset: -2px;
}

.bkl-thumb {
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  overflow: hidden;
  display: block;
  position: relative;
  flex-shrink: 0;
}
.bkl-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.bkl-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
.bkl-card-title {
  font-family: var(--bkl-serif);
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.25;
  color: var(--public-text-strong, var(--bkl-ink));
}
.bkl-card-sub {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--public-text-soft, var(--bkl-muted));
}

.bkl-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}
.bkl-meta-chip {
  font-size: 0.73rem;
  font-weight: 500;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: transparent;
  color: var(--public-text-soft, var(--bkl-muted));
  border: 1px solid var(--bkl-line);
}
.bkl-meta-pill {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bkl-accent) 9%, transparent);
  color: var(--bkl-accent);
  border: 1px solid color-mix(in srgb, var(--bkl-accent) 18%, transparent);
}
.bkl-meta-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--public-text-strong, var(--bkl-ink));
  margin-left: 0.15rem;
}

/* Toggle — pure CSS chevron, rotates + fills on open */
.bkl-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bkl-line-soft);
  position: relative;
  flex-shrink: 0;
  transition: background 0.28s ease;
}
.bkl-toggle::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 9px; height: 9px;
  border-right: 1.6px solid var(--public-text-strong, var(--bkl-ink));
  border-bottom: 1.6px solid var(--public-text-strong, var(--bkl-ink));
  transform: translate(-50%, -75%) rotate(45deg);
  transition: transform 0.32s cubic-bezier(.5,0,.25,1), border-color 0.28s ease;
}
.bkl-card[data-open="true"] .bkl-toggle {
  background: var(--bkl-accent);
}
.bkl-card[data-open="true"] .bkl-toggle::before {
  border-color: #fff;
  transform: translate(-50%, -25%) rotate(-135deg);
}

/* ── Expanded panel ───────────────────────────────────────────────── */
.bkl-panel {
  padding: 0 1.25rem 1.25rem;
}
.bkl-panel-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2.5rem;
  padding-top: 1.2rem;
  margin-top: 0.4rem;
  border-top: 1px solid var(--bkl-line);
  margin-bottom: 1.3rem;
}

.bkl-col-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--public-text-soft, var(--bkl-muted));
  margin: 0 0 1rem;
}

.bkl-day { margin-bottom: 1.1rem; }
.bkl-day:last-child { margin-bottom: 0; }
.bkl-day-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--public-text-soft, var(--bkl-muted));
  margin: 0 0 0.55rem;
}

.bkl-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.bkl-slot {
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.42rem 0.85rem;
  border-radius: 0.35rem;
  border: 1px solid var(--bkl-line);
  background: transparent;
  color: var(--public-text-strong, var(--bkl-ink));
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.bkl-slot:hover {
  border-color: var(--bkl-accent);
  color: var(--bkl-accent);
}
.bkl-slot.is-selected {
  background: var(--bkl-accent);
  border-color: var(--bkl-accent);
  color: #fff;
}
.bkl-slot--ghost {
  text-decoration: line-through;
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

/* Included list — typographic bullets only, no icons */
.bkl-included {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.bkl-included li {
  font-size: 0.86rem;
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
  color: var(--public-text-strong, var(--bkl-ink));
}
.bkl-included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.55rem;
  height: 1.5px;
  background: var(--bkl-accent);
  border-radius: 1px;
}

/* CTA — default is a muted disabled bar; .is-active makes it live.
   When used as a plain always-clickable link (magazine/spotlight),
   add .bkl-cta--link to restore normal pointer behavior. */
.bkl-cta {
  display: block;
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0.4rem;
  background: var(--bkl-line-soft);
  border: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--public-text-soft, var(--bkl-muted));
  text-align: center;
  text-decoration: none;
  cursor: not-allowed;
  pointer-events: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.bkl-cta.is-active,
.bkl-cta--link {
  background: var(--bkl-accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  pointer-events: auto;
}
.bkl-cta.is-active:hover,
.bkl-cta--link:hover { filter: brightness(0.94); }

.bkl-secondary {
  display: block;
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--bkl-accent);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.bkl-secondary:hover { text-decoration: underline; }

/* Skeleton */
.bkl-skeleton-row {
  height: 30px;
  border-radius: 0.35rem;
  background: linear-gradient(90deg,
    rgba(15,15,20,0.05),
    rgba(15,15,20,0.1),
    rgba(15,15,20,0.05));
  background-size: 200% 100%;
  animation: bkl-shimmer 1.4s infinite linear;
  margin-bottom: 0.55rem;
}
@keyframes bkl-shimmer { to { background-position: -200% 0; } }

.bkl-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--public-text-soft, var(--bkl-muted));
  font-size: 0.9rem;
}
.bkl-empty-slots {
  font-size: 0.85rem;
  color: var(--public-text-soft, var(--bkl-muted));
}

.bkl-footer {
  text-align: center;
  font-size: 0.74rem;
  margin: 3.5rem 0 0;
  color: var(--public-text-soft, var(--bkl-muted));
  letter-spacing: 0.03em;
}

/* Responsive */
@media (max-width: 640px) {
  .bkl-card-summary {
    grid-template-columns: 56px 1fr auto;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
  }
  .bkl-thumb { width: 56px; height: 56px; }
  .bkl-card-title { font-size: 1.05rem; }
  .bkl-panel-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Subtle entrance */
@media (prefers-reduced-motion: no-preference) {
  .bkl-card {
    opacity: 0;
    transform: translateY(8px);
    animation: bkl-card-in 0.5s ease forwards;
  }
  .bkl-card:nth-child(1) { animation-delay: 0.02s; }
  .bkl-card:nth-child(2) { animation-delay: 0.08s; }
  .bkl-card:nth-child(3) { animation-delay: 0.14s; }
  .bkl-card:nth-child(4) { animation-delay: 0.2s; }
  .bkl-card:nth-child(5) { animation-delay: 0.26s; }
  .bkl-card:nth-child(6) { animation-delay: 0.32s; }
  .bkl-card:nth-child(7) { animation-delay: 0.38s; }
  .bkl-card:nth-child(8) { animation-delay: 0.44s; }
  .bkl-card:nth-child(n+9) { animation-delay: 0.5s; }
  @keyframes bkl-card-in {
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Dark mode — class-based, NOT prefers-color-scheme */
body.theme-dark .bkl-shell {
  --bkl-line: rgba(255, 255, 255, 0.09);
  --bkl-line-soft: rgba(255, 255, 255, 0.06);
  --bkl-muted: rgba(245, 245, 247, 0.55);
}
body.theme-dark .bkl-list-section { background: var(--public-page-bg, #0a0a0d); }
body.theme-dark .bkl-card {
  background: var(--public-card-bg, rgba(255, 255, 255, 0.03));
}
body.theme-dark .bkl-card-title,
body.theme-dark .bkl-meta-price,
body.theme-dark .bkl-slot,
body.theme-dark .bkl-included li {
  color: var(--public-text-strong, #f5f5f7);
}
body.theme-dark .bkl-eyebrow--muted { color: rgba(245, 245, 247, 0.4); }
body.theme-dark .bkl-toggle::before { border-color: #f5f5f7; }
body.theme-dark .bkl-cta {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 247, 0.45);
}




/* ─────────────────────────────────────────────────────────────────────
 * Compat aliases — magazine_grid and spotlight_featured were built
 * against the original class names. These map old → new so those
 * templates continue to work without modification.
 * ───────────────────────────────────────────────────────────────────── */

/* Light page header (used by magazine_grid + spotlight_featured) */
.bkl-header {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}
.bkl-header-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme-primary, #db2777);
  margin: 0 0 1rem;
  display: block;
}
.bkl-header-title {
  font-family: var(--bkl-serif, 'Fraunces', Georgia, serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--public-text-strong, #0a0a0d);
  margin: 0 0 1rem;
}
.bkl-header-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--theme-primary, #db2777);
}
.bkl-header-sub {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--public-text-soft, rgba(15,15,20,0.52));
  max-width: 36rem;
  margin: 0 auto;
}

/* Chip row (= bkl-meta) */
.bkl-chips { display: inline-flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.35rem; }
.bkl-chip {
  font-size: 0.73rem;
  font-weight: 500;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: transparent;
  color: var(--public-text-soft, rgba(15,15,20,0.52));
  border: 1px solid var(--bkl-line, rgba(15,15,20,0.08));
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.bkl-chip svg { width: 12px; height: 12px; }
.bkl-chip-price {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--public-text-strong, #0a0a0d);
}

/* Section label (= bkl-col-label) */
.bkl-section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--public-text-soft, rgba(15,15,20,0.52));
  margin: 0 0 0.75rem;
}

/* Slot rows container */
.bkl-days { display: flex; flex-direction: column; gap: 0.75rem; }

/* Skeleton container */
.bkl-skeleton { display: flex; flex-direction: column; gap: 0.5rem; }
.bkl-skeleton-day {
  height: 30px;
  border-radius: 0.35rem;
  background: linear-gradient(90deg,
    rgba(15,15,20,0.05),
    rgba(15,15,20,0.1),
    rgba(15,15,20,0.05));
  background-size: 200% 100%;
  animation: bkl-shimmer 1.4s infinite linear;
}

/* "+N more" pill */
.bkl-more {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px dashed var(--bkl-line, rgba(15,15,20,0.15));
  color: var(--public-text-soft, rgba(15,15,20,0.5));
}


/* ─────────────────────────────────────────────────────────────────────
 * Variant: magazine_grid — editorial 12-col asymmetric grid with
 * bottom-anchored slot drawer. All rules scoped under .lv-magazine.
 * ───────────────────────────────────────────────────────────────────── */

.lv-magazine .lv-magazine-title {
  font-family: var(--ds-font-serif, Georgia, 'Times New Roman', serif);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 4vw, 3rem);
}

.lv-magazine-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .lv-magazine-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1.75rem; }
}

.lv-magazine-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--public-card-bg, #ffffff);
  border: 1px solid var(--public-border, #e2e8f0);
  border-radius: var(--ds-radius-lg, 1rem);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--ds-shadow-sm, 0 1px 2px rgba(15, 23, 42, 0.06));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  grid-column: span 1;
}
@media (min-width: 768px) {
  .lv-magazine-card { grid-column: span 6; }
  .lv-magazine-card--featured { grid-column: span 8; min-height: 440px; }
  .lv-magazine-card:not(.lv-magazine-card--featured) { grid-column: span 4; }
  .lv-magazine-grid > .lv-magazine-card--featured + .lv-magazine-card:not(.lv-magazine-card--featured) { grid-column: span 4; }
}
.lv-magazine-card:hover {
  box-shadow: var(--ds-shadow-md, 0 6px 18px rgba(15, 23, 42, 0.12));
}

.lv-magazine-media {
  position: relative;
  height: 180px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--public-surface-muted, #f1f5f9);
}
.lv-magazine-card--featured .lv-magazine-media { height: 240px; }
.lv-magazine-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.lv-magazine-mono {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--ds-font-serif, Georgia, serif);
  text-shadow: 0 2px 6px rgba(15, 23, 42, 0.2);
}
.lv-magazine-price {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.3rem 0.7rem;
  background: var(--public-card-bg, #ffffff);
  color: var(--public-text-strong, #0f172a);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--ds-shadow-sm, 0 1px 2px rgba(15, 23, 42, 0.1));
}

.lv-magazine-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.lv-magazine-name {
  font-family: var(--ds-font-serif, Georgia, 'Times New Roman', serif);
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--public-text-strong, #0f172a);
  margin: 0;
  letter-spacing: -0.01em;
}
.lv-magazine-card--featured .lv-magazine-name {
  font-size: clamp(1.5rem, 2vw, 2rem);
}
.lv-magazine-desc {
  font-size: 0.92rem;
  color: var(--public-text-soft, #475569);
  margin: 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lv-magazine-toggle {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  background: transparent;
  border: 1px solid var(--theme-primary, #2563eb);
  color: var(--theme-primary, #2563eb);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease;
}
.lv-magazine-toggle:hover {
  background: var(--theme-primary, #2563eb);
  color: #ffffff;
}
.lv-magazine-toggle svg { transition: transform 0.2s ease; }
.lv-magazine-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Bottom drawer that overlays bottom 50% of the card */
.lv-magazine-drawer {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  max-height: 60%;
  overflow-y: auto;
  background: var(--public-card-bg, #ffffff);
  border-top: 1px solid var(--public-border, #e2e8f0);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
  padding: 1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 2;
}
.lv-magazine-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lv-magazine-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--public-surface-muted, #f1f5f9);
  color: var(--public-text-soft, #475569);
  border: 0;
  cursor: pointer;
}
.lv-magazine-drawer-close:hover {
  background: var(--theme-primary, #2563eb);
  color: #ffffff;
}

@media (prefers-reduced-motion: no-preference) {
  .lv-magazine-card {
    opacity: 0;
    transform: translateY(10px);
    animation: lv-mag-card-in 0.5s ease forwards;
  }
  .lv-magazine-card:nth-child(1) { animation-delay: 0.04s; }
  .lv-magazine-card:nth-child(2) { animation-delay: 0.12s; }
  .lv-magazine-card:nth-child(3) { animation-delay: 0.2s; }
  .lv-magazine-card:nth-child(4) { animation-delay: 0.28s; }
  .lv-magazine-card:nth-child(5) { animation-delay: 0.36s; }
  .lv-magazine-card:nth-child(6) { animation-delay: 0.44s; }
  @keyframes lv-mag-card-in {
    to { opacity: 1; transform: translateY(0); }
  }
  .lv-mag-drawer-enter,
  .lv-mag-drawer-leave { transition: transform 0.28s ease, opacity 0.28s ease; }
  .lv-mag-drawer-enter-start,
  .lv-mag-drawer-leave-end { transform: translateY(100%); opacity: 0; }
  .lv-mag-drawer-enter-end,
  .lv-mag-drawer-leave-start { transform: translateY(0); opacity: 1; }
}


/* ─────────────────────────────────────────────────────────────────────
 * Variant: spotlight_featured — one big hero, swap-on-click rail below.
 * ───────────────────────────────────────────────────────────────────── */

.lv-spotlight .lv-spotlight-hero {
  position: relative;
  border-radius: var(--ds-radius-lg, 1rem);
  overflow: hidden;
  background: var(--public-card-bg, #ffffff);
  border: 1px solid var(--public-border, #e2e8f0);
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 1.75rem;
  box-shadow: var(--ds-shadow-md, 0 6px 18px rgba(15, 23, 42, 0.1));
}
@media (min-width: 900px) {
  .lv-spotlight .lv-spotlight-hero {
    grid-template-columns: 1.1fr 1fr;
    min-height: 440px;
  }
}

.lv-spotlight-hero-media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: var(--lv-spot-tint, var(--theme-primary, #2563eb));
}
.lv-spotlight-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.lv-spotlight-hero-mono {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--ds-font-serif, Georgia, serif);
}
.lv-spotlight-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--lv-spot-tint, var(--theme-primary, #2563eb)) 55%, transparent) 0%,
    rgba(15, 23, 42, 0.05) 70%);
  pointer-events: none;
}

.lv-spotlight-hero-body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}
.lv-spotlight-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--theme-primary, #2563eb);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--theme-primary, #2563eb) 12%, transparent);
  align-self: flex-start;
}
.lv-spotlight-name {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 800;
  color: var(--public-text-strong, #0f172a);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}
.lv-spotlight-desc {
  font-size: 1rem;
  color: var(--public-text-soft, #475569);
  line-height: 1.6;
  margin: 0;
}
.lv-spotlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.lv-spotlight-included {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.lv-spotlight-included li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--public-text-strong, #0f172a);
  align-items: flex-start;
}
.lv-spotlight-included svg {
  width: 16px; height: 16px;
  color: var(--theme-primary, #2563eb);
  flex-shrink: 0;
  margin-top: 2px;
}

.lv-spotlight-slots {
  background: var(--public-card-bg, #ffffff);
  border: 1px solid var(--public-border, #e2e8f0);
  border-radius: var(--ds-radius-lg, 1rem);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
}
.lv-spotlight-slots-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.lv-spotlight-cta { align-self: auto; }

.lv-spotlight-rail-wrap { margin-top: 0.5rem; }
.lv-spotlight-rail-label { margin-bottom: 0.65rem; }
.lv-spotlight-rail {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 640px) {
  .lv-spotlight-rail {
    flex-direction: column;
    overflow-x: visible;
  }
}
.lv-spotlight-rail-card {
  flex: 0 0 240px;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  background: var(--public-card-bg, #ffffff);
  border: 1px solid var(--public-border, #e2e8f0);
  border-radius: var(--ds-radius-md, 0.75rem);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: inherit;
  scroll-snap-align: start;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
@media (max-width: 640px) {
  .lv-spotlight-rail-card { flex: 1 1 auto; }
}
.lv-spotlight-rail-card:hover {
  border-color: var(--theme-primary, #2563eb);
  box-shadow: var(--ds-shadow-sm, 0 1px 2px rgba(15, 23, 42, 0.08));
}
.lv-spotlight-rail-card.is-active {
  border-color: var(--theme-primary, #2563eb);
  background: color-mix(in srgb, var(--theme-primary, #2563eb) 6%, var(--public-card-bg, #ffffff));
}
.lv-spotlight-rail-thumb {
  width: 44px; height: 44px;
  border-radius: var(--ds-radius-sm, 0.5rem);
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.lv-spotlight-rail-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.lv-spotlight-rail-mono {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
}
.lv-spotlight-rail-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.lv-spotlight-rail-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--public-text-strong, #0f172a);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lv-spotlight-rail-sub {
  display: inline-flex;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--public-text-soft, #475569);
  font-weight: 600;
}

@media (prefers-reduced-motion: no-preference) {
  .lv-spotlight-rail-card { transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease; }
  .lv-spotlight-rail-card:hover { transform: translateY(-2px) scale(1.02); }
  .lv-spotlight-rail-card {
    opacity: 0;
    animation: lv-spot-rail-in 0.4s ease forwards;
  }
  .lv-spotlight-rail-card:nth-child(1) { animation-delay: 0.05s; }
  .lv-spotlight-rail-card:nth-child(2) { animation-delay: 0.1s; }
  .lv-spotlight-rail-card:nth-child(3) { animation-delay: 0.15s; }
  .lv-spotlight-rail-card:nth-child(4) { animation-delay: 0.2s; }
  .lv-spotlight-rail-card:nth-child(5) { animation-delay: 0.25s; }
  .lv-spotlight-rail-card:nth-child(6) { animation-delay: 0.3s; }
  @keyframes lv-spot-rail-in {
    to { opacity: 1; }
  }
}
