:root {
  --beige: #f5f0e8;
  --beige-dark: #ede6d6;
  --beige-mid: #e8dfc9;
  --red: #c0392b;
  --red-dark: #8b1a0e;
  --red-light: #e74c3c;
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --black: #1a1008;
  --black-soft: #2c1f0e;
  --white: #fdfaf4;
  --text-dark: #1a1008;
  --text-mid: #4a3728;
  --nav-h: 100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--beige);
  color: var(--text-dark);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--beige); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--beige);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(245,240,232,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  text-decoration: none;
}

.nav-logo-icon {
  width: 85px; height: 85px;
  background: transparent;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  box-shadow: none;
  transition: transform 0.3s;
  overflow: visible;
}

.nav-logo-icon img {
  width: 82px !important;
  height: 82px !important;
  object-fit: contain;
}

.nav-logo:hover .nav-logo-icon { transform: rotate(-5deg) scale(1.05); }

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-logo-text span { color: #000000; }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
  height: 100%;
}

.nav-links li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links a {
  display: flex !important;
  align-items: center !important;
  height: 100%;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover { color: var(--text-dark); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--red); font-weight: 700; }
.nav-links a.active::after { transform: scaleX(1); background: var(--red); }

.nav-order-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 6px 16px !important;
  border-radius: 25px !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
  box-shadow: 0 4px 15px rgba(192,57,43,0.35) !important;
  transition: all 0.25s !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  margin-left: 4px !important;
  line-height: 1.2 !important;
  display: inline-block !important;
  height: auto !important;
}

.nav-order-btn:hover {
  background: var(--red-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(192,57,43,0.45) !important;
  color: var(--white) !important;
}

.nav-order-btn::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px;
  background: none; border: none;
}

.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--beige);
  padding: 20px 5%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 999;
  flex-direction: column; gap: 4px;
  border-top: 1px solid var(--beige-dark);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--beige-dark);
  color: var(--red);
  font-weight: 700;
}

/* ===== PAGES ===== */
.page { display: none; padding-top: var(--nav-h); min-height: 100vh; }
.page.active { display: block; }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative; height: calc(100vh - var(--nav-h));
  overflow: hidden;
}

.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
  display: flex; align-items: center; justify-content: center;
}

.slide.active { opacity: 1; z-index: 2; }
.slide.prev { opacity: 0; z-index: 1; }

.slide-1 {
  background: linear-gradient(135deg, #1a0a05 0%, #3d0f08 40%, #c0392b 100%);
}

.slide-1::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(192,57,43,0.3) 0%, transparent 40%);
}

.lanterns {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}

.lantern {
  position: absolute;
  width: 20px; height: 28px;
  background: radial-gradient(ellipse, rgba(255,200,50,0.9) 30%, rgba(255,120,20,0.6) 100%);
  border-radius: 50% 50% 45% 45%;
  box-shadow: 0 0 15px 5px rgba(255,180,30,0.4);
  animation: floatLantern linear infinite;
}

.lantern::after {
  content: '';
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 6px;
  background: rgba(255,180,30,0.6);
}

@keyframes floatLantern {
  0% { transform: translateY(100vh) rotate(-5deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-80px) rotate(5deg); opacity: 0; }
}

.slide-2 {
  background: linear-gradient(160deg, #0d0806 0%, #2a1505 50%, #1a0a05 100%);
}

.slide-2::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(201,168,76,0.15) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.slide-3 {
  background: linear-gradient(145deg, #051a10 0%, #0d3320 50%, #1a5c35 100%);
}

.slide-3::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(40,120,80,0.3) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 70%, rgba(201,168,76,0.1) 0%, transparent 40%);
}

.slide-content {
  position: relative; z-index: 5;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
  animation: slideContentIn 0.8s ease forwards;
}

@keyframes slideContentIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0.9;
}

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.slide-title em {
  font-style: italic;
  color: var(--gold-light);
}

.slide-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}

.slide-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--black) !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.slide-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,168,76,0.5);
}

.slider-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.slider-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 20px; z-index: 10; pointer-events: none;
}

.slider-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  color: white; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: all;
  transition: all 0.3s;
}

.slider-arrow:hover { background: rgba(201,168,76,0.4); border-color: var(--gold); }

.slider-progress {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: var(--gold);
  z-index: 10;
  animation: progressBar 5s linear infinite;
}

@keyframes progressBar {
  from { width: 0; }
  to { width: 100%; }
}

/* ===== INNER HERO ===== */
.inner-hero {
  position: relative;
  height: 380px;
  background: linear-gradient(135deg, #8b1a0e 0%, #c0392b 40%, #3d0f08 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'%3E%3Cg opacity='0.06' fill='%23fff'%3E%3Cpath d='M50 150 Q100 80 150 150 Q200 220 250 150 Q300 80 350 150'/%3E%3Ccircle cx='80' cy='60' r='30'/%3E%3Ccircle cx='320' cy='60' r='30'/%3E%3Crect x='180' y='20' width='40' height='80' rx='20'/%3E%3Cpath d='M0 200 Q50 160 100 200 Q150 240 200 200 Q250 160 300 200 Q350 240 400 200 L400 300 L0 300Z'/%3E%3Cpath d='M30 100 L50 60 L70 100 Z'/%3E%3Cpath d='M330 100 L350 60 L370 100 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.inner-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
}

.inner-hero-content {
  position: relative; z-index: 5;
  text-align: center;
}

.inner-hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.inner-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.inner-hero h1 em { color: var(--gold-light); font-style: italic; }

/* ===== SECTIONS ===== */
.section { padding: 90px 5%; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}

.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title em { color: var(--red); font-style: italic; }

.section-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ===== HERITAGE BAND ===== */
.heritage-band {
  background: var(--black);
  padding: 22px 5%;
  overflow: hidden;
}

.heritage-scroll {
  display: flex; gap: 60px;
  animation: scrollBand 25s linear infinite;
  white-space: nowrap;
}

@keyframes scrollBand {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.heritage-item {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light);
  flex-shrink: 0;
}

.heritage-item span { color: rgba(201,168,76,0.4); }

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: transform 0.35s;
}

.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 1rem; font-weight: 400;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== MENU PREVIEW ===== */
.menu-preview {
  background: var(--black-soft);
  padding: 90px 5%;
}

.menu-preview-inner { max-width: 1200px; margin: 0 auto; }

.menu-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 40px 0 50px;
}

.menu-tab {
  padding: 10px 22px;
  border-radius: 25px;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.menu-tab:hover { border-color: var(--gold); color: var(--gold); }
.menu-tab.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.menu-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 24px 20px;
  transition: all 0.3s;
  display: none;
}

.menu-card.visible { display: block; }

.menu-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
}

.menu-card-category {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}

.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.menu-card-desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.5);
  line-height: 1.55; margin-bottom: 14px;
}

.menu-card-footer {
  display: flex; align-items: center; justify-content: flex-end;
}

.menu-badge {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  background: rgba(192,57,43,0.3);
  color: #ff8a75;
}

.menu-badge.new { background: rgba(40,120,60,0.3); color: #7ee8a2; }
.menu-badge.spicy { background: rgba(192,57,43,0.3); color: #ff8a75; }

/* ===== FULL MENU PAGE ===== */
.menu-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--text-dark);
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: flex; align-items: center; gap: 14px;
}

.menu-section-title span { color: var(--red); }

.menu-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.menu-item-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
  transition: all 0.25s;
}

.menu-item-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.menu-item-info { flex: 1; }

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 1.3;
}

.menu-item-desc {
  font-size: 0.95rem; color: var(--text-mid);
  line-height: 1.5;
}

.menu-item-tag {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--beige-dark);
  color: var(--text-mid);
  padding: 2px 7px; border-radius: 10px;
  display: inline-block; margin-top: 5px;
}

/* ===== STORY PAGE ===== */
.story-section { padding: 90px 5%; background: var(--beige); }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}

.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--red), var(--gold), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex; gap: 40px;
  margin-bottom: 70px;
  position: relative;
  opacity: 0;
  transition: all 0.6s ease;
}

.timeline-item.visible { opacity: 1; }
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-content {
  flex: 1;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content { margin-right: 50%; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 50%; }

.timeline-dot {
  position: absolute; left: 50%; top: 36px;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  border: 4px solid var(--beige);
  z-index: 5;
  box-shadow: 0 4px 15px rgba(192,57,43,0.3);
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.timeline-subtitle {
  font-size: 0.82rem; font-weight: 600;
  color: var(--red);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}

.timeline-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ===== PARTNER PAGE ===== */
.partner-hero-text { max-width: 700px; margin: 0 auto; text-align: center; }

#page-partner * { text-align: center; }
#page-partner .partner-card-list { text-align: left; }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.partner-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 36px 30px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.partner-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}

.partner-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.partner-card:hover::after { transform: scaleX(1); }

.partner-card-icon { font-size: 2.8rem; margin-bottom: 20px; }

.partner-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.partner-card-text { font-size: 1rem; color: var(--text-mid); line-height: 1.7; }

.partner-card-list { margin-top: 14px; list-style: none; text-align: left; }

.partner-card-list li {
  font-size: 0.95rem; color: var(--text-mid);
  padding: 4px 0 4px 18px;
  position: relative;
}

.partner-card-list li::before {
  content: '✦';
  position: absolute; left: 0;
  color: var(--gold); font-size: 0.6rem;
  top: 6px;
}

/* ===== BENEFITS DARK ===== */
.benefits-dark { background: var(--black); padding: 90px 5%; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}

.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 30px 24px;
  transition: all 0.3s;
  margin: 10px;
  text-align: center;
}

.benefit-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.35);
}

.benefit-icon { font-size: 2rem; margin-bottom: 14px; }

.benefit-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-text { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ===== INVESTOR PAGE ===== */
.investor-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 60px 0;
}

.stat-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid);
}

/* ===== EXPERIENCE PAGE ===== */
.experience-intro {
  max-width: 800px; margin: 0 auto;
  text-align: center;
  padding: 80px 5% 60px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1200px; margin: 0 auto;
  padding: 0 5% 90px;
}

.exp-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
}

.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  border-color: var(--gold);
}

.exp-card-header {
  padding: 36px 32px 24px;
  background: linear-gradient(135deg, var(--beige-dark) 0%, var(--beige) 100%);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.exp-card-emoji { font-size: 3rem; margin-bottom: 16px; display: block; }

.exp-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.exp-card-subtitle {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red);
}

.exp-card-body { padding: 28px 32px; }

.exp-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.exp-card-items { list-style: none; }

.exp-card-items li {
  font-size: 0.95rem; color: var(--text-mid);
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.exp-card-items li:last-child { border-bottom: none; }

.exp-card-items li::before {
  content: '龍';
  position: absolute; left: 0;
  color: var(--gold); font-size: 0.7rem;
  top: 8px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 5%;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-info p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--text-mid);
  line-height: 1.7; margin-bottom: 36px;
}

.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--beige-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 3px;
}

.contact-detail-text span { font-size: 1rem; color: var(--text-mid); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(192,57,43,0.3);
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(192,57,43,0.4);
}

.btn-gold { background: var(--gold); color: var(--black); box-shadow: 0 6px 20px rgba(201,168,76,0.3); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 10px 30px rgba(201,168,76,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== LOCATION PAGE ===== */
.location-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1000px; margin: 60px auto 0;
}

.location-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  border-color: var(--gold);
}

.location-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.location-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 20px;
}

.location-status.open { background: rgba(39,174,96,0.1); color: #27ae60; }
.location-status.soon { background: rgba(243,156,18,0.1); color: #f39c12; }

.location-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.location-city {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.location-addr { font-size: 1rem; color: var(--text-mid); line-height: 1.6; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--beige-dark);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 70px 5%;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.cta-band p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--text-mid);
  margin-bottom: 32px;
}

.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  padding: 60px 5% 0;
  color: rgba(255,255,255,0.7);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
  width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo-icon {
  width: 84px; height: 84px;
  min-width: 84px; max-width: 84px;
  background: var(--beige);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logo-icon img { width: 80px; height: 80px; object-fit: contain; display: block; }

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
}

.footer-logo-text span { color: var(--gold); }

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 7px; }

.footer-col ul li a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.3;
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
}

.footer-bottom p { font-size: 0.9rem; color: #ffffff; }
.footer-bottom p em { color: var(--gold); font-style: normal; }

.footer-socials { display: flex; gap: 8px; justify-content: center; }

.social-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  color: var(--gold);
  font-weight: 700;
}

.social-btn:hover {
  background: rgba(201,168,76,0.3);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.animate-up:nth-child(1) { animation-delay: 0.1s; }
.animate-up:nth-child(2) { animation-delay: 0.2s; }
.animate-up:nth-child(3) { animation-delay: 0.3s; }
.animate-up:nth-child(4) { animation-delay: 0.4s; }

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed { opacity: 1; transform: translateY(0); }

#page-franchise { display: none; }

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  margin: 24px auto;
}

.divider.centered { margin-left: auto; margin-right: auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { margin: 0; }
  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: row !important; }
  .timeline-dot { left: 20px; top: 20px; width: 36px; height: 36px; }
  .timeline-content { margin-left: 60px !important; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  :root { --nav-h: 70px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .investor-stats { grid-template-columns: repeat(2, 1fr); }
  .location-cards { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .investor-stats { grid-template-columns: 1fr 1fr; }
  .slide-title { font-size: 2.2rem; }
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-logo-text { font-size: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
