* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #030303;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 86px;
  padding: 12px 5vw;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  background: rgba(0, 0, 0, .9);
  border-bottom: 1px solid rgba(208, 159, 47, .35);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 34px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.nav a {
  transition: color .2s ease;
}

.nav a:hover {
  color: #d9aa3f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  background: linear-gradient(135deg, #f6d878, #b8831d);
  color: #080808;
  border-radius: 5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  box-shadow: 0 8px 28px rgba(218, 164, 46, .24);
}

.btn-small {
  padding: 12px 22px;
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  color: #f3c95d;
  border: 1px solid #d8a738;
  box-shadow: none;
}

.hero {
  min-height: calc(100vh - 86px);
  padding: 56px 5vw 36px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 42px;
  background:
    radial-gradient(circle at 15% 85%, rgba(220, 166, 42, .16), transparent 30%),
    linear-gradient(90deg, #020202 0%, #090909 55%, #020202 100%);
}

.eyebrow {
  color: #f1d27a;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  font-size: .83rem;
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 6vw, 6.8rem);
  margin: 12px 0 20px;
}

h1 span, .section-title h2, .menu-card h3 {
  color: #d6a73d;
}

.hero-text {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #f1f1f1;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(219, 169, 56, .6), transparent 45%);
  filter: blur(24px);
  opacity: .55;
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 690px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(214, 167, 61, .42);
  box-shadow: 0 26px 80px rgba(0,0,0,.58);
}

.features {
  margin: 0 5vw;
  transform: translateY(-12px);
  border: 1px solid rgba(214, 167, 61, .65);
  border-radius: 20px;
  background: #050505;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.features div {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(214, 167, 61, .35);
}

.features div:last-child {
  border-right: 0;
}

.features span {
  color: #d6a73d;
  font-size: 2rem;
}

.features p {
  margin: 0;
  text-transform: uppercase;
  font-size: .78rem;
  line-height: 1.6;
  letter-spacing: .08em;
}

.section {
  padding: 52px 5vw;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: 32px;
}

.section-title span {
  height: 1px;
  flex: 1;
  background: rgba(214, 167, 61, .45);
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: .12em;
}

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

.menu-card {
  border: 1px solid rgba(214, 167, 61, .55);
  background: linear-gradient(180deg, #0a0a0a, #030303);
  padding: 16px;
  min-height: 100%;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

.menu-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

.menu-card h3 {
  margin: 0 0 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.menu-card p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 13px 0;
  font-size: .95rem;
}

.menu-card span {
  color: #fff;
  text-align: right;
  white-space: nowrap;
}

.menu-card small {
  display: block;
  margin-top: 12px;
  color: #cfcfcf;
}

.menu-card ul {
  padding-left: 18px;
  margin: 10px 0 0;
  color: #f1f1f1;
  line-height: 1.6;
}

.text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.about img {
  border: 1px solid rgba(214, 167, 61, .55);
  border-radius: 12px;
  max-height: 480px;
  width: 100%;
  object-fit: cover;
}

.about-copy h2 {
  margin: 10px 0 16px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.about-copy p {
  line-height: 1.8;
  color: #e7e7e7;
}

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.badges span {
  border: 1px solid rgba(214, 167, 61, .45);
  padding: 12px 14px;
  border-radius: 999px;
  color: #f1d27a;
}

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

.gallery-grid img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(214, 167, 61, .45);
  border-radius: 8px;
}

.order {
  margin: 34px 5vw 0;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(214, 167, 61, .55);
  background: radial-gradient(circle at top right, rgba(214, 167, 61, .16), transparent 35%), #070707;
  border-radius: 18px;
}

.order h2 {
  font-size: clamp(1.9rem, 3vw, 3.4rem);
  margin: 8px 0;
}

.order-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.order-links a {
  min-height: 90px;
  padding: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(214, 167, 61, .45);
  color: #f1d27a;
  border-radius: 12px;
  font-weight: 700;
  transition: .2s ease;
}

.order-links a:hover {
  background: rgba(214, 167, 61, .12);
  transform: translateY(-2px);
}

footer {
  padding: 34px 5vw;
  text-align: center;
  color: #cfcfcf;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .74rem;
}

@media (max-width: 1020px) {
  .hero, .about, .order {
    grid-template-columns: 1fr;
  }

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

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

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

  .nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: auto;
    padding: 10px 18px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .btn-small {
    padding: 10px 14px;
    font-size: .75rem;
  }

  .hero {
    padding: 34px 20px 24px;
  }

  .menu-grid,
  .features,
  .gallery-grid,
  .order-links {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 42px 20px;
  }

  .order {
    margin: 24px 20px;
    padding: 24px;
  }

  h1 {
    font-size: 3.1rem;
  }
}
