/* ============================================
   Bella Vista Restaurant — Premium Stylesheet
   ============================================ */

:root {
  --color-bg: #080808;
  --color-bg-alt: #0f0f0f;
  --color-bg-card: #141414;
  --color-bg-elevated: #1c1c1c;
  --color-gold: #c9a962;
  --color-gold-light: #e2cb8a;
  --color-gold-dark: #9a7d3c;
  --color-gold-glow: rgba(201, 169, 98, 0.35);
  --color-text: #f5f0e8;
  --color-text-muted: #9c9690;
  --color-text-dim: #5e5a55;
  --color-border: rgba(201, 169, 98, 0.12);
  --color-glass: rgba(255, 255, 255, 0.04);
  --color-glass-border: rgba(255, 255, 255, 0.08);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --header-height: 88px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.4s var(--ease-smooth);
  --shadow-gold: 0 8px 40px rgba(201, 169, 98, 0.12);
  --shadow-deep: 0 24px 80px rgba(0, 0, 0, 0.5);
  --radius: 6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.loaded { overflow-x: hidden; }
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold-light); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 120px 0; position: relative; }
.section--compact { padding: 80px 0; }

/* --- Glass Utility --- */
.glass-panel {
  background: var(--color-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border);
}

.glass-nav.scrolled {
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

/* --- Loader --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner { text-align: center; }

.loader__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-bg);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: var(--radius);
  margin-bottom: 24px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader__bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 16px;
}

.loader__progress {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light));
  animation: loaderProgress 1.8s var(--ease-out-expo) forwards;
}

.loader__text {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 var(--color-gold-glow); }
  50% { transform: scale(1.05); box-shadow: 0 0 30px 4px var(--color-gold-glow); }
}

@keyframes loaderProgress { to { width: 100%; } }

/* --- Scroll Progress --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* --- Typography --- */
.section__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__divider {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.section__divider span {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  position: relative;
}

.section__divider span::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
  color: var(--color-gold);
  background: var(--color-bg);
  padding: 0 8px;
}

.section__divider--left { justify-content: flex-start; }
.section__divider--left span::after { background: var(--color-bg-alt); }

.section__desc {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

.section__header { text-align: center; margin-bottom: 72px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.45s var(--ease-out-expo);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg);
  border-color: var(--color-gold);
  box-shadow: 0 4px 24px rgba(201, 169, 98, 0.25);
}

.btn--gold:hover {
  color: var(--color-bg);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.35);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn--glass:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  transform: translateY(-3px);
}

.btn--sm { padding: 11px 22px; font-size: 0.65rem; }
.btn--full { width: 100%; }

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.5s var(--ease-out-expo);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  z-index: 1001;
}

.nav__logo:hover { color: var(--color-text); }

.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-bg);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav__logo:hover .nav__logo-icon {
  transform: rotate(-3deg) scale(1.05);
  box-shadow: var(--shadow-gold);
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  padding: 6px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: all 0.4s var(--ease-out-expo);
  transform: translateX(-50%);
}

.nav__link:hover,
.nav__link.active { color: var(--color-gold-light); }

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__cta { z-index: 1001; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle-bar {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--color-text);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav__toggle.active .nav__toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.active .nav__toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* --- Hero --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: -15%;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=85') center/cover no-repeat;
  will-change: transform;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 169, 98, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.75) 60%, var(--color-bg) 100%);
  z-index: 2;
}

.hero__accent {
  position: absolute;
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
  z-index: 3;
  opacity: 0.4;
}

.hero__accent--left { left: 8%; top: 30%; animation: accentFloat 6s ease-in-out infinite; }
.hero__accent--right { right: 8%; bottom: 25%; animation: accentFloat 6s ease-in-out infinite 3s; }

@keyframes accentFloat {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-20px); opacity: 0.6; }
}

.hero__content {
  position: relative;
  z-index: 4;
  padding: 140px 28px 180px;
}

.hero__subtitle {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.hero__title {
  margin-bottom: 20px;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-line span {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--color-text);
}

.hero__title-line:last-child span {
  background: linear-gradient(135deg, var(--color-text) 30%, var(--color-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__stats {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 48px;
  border-radius: var(--radius-xl);
}

.hero__stat { text-align: center; }

.hero__stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-gold-light);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--color-border), transparent);
}

.hero__scroll {
  position: absolute;
  bottom: 160px;
  right: 40px;
  z-index: 4;
}

.hero__scroll-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* --- Marquee --- */
.marquee {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.marquee__dot {
  color: var(--color-gold) !important;
  font-size: 0.5rem !important;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- About --- */
.about {
  background: var(--color-bg);
}

.about__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.about__visual {
  position: relative;
  min-height: 560px;
}

.about__image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.about__image-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.about__visual:hover .about__image-main img { transform: scale(1.04); }

.about__image-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 8px;
  box-shadow: var(--shadow-deep);
}

.about__image-secondary img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
}

.about__badge {
  position: absolute;
  top: 30px;
  left: -20px;
  padding: 24px 32px;
  text-align: center;
  border-radius: var(--radius-lg);
}

.about__badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-gold-light);
  line-height: 1;
}

.about__badge-text {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.about__quote {
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  border-left: 2px solid var(--color-gold);
}

.about__quote p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 12px;
}

.about__quote cite {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-style: normal;
}

.about__lead {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 16px;
  font-weight: 300;
}

.about__text {
  color: var(--color-text-muted);
  margin-bottom: 36px;
  font-weight: 300;
  font-size: 0.95rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about__stat {
  padding: 24px 16px;
  text-align: center;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about__stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.about__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-gold-light);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* --- Chefs --- */
.chefs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.chef-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.6s var(--ease-out-expo);
}

.chef-card:hover { transform: translateY(-8px); }

.chef-card__image {
  height: 340px;
  overflow: hidden;
}

.chef-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}

.chef-card:hover .chef-card__image img { transform: scale(1.1); }

.chef-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,8,8,0.95) 100%);
  pointer-events: none;
}

.chef-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  margin: 16px;
  border-radius: var(--radius-lg);
}

.chef-card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(201, 169, 98, 0.2);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
}

.chef-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.chef-card__role {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.chef-card__bio {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* --- Pillars --- */
.pillars {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.pillar {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  transition: background var(--transition);
}

.pillar:hover {
  background: var(--color-glass);
}

.pillar__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-gold);
  transition: all var(--transition);
}

.pillar:hover .pillar__icon {
  background: rgba(201, 169, 98, 0.1);
  border-color: var(--color-gold);
  transform: scale(1.08);
}

.pillar__icon svg { width: 24px; height: 24px; }

.pillar__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.pillar__text {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* --- Menu --- */
.menu { background: var(--color-bg); }

.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  padding: 6px;
  background: var(--color-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-glass-border);
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.menu__tab {
  padding: 12px 28px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-radius: 50px;
  transition: all 0.4s var(--ease-out-expo);
}

.menu__tab:hover { color: var(--color-text); }

.menu__tab.active {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
}

.menu__panel {
  display: none;
  animation: panelFade 0.5s var(--ease-out-expo);
}

.menu__panel.active { display: block; }

@keyframes panelFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}

.menu-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo), box-shadow var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.menu-card--featured {
  border: 1px solid rgba(201, 169, 98, 0.25);
}

.menu-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}

.menu-card:hover .menu-card__image img { transform: scale(1.12); }

.menu-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-gold);
  border-radius: 50px;
  z-index: 2;
}

.menu-card__body {
  padding: 28px;
  margin-top: -24px;
  position: relative;
  z-index: 2;
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
}

.menu-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  gap: 16px;
}

.menu-card__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}

.menu-card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-gold-light);
  flex-shrink: 0;
}

.menu-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* --- Parallax Band --- */
.parallax-band {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.parallax-band__bg {
  position: absolute;
  inset: -20%;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80') center/cover no-repeat;
  will-change: transform;
}

.parallax-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.82);
}

.parallax-band__content {
  position: relative;
  z-index: 2;
  padding: 80px 28px;
}

.parallax-band__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}

.parallax-band__text {
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  font-weight: 300;
}

/* --- Gallery Bento --- */
.gallery { background: var(--color-bg-alt); }

.gallery__bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  cursor: pointer;
}

.gallery__item--tall {
  grid-row: span 2;
  grid-column: span 1;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.gallery__overlay {
  position: absolute;
  inset: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: all 0.5s var(--ease-out-expo);
  border-radius: calc(var(--radius-xl) - 8px);
  padding: 20px;
}

.gallery__caption {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateY(12px);
  transition: transform 0.5s var(--ease-out-expo);
}

.gallery__sub {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 6px;
  transform: translateY(12px);
  transition: transform 0.5s var(--ease-out-expo) 0.05s;
}

.gallery__item:hover img { transform: scale(1.1); }
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__item:hover .gallery__caption,
.gallery__item:hover .gallery__sub { transform: translateY(0); }

/* --- Testimonials Slider --- */
.testimonials { background: var(--color-bg); }

.testimonials__slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonials__track {
  position: relative;
  min-height: 320px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  background: var(--color-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border);
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px) scale(0.98);
  transition: all 0.6s var(--ease-out-expo);
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  position: relative;
}

.testimonial-slide__quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--color-gold);
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial-slide__stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.testimonial-slide__text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 32px;
  font-weight: 400;
}

.testimonial-slide__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-slide__avatar {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-slide__name {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 0.9rem;
}

.testimonial-slide__meta {
  font-size: 0.75rem;
  color: var(--color-text-dim);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}

.testimonials__btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.testimonials__btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201, 169, 98, 0.08);
}

.testimonials__dots {
  display: flex;
  gap: 10px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}

.testimonials__dot.active {
  background: var(--color-gold);
  width: 28px;
  border-radius: 4px;
}

/* --- Reservation --- */
.reservation {
  position: relative;
  overflow: hidden;
}

.reservation__bg {
  position: absolute;
  inset: -15%;
  background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1920&q=80') center/cover no-repeat;
  will-change: transform;
}

.reservation__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.88);
}

.reservation__container {
  position: relative;
  z-index: 2;
}

.reservation__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.reservation__text {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.85;
}

.reservation__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reservation__details li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
}

.reservation__details li:hover { transform: translateX(6px); }

.reservation__detail-icon {
  color: var(--color-gold);
  flex-shrink: 0;
}

.reservation__form {
  padding: 40px;
  border-radius: var(--radius-xl);
}

.form__group { margin-bottom: 22px; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form__input {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--color-text);
  transition: all var(--transition);
}

.form__input::placeholder { color: var(--color-text-dim); }

.form__input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.form__input.error { border-color: #c0392b; }

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a962' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

.form__select option { background: var(--color-bg-card); color: var(--color-text); }

.form__error {
  display: block;
  font-size: 0.72rem;
  color: #c0392b;
  margin-top: 6px;
  min-height: 18px;
}

.form__success {
  text-align: center;
  font-size: 0.88rem;
  color: #27ae60;
  margin-top: 16px;
  min-height: 24px;
}

/* --- Contact --- */
.contact { background: var(--color-bg); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact__card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-gold);
}

.contact__icon {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact__card-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-weight: 300;
}

.contact__hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  gap: 16px;
}

.contact__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 480px;
  padding: 8px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 464px;
  border-radius: calc(var(--radius-xl) - 8px);
  filter: grayscale(40%) contrast(1.05) brightness(0.85);
}

/* --- Footer --- */
.footer {
  position: relative;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 100px 0 0;
  overflow: hidden;
}

.footer__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 72px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.footer__logo:hover { color: var(--color-text); }

.footer__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}

.footer__social { display: flex; gap: 12px; }

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: all 0.4s var(--ease-out-expo);
}

.footer__social-link:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-bg);
  transform: translateY(-4px);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a,
.footer__links li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 300;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--color-gold-light); }

.footer__newsletter-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  font-weight: 300;
}

.footer__newsletter-form { display: flex; gap: 10px; }

.footer__newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--color-text);
  font-size: 0.85rem;
}

.footer__newsletter-input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.78rem;
  color: var(--color-text-dim);
}

.footer__bottom-links { display: flex; gap: 28px; }
.footer__bottom-links a { color: var(--color-text-dim); }
.footer__bottom-links a:hover { color: var(--color-gold); }

/* --- Floating Elements --- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  border-radius: 50%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-expo);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--color-gold-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.4s var(--ease-out-expo);
}

.whatsapp-btn:hover {
  color: #fff;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal[data-reveal="fade-up"] { transform: translateY(40px); }
.reveal[data-reveal="fade-down"] { transform: translateY(-40px); }
.reveal[data-reveal="fade-left"] { transform: translateX(-40px); }
.reveal[data-reveal="fade-right"] { transform: translateX(40px); }
.reveal[data-reveal="scale-up"] { transform: scale(0.92); }
.reveal[data-reveal="clip-up"] { transform: none; }

.reveal[data-reveal="clip-up"] > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out-expo);
}

.reveal.visible[data-reveal="fade-up"],
.reveal.visible[data-reveal="fade-down"],
.reveal.visible[data-reveal="fade-left"],
.reveal.visible[data-reveal="fade-right"],
.reveal.visible[data-reveal="scale-up"] {
  opacity: 1;
  transform: translate(0) scale(1);
}

.reveal.visible[data-reveal="clip-up"] { opacity: 1; }
.reveal.visible[data-reveal="clip-up"] > span { transform: translateY(0); }

.hero .reveal { transition-duration: 1s; }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee__track { animation: none; }
  .hero__bg, [data-parallax] { transform: none !important; }
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .chefs { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery__bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item { min-height: 240px; }
}

@media (max-width: 768px) {
  :root { --header-height: 72px; }
  .section { padding: 80px 0; }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(24px);
    padding: 48px;
    transition: right 0.5s var(--ease-out-expo);
    border-left: 1px solid var(--color-border);
  }

  .nav__menu.active { right: 0; }
  .nav__link { font-size: 0.85rem; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px 32px;
    bottom: 32px;
    width: calc(100% - 56px);
  }

  .hero__stat-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  }

  .hero__scroll { display: none; }
  .hero__content { padding-bottom: 220px; }

  .about__layout { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { min-height: auto; }
  .about__image-main img { height: 380px; }
  .about__image-secondary { right: 16px; bottom: -20px; width: 160px; }
  .about__badge { left: 16px; top: 16px; }
  .about__stats { grid-template-columns: 1fr; }

  .menu__tabs { flex-wrap: wrap; border-radius: var(--radius-lg); }
  .menu__grid { grid-template-columns: 1fr; }

  .reservation__wrapper { grid-template-columns: 1fr; gap: 40px; }
  .contact__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }

  .testimonial-slide { padding: 32px 24px; }
  .testimonial-slide__text { font-size: 1.05rem; }

  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__social { justify-content: center; }
  .footer__newsletter-form { flex-direction: column; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .pillars__grid { grid-template-columns: 1fr; }
  .gallery__bento { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
}

@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; align-items: center; }
  .hero__buttons .btn { width: 100%; max-width: 280px; }
  .reservation__form { padding: 28px; }
  .back-to-top { bottom: 88px; right: 20px; }
  .whatsapp-btn { bottom: 20px; right: 20px; }
}
