:root {
  --bg: #11100d;
  --panel: #1a1714;
  --panel-soft: #201c18;
  --text: #f2ece2;
  --muted: #c9b8a3;
  --accent: #c8925b;
  --accent-2: #e8b886;
  --line: rgba(255, 235, 205, 0.15);
  --success: #9fcf9f;
  --danger: #e59898;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 146, 91, 0.08), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(255, 210, 170, 0.06), transparent 40%),
    var(--bg);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1473093226795-af9932fe5856?auto=format&fit=crop&w=1600&q=60");
  background-size: 220px;
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

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

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

.site-wrap {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(17, 16, 13, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  letter-spacing: 0.02em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
}

.nav-links a {
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta,
.btn {
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #1a1410;
  font-weight: 600;
  border-radius: 999px;
  padding: 11px 18px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-btn {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  right: -4px;
  top: -4px;
  background: var(--accent);
  color: #170f08;
  min-width: 20px;
  height: 20px;
  border-radius: 20px;
  font-size: 0.73rem;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
}

.hero {
  min-height: calc(100vh - 76px);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 8, 6, 0.5), rgba(10, 8, 6, 0.75)),
    url("https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  transform: scale(1.05);
}

.hero-content {
  position: relative;
  text-align: center;
  width: min(860px, 92vw);
  animation: rise 0.9s ease both;
}

.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 8vw, 5.2rem);
  margin-top: 12px;
  margin-bottom: 20px;
}

.hero p {
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  color: #eedecf;
  max-width: 760px;
  margin: 0 auto 28px;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

section {
  padding: 88px 0;
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.section-head p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 184, 134, 0.42);
}

.card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.card-body {
  padding: 16px;
}

.price {
  color: var(--accent-2);
  font-weight: 700;
}

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

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.chip.active {
  background: rgba(200, 146, 91, 0.22);
  border-color: rgba(232, 184, 134, 0.6);
}

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

.menu-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.menu-card-content {
  padding: 15px;
}

.menu-card p {
  margin: 10px 0;
  color: var(--muted);
  min-height: 44px;
}

.menu-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.page-hero {
  min-height: 45vh;
  display: grid;
  place-items: end start;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(rgba(10, 8, 6, 0.5), rgba(10, 8, 6, 0.75)),
    url("https://images.unsplash.com/photo-1470337458703-46ad1756a187?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: center;
}

.story img {
  border-radius: 12px;
  border: 1px solid var(--line);
}

.notice {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 184, 134, 0.28);
  padding: 24px;
  border-radius: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-stack {
  display: grid;
  gap: 12px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 60;
}

.cart-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100vh;
  background: rgba(18, 15, 12, 0.96);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 70;
  display: flex;
  flex-direction: column;
}

.cart-drawer.show {
  transform: translateX(0);
}

.cart-head,
.cart-foot {
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  margin-top: auto;
}

.cart-list {
  overflow: auto;
  padding: 10px 16px;
  display: grid;
  gap: 12px;
}

.cart-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 10px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
}

.totals {
  display: grid;
  gap: 6px;
  margin: 10px 0 14px;
}

.totals div {
  display: flex;
  justify-content: space-between;
}

footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 44px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 920px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    background: rgba(15, 13, 10, 0.95);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links a {
    padding: 14px 4vw;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links.open {
    max-height: 300px;
  }

  .hamburger {
    display: inline-grid;
    place-items: center;
  }

  .hide-mobile {
    display: none;
  }

  .cards,
  .menu-grid,
  .story,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
