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

:root {
  --brown: #3b2f2f;
  --coffee: #2a1f1f;
  --cream: #f8efe6;
  --gold: #c8a45d;
  --text: #f3ebe0;
  --muted: #d8c7b2;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --section-padding: clamp(60px, 8vw, 120px);
  --max-width: 1100px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(200, 164, 93, 0.08), transparent 35%),
    #201715;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 36px);
  background: rgba(32, 23, 21, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 164, 93, 0.25);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  gap: clamp(16px, 2.4vw, 28px);
  font-size: 0.95rem;
}

.main-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}

.main-nav a:hover {
  background: rgba(200, 164, 93, 0.14);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 0 clamp(18px, 6vw, 48px);
  text-align: center;
  background: linear-gradient(140deg, rgba(43, 30, 29, 0.88) 35%, rgba(32, 22, 21, 0.4)),
    url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: #fdf8f2;
}

.hero-content {
  max-width: 680px;
  display: grid;
  gap: 16px;
  padding: clamp(24px, 6vw, 40px);
  background: rgba(32, 23, 21, 0.52);
  border: 1px solid rgba(200, 164, 93, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: 0.05em;
}

.hero .subtitle {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero .eyebrow,
.section-header .eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 93, 0.5);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
  font-weight: 600;
}

.btn.primary {
  background: linear-gradient(120deg, rgba(200, 164, 93, 0.85), rgba(59, 47, 47, 0.95));
  color: #120c0b;
  box-shadow: 0 10px 30px rgba(200, 164, 93, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(200, 164, 93, 0.3);
}

.section {
  padding: var(--section-padding) clamp(18px, 6vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
  scroll-margin-top: 110px;
}

.section-header {
  display: grid;
  gap: 8px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.section .lead {
  color: #d9cfc4;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.menu-card {
  background: linear-gradient(160deg, rgba(43, 32, 30, 0.95), rgba(28, 19, 18, 0.9));
  border: 1px solid rgba(200, 164, 93, 0.25);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 164, 93, 0.5);
}

.menu-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 14px;
}

.menu-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.menu-card li {
  display: flex;
  justify-content: space-between;
  color: #e7dbcf;
  font-weight: 500;
}

.split {
  max-width: 1200px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 34px;
}

.map-wrapper {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200, 164, 93, 0.25);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  color: #e6d7c6;
}

.order-form {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(28, 19, 18, 0.8);
  padding: clamp(18px, 5vw, 28px);
  border-radius: var(--radius);
  border: 1px solid rgba(200, 164, 93, 0.25);
  box-shadow: var(--shadow);
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group.inline {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

label {
  font-weight: 600;
  color: #e8dccf;
}

input,
select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(200, 164, 93, 0.25);
  background: #211715;
  color: #f7ede3;
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: rgba(200, 164, 93, 0.6);
  box-shadow: 0 0 0 3px rgba(200, 164, 93, 0.15);
}

.footer {
  text-align: center;
  padding: 28px 16px 32px;
  color: #d6c4b4;
  border-top: 1px solid rgba(200, 164, 93, 0.2);
  background: #1b1413;
}

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

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

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px 18px;
  }

  .main-nav {
    width: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    min-height: 70vh;
    padding: 72px 16px;
  }

  .order-form {
    padding: 18px;
  }
}

@media (max-width: 540px) {
  .main-nav {
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    padding: 18px;
  }

  .section {
    padding: 48px 16px;
    text-align: center;
    scroll-margin-top: 96px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-card {
    padding: 18px;
  }
}
