/* ============================================
   Seoul Soul 首爾魂 — Main Stylesheet
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Noto+Sans+TC:wght@300;400;500;700&family=Noto+Serif+TC:wght@400;600;700&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--color-bg-darkest);
  color: var(--color-text-light);
  font-family: 'Inter', 'Noto Sans TC', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* === CSS VARIABLES (from design-tokens) === */
:root {
  --color-primary: #c9a96e;
  --color-accent: #DAB04A;
  --color-secondary: #c89289;
  --color-bg-darkest: #0a0a09;
  --color-bg-dark: #0d0d0c;
  --color-bg-card: #1b1a18;
  --color-bg-elevated: #363430;
  --color-border: #6b6861;
  --color-text-muted: #9e9b94;
  --color-text-light: #cfcdc9;
  --color-text-bright: #f3f2f2;
  --font-heading: 'Lora', 'Noto Serif TC', serif;
  --font-body: 'Inter', 'Noto Sans TC', sans-serif;
  --gradient-gold: linear-gradient(135deg, #c9a96e 0%, #DAB04A 100%);
  --gradient-hero-overlay: linear-gradient(180deg, rgba(10,10,9,0) 0%, rgba(10,10,9,0.6) 50%, rgba(10,10,9,0.95) 100%);
  --gradient-card: linear-gradient(135deg, #1b1a18 0%, #0d0d0c 100%);
  --shadow-gold: 0 0 20px rgba(201,169,110,0.3);
  --ease-out: cubic-bezier(0, 0, 0.58, 1);
  --ease-spring: cubic-bezier(0.25, 1.2, 0.5, 1);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,9,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201,169,110,0);
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  border-bottom-color: rgba(201,169,110,0.12);
  background: rgba(10,10,9,0.95);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.35s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--color-primary);
  transition: width 0.35s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--color-primary);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-reserve {
  background: var(--gradient-gold);
  color: var(--color-bg-darkest);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.35s var(--ease-out);
  box-shadow: var(--shadow-gold);
}
.nav-reserve:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(201,169,110,0.45);
}
.nav-lang {
  font-size: 12px;
  color: var(--color-text-muted);
  border: 1px solid var(--color-bg-elevated);
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.3s;
}
.nav-lang:hover { border-color: var(--color-primary); color: var(--color-primary); }
.nav-right { display: flex; align-items: center; gap: 16px; }

/* Mobile nav */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--color-text-light); transition: all 0.3s; }
.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,9,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 40px;
  z-index: 999;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-text-light);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--color-primary); }

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-lang { display: none; }
  .nav-reserve { font-size: 11px; padding: 8px 16px; }
}
/* Pricing table mobile scroll */
.pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* === HERO SECTION === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-bg-dark);
}
.hero-bg .placeholder-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 700;
  color: var(--color-text-bright);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 21px);
  color: var(--color-text-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-primary), transparent);
  margin: 8px auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease-out);
}
.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-bg-darkest);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(201,169,110,0.5); }
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid rgba(201,169,110,0.4);
}
.btn-outline:hover { background: rgba(201,169,110,0.08); border-color: var(--color-primary); }
.btn-ghost {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-bg-elevated);
}
.btn-ghost:hover { border-color: var(--color-border); color: var(--color-text-bright); }

/* === SECTIONS === */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-wide {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-full {
  padding: 100px 0;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  color: var(--color-text-bright);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-header {
  margin-bottom: 60px;
}
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
  margin: 0 auto;
}

/* === PHOTO PLACEHOLDER === */
.photo-placeholder {
  background: var(--color-bg-card);
  border: 1px dashed rgba(201,169,110,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-elevated);
  font-size: 14px;
  overflow: hidden;
  position: relative;
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,169,110,0.03), transparent 70%);
}
.photo-placeholder span {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

/* === CARDS === */
.card {
  background: var(--gradient-card);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.card-body { padding: 28px; }
.card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-bright);
  margin-bottom: 8px;
}
.card-text { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; }

/* === MENU TIER CARDS === */
.tier-card {
  background: var(--gradient-card);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s var(--ease-out);
}
.tier-card:hover {
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 20px rgba(201,169,110,0.08);
}
.tier-card.featured {
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 0 30px rgba(201,169,110,0.08);
}
.tier-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--color-bg-darkest);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.tier-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.tier-price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text-bright);
  margin: 16px 0;
}
.tier-price .currency { font-size: 24px; vertical-align: top; }
.tier-price .per { font-size: 16px; color: var(--color-text-muted); font-weight: 400; }
.tier-features { margin-top: 24px; }
.tier-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--color-text-light);
  border-bottom: 1px solid rgba(201,169,110,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tier-features li::before {
  content: '✦';
  color: var(--color-primary);
  font-size: 10px;
}

/* === GRID LAYOUTS === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section, .section-wide { padding: 60px 20px; }
}

/* === GALLERY GRID === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 8px;
}
.gallery-grid .photo-placeholder:nth-child(1) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-grid .photo-placeholder:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

/* === STORE INFO === */
.info-row {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
}
.info-row:last-child { border-bottom: none; }
.info-label {
  flex: 0 0 180px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 4px;
}
.info-value {
  flex: 1;
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .info-row { flex-direction: column; gap: 8px; }
  .info-label { flex: none; }
}

/* === CONTACT FORM === */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg-card);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 4px;
  color: var(--color-text-bright);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* === FOOTER === */
.footer {
  background: var(--color-bg-card);
  border-top: 1px solid rgba(201,169,110,0.08);
  padding: 60px 40px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.footer-desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; max-width: 300px; }
.footer-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 4px 0;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--color-primary); }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(201,169,110,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--color-text-muted);
}
@media (max-width: 768px) {
  .footer { padding: 40px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Shimmer for gold text */
.shimmer {
  color: #c9a96e;
  background: linear-gradient(90deg, #c9a96e, #e8d5a3, #c9a96e);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* === MAP === */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.1);
}
.map-container iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.5) brightness(0.7) contrast(1.1); }

/* === MEDIA / PRESS === */
.press-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background: var(--color-bg-card);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s;
}
.press-logo:hover { border-color: rgba(201,169,110,0.25); }

/* === MOBILE BOTTOM BAR === */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,9,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 10px 16px;
}
.mobile-bar-inner {
  display: flex;
  gap: 8px;
}
.mobile-bar .btn { flex: 1; justify-content: center; padding: 12px 8px; font-size: 13px; }
@media (max-width: 768px) {
  .mobile-bar { display: block; }
  body { padding-bottom: 70px; }
}

/* === BRAND STORY SPECIFIC === */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(201,169,110,0.06);
}
.story-block:nth-child(even) .story-text { order: -1; }
.story-block:last-child { border-bottom: none; }
.story-text h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-text-bright);
  margin-bottom: 16px;
}
.story-text p { font-size: 16px; color: var(--color-text-muted); line-height: 1.8; }
.story-photo { aspect-ratio: 4/3; }
@media (max-width: 768px) {
  .story-block { grid-template-columns: 1fr; gap: 30px; }
  .story-block:nth-child(even) .story-text { order: 0; }
}

/* === STAT COUNTER === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 60px 0;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
}
.stat-label {
  font-size: 13px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   INTERACTIVE ELEMENTS
   ============================================ */

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: var(--gradient-gold);
  z-index: 9999;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
  box-shadow: 0 0 8px rgba(201,169,110,0.5);
}
/* SR-only for typing SEO */
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }
.typed-output { border-right: 2px solid var(--color-primary); animation: blink 0.7s step-end infinite; }
/* color-scheme for dark forms */
:root { color-scheme: dark; }

/* === MOUSE GLOW === */
.mouse-glow { position: relative; overflow: hidden; }
.glow-orb {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.10) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}

/* === 3D TILT CARDS === */
.tilt-card {
  transition: transform 0.15s ease-out, box-shadow 0.3s ease-out, border-color 0.3s;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.tilt-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 25px rgba(201,169,110,0.1);
  border-color: rgba(201,169,110,0.35);
}
.tilt-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* === MARQUEE === */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  border-top: 1px solid rgba(201,169,110,0.08);
  border-bottom: 1px solid rgba(201,169,110,0.08);
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 25s linear infinite;
  gap: 0;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.marquee-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.4;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* === PRICE TOGGLE === */
.price-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 40px;
}
.toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color 0.3s;
}
.toggle-label.active { color: var(--color-primary); }
.price-toggle {
  width: 52px; height: 28px;
  background: var(--color-bg-elevated);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.price-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  transition: transform 0.3s var(--ease-spring);
}
.price-toggle.weekend { background: rgba(201,169,110,0.2); }
.price-toggle.weekend::after { transform: translateX(24px); }

/* === MENU FILTER TABS === */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg-card);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.filter-tab:hover { border-color: rgba(201,169,110,0.3); color: var(--color-text-light); }
.filter-tab.active {
  background: var(--gradient-gold);
  color: var(--color-bg-darkest);
  border-color: transparent;
}

/* === FAQ ACCORDION === */
.faq-item {
  border-bottom: 1px solid rgba(201,169,110,0.08);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-light);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--color-primary); }
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--color-primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-item.open .faq-question { color: var(--color-primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  cursor: zoom-out;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 36px;
  color: var(--color-text-light);
  cursor: pointer;
  transition: color 0.3s;
}
.lightbox-close:hover { color: var(--color-primary); }

/* === DOT NAVIGATION === */
.dot-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dot-nav-item {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.dot-nav-item:hover { border-color: var(--color-primary); }
.dot-nav-item.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 8px rgba(201,169,110,0.4);
}
.dot-nav-item::before {
  content: attr(data-label);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 11px;
  color: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.dot-nav-item:hover::before { opacity: 1; }
@media (max-width: 768px) { .dot-nav { display: none; } }

/* === SCROLL ZOOM === */
.scroll-zoom {
  transition: transform 0.1s linear;
  will-change: transform;
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* === TEXT MASK === */
.text-mask {
  font-family: var(--font-heading);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(201,169,110,0.3);
  color: transparent;
  background: var(--gradient-card);
  -webkit-background-clip: text;
  transition: background-position 0.3s;
}

/* ============================================
   WHATSAPP FLOATING WIDGET
   ============================================ */
.wa-widget {
  position: fixed;
  bottom: 90px; right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-bubble {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
}
.wa-bubble:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.wa-bubble svg { width: 28px; height: 28px; fill: #fff; }
.wa-tooltip {
  background: var(--color-bg-card);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  max-width: 220px;
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: all 0.3s var(--ease-out);
  pointer-events: none;
}
.wa-widget:hover .wa-tooltip,
.wa-widget.show-tooltip .wa-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
@media (max-width: 768px) {
  .wa-widget { display: none; }
}

/* ============================================
   OCCASION CARDS (Date/Group/Birthday)
   ============================================ */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.occasion-card {
  background: var(--gradient-card);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.occasion-card:hover {
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 20px rgba(201,169,110,0.06);
}
.occasion-photo {
  height: 200px;
}
.occasion-body {
  padding: 28px;
}
.occasion-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.occasion-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-bright);
  margin-bottom: 8px;
}
.occasion-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.occasion-features {
  margin-bottom: 20px;
}
.occasion-features li {
  font-size: 13px;
  color: var(--color-text-light);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.occasion-features li::before {
  content: '✦';
  color: var(--color-primary);
  font-size: 8px;
}
.occasion-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap 0.3s;
}
.occasion-cta:hover { gap: 10px; }
.occasion-cta::after { content: '→'; }
@media (max-width: 768px) {
  .occasion-grid { grid-template-columns: 1fr; }
}
