:root,
[data-theme="light"] {
  --bg: #f4efe7;
  --surface: #fbf8f3;
  --surface-2: #efe5d8;
  --text: #201812;
  --muted: #6e6259;
  --line: rgba(32, 24, 18, 0.1);
  --primary: #7b4b2a;
  --primary-strong: #5e361b;
  --accent: #d9b17a;
  --shadow: 0 20px 50px rgba(54, 29, 10, 0.12);
}

[data-theme="dark"] {
  --bg: #09090a;
  --surface: #121214;
  --surface-2: #1a1a1f;
  --text: #f3ede5;
  --muted: #b4a89d;
  --line: rgba(255, 255, 255, 0.08);
  --primary: #c38b5a;
  --primary-strong: #e6b17d;
  --accent: #f0d2a4;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(195,139,90,0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(240,210,164,0.08), transparent 30%),
    var(--bg);
  color: var(--text);
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: var(--surface);
  padding: 10px 16px;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-kicker, .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 0.78rem;
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
  margin: 0 0 16px;
}

h1 { font-size: clamp(3rem, 8vw, 6.4rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }

p {
  color: var(--muted);
  line-height: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 12, 0.55);
  border-bottom: 1px solid var(--line);
}
[data-theme="light"] .site-header {
  background: rgba(251, 248, 243, 0.78);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 1.2rem;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-text strong {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}
.brand-text small {
  color: var(--muted);
  letter-spacing: 0.18em;
}

.main-nav, .header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: var(--muted);
}
.main-nav a:hover,
.mobile-nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary, .filter-btn {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-secondary:hover,
.filter-btn:hover,
.filter-btn.active {
  background: var(--surface-2);
}

.btn-small {
  padding: 11px 16px;
  font-size: 0.95rem;
}
.full-width {
  width: 100%;
}

.theme-toggle,
.menu-toggle {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding-bottom: 16px;
  gap: 14px;
}
.mobile-nav a {
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,6,8,0.88) 0%, rgba(6,6,8,0.72) 48%, rgba(6,6,8,0.35) 100%);
}
[data-theme="light"] .hero-overlay {
  background: linear-gradient(90deg, rgba(244,239,231,0.92) 0%, rgba(244,239,231,0.82) 48%, rgba(244,239,231,0.35) 100%);
}

.hero-grid,
.split-grid,
.experience-grid,
.order-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding: 40px 0;
}
.hero-text {
  max-width: 60ch;
  font-size: 1.03rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 34px;
}

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

.stat-card,
.info-card,
.promo-panel,
.cart-panel,
.map-card,
.hero-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

[data-theme="light"] .stat-card,
[data-theme="light"] .info-card,
[data-theme="light"] .promo-panel,
[data-theme="light"] .cart-panel,
[data-theme="light"] .map-card,
[data-theme="light"] .hero-card,
[data-theme="light"] .menu-card,
[data-theme="light"] .order-form {
  background: rgba(255,255,255,0.62);
}

.stat-card { padding: 24px; }
.stat-card h2 {
  margin-bottom: 8px;
  font-size: 2.3rem;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid var(--line);
  min-height: 620px;
}
.hero-image-wrap img {
  height: 620px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  left: -20px;
  bottom: 28px;
  z-index: 3;
  max-width: 300px;
  padding: 24px;
}

.card-label, .promo-badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  background: rgba(195,139,90,0.18);
  color: var(--accent);
  margin-bottom: 14px;
}

.price {
  font-weight: 800;
  color: var(--text);
  display: inline-block;
  margin-top: 10px;
}

.floating-card {
  animation: float 4.5s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.about-cards {
  display: grid;
  gap: 18px;
}
.info-card {
  padding: 26px;
}
.info-card span {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.18em;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.filter-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 16px;
  border-radius: 999px;
}

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

.menu-card {
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.menu-card img {
  height: 290px;
  object-fit: cover;
}
.menu-content {
  padding: 22px;
}
.menu-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
}
.menu-top span {
  color: var(--accent);
  font-weight: 700;
}

.feature-list {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}
.feature-list li + li {
  margin-top: 12px;
}

.promo-panel {
  padding: 34px;
}

.order-form {
  margin-top: 26px;
  display: grid;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
}
.order-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}
.order-form input,
.order-form textarea {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 16px;
  color: var(--text);
  padding: 14px 16px;
  outline: none;
}
.order-form input:focus,
.order-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(195,139,90,0.12);
}

.cart-panel {
  padding: 26px;
}
.cart-head,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cart-items {
  margin: 22px 0;
  display: grid;
  gap: 14px;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.empty-state {
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.contact-item span {
  font-size: 1.3rem;
}

.map-card {
  overflow: hidden;
  min-height: 420px;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: rgba(255,255,255,0.02);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(120px);
  opacity: 0;
  transition: 0.3s ease;
  box-shadow: var(--shadow);
  z-index: 80;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .main-nav,
  .header-actions .btn {
    display: none;
  }

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

  .hero-grid,
  .split-grid,
  .experience-grid,
  .order-grid,
  .contact-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    height: 460px;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-bottom: 20px;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 72px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .mobile-nav.show {
    display: flex;
  }

  h1 {
    line-height: 1.02;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: start;
  }
}