@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');
:root {
  --primary: #8b1a1a;
  --primary-light: #b52a2a;
  --gold: #c9a84c;
  --gold-light: #e5c97a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --dark: #0e0e0e;
  --dark-2: #161616;
  --dark-3: #1f1f1f;
  --dark-4: #2a2a2a;
  --cream: #f0ebe3;
  --cream-dim: rgba(240, 235, 227, 0.06);
  --text: #c8c0b4;
  --text-light: #f0ebe3;
  --text-muted: #7a7268;
  --border: rgba(201, 168, 76, 0.2);
  --border-subtle: rgba(240, 235, 227, 0.08);
  --radius: 4px;
  --radius-lg: 12px;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: all 0.6s var(--ease);
  --shadow-gold: 0 20px 60px rgba(201, 168, 76, 0.12);
  --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.5);
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--dark-3);
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-3); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background-color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-light);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50%       { transform: translateY(-12px) translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3); }
  50%       { box-shadow: 0 0 0 15px rgba(201, 168, 76, 0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-6px); opacity: 1; }
}
@keyframes messageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(201, 168, 76, 0.2); }
  50%       { border-color: rgba(201, 168, 76, 0.6); }
}
@keyframes revealUp {
  from { clip-path: inset(100% 0 0 0); opacity: 0; }
  to   { clip-path: inset(0% 0 0 0); opacity: 1; }
}

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.15s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: all 0.4s var(--ease-out);
}
.cursor-ring.hovered {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}
.navbar {
  width: 100%;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.5s var(--ease);
}
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,14,0.95), rgba(14,14,14,0));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.navbar.scrolled {
  padding: 16px 60px;
}
.navbar.scrolled::before {
  opacity: 1;
}
.navbar.scrolled .navbar-inner {
  background: rgba(14, 14, 14, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  padding: 8px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  transition: all 0.5s var(--ease);
  padding: 0 10px;
}
.navbar-hidden {
  transform: translateY(-100%);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 6px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.logo:hover { color: var(--gold); }
.logo:hover::after { transform: scaleX(1); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}
.nav-links li { position: relative; }
.nav-links a {
  color: rgba(240, 235, 227, 0.7);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  display: block;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  z-index: 1001;
}
.mobile-menu-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.navbar.mobile-menu-open .nav-links {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(14, 14, 14, 0.98);
  backdrop-filter: blur(20px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  gap: 8px;
}
.navbar.mobile-menu-open .nav-links li {
  opacity: 0;
  animation: fadeUp 0.5s var(--ease-out) forwards;
}
.navbar.mobile-menu-open .nav-links li:nth-child(1) { animation-delay: 0.1s; }
.navbar.mobile-menu-open .nav-links li:nth-child(2) { animation-delay: 0.15s; }
.navbar.mobile-menu-open .nav-links li:nth-child(3) { animation-delay: 0.2s; }
.navbar.mobile-menu-open .nav-links li:nth-child(4) { animation-delay: 0.25s; }
.navbar.mobile-menu-open .nav-links li:nth-child(5) { animation-delay: 0.3s; }
.navbar.mobile-menu-open .nav-links li:nth-child(6) { animation-delay: 0.35s; }
.navbar.mobile-menu-open .nav-links a {
  font-size: 1.1rem;
  letter-spacing: 4px;
  padding: 14px 30px;
}
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -10%;
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 0.1s linear;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14, 14, 14, 0.85) 0%,
    rgba(14, 14, 14, 0.6) 50%,
    rgba(14, 14, 14, 0.85) 100%
  );
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(14,14,14,0.7) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  max-width: 900px;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.6s forwards;
  letter-spacing: 2px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero p {
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.9s forwards;
  color: rgba(240, 235, 227, 0.65);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.3px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}
.delivery-promo {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  animation: fadeIn 1s ease 1.5s both;
}
.delivery-promo::before {
  content: '★';
  font-size: 0.6rem;
}
.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  color: rgba(240, 235, 227, 0.4);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s ease;
  animation: float 3s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-down:hover { color: var(--gold); }
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: float 3s ease-in-out infinite reverse;
}

.btn-cardapio{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-cardapio:hover {
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(139, 26, 26, 0.3);
  background-color: var(--primary);
}


.btn:hover::before { transform: translateX(0); }
.btn span, .btn > * { position: relative; z-index: 1; }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240, 235, 227, 0.3);
}
.btn-outline::before { background: var(--gold); }
.btn-outline:hover {
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.2);
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--dark-3);
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
section { padding: 120px 0; position: relative; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.section-title {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}
.section-title.visible { opacity: 1; transform: translateY(0); }
.section-title .section-label { justify-content: center; }
.section-title h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.section-title .divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
  transform-origin: left;
  animation: slideRight 0.8s var(--ease) forwards;
}
.section-title p {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 400px;
  margin: 0 auto;
}
.about {
  background: var(--dark-2);
  overflow: hidden;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
}
.about-text {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.9s var(--ease-out);
}
.about-text.visible { opacity: 1; transform: translateX(0); }
.about-text h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 10px;
}
.about-text h3 em {
  font-style: italic;
  color: var(--gold);
}
.about-text .year-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.about-text .year-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
  max-width: 80px;
}
.about-text .year-badge {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.about-text p {
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.9;
}
.about-text .btn { margin-top: 12px; }
.about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.stat-item { text-align: left; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}
.about-image {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.9s var(--ease-out) 0.2s;
  position: relative;
}
.about-image.visible { opacity: 1; transform: translateX(0); }
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.5) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.about-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.about-img-wrapper:hover .about-img {
  transform: scale(1.04);
}
.floating-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-dark);
  z-index: 2;
  animation: borderGlow 4s ease-in-out infinite;
}
.floating-badge h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.floating-badge p {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.about-deco {
  position: absolute;
  top: 40px;
  left: -20px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  z-index: 0;
}
.menu-preview {
  background: var(--dark);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.menu-item {
  background: var(--dark-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  opacity: 0;
  transform: translateY(40px);
  cursor: pointer;
}
.menu-item.visible { opacity: 1; transform: translateY(0); }
.menu-item:nth-child(2) { transition-delay: 0.1s; }
.menu-item:nth-child(3) { transition-delay: 0.2s; }
.menu-item:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: var(--shadow-dark), 0 0 0 1px rgba(201, 168, 76, 0.1);
}
.menu-item-img-wrapper {
  position: relative;
  overflow: hidden;
}
.menu-item-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.menu-item:hover .menu-item-img {
  transform: scale(1.08);
}
.menu-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.menu-item:hover .menu-img-overlay { opacity: 1; }
.menu-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.menu-item-content {
  padding: 28px;
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}
.menu-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.2;
}
.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 22px;
}
.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}
.menu-item-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-item-btn::after {
  content: '→';
  transition: transform 0.3s ease;
}
.menu-item:hover .menu-item-btn { color: var(--gold-light); }
.menu-item:hover .menu-item-btn::after { transform: translateX(4px); }
.menu-item-rating {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.7rem;
}
.view-all {
  text-align: center;
  margin-top: 60px;
  padding-bottom: 20px;
}
.delivery {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.delivery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.delivery::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.delivery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.delivery-card {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.delivery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.delivery-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow-dark);
}
.delivery-card:hover::after { opacity: 1; }
.delivery-card.highlight {
  border-color: rgba(201, 168, 76, 0.4);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), var(--dark-3));
}
.delivery-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all 0.4s ease;
}
.delivery-card:hover .delivery-icon {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}
.delivery-card h3 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 14px;
}
.delivery-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}
.delivery-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 18px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.delivery-steps {
  list-style: none;
  text-align: left;
  margin: 24px 0;
}
.delivery-steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 300;
}
.delivery-steps li:last-child { border-bottom: none; }
.delivery-steps span {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
}
.delivery-btn { width: 100%; justify-content: center; margin-top: 20px; }
.testimonials {
  position: relative;
  background: var(--dark-3);
  padding: 140px 0;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 24rem;
  color: rgba(201, 168, 76, 0.04);
  line-height: 1;
  pointer-events: none;
  select: none;
}
.testimonials .section-title h2 { color: var(--cream); }
.testimonials .section-title .divider { background: var(--gold); }
.testimonials .section-title p { color: var(--text-muted); }
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.testimonial {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}
.testimonial.visible { opacity: 1; transform: translateY(0); }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 40px;
  position: relative;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.author-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 76, 0.4);
  filter: grayscale(20%);
}
.author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 400;
}
.author-role {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.testimonial-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}
.reservation { background: var(--dark); }
.reservation-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}
.reservation-card {
  background: var(--dark-2);
  border: 1px solid var(--border-subtle);
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.reservation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.reservation-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow-dark);
}
.reservation-card:hover::before { transform: scaleX(1); }
.reservation-card-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.reservation-card h3 {
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 14px;
}
.reservation-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
}
.features { background: var(--dark-2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.feature-card {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.5s var(--ease);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--gold));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:nth-child(2).visible { transition-delay: 0.1s; }
.feature-card:nth-child(3).visible { transition-delay: 0.2s; }
.feature-card:nth-child(4).visible { transition-delay: 0.3s; }
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow-dark);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--gold);
  transition: all 0.4s ease;
}
.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
  border-color: var(--gold);
}
.feature-title {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 14px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
}
.map-wrapper {
  padding: 60px 0;
  background: var(--dark);
}
.map-container {
  position: relative;
  margin: 0 auto;
  height: 55vh;
  max-width: 1200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-dark);
  padding: 0 40px;
}
.map-container { padding: 0; margin: 0 40px; max-width: none; }
@media (min-width: 1280px) {
  .map-container { margin: 0 auto; max-width: 1200px; }
}
#map {
  height: 100%;
  width: 100%;
  filter: grayscale(60%) brightness(0.7) sepia(20%);
  transition: filter 0.5s ease;
}
#map:hover {
  filter: grayscale(20%) brightness(0.85);
}
.map-overlay {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14, 14, 14, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 18px 32px;
  border-radius: var(--radius);
  text-align: center;
  max-width: 90%;
  z-index: 100;
}
.map-overlay h3 {
  color: var(--gold);
  margin-bottom: 6px;
  font-size: 1.1rem;
  font-weight: 400;
}
.map-overlay p {
  margin: 4px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.map-actions {
  text-align: center;
  margin-top: 30px;
}
.map-actions .btn { margin: 0 auto; }
.contact-section {
  background: var(--dark-2);
  padding: 120px 40px;
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.contact-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
  gap: 0;
  border-bottom: 1px solid var(--border-subtle);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.tab-button {
  padding: 14px 40px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: -1px;
}
.tab-button.active {
  border-bottom-color: var(--gold);
  color: var(--gold);
}
.tab-button:hover:not(.active) { color: var(--cream); }
.tab-content {
  display: none;
  max-width: 700px;
  margin: 0 auto;
}
.tab-content.active { display: block; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }
.contact-form label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream);
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}
.contact-form select option { background: var(--dark-3); color: var(--cream); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(201, 168, 76, 0.5);
  background: var(--dark-4);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.06);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.7;
}
.submit-btn {
  align-self: center;
  padding: 16px 48px;
  margin-top: 12px;
  min-width: 200px;
  justify-content: center;
}
.file-upload-group { margin-bottom: 8px; }
.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px;
  border: 1px dashed rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-lg);
  background: var(--dark-3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.file-upload-label i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.6;
}
.file-upload-text {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}
.file-name {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.file-upload-label:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background: var(--dark-4);
}
.file-upload-label input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.chatbot-trigger {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 54px;
  height: 54px;
  background: var(--dark-3);
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: all 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-trigger:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
  transform: scale(1.08);
}
.chatbot-container {
  position: fixed;
  bottom: 100px;
  left: 30px;
  width: 360px;
  max-height: 500px;
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 9998;
  border: 1px solid var(--border-subtle);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
}
.chatbot-container.visible { transform: translateY(0); opacity: 1; }
.chatbot-header {
  background: var(--dark-3);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chatbot-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
}
.chatbot-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 4px;
}
.chatbot-close:hover { color: var(--cream); transform: rotate(90deg); }
.chatbot-messages {
  padding: 16px;
  overflow-y: auto;
  flex-grow: 1;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--dark-4) transparent;
}
.chatbot-input {
  display: flex;
  padding: 12px 16px;
  border-top: 1px solid var(--border-subtle);
  background: var(--dark-2);
  gap: 10px;
  align-items: center;
}
.chatbot-input input {
  flex-grow: 1;
  padding: 10px 16px;
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s ease;
}
.chatbot-input input::placeholder { color: var(--text-muted); opacity: 0.6; }
.chatbot-input input:focus { border-color: rgba(201, 168, 76, 0.4); }
.chatbot-input button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  min-width: 38px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.chatbot-input button:hover { background: var(--gold-light); transform: scale(1.05); }
.message {
  padding: 11px 16px;
  border-radius: 12px;
  max-width: 85%;
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 300;
  animation: messageFadeIn 0.3s ease-out;
}
.user-message {
  background: var(--gold);
  color: var(--dark);
  margin-left: auto;
  border-bottom-right-radius: 4px;
  font-weight: 400;
}
.bot-message {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  color: var(--text);
  margin-right: auto;
  border-bottom-left-radius: 4px;
}
.typing-indicator {
  display: inline-flex;
  gap: 4px;
  padding: 12px 16px;
  background: var(--dark-3);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  margin-right: auto;
}
.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
footer {
  background: var(--dark-2);
  color: var(--text);
  padding: 80px 0 30px;
  position: relative;
  border-top: 1px solid var(--border-subtle);
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.footer-col p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 300;
  line-height: 1.7;
}
.footer-col p i {
  color: var(--gold);
  width: 18px;
  margin-right: 8px;
  opacity: 0.7;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a:hover::before { width: 16px; }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.4s var(--ease);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.25);
}
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--border-subtle);
  padding-left: 40px;
  padding-right: 40px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--gold));
  z-index: 2000;
  width: 0%;
  transition: width 0.1s linear;
}
#success-modal > div {
  background: var(--dark-2) !important;
  border: 1px solid var(--border) !important;
  color: var(--cream) !important;
}
#success-modal h3 { color: var(--gold) !important; }
#success-modal p { color: var(--text) !important; }
@media (max-width: 1200px) {
  .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px) {
  .about-content { grid-template-columns: 1fr; gap: 60px; }
  .about-img { height: 400px; }
  .floating-badge { right: 20px; bottom: 20px; }
  .about-deco { display: none; }
  .reservation-cta { grid-template-columns: 1fr; max-width: 500px; }
}
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .navbar.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero h1 { font-size: clamp(2.8rem, 10vw, 5rem); }
  section { padding: 80px 0; }
  .menu-grid,
  .features-grid { padding: 0 20px; }
  .delivery-container,
  .features-grid { padding: 0 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 30px; padding: 0 24px; }
  .map-container { margin: 0 24px; }
  .chatbot-container { width: calc(100% - 40px); left: 20px; bottom: 90px; }
  .chatbot-trigger { left: 20px; bottom: 20px; }
}
@media (max-width: 576px) {
  .navbar { padding: 14px 20px; }
  .footer-container { grid-template-columns: 1fr; text-align: center; padding: 0 20px; }
  .social-links { justify-content: center; }
  .footer-links a { justify-content: center; }
  .footer-links a::before { display: none; }
  .reservation-cta { padding: 0 20px; }
  .contact-section { padding: 80px 20px; }
  .delivery-container { padding: 0 20px; }
  .map-container { margin: 0 20px; }
  .menu-grid { padding: 0 20px; grid-template-columns: 1fr; }
  .about-content { padding: 0 20px; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
}
div[style*="position: fixed"][style*="z-index: 999999"],
div[style*="z-index: 9999999"] { display: none !important; }
