/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* === VARIABLES === */
:root {
  --red: #C8202A;
  --red-light: #E8443E;
  --gold: #D4A843;
  --cream: #FDF8F0;
  --warm-bg: #F7EFE4;
  --dark: #18120A;
  --brown: #3D2208;
  --muted: #8B6A4A;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(24,18,10,0.10);
  --shadow-lg: 0 12px 48px rgba(24,18,10,0.18);
  --container: 1100px;
}

/* === UTILITIES === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,32,42,0.35); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--secondary { background: transparent; color: var(--brown); border: 2px solid var(--gold); }
.btn--secondary:hover { background: var(--gold); color: var(--white); }
.btn--white { background: var(--white); color: var(--red); font-weight: 700; }
.btn--white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn--large { padding: 18px 40px; font-size: 1.05rem; }
.btn--nav { padding: 10px 20px; font-size: 0.85rem; }

.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 14px;
}
.label--light { color: rgba(255,255,255,0.6); }
.label--gold { color: var(--gold); }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(24,18,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  padding: 14px 0;
}
.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav__links li a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links li a:hover { color: var(--white); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger--open span:nth-child(2) { opacity: 0; }
.nav__hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 60% at 20% 70%, rgba(200,32,42,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 25%, rgba(212,168,67,0.12) 0%, transparent 55%),
    linear-gradient(155deg, #1E0A00 0%, #2A1200 45%, #0E0705 100%);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(24,18,10,0.9) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 130px 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.3);
  font-size: 1.4rem;
  animation: scrollbounce 2.5s ease-in-out infinite;
}
@keyframes scrollbounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.7; }
}

/* === HERO PRODUCT === */
.hero-product {
  padding: 100px 0;
  background: var(--white);
}
.hero-product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-product__visual {
  position: relative;
}
.hero-product__img-placeholder {
  aspect-ratio: 5/4;
  background: linear-gradient(135deg, rgba(200,32,42,0.07) 0%, rgba(212,168,67,0.12) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 2px dashed rgba(200,32,42,0.18);
  font-size: 5rem;
}
.hero-product__img-placeholder figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.hero-product__badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 40px;
  box-shadow: 0 4px 16px rgba(200,32,42,0.4);
}
.hero-product__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-product__desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.hero-product__price {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--red);
  background: rgba(200,32,42,0.06);
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 32px;
}

/* === ABOUT === */
.about {
  padding: 110px 0;
  background: linear-gradient(150deg, #1E0900 0%, #2D1400 60%, #100705 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,32,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.about__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.about__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.15;
}
.about__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about__text em {
  color: var(--gold);
  font-style: italic;
}
.about__divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 40px auto;
  border-radius: 2px;
}

/* === MENU PREVIEW === */
.menu-preview {
  padding: 100px 0;
  background: var(--cream);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  line-height: 1.2;
}
.menu-preview__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 44px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.menu-card__img {
  background: linear-gradient(135deg, var(--warm-bg) 0%, #F0E2CA 100%);
  padding: 36px 20px;
  font-size: 3.2rem;
  text-align: center;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-card--featured .menu-card__img {
  background: linear-gradient(135deg, rgba(200,32,42,0.07) 0%, rgba(212,168,67,0.14) 100%);
  font-size: 4.5rem;
  min-height: 200px;
}
.menu-card__body {
  padding: 22px 22px 26px;
}
.menu-card__tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.menu-card__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
  line-height: 1.3;
}
.menu-card__body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.menu-card__price {
  font-weight: 800;
  color: var(--red);
  font-size: 0.98rem;
}
.menu-preview__cta {
  text-align: center;
}

/* === BOOKING === */
.booking {
  padding: 110px 0;
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.booking::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.booking__inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}
.booking__inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.booking__inner > p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  margin-bottom: 44px;
  line-height: 1.7;
}
.booking__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.booking__note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}
.footer__slogan {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.6;
}
.footer__col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__col p, .footer__col address {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: normal;
}
.footer__col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.82rem;
}

/* === PAGE HERO (menu.html) === */
.page-hero {
  background: linear-gradient(150deg, #1E0900 0%, #2D1400 100%);
  padding: 160px 24px 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
}

/* === MENU PAGE === */
.menu-page {
  padding: 80px 0;
  background: var(--cream);
}
.menu-featured {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.menu-featured__visual {
  background: linear-gradient(135deg, rgba(200,32,42,0.08) 0%, rgba(212,168,67,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  min-height: 340px;
  position: relative;
}
.menu-featured__badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
}
.menu-featured__content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-featured__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 18px;
}
.menu-featured__content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.menu-featured__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 0 !important;
}
.menu-category {
  margin-bottom: 56px;
}
.menu-category__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--warm-bg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-category__title span { font-size: 1.4rem; }
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.menu-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.menu-item__info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  line-height: 1.3;
}
.menu-item__info p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}
.menu-item__price {
  font-weight: 800;
  color: var(--red);
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-note {
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--brown);
}
.menu-note strong { color: var(--dark); font-weight: 700; }

/* === MOBILE === */
@media (max-width: 900px) {
  .menu-preview__grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(24,18,10,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 150;
  }
  .nav__links.nav__links--open { display: flex; }
  .nav__links li a { font-size: 1.25rem; }
  .hero-product__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-product__badge { top: 12px; right: 12px; }
  .hero__ctas { flex-direction: column; }
  .menu-preview__grid { grid-template-columns: 1fr; }
  .menu-featured { grid-template-columns: 1fr; }
  .menu-featured__visual { min-height: 220px; font-size: 5rem; }
  .menu-featured__content { padding: 32px 24px; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__headline { font-size: 2.4rem; }
  .btn--large { padding: 16px 28px; font-size: 1rem; }
  .about { padding: 80px 0; }
  .booking { padding: 80px 0; }
  .hero-product { padding: 72px 0; }
  .menu-preview { padding: 72px 0; }
}
