/* ═══════════════════════════════════════════════════════════════
   AURUM — Luxury Coffee House
   Design System & Global Styles
   ═══════════════════════════════════════════════════════════════ */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-brown: #1a1412;
  --brown: #2a1f18;
  --gold: #c8a97e;
  --gold-light: #d4b896;
  --gold-bright: #e8d5b5;
  --cream: #f5f0eb;
  --white: #fafaf8;
  --text: #e8e4df;
  --text-muted: #8a8580;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--dark);
}

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section { padding: 140px 0; position: relative; }

/* ── Typography ────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-tag.light { color: var(--gold-light); }
.section-tag.light::before { background: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 20px;
  color: var(--text-muted);
  max-width: 500px;
  font-weight: 300;
}
.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}
.section-header.center .section-tag {
  padding-left: 0;
}
.section-header.center .section-tag::before {
  display: none;
}

/* ── Reveal Animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(200, 169, 126, 0.3);
}
.btn-outline {
  border: 1px solid rgba(200, 169, 126, 0.4);
  color: var(--gold);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 126, 0.1);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   LOADING SCREEN
   ═══════════════════════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Coffee cup */
.coffee-cup-wrapper {
  position: relative;
  width: 160px;
  height: 180px;
}
.coffee-cup { width: 100%; height: 100%; }
.coffee-fill {
  animation: fillCoffee 2.5s var(--ease-in-out) forwards;
  animation-delay: 0.3s;
}
@keyframes fillCoffee {
  0%   { y: 200; }
  100% { y: 75; }
}
.coffee-surface {
  animation: waveSurface 2s ease-in-out infinite;
  animation-delay: 1s;
}
@keyframes waveSurface {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(5px); }
}

/* Steam */
.steam-container {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 60px;
  opacity: 0;
  animation: showSteam 0.5s ease forwards;
  animation-delay: 1.5s;
}
.steam {
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 8px;
  background: rgba(200, 169, 126, 0.15);
  border-radius: 50%;
  filter: blur(4px);
  animation: riseSteam 2s ease-out infinite;
}
.steam-1 { left: 20%; animation-delay: 0s; }
.steam-2 { left: 40%; animation-delay: 0.4s; }
.steam-3 { left: 60%; animation-delay: 0.2s; }
.steam-4 { left: 30%; animation-delay: 0.6s; }
.steam-5 { left: 70%; animation-delay: 0.8s; }

@keyframes riseSteam {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(-50px) scale(2.5) translateX(10px);
  }
}
@keyframes showSteam {
  to { opacity: 1; }
}

/* Loader text */
.loader-text { text-align: center; }
.loader-brand {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 20px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.2s;
}
.loader-bar-container {
  width: 200px;
  height: 1px;
  background: rgba(200, 169, 126, 0.2);
  margin: 0 auto 16px;
  overflow: hidden;
}
.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--gold);
  animation: loadBar 2.8s var(--ease-in-out) forwards;
  animation-delay: 0.3s;
}
@keyframes loadBar {
  0%   { width: 0%; }
  100% { width: 100%; }
}
.loader-tagline {
  font-family: var(--font-accent);
  font-size: 16px;
  color: var(--text-muted);
  letter-spacing: 6px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.8s;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s var(--ease-out);
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 169, 126, 0.1);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
.logo-icon {
  color: var(--gold);
  font-size: 18px;
  animation: rotateDiamond 6s ease-in-out infinite;
}
@keyframes rotateDiamond {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(180deg); }
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 8px;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-cart {
  position: relative;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-cart:hover { color: var(--gold); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-reserve-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(200, 169, 126, 0.4);
  color: var(--gold);
  transition: all 0.3s;
}
.nav-reserve-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* Mobile Toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}
.nav-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 4px); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-links { text-align: center; }
.mobile-links li { margin-bottom: 24px; }
.mobile-links a {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text);
  transition: color 0.3s;
}
.mobile-links a:hover { color: var(--gold); }
.mobile-reserve {
  font-size: 14px !important;
  font-family: var(--font-body) !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  display: inline-block;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

/* Hero Steam Particles */
.hero-steam {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-steam-particle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 169, 126, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSteam 8s ease-in-out infinite;
}
.hero-steam-particle.p1 { bottom: 20%; left: 10%; animation-delay: 0s; animation-duration: 10s; }
.hero-steam-particle.p2 { bottom: 30%; right: 15%; animation-delay: 2s; animation-duration: 12s; }
.hero-steam-particle.p3 { bottom: 10%; left: 40%; animation-delay: 4s; animation-duration: 9s; }
.hero-steam-particle.p4 { bottom: 40%; right: 30%; animation-delay: 1s; animation-duration: 11s; width: 150px; height: 150px; }
.hero-steam-particle.p5 { bottom: 15%; left: 60%; animation-delay: 3s; animation-duration: 13s; width: 250px; height: 250px; }
.hero-steam-particle.p6 { bottom: 25%; left: 25%; animation-delay: 5s; animation-duration: 14s; width: 180px; height: 180px; }

@keyframes floatSteam {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(30px, -40px) scale(1.2); opacity: 0.6; }
  50% { transform: translate(-20px, -80px) scale(1.5); opacity: 0.4; }
  75% { transform: translate(10px, -50px) scale(1.1); opacity: 0.5; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}
.hero-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
}
.hero-line { display: block; }
.hero-line-accent {
  color: var(--gold);
  font-style: italic;
  font-size: 1.1em;
}
.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 48px;
  font-weight: 300;
  opacity: 0;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(200, 169, 126, 0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -50%; }
  100% { top: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════════ */
.marquee-strip {
  padding: 20px 0;
  background: var(--dark);
  border-top: 1px solid rgba(200, 169, 126, 0.1);
  border-bottom: 1px solid rgba(200, 169, 126, 0.1);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  padding-right: 20px;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   ORIGIN / STORY SECTION
   ═══════════════════════════════════════════════════════════════ */
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.origin-img-stack {
  position: relative;
  height: 600px;
}
.origin-img {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
}
.origin-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.origin-img:hover img { transform: scale(1.05); }
.origin-img-1 {
  top: 0;
  left: 0;
  width: 65%;
  height: 70%;
  z-index: 2;
}
.origin-img-2 {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  z-index: 3;
}
.origin-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(200, 169, 126, 0.15);
  border-radius: 2px;
  z-index: 1;
}

.origin-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}
.origin-description {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.origin-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(200, 169, 126, 0.15);
}
.stat { text-align: left; }
.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 8px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   SHOP / COLLECTION SECTION
   ═══════════════════════════════════════════════════════════════ */
.shop { background: var(--dark); }

.shop-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(200, 169, 126, 0.15);
  transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 169, 126, 0.08);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--black);
  border: 1px solid rgba(200, 169, 126, 0.08);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.product-card:hover {
  border-color: rgba(200, 169, 126, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.product-card.hidden {
  display: none;
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  padding: 6px 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
}
.product-badge.new { background: #4a9; }
.product-badge.limited { background: #c0392b; color: white; }
.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-image img { transform: scale(1.08); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-quick-add {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: all 0.3s;
}
.product-card:hover .product-quick-add { transform: translateY(0); }
.product-quick-add:hover {
  background: var(--gold-bright);
}

.product-info { padding: 24px; }
.product-origin {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.product-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin: 8px 0;
}
.product-notes {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.product-rating { display: flex; align-items: center; gap: 6px; }
.stars { color: var(--gold); font-size: 12px; }
.rating-count { font-size: 11px; color: var(--text-muted); }
.product-price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
}

.roast-level {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.roast-bar {
  flex: 1;
  height: 3px;
  background: rgba(200, 169, 126, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.roast-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 2px;
  transition: width 1s var(--ease-out);
}

/* ═══════════════════════════════════════════════════════════════
   INTERACTIVE MENU
   ═══════════════════════════════════════════════════════════════ */
.menu {
  background: var(--black);
  overflow: hidden;
}
.menu-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 20vw, 300px);
  font-weight: 700;
  color: rgba(200, 169, 126, 0.03);
  letter-spacing: 40px;
  pointer-events: none;
  white-space: nowrap;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.menu-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(200, 169, 126, 0.12);
  transition: all 0.3s;
}
.menu-tab svg { opacity: 0.5; transition: opacity 0.3s; }
.menu-tab:hover,
.menu-tab.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(200, 169, 126, 0.06);
}
.menu-tab:hover svg,
.menu-tab.active svg { opacity: 1; stroke: var(--gold); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp 0.5s var(--ease-out); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-items {
  max-width: 800px;
  margin: 0 auto;
}
.menu-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(200, 169, 126, 0.08);
  transition: all 0.3s;
}
.menu-item:hover {
  padding-left: 16px;
  border-bottom-color: rgba(200, 169, 126, 0.2);
}
.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}
.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(200, 169, 126, 0.2);
  min-width: 40px;
  margin-bottom: 6px;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}
.menu-item-tags {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.tag {
  padding: 4px 12px;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   EXPERIENCE / PARALLAX
   ═══════════════════════════════════════════════════════════════ */
.experience {
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.experience-parallax {
  position: absolute;
  inset: -50px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.experience-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
}
.experience-content {
  position: relative;
  z-index: 2;
}
.experience-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
}
.exp-feature { text-align: left; }
.exp-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 169, 126, 0.2);
  margin-bottom: 24px;
  transition: all 0.3s;
}
.exp-feature:hover .exp-icon {
  border-color: var(--gold);
  background: rgba(200, 169, 126, 0.06);
  transform: translateY(-4px);
}
.exp-feature h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}
.exp-feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */
.about { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-body p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(200, 169, 126, 0.15);
}
.sig-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.sig-name {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
}
.sig-title {
  font-size: 12px;
  color: var(--text-muted);
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 500px;
}
.about-img {
  overflow: hidden;
  border-radius: 2px;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.about-img:hover img { transform: scale(1.05); }
.a-img-1 { grid-row: 1 / 3; }
.a-img-2 { }
.a-img-3 { }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials { background: var(--black); }
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
}
.testimonial-card {
  min-width: 100%;
  padding: 0 40px;
  text-align: center;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 32px;
}
.testimonial-card blockquote {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 32px;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}
.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}
.test-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 169, 126, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.test-nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.test-dots {
  display: flex;
  gap: 8px;
}
.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(200, 169, 126, 0.2);
  transition: all 0.3s;
}
.test-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   RESERVATION
   ═══════════════════════════════════════════════════════════════ */
.reservation { background: var(--black); }
.reservation-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  background: var(--dark);
  border: 1px solid rgba(200, 169, 126, 0.1);
  padding: 80px;
}
.res-left p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: var(--black);
  border: 1px solid rgba(200, 169, 126, 0.15);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; margin-bottom: 20px; }
.form-group select { cursor: pointer; }

/* ═══════════════════════════════════════════════════════════════
   INSTAGRAM FEED
   ═══════════════════════════════════════════════════════════════ */
.insta-section {
  padding: 100px 0 0;
  background: var(--dark);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 60px;
}
.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.insta-item:hover .insta-overlay { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 100px 0 40px;
  border-top: 1px solid rgba(200, 169, 126, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--font-accent);
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-hours {
  margin-top: 8px;
  color: var(--gold) !important;
  font-size: 12px !important;
  letter-spacing: 1px;
}
.footer-newsletter-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-newsletter {
  display: flex;
  border: 1px solid rgba(200, 169, 126, 0.2);
  overflow: hidden;
}
.footer-newsletter input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
}
.footer-newsletter input:focus { outline: none; }
.footer-newsletter button {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s;
}
.footer-newsletter button:hover { background: var(--gold-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(200, 169, 126, 0.08);
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold-bright);
  transform: translateY(-4px);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .section { padding: 100px 0; }
  .origin-grid, .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .origin-img-stack { height: 400px; }
  .experience-features { grid-template-columns: 1fr; gap: 40px; }
  .experience-parallax { background-attachment: scroll; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .reservation-card { grid-template-columns: 1fr; padding: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  .nav-links, .nav-actions { display: none; }
  .nav-mobile-toggle { display: flex; }

  .hero-title { font-size: clamp(36px, 10vw, 72px); }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }

  .origin-stats { flex-direction: column; gap: 24px; }
  .shop-grid { grid-template-columns: 1fr; }
  .menu-tabs { gap: 4px; }
  .menu-tab { padding: 10px 16px; font-size: 10px; }
  .menu-item-name { font-size: 18px; }
  .menu-item-price { font-size: 18px; }

  .reservation-card { padding: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial-card { padding: 0 20px; }
  .testimonial-card blockquote { font-size: 18px; }
}

@media (max-width: 480px) {
  .section-title { font-size: clamp(28px, 7vw, 42px); }
  .product-image { height: 220px; }
  .reservation-card { padding: 24px; }
}
