:root {
  --bg: #ffffff;
  --bg-dark: #2b1f16;
  --text: #2b2926;
  --text-light: #6f6a62;
  --accent: #a9682c;
  --accent-light: #c98a4b;
  --card: #faf6f0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
}

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

a {
  color: inherit;
}

/* ------------------------------------------------ nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-left: 28px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

/* ------------------------------------------------ hero */
.hero {
  min-height: 92vh;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.55)),
    radial-gradient(ellipse at 20% 80%, #3a2415, #1a110b 70%);
  display: flex;
  flex-direction: column;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
}

.eyebrow,
.section-tag {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: #fff;
  margin-bottom: 20px;
}

.hero-content .sub {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  font-size: 1.15rem;
  font-weight: 300;
}

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

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-light);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ------------------------------------------------ sections */
.section {
  padding: 80px 24px;
}

.section-dark {
  background: var(--bg-dark);
  color: #f3ede6;
}

.section-dark .split-text p:not(.section-tag) {
  color: rgba(243, 237, 230, 0.8);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 32px;
}

.section-dark h2 {
  color: #fff;
}

/* ------------------------------------------------ menu */
.menu-note {
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 20px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.menu-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.menu-card ul {
  list-style: none;
}

.menu-card li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
  font-size: 1.05rem;
}

.menu-card li:last-child {
  border-bottom: none;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.item-name {
  font-weight: 600;
  color: var(--text);
}

.item-price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.item-desc {
  font-size: 0.9rem !important;
  color: var(--text-light) !important;
  margin-top: 4px;
  line-height: 1.5;
}

/* ------------------------------------------------ about split */
.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-text h2 {
  max-width: 460px;
}

.split-text p {
  color: rgba(43, 41, 38, 0.85);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.split-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px;
}

.stat-card .stat {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-light);
}

.stat-card p {
  color: rgba(243, 237, 230, 0.8);
  margin-top: 4px;
}

/* ------------------------------------------------ hours */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.hours-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.hours-card h3 {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.hours-card p {
  font-size: 1.05rem;
}

/* ------------------------------------------------ contact */
.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-card h3 {
  color: var(--accent-light);
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.contact-line {
  margin-top: 20px;
  color: rgba(243, 237, 230, 0.85);
}

.section-dark .btn-primary {
  margin-top: 8px;
}

/* ------------------------------------------------ footer */
.footer {
  background: #1a110b;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.9rem;
}

/* ------------------------------------------------ responsive */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }

  .nav-links a {
    margin: 0 12px;
  }

  .hero-content {
    padding: 24px 20px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section {
    padding: 56px 20px;
  }
}