:root {
  --bg: #1a1510;
  --bg-warm: #211c14;
  --fg: #f5efe6;
  --fg-muted: #b8a992;
  --accent: #d4873f;
  --accent-light: #e9a95c;
  --accent-dark: #b8682a;
  --cream: #fdf6ec;
  --dark-green: #2a3a2a;
  --card-bg: #262018;
  --border: rgba(212, 135, 63, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 135, 63, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(42, 58, 42, 0.2) 0%, transparent 50%),
    linear-gradient(175deg, #1a1510 0%, #0f0d09 100%);
  padding: 2rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(245, 239, 230, 0.015) 2px,
    rgba(245, 239, 230, 0.015) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--fg-muted);
  font-size: 1.5rem;
  animation: bob 2s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== STORY ===== */
.story {
  padding: 6rem 2rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story-inner {
  max-width: 680px;
  margin: 0 auto;
}

.story-label,
.menu-label,
.roots-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.story h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.story p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ===== MENU ===== */
.menu {
  padding: 6rem 2rem;
  background: var(--bg);
}

.menu-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.menu-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.menu-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.menu-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.menu-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.menu-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== ROOTS ===== */
.roots {
  padding: 6rem 2rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.roots-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.roots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 1rem;
}

.roots-item {
  position: relative;
}

.roots-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212, 135, 63, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.roots-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.roots-item p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212, 135, 63, 0.08) 0%, transparent 70%),
    var(--bg);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.closing-sub {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  text-align: center;
  background: #0f0d09;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.footer-location {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 0.25rem;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .hero {
    min-height: 90vh;
    padding: 1.5rem;
  }

  .story,
  .menu,
  .roots {
    padding: 4rem 1.5rem;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  .menu-grid,
  .roots-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .menu-card {
    padding: 2rem 1.5rem;
  }
}
/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(26, 21, 16, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-cta {
  background: var(--accent);
  color: #fff \!important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--accent-dark) \!important;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  min-height: 80vh;
  padding-bottom: 6rem;
}

.page-header {
  padding: 5rem 2rem 3rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== MENU PAGE ===== */
.menu-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.menu-category {
  margin-bottom: 4rem;
}

.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.menu-items-grid {
  display: grid;
  gap: 1rem;
}

.menu-item-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.menu-item-card:hover {
  border-color: var(--accent);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}

.menu-item-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.menu-footer-note {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.menu-footer-note a {
  color: var(--accent);
  text-decoration: none;
}

/* ===== SCHEDULE PAGE ===== */
.schedule-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.schedule-event {
  display: flex;
  gap: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.schedule-event:hover {
  border-color: var(--accent);
}

.schedule-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding-top: 0.25rem;
}

.schedule-day {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.schedule-date {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--fg);
}

.schedule-month {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.schedule-details {
  flex: 1;
}

.schedule-event-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.schedule-location,
.schedule-time {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 0.3rem;
}

.schedule-notes {
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 0.5rem;
  font-style: italic;
}

.schedule-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--fg-muted);
}

.schedule-empty a {
  color: var(--accent);
}

.schedule-cta {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--fg-muted);
}

.schedule-cta a {
  color: var(--accent);
  text-decoration: none;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
}

.form-group input,
.form-group textarea {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.5;
}

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

.form-error {
  background: rgba(220, 80, 60, 0.15);
  border: 1px solid rgba(220, 80, 60, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #f08060;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.success-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-success h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.contact-success p {
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  text-align: center;
}

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

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

.btn-secondary {
  background: var(--card-bg);
  color: var(--fg);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

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

/* ===== 404 ===== */
.not-found-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .site-nav {
    padding: 0.875rem 1.25rem;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .page-header {
    padding: 3rem 1.25rem 2rem;
  }

  .menu-page,
  .schedule-page,
  .contact-page {
    padding: 0 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .schedule-event {
    flex-direction: column;
    gap: 1rem;
  }

  .schedule-date-block {
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
    min-width: unset;
  }

  .schedule-date {
    font-size: 1.5rem;
  }
}
