:root {
  --background: oklch(1 0 0);
  --surface: #ffffff;
  --surface-2: #f7f2ea;
  --text: #1d1a17;
  --muted: #6f655c;
  --border: rgba(29, 26, 23, 0.1);
  --primary: #c85e14;
  --primary-strong: #8f3f05;
  --accent: #ff8c00; 
  --accent-strong: #c86a08;
  --accent-foreground: #000;
  --shadow: 0 18px 50px rgba(37, 25, 13, 0.12);
  --radius: 20px;
  --radius-sm: 14px;
}

html.dark {
  --background: #0f0d0b;
  --surface: #211e1d;
  --surface-2: #201a17;
  --text: #f6efe8;
  --muted: #b7a89c;
  --border: rgba(255, 255, 255, 0.08);
  --primary: #ff9b33;
  --primary-strong: #ffb15c;
  --accent: #ff8c00; 
  --accent-strong: #ffb052;
  --accent-foreground: #150c05;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 143, 31, 0.13), transparent 32%),
    radial-gradient(circle at top right, rgba(200, 94, 20, 0.1), transparent 28%),
    var(--background);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: color-mix(in srgb, var(--background) 84%, transparent);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 1.05rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
}

.desktop-nav {
  display: flex;
}

.menu-toggle {
  display: none;
}

.menu-toggle,
.button,
.filter-btn {
  border: 0;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.menu-toggle,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.menu-toggle {
  display: none;
}

.menu-toggle {
  min-width: 5rem;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.menu-toggle:hover,
.button:hover,
.filter-btn:hover {
  transform: translateY(-1px);
}
/*  */

.theme-toggle,
.button,
.filter-btn {
  border: 0;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.theme-toggle,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.theme-toggle {
  min-width: 5rem;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.theme-toggle:hover,
.button:hover,
.filter-btn:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 26px rgba(255, 143, 31, 0.25);
}

.button-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.button-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 42rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--primary-strong);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title,
.section-title,
.page-title {
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.03em;
}

.hero-title {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  margin-bottom: 1rem;
}

.page-title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 0.6rem;
}

.hero-title .accent,
.page-title .accent,
.section-title .accent {
  color: var(--primary);
}

.lead,
.section-lead,
.page-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 56rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
}

.section {
  padding: 4rem 0;
}

.section-muted {
  background: color-mix(in srgb, var(--surface-2) 88%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.centered {
  text-align: center;
  align-items: center;
}

.spice-row,
.filter-row,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.spice-row,
.badge-row {
  justify-content: center;
}

.spice-badge,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-weight: 700;
  font-size: 0.92rem;
}

.spice-badge.original { background: #4d4a46; }
.spice-badge.mild { background: #e4b50e; }
.spice-badge.medium { background: #ff8c00; }
.spice-badge.hot { background: #e31919; }
.spice-badge.extra-hot { background: #ff0000; }
.spice-badge.omg-hot { background: #380b0b; }
.spice-badge.challenge { background: #1f1a18; color: #fff; }

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid.cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card-body {
  padding: 1.2rem;
}

.card-title {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.card-text {
  margin: 0;
  color: var(--muted);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.price {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.2rem;
}

.location-card,
.info-card,
.contact-panel {
  padding: 1.3rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.locations-grid,
.info-grid,
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.locations-grid,
.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.location-title,
.info-title,
.contact-title {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item {
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.faq-question {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.faq-answer {
  margin: 0;
  color: var(--muted);
}

.faq-answer a {
  color: var(--primary);
  font-weight: 700;
}

.meta,
.small {
  color: var(--muted);
}

.filter-row {
  margin-bottom: 1.35rem;
}

.filter-btn {
  padding: 0.64rem 1rem;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 700;
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-color: transparent;
}

.menu-section {
  margin-bottom: 2.5rem;
}

.hidden {
  display: none !important;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.6rem 0 1rem;
}

.mobile-nav .nav-link {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.footer {
  padding: 3rem 0 1.5rem;
  background: color-mix(in srgb, var(--surface) 72%, black 28%);
  color: #fff;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.3rem;
}

.footer-brand,
.footer-title {
  margin: 0 0 0.75rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  padding: 1rem;
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 92%, black 8%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .mobile-nav.is-open {
    display: flex;
    width: 100%;
  }

  .site-header.is-open .header-inner {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.1rem, 1180px);
  }

  .page-hero {
    padding-top: 2.8rem;
  }

  .hero-card {
    aspect-ratio: 1 / 1;
    border-radius: 26px;
  }

  .section {
    padding: 3rem 0;
  }

  .cookie-banner {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
  }
}
