:root {
  --bg: #071c1a;
  --bg-soft: #0d2a27;
  --bg-card: rgba(255, 248, 230, 0.07);
  --stroke: rgba(230, 197, 126, 0.22);
  --gold: #ddb96e;
  --gold-soft: #f2ddaf;
  --text: #f7f0dc;
  --muted: #d9cfba;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --radius: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(221, 185, 110, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(221, 185, 110, 0.06), transparent 22%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-alt {
  background: rgba(255, 255, 255, 0.015);
}

.center-text {
  text-align: center;
}

.section-heading {
  margin-bottom: 30px;
}

.section-tag,
.mini-tag,
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.86rem;
  font-weight: 700;
}

.section-tag,
.eyebrow {
  margin-bottom: 10px;
}

.section-heading h2,
.contact-panel h2,
.about-grid h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--gold-soft);
  line-height: 1;
}

.section-subtext,
.section-text,
.contact-lead,
.menu-card p,
.feature-card p,
.featured-right p {
  color: var(--muted);
}

.section-subtext {
  max-width: 720px;
  margin: 12px auto 0;
}

.hero {
  min-height: 100vh;
  position: relative;
  padding: 24px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar {
  width: min(1120px, 90%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(230, 197, 126, 0.16);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  position: sticky;
  top: 20px;
  z-index: 20;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-soft);
  white-space: nowrap;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--gold-soft);
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  flex: 1;
  padding-top: 60px;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6.2vw, 5.1rem);
  line-height: 0.95;
  color: #fff2cc;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #102220;
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--text);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(221, 185, 110, 0.1);
}

.full-width {
  width: 100%;
}

.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-card {
  padding: 16px 18px;
  min-width: 200px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.stat-label {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.poster-card {
  width: min(430px, 100%);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  background: rgba(255, 255, 255, 0.04);
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.gallery-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.featured-meal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(221, 185, 110, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.featured-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.featured-points li::before {
  content: "• ";
  color: var(--gold);
}

.featured-left h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--gold-soft);
  margin: 8px 0 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.featured-left ul {
  padding-left: 20px;
  color: var(--muted);
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.menu-card,
.feature-card,
.contact-form,
.contact-panel {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-card {
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.menu-card p {
  line-height: 1.6;
}

.menu-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 197, 126, 0.38);
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 10px;
}

.menu-top h3,
.feature-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  color: var(--gold-soft);
  line-height: 1;
}

.menu-top span {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.menu-poster {
  margin-top: 32px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.feature-card {
  padding: 26px;
}

.feature-number {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.contact-premium {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.contact-panel h2 {
  margin-bottom: 20px;
}

.contact-panel,
.contact-form {
  padding: 28px;
}

.info-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.info-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(230, 197, 126, 0.12);
}

.info-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 6px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(230, 197, 126, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #cdc3af;
}

.form-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.form-message {
  margin-top: 12px;
  color: var(--gold);
  min-height: 24px;
}

.footer {
  text-align: center;
  padding: 30px 16px;
  background: #051311;
  color: var(--muted);
  border-top: 1px solid rgba(230, 197, 126, 0.08);
}

.bg-blur {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
  z-index: -1;
}

.bg-blur-1 {
  top: 0;
  left: 0;
  background: #d6a84f;
}

.bg-blur-2 {
  right: 0;
  bottom: 0;
  background: #8a5c1f;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-content,
  .about-grid,
  .featured-meal,
  .contact-premium,
  .features,
  .premium-grid {
    grid-template-columns: 1fr;
  }

  .poster-card {
    transform: rotate(0deg);
    max-width: 460px;
  }

  .navbar {
    border-radius: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
    padding-top: 10px;
  }

  .nav-links.show {
    display: flex;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 74px 0;
  }

  .hero-content {
    padding-top: 36px;
  }

  .hero-copy h1 {
    line-height: 1;
  }

  .navbar {
    position: sticky;
    top: 12px;
    padding: 14px 16px;
  }

  .logo {
    font-size: 1.6rem;
  }

  .stat-card {
    width: 100%;
  }

  .contact-panel,
  .contact-form,
  .featured-meal,
  .menu-card,
  .feature-card {
    padding: 22px;
  }
}