* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #0b0b0b;
  --bg-soft: #121212;
  --bg-card: rgba(24, 24, 24, 0.9);

  --gold: #d4af37;
  --gold-light: #f3d878;
  --gold-soft: rgba(212, 175, 55, 0.18);

  --text: #f7f3ea;
  --muted: #c9c2b5;

  --border: rgba(212, 175, 55, 0.24);
  --border-strong: rgba(212, 175, 55, 0.55);

  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --radius: 28px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 3000;
  padding: 16px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.site-header.scrolled {
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
}

.brand {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 1px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

.project-link {
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111 !important;
  font-weight: 900 !important;
  box-shadow: 0 14px 35px rgba(212, 175, 55, 0.22);
}

.project-link:hover {
  transform: translateY(-2px);
  color: #111 !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 9999;
}

.hero,
.page-hero {
  min-height: 78vh;
  padding: 120px 8%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.home-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.84)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=80");
}

.menu-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.84)),
    url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1800&q=80");
}

.gallery-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.84)),
    url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1800&q=80");
}

.about-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.84)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1800&q=80");
}

.contact-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.84)),
    url("https://images.unsplash.com/photo-1521017432531-fbd92d768814?auto=format&fit=crop&w=1800&q=80");
}

.reservation-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.84)),
    url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1800&q=80");
}

.hero-content,
.page-hero > div {
  max-width: 880px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 1050px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero p,
.page-hero p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions,
.buttons {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111;
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.2);
}

.btn.secondary {
  background: rgba(0, 0, 0, 0.35);
}

.btn.secondary:hover {
  background: rgba(212, 175, 55, 0.1);
}

.section {
  padding: 100px 8%;
  background: var(--bg);
}

.section.dark {
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 32%),
    var(--bg-soft);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section h2,
.cta h2,
.split-content h2,
.reservation-box h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p,
.split-content p,
.cta p,
.reservation-box p {
  color: var(--muted);
  font-size: 1.06rem;
}

.cards,
.grid {
  display: grid;
  gap: 24px;
}

.cards.three,
.grid.three,
.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two,
.two {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.testimonial,
.menu-item,
.contact-card,
.reservation-box,
.social-card,
.feature-item,
.legal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.card,
.menu-item,
.feature-item,
.testimonial,
.gallery-item {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.card:hover,
.menu-item:hover,
.feature-item:hover,
.testimonial:hover,
.gallery-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.card span {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 2rem;
}

.card h3,
.testimonial strong,
.menu-item h4,
.contact-card h3,
.reservation-box h3,
.social-card h3,
.feature-item h3,
.legal-box h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.25rem;
}

.card p,
.testimonial p,
.menu-item p,
.contact-card p,
.reservation-box p,
.social-card p,
.feature-item p,
.legal-box p {
  color: var(--muted);
}

.stats {
  padding: 42px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  background: #111;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats div {
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--gold);
  font-size: 2.4rem;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--bg-soft);
}

.split-image {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.chef-image {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32)),
    url("https://images.unsplash.com/photo-1577219491135-ce391730fb2c?auto=format&fit=crop&w=1200&q=80");
}

.about-image {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32)),
    url("https://images.unsplash.com/photo-1551218808-94e220e084d2?auto=format&fit=crop&w=1200&q=80");
}

.split-content {
  padding: 90px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.check-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  color: var(--muted);
  font-weight: 800;
}

.check-list li::before {
  content: "✓ ";
  color: var(--gold);
  font-weight: 900;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial span {
  color: var(--gold);
  letter-spacing: 2px;
}

.menu-category {
  margin-bottom: 54px;
}

.menu-category h3 {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 1.6rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.menu-item strong {
  color: var(--gold);
  white-space: nowrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.84));
}

.gallery-item span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
}

.img-1 {
  background-image: url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=900&q=80");
}

.img-2 {
  background-image: url("https://images.unsplash.com/photo-1551183053-bf91a1d81141?auto=format&fit=crop&w=900&q=80");
}

.img-3 {
  background-image: url("https://images.unsplash.com/photo-1604382354936-07c5d9983bd3?auto=format&fit=crop&w=900&q=80");
}

.img-4 {
  background-image: url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=900&q=80");
}

.img-5 {
  background-image: url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=900&q=80");
}

.img-6 {
  background-image: url("https://images.unsplash.com/photo-1571877227200-a0d98ea607e9?auto=format&fit=crop&w=900&q=80");
}

.feature-list {
  display: grid;
  gap: 20px;
}

.feature-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
}

.feature-item strong {
  color: var(--gold);
  font-size: 1.7rem;
}

.hours {
  display: grid;
  gap: 12px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-soft);
}

.hours span {
  color: var(--muted);
}

.hours strong {
  color: #fff;
}

.contact-card hr {
  margin: 22px 0;
  border: none;
  border-top: 1px solid var(--gold-soft);
}

.contact-card a {
  color: var(--gold);
  font-weight: 800;
}

.reservation-box {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.reservation-box p {
  margin: 12px auto 26px;
  max-width: 620px;
}

.form {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #0e0e0e;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.cta {
  padding: 100px 8%;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.9)),
    url("https://images.unsplash.com/photo-1528605248644-14dd04022da1?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.cta p {
  max-width: 690px;
  margin: 0 auto 28px;
}

.cta .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 44px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  background: #070707;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.site-footer h3 {
  color: var(--gold);
  margin-bottom: 8px;
}

.credit {
  color: #fff;
  font-weight: 800;
}

.credit a {
  color: var(--gold);
}

.fade-element {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-element.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header {
    padding: 16px 5%;
  }

  .site-nav {
    gap: 16px;
  }

  .project-link {
    padding: 10px 15px;
  }
}

@media (max-width: 1000px) {
  .cards.three,
  .grid.three,
  .three,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block !important;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px 0 8px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
  }

  .project-link {
    text-align: center;
    margin-top: 6px;
  }

  .hero,
  .page-hero {
    min-height: 70vh;
    padding: 90px 6%;
    text-align: center;
    justify-content: center;
  }

  .hero p,
  .page-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .buttons {
    justify-content: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .section,
  .split-content,
  .cta {
    padding: 80px 6%;
  }

  .cards.three,
  .cards.two,
  .grid.three,
  .three,
  .two,
  .menu-grid,
  .gallery-grid,
  .stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-item {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-height: 260px;
  }

  .hours div {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 1.35rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.7rem;
  }

  .section h2,
  .cta h2,
  .split-content h2,
  .reservation-box h2 {
    font-size: 2.05rem;
  }

  .card,
  .testimonial,
  .menu-item,
  .contact-card,
  .reservation-box,
  .social-card,
  .feature-item,
  .legal-box,
  .form {
    padding: 24px;
  }
}
