/* ═══════════════════════════════════════════
   GLORIOSA GANAPATI 2026 — STYLE SYSTEM
   Palette: Deep night blacks · Temple gold · Marigold orange · Sacred red
═══════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────── */
:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;   --space-24: 6rem;

  /* Brand palette */
  --gold: #f59e0b;
  --gold-deep: #d97706;
  --orange: #f97316;
  --red: #dc2626;
  --saffron: #ff6b00;
  --cream: #fef9f0;
  --night: #0a0806;
  --night-2: #110e0b;
  --night-3: #1a1512;
  --night-4: #221d18;
  --night-border: #2e2720;
  --text-light: #f5ede0;
  --text-muted: #9e8c78;
  --text-faint: #5a4f43;

  /* Radius */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --t-fast: 180ms var(--ease-out);
  --t-mid: 350ms var(--ease-out);

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --content: 1160px;
  --content-wide: 1400px;
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-16);
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-light);
  background: var(--night);
  min-height: 100dvh;
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; background: none; border: none; outline: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.15; text-wrap: balance; font-family: var(--font-display); }
p, li { text-wrap: pretty; max-width: 72ch; }

/* ── Utility ─────────────────────────────── */
.container { max-width: var(--content); margin: 0 auto; padding: 0 var(--space-6); }
.container-wide { max-width: var(--content-wide); margin: 0 auto; padding: 0 var(--space-6); }
.hidden { display: none !important; }
.hidden-until-intro { opacity: 0; pointer-events: none; transition: opacity 0.8s var(--ease-out); }
.hidden-until-intro.revealed { opacity: 1; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; } }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6); border-radius: var(--r-full);
  font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.02em;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff; box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(249,115,22,0.5); }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--text-light); border: 1px solid rgba(255,255,255,0.12); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.btn-outline { background: transparent; border: 1.5px solid var(--night-border); color: var(--text-muted); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #128C7E; }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }
.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--text-xs); }

/* ── Section base ────────────────────────── */
.section-dark { background: var(--night-2); padding: clamp(var(--space-12), 8vw, var(--space-24)) 0; }
.section-light { background: var(--night-3); padding: clamp(var(--space-12), 8vw, var(--space-24)) 0; }
.section-disclaimer { background: var(--night); padding: clamp(var(--space-12), 8vw, var(--space-24)) 0; border-top: 1px solid var(--night-border); }
.section-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: var(--space-3); }
.section-title { font-size: var(--text-2xl); color: var(--text-light); margin-bottom: var(--space-4); }
.section-sub { font-size: var(--text-base); color: var(--text-muted); max-width: 56ch; margin-bottom: var(--space-10); }

/* ── Fade-in ─────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════
   INTRO OVERLAY
════════════════════════════════════════════════════ */
#intro-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--night);
  overflow: hidden;
  cursor: ns-resize;
  user-select: none;
}
#intro-overlay.exiting {
  animation: introExit 1.2s var(--ease-in) forwards;
}
@keyframes introExit {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.04); pointer-events: none; }
}

#intro-bg {
  position: absolute; inset: 0;
  background-image: url('assets/ganapati_atmosphere_intro.png');
  background-size: cover; background-position: center;
  opacity: 0.25;
  transition: opacity 1s var(--ease-out);
}
#intro-bg.bright { opacity: 0.55; }

#intro-particles {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}

/* ── Beat indicator ──────────────────────── */
#beat-indicator {
  position: absolute; bottom: var(--space-20); left: 50%; transform: translateX(-50%);
  display: flex; gap: var(--space-2); align-items: flex-end;
  height: 40px;
}
.beat-bar {
  width: 5px; border-radius: 3px;
  background: linear-gradient(to top, var(--orange), var(--gold));
  height: 6px; min-height: 6px;
  transition: height 0.08s ease;
  transform-origin: bottom;
}

/* ── Speed badge ─────────────────────────── */
#speed-badge {
  position: absolute; top: var(--space-6); right: var(--space-6);
  display: flex; align-items: center; gap: var(--space-3);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full); padding: var(--space-2) var(--space-4);
}
#speed-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; color: var(--gold); }
#speed-dots { display: flex; gap: var(--space-1); align-items: center; }
.sdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--night-border); transition: background var(--t-fast), transform var(--t-fast);
}
.sdot.active { background: var(--orange); transform: scale(1.3); }

/* ── Scroll hint ─────────────────────────── */
#scroll-hint {
  position: absolute; bottom: var(--space-8); left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: var(--space-4);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4); white-space: nowrap;
  animation: pulseHint 2s ease-in-out infinite;
}
.scroll-hint-line { width: 40px; height: 1px; background: rgba(255,255,255,0.2); }
@keyframes pulseHint { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ── Intro words ─────────────────────────── */
#intro-words {
  text-align: center; position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-2);
}
.intro-word {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  color: var(--text-light);
  letter-spacing: 0.06em;
  opacity: 0; transform: scale(0.92) translateY(10px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.4s ease, text-shadow 0.4s ease;
  line-height: 1.1;
  text-align: center;
}
.intro-word.active {
  opacity: 1; transform: scale(1) translateY(0);
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245,158,11,0.5);
}
.intro-word.done { opacity: 0.18; transform: scale(0.96) translateY(-4px); color: var(--text-faint); text-shadow: none; }
.final-word {
  font-size: var(--text-hero) !important;
  color: var(--orange) !important;
  line-height: 1;
}
.final-word.active {
  color: var(--orange) !important;
  text-shadow: 0 0 80px rgba(249,115,22,0.7), 0 0 160px rgba(245,158,11,0.4) !important;
  animation: finalPulse 0.6s var(--ease-out);
}
@keyframes finalPulse {
  0% { transform: scale(0.85) translateY(10px); opacity: 0; }
  60% { transform: scale(1.04) translateY(-2px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
#hero {
  position: relative; height: 100dvh; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute; inset: 0;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,8,6,0.92) 0%,
    rgba(10,8,6,0.65) 50%,
    rgba(10,8,6,0.2) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
  padding: var(--space-8) var(--space-8) var(--space-8) clamp(var(--space-8), 8vw, var(--space-24));
}
.hero-tag {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em;
  color: var(--gold); text-transform: uppercase; margin-bottom: var(--space-5);
}
.hero-title {
  font-size: var(--text-hero);
  color: var(--text-light);
  margin-bottom: var(--space-5);
  line-height: 1.0;
  font-style: italic;
}
.hero-sub { font-size: var(--text-lg); color: rgba(245,237,224,0.75); margin-bottom: var(--space-8); max-width: 48ch; }
.hero-ctas { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-6); }
.hero-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.chip {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full); padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs); color: rgba(245,237,224,0.6); font-weight: 500;
}
.hero-scroll-arrow {
  position: absolute; bottom: var(--space-10); left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.35); z-index: 2;
  animation: bounceArrow 2s ease-in-out infinite;
  transition: color var(--t-fast);
}
.hero-scroll-arrow:hover { color: var(--gold); }
@keyframes bounceArrow { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
}
.step-card {
  background: var(--night-4); border: 1px solid var(--night-border);
  border-radius: var(--r-xl); padding: var(--space-8);
}
.step-num {
  font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.15em;
  color: var(--orange); font-family: var(--font-body); margin-bottom: var(--space-4);
}
.step-icon { font-size: 2rem; margin-bottom: var(--space-4); }
.step-card h3 { font-size: var(--text-lg); font-family: var(--font-display); margin-bottom: var(--space-3); color: var(--text-light); }
.step-card p { font-size: var(--text-sm); color: var(--text-muted); }

/* ════════════════════════════════════════════════════
   CONFIGURATOR
════════════════════════════════════════════════════ */
.config-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: var(--space-10); align-items: start;
}
@media (max-width: 900px) { .config-layout { grid-template-columns: 1fr; } }

/* Config panels */
.config-panel {
  background: var(--night-4); border: 1px solid var(--night-border);
  border-radius: var(--r-xl); padding: var(--space-8);
  margin-bottom: var(--space-6);
}
.config-panel-header { display: flex; gap: var(--space-5); align-items: flex-start; margin-bottom: var(--space-6); }
.panel-num {
  display: flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-size: var(--text-xs); font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.config-panel-header h3 { font-size: var(--text-lg); font-family: var(--font-display); color: var(--text-light); margin-bottom: var(--space-1); }
.config-panel-header p { font-size: var(--text-sm); color: var(--text-muted); }

/* Size grid */
.size-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: var(--space-3); }
.size-btn {
  display: flex; flex-direction: column; gap: var(--space-1);
  padding: var(--space-5); border-radius: var(--r-lg);
  border: 1.5px solid var(--night-border);
  background: var(--night-3); text-align: left;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.size-btn:hover { border-color: var(--gold); background: rgba(245,158,11,0.06); }
.size-btn.active { border-color: var(--orange); background: rgba(249,115,22,0.08); box-shadow: 0 0 0 1px var(--orange); }
.size-btn.premium { border-color: var(--gold-deep); }
.size-btn.premium.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.size-label { font-size: var(--text-lg); font-weight: 700; font-family: var(--font-display); color: var(--text-light); }
.size-desc { font-size: var(--text-xs); color: var(--text-muted); }
.size-price { font-size: var(--text-xs); font-weight: 600; color: var(--gold); margin-top: var(--space-2); }

/* Upload */
.upload-zone {
  border: 2px dashed var(--night-border); border-radius: var(--r-xl);
  overflow: hidden; transition: border-color var(--t-fast);
}
.upload-zone:hover { border-color: var(--gold); }
.upload-inner {
  display: flex; flex-direction: column; align-items: center;
  padding: var(--space-12) var(--space-8); gap: var(--space-4); cursor: pointer;
  text-align: center;
}
.upload-icon { font-size: 3rem; }
.upload-title { font-size: var(--text-base); font-weight: 600; color: var(--text-light); }
.upload-hint { font-size: var(--text-xs); color: var(--text-muted); }
#upload-preview { position: relative; }
#upload-preview img { width: 100%; max-height: 260px; object-fit: cover; display: block; }
.upload-remove {
  position: absolute; top: var(--space-4); right: var(--space-4);
  background: rgba(0,0,0,0.7); color: #fff; border-radius: var(--r-full);
  padding: var(--space-2) var(--space-4); font-size: var(--text-xs); cursor: pointer;
}
.upload-tip {
  display: flex; gap: var(--space-3); align-items: flex-start;
  margin-top: var(--space-5); padding: var(--space-4);
  background: rgba(245,158,11,0.06); border-radius: var(--r-md);
  border-left: 3px solid var(--gold);
  font-size: var(--text-sm); color: var(--text-muted);
}
.upload-tip svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

/* Decor styles */
.decor-styles { display: flex; flex-direction: column; gap: var(--space-3); }
.decor-style-btn {
  display: flex; gap: var(--space-4); align-items: center;
  padding: var(--space-5); border-radius: var(--r-lg);
  border: 1.5px solid var(--night-border); background: var(--night-3);
  text-align: left; transition: border-color var(--t-fast), background var(--t-fast);
}
.decor-style-btn:hover { border-color: var(--gold); }
.decor-style-btn.active { border-color: var(--orange); background: rgba(249,115,22,0.08); }
.ds-swatch { width: 40px; height: 40px; border-radius: var(--r-md); flex-shrink: 0; }
.ds-info { display: flex; flex-direction: column; gap: 2px; }
.ds-info strong { font-size: var(--text-sm); color: var(--text-light); }
.ds-info span { font-size: var(--text-xs); color: var(--text-muted); }

/* Components */
.components-list { display: flex; flex-direction: column; gap: var(--space-2); }
.component-toggle {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-5); border-radius: var(--r-lg);
  border: 1.5px solid var(--night-border); background: var(--night-3);
  cursor: pointer; transition: border-color var(--t-fast), background var(--t-fast);
}
.component-toggle:hover { border-color: var(--gold); }
.component-toggle.active { border-color: rgba(249,115,22,0.5); background: rgba(249,115,22,0.05); }
.component-toggle input { display: none; }
.comp-icon { font-size: 1.25rem; flex-shrink: 0; }
.comp-name { flex: 1; font-size: var(--text-sm); color: var(--text-light); }
.comp-tag { font-size: var(--text-xs); font-weight: 600; border-radius: var(--r-full); padding: 2px 10px; white-space: nowrap; }
.comp-tag.included { background: rgba(110,185,80,0.15); color: #6eb950; }
.comp-tag.add { background: rgba(249,115,22,0.15); color: var(--orange); }

/* Lighting */
.lighting-options { display: flex; flex-direction: column; gap: var(--space-3); }
.light-btn {
  display: flex; gap: var(--space-4); align-items: center;
  padding: var(--space-4) var(--space-5); border-radius: var(--r-lg);
  border: 1.5px solid var(--night-border); background: var(--night-3); text-align: left;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.light-btn:hover { border-color: var(--gold); }
.light-btn.active { border-color: var(--orange); background: rgba(249,115,22,0.08); }
.light-icon { font-size: 1.5rem; flex-shrink: 0; }
.light-btn strong { display: block; font-size: var(--text-sm); color: var(--text-light); }
.light-btn span { font-size: var(--text-xs); color: var(--text-muted); }

/* Music */
.music-options { display: flex; flex-direction: column; gap: var(--space-3); }
.music-toggle {
  display: flex; gap: var(--space-4); align-items: center;
  padding: var(--space-4) var(--space-5); border-radius: var(--r-lg);
  border: 1.5px solid var(--night-border); background: var(--night-3); cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.music-toggle:has(input:checked) { border-color: var(--orange); background: rgba(249,115,22,0.08); }
.music-toggle input { display: none; }
.mt-icon { font-size: 1.5rem; flex-shrink: 0; }
.music-toggle strong { display: block; font-size: var(--text-sm); color: var(--text-light); }
.music-toggle span { font-size: var(--text-xs); color: var(--text-muted); }

/* Duration */
.duration-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); margin-bottom: var(--space-5); }
@media (max-width: 600px) { .duration-options { grid-template-columns: repeat(2, 1fr); } }
.dur-btn {
  display: flex; flex-direction: column; align-items: center;
  padding: var(--space-5) var(--space-4); border-radius: var(--r-lg);
  border: 1.5px solid var(--night-border); background: var(--night-3); text-align: center;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.dur-btn:hover { border-color: var(--gold); }
.dur-btn.active { border-color: var(--orange); background: rgba(249,115,22,0.08); }
.dur-num { font-size: var(--text-2xl); font-family: var(--font-display); font-weight: 700; color: var(--gold); line-height: 1; }
.dur-label { font-size: var(--text-xs); font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-2); }
.dur-note { font-size: var(--text-xs); color: var(--text-faint); }
.refresh-options { background: rgba(245,158,11,0.06); border-radius: var(--r-lg); padding: var(--space-5); border: 1px solid rgba(245,158,11,0.15); }
.refresh-title { font-size: var(--text-sm); font-weight: 700; color: var(--gold); margin-bottom: var(--space-3); }
.refresh-options p { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-4); }

/* Delivery */
.delivery-options { display: flex; flex-direction: column; gap: var(--space-3); }
.delivery-btn {
  display: flex; gap: var(--space-5); align-items: center;
  padding: var(--space-5); border-radius: var(--r-lg);
  border: 1.5px solid var(--night-border); background: var(--night-3); text-align: left;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.delivery-btn:hover { border-color: var(--gold); }
.delivery-btn.active { border-color: var(--orange); background: rgba(249,115,22,0.08); }
.del-icon { font-size: 1.75rem; flex-shrink: 0; }
.delivery-btn strong { display: block; font-size: var(--text-sm); color: var(--text-light); }
.delivery-btn span { font-size: var(--text-xs); color: var(--text-muted); }
.info-note {
  display: flex; gap: var(--space-3); align-items: flex-start;
  margin-top: var(--space-5); padding: var(--space-4);
  background: rgba(245,158,11,0.06); border-radius: var(--r-md);
  border-left: 3px solid var(--gold);
  font-size: var(--text-sm); color: var(--text-muted);
}
.info-note svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

/* ── Summary panel ───────────────────────── */
.config-summary {
  position: sticky; top: var(--space-8);
  background: var(--night-4); border: 1px solid var(--night-border);
  border-radius: var(--r-xl); overflow: hidden;
}
.summary-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--night-border);
  font-size: var(--text-sm); font-weight: 600; color: var(--text-light);
}
.summary-preview { position: relative; }
.summary-preview img { width: 100%; height: 200px; object-fit: cover; }
.summary-preview-overlay {
  position: absolute; bottom: var(--space-4); left: var(--space-4);
}
#summary-size-badge {
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold); font-size: var(--text-sm); font-weight: 700;
  padding: var(--space-2) var(--space-4); border-radius: var(--r-full);
}
.summary-lines { padding: var(--space-5) var(--space-6); }
.summary-line {
  display: flex; justify-content: space-between;
  font-size: var(--text-sm); color: var(--text-muted);
  padding: var(--space-2) 0; border-bottom: 1px solid var(--night-border);
}
.summary-line span:last-child { color: var(--text-light); font-weight: 500; }
.summary-divider { border-top: 1px solid var(--gold-deep); margin: var(--space-3) 0; }
.summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-3) 0;
  font-size: var(--text-lg); font-family: var(--font-display); font-weight: 700;
}
.summary-total span:last-child { color: var(--gold); font-size: var(--text-xl); }
.summary-disclaimer { font-size: var(--text-xs); color: var(--text-faint); margin-top: var(--space-3); line-height: 1.5; }
.summary-actions { padding: 0 var(--space-6) var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }
.summary-cutoff {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  background: rgba(249,115,22,0.08); border-top: 1px solid rgba(249,115,22,0.2);
  font-size: var(--text-xs); color: var(--orange);
}

/* ════════════════════════════════════════════════════
   SHOWCASE
════════════════════════════════════════════════════ */
.showcase-grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto; gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.showcase-item { position: relative; border-radius: var(--r-xl); overflow: hidden; }
.showcase-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.showcase-item:hover img { transform: scale(1.04); }
.showcase-item.large { grid-row: span 2; }
.showcase-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size: var(--text-xs); color: rgba(255,255,255,0.7); font-weight: 500;
}
@media (max-width: 700px) { .showcase-grid { grid-template-columns: 1fr; } .showcase-item.large { grid-row: span 1; } }
.tag-cta {
  text-align: center; padding: var(--space-6);
  background: rgba(249,115,22,0.06); border-radius: var(--r-xl);
  border: 1px solid rgba(249,115,22,0.15);
  font-size: var(--text-base); color: var(--text-muted);
}
.tag-cta strong { color: var(--orange); }

/* ════════════════════════════════════════════════════
   BOOKING
════════════════════════════════════════════════════ */
.book-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-12); align-items: start; }
@media (max-width: 900px) { .book-layout { grid-template-columns: 1fr; } }

.book-form-wrap { background: var(--night-4); border: 1px solid var(--night-border); border-radius: var(--r-xl); padding: var(--space-8); }
form { display: flex; flex-direction: column; gap: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.06em; color: var(--text-muted); text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--night-3); border: 1.5px solid var(--night-border);
  border-radius: var(--r-md); padding: var(--space-4);
  font-size: var(--text-base); color: var(--text-light);
  transition: border-color var(--t-fast);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); outline: none; }
.form-group textarea { resize: vertical; min-height: 80px; }

.order-summary-box {
  background: var(--night-3); border: 1px solid var(--night-border);
  border-radius: var(--r-lg); padding: var(--space-5);
}
.osb-title { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; margin-bottom: var(--space-4); }
.osb-line { display: flex; justify-content: space-between; font-size: var(--text-sm); padding: var(--space-2) 0; border-bottom: 1px solid var(--night-border); color: var(--text-muted); }
.osb-line span:last-child { color: var(--text-light); }
.osb-line.total { border-bottom: none; padding-top: var(--space-4); font-size: var(--text-base); font-weight: 700; }
.osb-line.total span:last-child { color: var(--gold); }

.payment-methods { display: flex; flex-direction: column; gap: var(--space-3); }
.pm-title { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; margin-bottom: var(--space-2); }
.pm-option {
  display: flex; gap: var(--space-4); align-items: center;
  padding: var(--space-4) var(--space-5); border-radius: var(--r-lg);
  border: 1.5px solid var(--night-border); background: var(--night-3); cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.pm-option:has(input:checked) { border-color: var(--orange); background: rgba(249,115,22,0.08); }
.pm-option input { display: none; }
.pm-icon { font-size: 1.5rem; flex-shrink: 0; }
.pm-option strong { display: block; font-size: var(--text-sm); color: var(--text-light); }
.pm-option span { font-size: var(--text-xs); color: var(--text-muted); }
.form-legal { font-size: var(--text-xs); color: var(--text-faint); line-height: 1.5; }
.form-legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.book-info { display: flex; flex-direction: column; gap: var(--space-5); }
.info-card { background: var(--night-4); border: 1px solid var(--night-border); border-radius: var(--r-xl); padding: var(--space-6); }
.ic-icon { font-size: 2rem; margin-bottom: var(--space-4); }
.info-card h4 { font-size: var(--text-base); font-family: var(--font-display); color: var(--gold); margin-bottom: var(--space-3); }
.info-card p { font-size: var(--text-sm); color: var(--text-muted); }

/* ════════════════════════════════════════════════════
   DISCLAIMERS
════════════════════════════════════════════════════ */
.disclaimer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-5); }
.disc-card { background: var(--night-2); border: 1px solid var(--night-border); border-radius: var(--r-xl); padding: var(--space-6); }
.disc-card h4 { font-size: var(--text-base); font-family: var(--font-display); color: var(--text-light); margin-bottom: var(--space-3); }
.disc-card p { font-size: var(--text-sm); color: var(--text-muted); }

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
#footer { background: var(--night); border-top: 1px solid var(--night-border); padding: clamp(var(--space-12), 6vw, var(--space-20)) 0 var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-10); margin-bottom: var(--space-10); }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-5); }
.footer-logo span { font-size: var(--text-lg); font-family: var(--font-display); font-weight: 700; color: var(--text-light); }
.footer-brand p { font-size: var(--text-sm); color: var(--text-muted); max-width: 36ch; margin-bottom: var(--space-5); }
.footer-social { display: flex; gap: var(--space-4); }
.footer-social a { color: var(--text-faint); transition: color var(--t-fast); }
.footer-social a:hover { color: var(--orange); }
.footer-links h5, .footer-contact h5 { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--space-5); }
.footer-links ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a { font-size: var(--text-sm); color: var(--text-muted); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-contact p { font-size: var(--text-sm); color: var(--text-muted); }
.footer-contact a { font-size: var(--text-sm); color: var(--text-muted); transition: color var(--t-fast); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3); padding-top: var(--space-8); border-top: 1px solid var(--night-border); }
.footer-bottom p { font-size: var(--text-xs); color: var(--text-faint); }
.footer-flower-note { color: var(--orange); opacity: 0.7; }

/* ════════════════════════════════════════════════════
   SETTINGS PANEL (Glass)
════════════════════════════════════════════════════ */
#settings-trigger {
  position: fixed; bottom: calc(var(--space-16) + 72px); right: var(--space-6); z-index: 200;
  background: rgba(30,25,20,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--night-border); border-radius: var(--r-full);
  padding: var(--space-3) var(--space-5); display: flex; gap: var(--space-2); align-items: center;
  font-size: var(--text-xs); font-weight: 600; color: var(--text-muted);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: color var(--t-fast), border-color var(--t-fast);
}
#settings-trigger:hover { color: var(--gold); border-color: var(--gold); }
.glass-panel {
  position: fixed; bottom: calc(var(--space-16) + 120px); right: var(--space-6); z-index: 201;
  background: rgba(17,14,11,0.92); backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-xl);
  padding: var(--space-5); min-width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transform-origin: bottom right;
}
.glass-panel.hidden { display: none; }
.sp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-4); }
.sp-header span { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
#close-settings { color: var(--text-faint); font-size: var(--text-sm); line-height: 1; }
.sp-presets { display: flex; flex-direction: column; gap: var(--space-2); }
.sp-preset {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-3) var(--space-4); border-radius: var(--r-md);
  border: 1px solid var(--night-border); background: var(--night-4);
  font-size: var(--text-sm); color: var(--text-light); font-weight: 600;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.sp-preset small { font-size: var(--text-xs); color: var(--text-muted); font-weight: 400; }
.sp-preset:hover { border-color: var(--orange); background: rgba(249,115,22,0.08); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: var(--space-6); right: var(--space-6); z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.whatsapp-float:active { transform: scale(0.96); }

/* ── Responsive final ────────────────────── */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .config-summary { position: static; }
}
