/* ==========================================================================
   Loft 64 Premium Landing — animations & visual enhancements
   Logo-derived palette: gold #FCED24, warm #ED8913, dark #0B0300
   Preserves existing purple theme (#9333ea / #667eea)
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap");

:root {
  --loft-gold: #fced24;
  --loft-gold-soft: #fef08a;
  --loft-warm: #ed8913;
  --loft-purple: #9333ea;
  --loft-purple-deep: #764ba2;
  --loft-purple-light: #667eea;
  --loft-dark: #0b0300;
  --loft-glass: rgba(255, 255, 255, 0.08);
  --loft-glass-border: rgba(255, 255, 255, 0.12);
  --loft-shadow-premium: 0 25px 50px -12px rgba(102, 126, 234, 0.25);
  --loft-shadow-card: 0 20px 40px rgba(0, 0, 0, 0.12);
  --loft-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --loft-ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --loft-font-display: "Playfair Display", Georgia, serif;
  --loft-font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Keep anchored sections visible below fixed navbar. */
body.loft-premium section[id] {
  scroll-margin-top: 6.5rem;
}
@media (max-width: 1023px) {
  body.loft-premium section[id] {
    scroll-margin-top: 8rem;
  }
}

/* Create clearer separation between Hero cards and the next section. */
body.loft-premium #home {
  padding-bottom: 3.25rem;
}
body.loft-premium #calculator {
  margin-top: 2.25rem;
  padding-top: 6.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}
@media (min-width: 768px) and (max-width: 1023px) {
  body.loft-premium #home {
    padding-bottom: 2.75rem;
  }
  body.loft-premium #calculator {
    margin-top: 1.75rem;
    padding-top: 6.25rem;
  }
}
@media (max-width: 767px) {
  body.loft-premium #home {
    padding-bottom: 2.25rem;
  }
  body.loft-premium #calculator {
    margin-top: 1.35rem;
    padding-top: 5.5rem;
  }
}

/* Light mode contrast tuning for sections from About to footer. */
[data-theme="light"] body.loft-premium #about,
[data-theme="light"] body.loft-premium #booking,
[data-theme="light"] body.loft-premium #services,
[data-theme="light"] body.loft-premium #games,
[data-theme="light"] body.loft-premium #pricing,
[data-theme="light"] body.loft-premium #calculator,
[data-theme="light"] body.loft-premium #parties,
[data-theme="light"] body.loft-premium #private-events,
[data-theme="light"] body.loft-premium #menu,
[data-theme="light"] body.loft-premium #gallery,
[data-theme="light"] body.loft-premium #unique,
[data-theme="light"] body.loft-premium #events,
[data-theme="light"] body.loft-premium #testimonials,
[data-theme="light"] body.loft-premium #contact {
  box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.12);
}
[data-theme="light"] body.loft-premium .loft-section-wrap.bg-white {
  background-color: #f3f4f8 !important;
}
[data-theme="light"] body.loft-premium .loft-section-wrap.bg-gray-50 {
  background-color: #e9edf4 !important;
}
[data-theme="light"] body.loft-premium .loft-section-wrap.from-blue-50 {
  --tw-gradient-from: #dbe7ff !important;
}
[data-theme="light"] body.loft-premium .loft-section-wrap.to-purple-50 {
  --tw-gradient-to: #e8dcff !important;
}
[data-theme="light"] body.loft-premium .loft-section-wrap.from-purple-50 {
  --tw-gradient-from: #e7dcff !important;
}
[data-theme="light"] body.loft-premium .loft-section-wrap.to-indigo-50 {
  --tw-gradient-to: #dce3ff !important;
}
[data-theme="light"] body.loft-premium .loft-section-wrap.to-blue-50 {
  --tw-gradient-to: #dce9ff !important;
}
[data-theme="light"] body.loft-premium .loft-section-wrap.from-indigo-50 {
  --tw-gradient-from: #dce2ff !important;
}
[data-theme="light"] body.loft-premium .loft-section-wrap.to-pink-50 {
  --tw-gradient-to: #f3deef !important;
}

body.loft-premium {
  font-family: var(--loft-font-body);
}

/* —— Scroll progress —— */
.loft-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 9999;
  background: linear-gradient(90deg, var(--loft-purple), var(--loft-gold), var(--loft-warm));
  box-shadow: 0 0 12px rgba(252, 237, 36, 0.5);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* —— Mouse-follow glow —— */
.loft-cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.12) 0%, rgba(252, 237, 36, 0.04) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  opacity: 0;
  mix-blend-mode: screen;
}
body.loft-premium .loft-cursor-glow.is-active {
  opacity: 1;
}
@media (hover: none), (max-width: 768px) {
  .loft-cursor-glow { display: none; }
}

/* —— Premium navbar —— */
body.loft-premium nav.loft-main-nav,
body.loft-premium nav.loft-nav-premium {
  transition: background 0.45s var(--loft-ease-smooth),
    box-shadow 0.45s var(--loft-ease-smooth),
    backdrop-filter 0.45s var(--loft-ease-smooth);
}
body.loft-premium nav.loft-main-nav.is-scrolled,
body.loft-premium nav.loft-nav-premium.is-scrolled {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06) !important;
  border-bottom: 1px solid rgba(147, 51, 234, 0.08);
}
[data-theme="dark"] body.loft-premium nav.loft-main-nav.is-scrolled,
[data-theme="dark"] body.loft-premium nav.loft-nav-premium.is-scrolled {
  background: rgba(15, 23, 42, 0.92) !important;
  border-bottom-color: rgba(168, 85, 247, 0.15);
}

/* Brand */
.loft-nav-brand {
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.loft-nav-brand:hover {
  opacity: 0.9;
}
[data-theme="dark"] .loft-nav-brand-name {
  color: #c084fc !important;
}
[data-theme="dark"] .loft-nav-brand-tag {
  color: #94a3b8 !important;
}

/* Nav links */
.loft-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  border-radius: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
  position: relative;
}
.loft-nav-link:hover,
.loft-nav-link.nav-link-active {
  color: var(--loft-purple);
  background: rgba(147, 51, 234, 0.06);
}
.loft-nav-link-accent {
  color: var(--loft-purple);
  font-weight: 600;
}
.loft-nav-chevron {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
  opacity: 0.6;
}
.loft-nav-dropdown.is-open .loft-nav-chevron {
  transform: rotate(180deg);
}
[data-theme="dark"] .loft-nav-link {
  color: #cbd5e1;
}
[data-theme="dark"] .loft-nav-link:hover,
[data-theme="dark"] .loft-nav-link.nav-link-active {
  color: #e9d5ff;
  background: rgba(147, 51, 234, 0.12);
}
[data-theme="dark"] .loft-nav-actions {
  border-color: rgba(148, 163, 184, 0.25) !important;
}

/* Dropdown menu */
.loft-nav-dropdown {
  position: relative;
}
.loft-nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.6rem;
}
.loft-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 13.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(147, 51, 234, 0.12);
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--loft-ease-out-expo), visibility 0.25s;
  z-index: 100;
}
.loft-nav-dropdown.is-open .loft-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.loft-nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  border-radius: 0.65rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.loft-nav-dropdown-item span:first-child {
  font-size: 1rem;
  width: 1.25rem;
  text-align: center;
}
.loft-nav-dropdown-item:hover {
  background: rgba(147, 51, 234, 0.08);
  color: var(--loft-purple);
  transform: translateX(3px);
}
[data-theme="dark"] .loft-nav-dropdown-menu {
  background: rgba(30, 41, 59, 0.96);
  border-color: rgba(168, 85, 247, 0.2);
}
[data-theme="dark"] .loft-nav-dropdown-item {
  color: #e2e8f0;
}
[data-theme="dark"] .loft-nav-dropdown-item:hover {
  background: rgba(147, 51, 234, 0.15);
  color: #e9d5ff;
}

/* CTA button */
.loft-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0b0300 !important;
  background: linear-gradient(135deg, var(--loft-gold) 0%, var(--loft-warm) 100%);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(252, 237, 36, 0.35);
  transition: transform 0.3s var(--loft-ease-out-expo), box-shadow 0.3s ease;
  white-space: nowrap;
}
.loft-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(252, 237, 36, 0.45);
}
.loft-nav-cta-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
}
.loft-nav-theme {
  padding: 0.45rem 0.6rem !important;
}
.loft-nav-theme .theme-label {
  display: none;
}

/* Mobile nav */
.loft-nav-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #374151;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.loft-nav-burger:hover {
  background: rgba(147, 51, 234, 0.08);
  color: var(--loft-purple);
}
.loft-mobile-nav-link,
.loft-mobile-nav-sublink {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.loft-mobile-nav-link:hover,
.loft-mobile-nav-sublink:hover {
  background: rgba(147, 51, 234, 0.08);
  color: var(--loft-purple);
}
.loft-mobile-nav-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #374151;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.loft-mobile-nav-toggle:hover {
  background: rgba(147, 51, 234, 0.06);
}
.loft-mobile-chevron {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}
.loft-mobile-nav-group.is-open .loft-mobile-chevron {
  transform: rotate(180deg);
}
.loft-mobile-nav-sublink {
  font-size: 0.875rem;
  padding-left: 1.5rem !important;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.loft-mobile-nav-icon {
  width: 1.1rem;
  text-align: center;
  flex: 0 0 1.1rem;
}
[data-theme="dark"] .loft-mobile-nav-link,
[data-theme="dark"] .loft-mobile-nav-toggle {
  color: #e2e8f0;
}
[data-theme="dark"] .loft-mobile-nav-sublink {
  color: #94a3b8;
}

body.loft-premium nav.loft-nav-premium .nav-link-active {
  color: var(--loft-purple) !important;
}

/* —— Hero cinematic —— */
body.loft-premium .hero-bg {
  background: linear-gradient(135deg, #1a0a2e 0%, #4c1d95 35%, #667eea 70%, #764ba2 100%) !important;
  background-size: 400% 400% !important;
  animation: loftGradientShift 18s ease infinite !important;
  isolation: isolate;
}
@keyframes loftGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
body.loft-premium .hero-bg::before {
  animation: loftFloat 24s ease-in-out infinite !important;
  opacity: 0.6;
}
body.loft-premium .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(252, 237, 36, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(237, 137, 19, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 90%, rgba(147, 51, 234, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.loft-hero-inner {
  position: relative;
  z-index: 2;
}
.loft-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.loft-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  animation: loftParticleDrift linear infinite;
}
@keyframes loftParticleDrift {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.loft-hero-floats {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.loft-float-icon {
  position: absolute;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  opacity: 0.15;
  filter: blur(0.5px);
  animation: loftFloatIcon 8s ease-in-out infinite;
}
.loft-float-icon:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.loft-float-icon:nth-child(2) { top: 25%; right: 12%; animation-delay: -2s; }
.loft-float-icon:nth-child(3) { bottom: 30%; left: 15%; animation-delay: -4s; }
.loft-float-icon:nth-child(4) { top: 60%; right: 8%; animation-delay: -1s; }
.loft-float-icon:nth-child(5) { bottom: 20%; right: 25%; animation-delay: -3s; }
.loft-float-icon:nth-child(6) { top: 40%; left: 5%; animation-delay: -5s; }
@keyframes loftFloatIcon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(8deg); }
}
body.loft-premium .hero-bg h1 {
  font-family: var(--loft-font-display);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
body.loft-premium .hero-bg .loft-hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(252, 237, 36, 0.15);
  border: 1px solid rgba(252, 237, 36, 0.35);
  color: var(--loft-gold-soft);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
body.loft-premium .hero-bg .loft-hero-cta .loft-btn-primary {
  background: linear-gradient(135deg, var(--loft-gold) 0%, var(--loft-warm) 100%);
  color: var(--loft-dark) !important;
  font-weight: 700;
  border: none;
  box-shadow: 0 8px 32px rgba(252, 237, 36, 0.35);
  position: relative;
  overflow: hidden;
}
body.loft-premium .hero-bg .loft-hero-cta .loft-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
body.loft-premium .hero-bg .loft-hero-cta .loft-btn-primary:hover::before {
  transform: translateX(100%);
}
body.loft-premium .hero-bg .loft-hero-cta .loft-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  color: #fff;
}
body.loft-premium .hero-bg .loft-hero-cta .loft-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(252, 237, 36, 0.5);
}
body.loft-premium .hero-bg .loft-hero-cta .loft-btn-accent {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.35);
}

/* —— Scroll reveal —— */
.loft-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--loft-ease-out-expo), transform 0.9s var(--loft-ease-out-expo);
}
.loft-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.loft-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--loft-ease-out-expo), transform 0.9s var(--loft-ease-out-expo);
}
.loft-reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.loft-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--loft-ease-out-expo), transform 0.9s var(--loft-ease-out-expo);
}
.loft-reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.loft-reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--loft-ease-out-expo), transform 0.8s var(--loft-ease-out-expo);
}
.loft-reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}
.loft-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--loft-ease-out-expo), transform 0.7s var(--loft-ease-out-expo);
}
.loft-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.loft-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.loft-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.loft-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.loft-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.loft-stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; }
.loft-stagger.is-visible > *:nth-child(7) { transition-delay: 0.35s; }
.loft-stagger.is-visible > *:nth-child(8) { transition-delay: 0.4s; }
.loft-stagger.is-visible > *:nth-child(9) { transition-delay: 0.45s; }
.loft-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* —— Section titles —— */
body.loft-premium .loft-section-title {
  font-family: var(--loft-font-display);
  letter-spacing: -0.02em;
  position: relative;
}
body.loft-premium .loft-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--loft-purple);
  margin-bottom: 0.75rem;
}
[data-theme="dark"] body.loft-premium .loft-section-label {
  color: #c084fc;
}

/* —— Stats counters —— */
.loft-stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem auto 0;
  max-width: 56rem;
}
@media (min-width: 768px) {
  .loft-stats-bar { grid-template-columns: repeat(4, 1fr); }
}
.loft-stat-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 0.4s var(--loft-ease-out-expo), box-shadow 0.4s ease;
}
.loft-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.loft-stat-number {
  font-family: var(--loft-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--loft-gold);
  line-height: 1.1;
}
.loft-stat-label {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 0.35rem;
}

/* —— Premium cards —— */
body.loft-premium .game-card,
body.loft-premium .pricing-card,
body.loft-premium .party-card,
body.loft-premium .event-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--loft-ease-out-expo),
    box-shadow 0.45s var(--loft-ease-out-expo),
    border-color 0.35s ease !important;
}
body.loft-premium .game-card::before,
body.loft-premium .pricing-card:not(.featured)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(147, 51, 234, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
body.loft-premium .game-card:hover::before,
body.loft-premium .pricing-card:not(.featured):hover::before {
  opacity: 1;
}
body.loft-premium .game-card:hover {
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow: var(--loft-shadow-premium) !important;
}
body.loft-premium .pricing-card:hover {
  transform: translateY(-14px) !important;
  box-shadow: var(--loft-shadow-premium) !important;
}
body.loft-premium .party-card:hover {
  transform: scale(1.04) translateY(-6px) !important;
  box-shadow: 0 20px 50px rgba(238, 90, 82, 0.35) !important;
}
body.loft-premium .event-card {
  border: 1px solid transparent;
}
body.loft-premium .event-card:hover {
  border-color: rgba(147, 51, 234, 0.25);
  box-shadow: var(--loft-shadow-premium) !important;
}

/* —— Glass booking form —— */
body.loft-premium #booking .bg-white.rounded-3xl {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(147, 51, 234, 0.1);
  box-shadow: var(--loft-shadow-card);
}
[data-theme="dark"] body.loft-premium #booking .bg-white.rounded-3xl {
  background: rgba(30, 41, 59, 0.92) !important;
  border-color: rgba(168, 85, 247, 0.15);
}
body.loft-premium .slot-btn {
  transition: all 0.3s var(--loft-ease-smooth) !important;
}
body.loft-premium .slot-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.2);
}

/* —— Pricing highlight —— */
body.loft-premium .pricing-highlight {
  background: linear-gradient(135deg, var(--loft-gold) 0%, var(--loft-gold-soft) 50%, var(--loft-warm) 100%) !important;
  box-shadow: 0 8px 32px rgba(252, 237, 36, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* —— Gallery masonry feel —— */
body.loft-premium .loft-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  body.loft-premium .loft-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 12rem;
  }
  body.loft-premium .loft-gallery-grid .gallery-item:nth-child(1) { grid-row: span 2; }
  body.loft-premium .loft-gallery-grid .gallery-item:nth-child(5) { grid-row: span 2; }
  body.loft-premium .loft-gallery-grid .gallery-item:nth-child(7) { grid-column: span 2; }
}
body.loft-premium .gallery-item {
  border-radius: 1.25rem !important;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
body.loft-premium .gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 3, 0, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}
body.loft-premium .gallery-item:hover::after {
  opacity: 1;
}
body.loft-premium .gallery-item:hover {
  transform: scale(1.05) !important;
  z-index: 2;
  box-shadow: var(--loft-shadow-premium);
}

/* —— Why choose icons —— */
body.loft-premium .loft-feature-icon {
  transition: transform 0.5s var(--loft-ease-out-expo), box-shadow 0.4s ease;
}
body.loft-premium .loft-feature-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(147, 51, 234, 0.2);
}

/* —— Franchise section glow —— */
body.loft-premium #franchise {
  position: relative;
  overflow: hidden;
}
body.loft-premium #franchise::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(252, 237, 36, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
  animation: loftFloat 12s ease-in-out infinite;
}

/* —— Contact glass cards —— */
body.loft-premium #contact .bg-gray-700 {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s var(--loft-ease-out-expo);
}
body.loft-premium #contact .bg-gray-700:hover {
  transform: translateY(-4px);
}

/* —— Footer premium —— */
body.loft-premium footer img {
  transition: transform 0.6s var(--loft-ease-out-expo);
}
body.loft-premium footer img:hover {
  transform: scale(1.08) rotate(-3deg);
}
body.loft-premium footer a {
  transition: color 0.25s ease, transform 0.25s ease;
}
body.loft-premium footer a:hover {
  transform: translateX(3px);
}

/* —— Section parallax backgrounds —— */
.loft-parallax-bg {
  position: absolute;
  inset: -20% 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  will-change: transform;
}
.loft-section-wrap {
  position: relative;
  overflow: hidden;
}

/* —— Buttons global micro-interaction —— */
body.loft-premium button,
body.loft-premium a.rounded-full[class*="bg-"] {
  transition: transform 0.35s var(--loft-ease-out-expo), box-shadow 0.35s ease !important;
}
body.loft-premium button:active,
body.loft-premium a.rounded-full[class*="bg-"]:active {
  transform: scale(0.97) !important;
}

/* —— Testimonials (if added later) —— */
.loft-testimonial-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(147, 51, 234, 0.1);
  border-radius: 1.5rem;
}

@keyframes loftFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* —— Inner pages: shared premium typography —— */
body.loft-premium h1,
body.loft-premium h2.loft-section-title,
body.loft-premium .loft-section-title {
  font-family: var(--loft-font-display);
  letter-spacing: -0.02em;
}
body.loft-premium .loft-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--loft-purple);
  margin-bottom: 0.75rem;
}
[data-theme="dark"] body.loft-premium .loft-section-label {
  color: #c084fc;
}

/* Inner page hero (birthday, etc.) */
body.loft-premium:not(.loft-franchise-page) .hero-bg {
  background-size: 400% 400% !important;
  animation: loftGradientShift 18s ease infinite !important;
  isolation: isolate;
}
body.loft-premium .hero-bg .loft-stat-label,
body.loft-premium .loft-stat-label {
  color: rgba(255, 255, 255, 0.92);
}
[data-theme="dark"] body.loft-premium .feature-card,
[data-theme="dark"] body.loft-premium .game-card {
  color: #e2e8f0;
}
[data-theme="dark"] body.loft-premium .feature-card .text-gray-800,
[data-theme="dark"] body.loft-premium .feature-card .text-gray-600,
[data-theme="dark"] body.loft-premium section .text-gray-600,
[data-theme="dark"] body.loft-premium section .text-gray-700,
[data-theme="dark"] body.loft-premium main .text-gray-600 {
  color: #cbd5e1 !important;
}
[data-theme="dark"] body.loft-premium section .text-gray-800,
[data-theme="dark"] body.loft-premium main .text-gray-800,
[data-theme="dark"] body.loft-premium main .text-gray-900 {
  color: #f1f5f9 !important;
}
[data-theme="dark"] body.loft-premium .bg-white.rounded-2xl .text-gray-600,
[data-theme="dark"] body.loft-premium .bg-white.rounded-3xl .text-gray-600,
[data-theme="dark"] body.loft-premium .bg-white.rounded-2xl .text-gray-700,
[data-theme="dark"] body.loft-premium .bg-white.rounded-3xl .text-gray-700 {
  color: #cbd5e1 !important;
}
[data-theme="dark"] body.loft-premium .link-card {
  color: #e2e8f0 !important;
}
[data-theme="dark"] body.loft-premium .link-card .text-gray-600 {
  color: #b8c5d6 !important;
}
body.loft-premium .feature-card:hover {
  transform: translateY(-12px) !important;
  box-shadow: var(--loft-shadow-premium) !important;
}
body.loft-premium .link-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--loft-shadow-premium) !important;
}
body.loft-premium .hero-404 {
  background: linear-gradient(135deg, #1a0a2e 0%, #667eea 50%, #764ba2 100%) !important;
  background-size: 400% 400% !important;
  animation: loftGradientShift 18s ease infinite !important;
}
body.loft-premium.loft-menu-page nav.loft-nav-premium.is-scrolled {
  background: rgba(17, 24, 39, 0.92) !important;
}
[data-theme="light"] body.loft-premium.loft-menu-page nav.loft-nav-premium.is-scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
}

body.loft-franchise-page.loft-premium {
  font-family: var(--loft-font-body);
}

body.loft-franchise-page.loft-premium {
  font-family: var(--loft-font-body);
}

/* —— About section —— */
.loft-about-stat {
  background: rgba(147, 51, 234, 0.06);
  border: 1px solid rgba(147, 51, 234, 0.12);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
}
[data-theme="dark"] .loft-about-stat {
  background: rgba(147, 51, 234, 0.12);
  border-color: rgba(168, 85, 247, 0.2);
}
.loft-about-visual {
  transform: perspective(800px) rotateY(-2deg);
  transition: transform 0.6s var(--loft-ease-out-expo);
}
.loft-about-visual:hover {
  transform: perspective(800px) rotateY(0deg) scale(1.02);
}
.loft-about-tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #fff;
}

/* —— Service cards —— */
.loft-service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(147, 51, 234, 0.1);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: transform 0.45s var(--loft-ease-out-expo), box-shadow 0.45s ease, border-color 0.3s ease;
}
.loft-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--loft-shadow-premium);
  border-color: rgba(147, 51, 234, 0.35);
}
.loft-service-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
  transition: transform 0.4s ease;
}
.loft-service-card:hover .loft-service-icon {
  transform: scale(1.15) rotate(-5deg);
}
[data-theme="dark"] .loft-service-card {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(168, 85, 247, 0.15);
}

/* —— Gaming zone booking cards —— */
.loft-gaming-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  padding: 1.75rem;
  transition: transform 0.45s var(--loft-ease-out-expo), box-shadow 0.45s ease, border-color 0.3s ease;
}
.loft-gaming-card:hover {
  transform: translateY(-8px);
  border-color: rgba(252, 237, 36, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.loft-slot-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.loft-slot-available {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.35);
}
.loft-slot-hot {
  background: rgba(252, 237, 36, 0.2);
  color: var(--loft-gold-soft);
  border: 1px solid rgba(252, 237, 36, 0.35);
}
.loft-gaming-summary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

/* —— Private events —— */
.loft-private-package {
  background: #fff;
  border: 1px solid rgba(147, 51, 234, 0.12);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.45s var(--loft-ease-out-expo), box-shadow 0.45s ease;
}
.loft-private-package:hover {
  transform: translateY(-8px);
  box-shadow: var(--loft-shadow-premium);
}
.loft-private-featured {
  border-color: var(--loft-purple);
  box-shadow: 0 0 0 2px rgba(147, 51, 234, 0.15);
}
.loft-private-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--loft-purple), var(--loft-purple-light));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.loft-private-gallery-item {
  transition: transform 0.4s ease;
}
.loft-private-gallery-item:hover {
  transform: scale(1.05);
}
[data-theme="dark"] .loft-private-package {
  background: #1e293b;
  border-color: rgba(168, 85, 247, 0.2);
}

/* —— Menu tabs —— */
.loft-menu-tab {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid rgba(147, 51, 234, 0.2);
  background: transparent;
  color: var(--loft-purple);
  cursor: pointer;
  transition: all 0.3s ease;
}
.loft-menu-tab:hover,
.loft-menu-tab.active {
  background: linear-gradient(135deg, var(--loft-purple), var(--loft-purple-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.35);
}
.loft-menu-panel {
  display: none;
}
.loft-menu-panel.active {
  display: grid;
}
.loft-menu-item {
  background: rgba(147, 51, 234, 0.04);
  border: 1px solid rgba(147, 51, 234, 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.loft-menu-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--loft-shadow-card);
}
.loft-menu-price {
  font-weight: 700;
  color: var(--loft-purple);
  font-size: 1.1rem;
  white-space: nowrap;
}
[data-theme="dark"] .loft-menu-item {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(168, 85, 247, 0.15);
}
[data-theme="dark"] .loft-menu-tab {
  color: #c084fc;
  border-color: rgba(168, 85, 247, 0.3);
}

/* —— Unique alternating rows —— */
.loft-unique-visual {
  transition: transform 0.6s var(--loft-ease-out-expo);
  box-shadow: var(--loft-shadow-card);
}
.loft-unique-row:hover .loft-unique-visual {
  transform: scale(1.03);
}
[data-theme="dark"] .loft-unique-visual.bg-gradient-to-br {
  filter: brightness(0.85);
}

/* —— Testimonials slider —— */
.loft-testimonial-slider {
  overflow: hidden;
}
.loft-testimonial-track {
  position: relative;
  min-height: 220px;
}
.loft-testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s var(--loft-ease-out-expo);
  pointer-events: none;
}
.loft-testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.loft-testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(147, 51, 234, 0.25);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}
.loft-testimonial-dot.active {
  background: var(--loft-purple);
  transform: scale(1.25);
}
[data-theme="dark"] .loft-testimonial-glass {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(168, 85, 247, 0.2);
}
[data-theme="dark"] .loft-testimonial-glass .text-gray-700 {
  color: #e2e8f0 !important;
}

body.loft-franchise-page nav.loft-nav-premium.is-scrolled,
body.loft-franchise-page #franchiseNav.loft-nav-premium.is-scrolled {
  background: var(--nav-scrolled, rgba(7, 7, 13, 0.95)) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: var(--shadow-nav, 0 4px 24px rgba(0, 0, 0, 0.4)) !important;
}

/* —— Price calculator —— */
.loft-calc-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.75rem;
  align-items: start;
}
@media (max-width: 900px) {
  .loft-calc-shell {
    grid-template-columns: 1fr;
  }
}
.loft-calc-form {
  background: #fff;
  border-radius: 1.75rem;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--loft-shadow-card, 0 12px 40px rgba(15, 23, 42, 0.08));
  border: 1px solid rgba(147, 51, 234, 0.1);
}
.loft-calc-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.65rem;
}
.loft-calc-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}
@media (max-width: 640px) {
  .loft-calc-types {
    grid-template-columns: 1fr;
  }
}
.loft-calc-type,
.loft-calc-day,
.loft-calc-food {
  border: 2px solid rgba(147, 51, 234, 0.18);
  background: rgba(147, 51, 234, 0.04);
  color: #4c1d95;
  border-radius: 1rem;
  padding: 0.85rem 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s var(--loft-ease-out-expo), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  text-align: center;
  line-height: 1.25;
}
.loft-calc-type span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  margin-top: 0.2rem;
}
.loft-calc-type:hover,
.loft-calc-day:hover,
.loft-calc-food:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 51, 234, 0.45);
}
.loft-calc-type.is-active,
.loft-calc-day.is-active,
.loft-calc-food.is-active {
  background: linear-gradient(135deg, var(--loft-purple), var(--loft-purple-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(147, 51, 234, 0.28);
}
.loft-calc-type.is-active span {
  color: rgba(255, 255, 255, 0.85);
}
.loft-calc-day,
.loft-calc-food {
  flex: 1;
  border-radius: 999px;
  padding: 0.7rem 1rem;
}
.loft-calc-toggle {
  display: flex;
  gap: 0.5rem;
}
.loft-calc-row {
  margin-bottom: 1.2rem;
}
.loft-calc-row[hidden] {
  display: none !important;
}
.loft-calc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) {
  .loft-calc-grid-2 {
    grid-template-columns: 1fr;
  }
}
.loft-calc-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.loft-calc-stepper button {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  border: 2px solid rgba(147, 51, 234, 0.2);
  background: #fff;
  color: var(--loft-purple);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}
.loft-calc-stepper button:hover {
  background: rgba(147, 51, 234, 0.08);
}
.loft-calc-stepper input {
  flex: 1;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.65rem 0.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.85rem;
}
.loft-calc-range {
  width: 100%;
  accent-color: var(--loft-purple);
  height: 0.45rem;
  cursor: pointer;
}
.loft-calc-hint {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.4rem;
}
.loft-calc-range-val {
  font-weight: 700;
  color: var(--loft-purple);
  font-size: 0.95rem;
}
.loft-calc-result {
  background: linear-gradient(160deg, #5b21b6 0%, #6d28d9 42%, #4338ca 100%);
  color: #fff;
  border-radius: 1.75rem;
  padding: 1.85rem 1.75rem 1.5rem;
  box-shadow: 0 18px 50px rgba(91, 33, 182, 0.35);
  position: sticky;
  top: 6.25rem;
}
.loft-calc-result-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 700;
}
.loft-calc-total {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0.35rem 0 0.15rem;
  letter-spacing: -0.03em;
}
.loft-calc-total.is-updating {
  animation: loftCalcPop 0.35s var(--loft-ease-out-expo);
}
@keyframes loftCalcPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.loft-calc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
  opacity: 0.92;
  margin-bottom: 1rem;
}
.loft-calc-breakdown {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.loft-calc-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  font-size: 0.88rem;
}
.loft-calc-breakdown li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.loft-calc-notes {
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.92;
}
.loft-calc-notes p {
  margin: 0 0 0.5rem;
}
.loft-calc-compare {
  margin-top: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.9rem;
  background: rgba(252, 237, 36, 0.16);
  color: #fef9c3;
  font-size: 0.82rem;
  line-height: 1.45;
}
.loft-calc-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.loft-calc-actions button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s var(--loft-ease-out-expo), box-shadow 0.25s ease;
}
.loft-calc-actions button:hover {
  transform: translateY(-2px);
}
.loft-calc-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}
.loft-calc-book {
  background: #fff;
  color: #5b21b6;
}
.loft-calc-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 1.25rem;
}
.loft-calc-cta-banner {
  margin-top: 1.75rem;
  text-align: center;
}
.loft-calc-cta-banner a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--loft-purple), #4f46e5);
  color: #fff;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(147, 51, 234, 0.28);
  transition: transform 0.25s var(--loft-ease-out-expo);
}
.loft-calc-cta-banner a:hover {
  transform: translateY(-2px);
  color: #fff;
}
[data-theme="dark"] .loft-calc-form {
  background: #1e293b;
  border-color: rgba(168, 85, 247, 0.18);
}
[data-theme="dark"] .loft-calc-label,
[data-theme="dark"] .loft-calc-hint,
[data-theme="dark"] .loft-calc-disclaimer {
  color: #94a3b8;
}
[data-theme="dark"] .loft-calc-type,
[data-theme="dark"] .loft-calc-day,
[data-theme="dark"] .loft-calc-food,
[data-theme="dark"] .loft-calc-stepper button {
  background: rgba(15, 23, 42, 0.7);
  color: #e9d5ff;
  border-color: rgba(168, 85, 247, 0.28);
}
[data-theme="dark"] .loft-calc-type span {
  color: #94a3b8;
}
[data-theme="dark"] .loft-calc-type.is-active,
[data-theme="dark"] .loft-calc-day.is-active,
[data-theme="dark"] .loft-calc-food.is-active {
  color: #fff;
}
[data-theme="dark"] .loft-calc-stepper input {
  background: #0f172a;
  border-color: #475569;
  color: #f8fafc;
}

/* —— Reduced motion —— */
@media (prefers-reduced-motion: reduce) {
  .loft-reveal,
  .loft-reveal-left,
  .loft-reveal-right,
  .loft-reveal-scale,
  .loft-stagger > *,
  .loft-particle,
  .loft-float-icon {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  body.loft-premium .hero-bg {
    animation: none !important;
  }
  .loft-calc-total.is-updating {
    animation: none !important;
  }
}
