:root {
  --lime: #3ed462;
  --lime-dark: #2eb44f;
  --lime-pale: #ddf4aa;
  --ink: #1a1f1c;
  --ink-soft: #3c4640;
  --paper: #fffdf5;
  --warm: #ff8c42;
  --chili: #d83a2e;
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,600;0,9..144,800;1,9..144,700&family=Inter:wght@400;500;600;700&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--warm);
  display: inline-block;
  margin-bottom: 16px;
}

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6vw;
  background: rgba(26, 31, 28, 0.55);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  color: var(--paper);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 253, 245, 0.3);
}
.nav-links { display: flex; align-items: center; gap: 24px; font-weight: 500; }
.nav-links > a { color: rgba(255, 253, 245, 0.8); transition: color 120ms; }
.nav-links > a:hover { color: var(--paper); }
.nav-links a.order-btn { color: var(--ink) !important; }

.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--lime);
  color: var(--ink) !important;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 120ms, box-shadow 120ms, background 120ms;
  box-shadow: 0 2px 0 var(--lime-dark);
}
.order-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--lime-dark);
  background: #50e074;
}
.order-btn.big {
  padding: 16px 28px;
  font-size: 17px;
  box-shadow: 0 3px 0 var(--lime-dark);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 24px;
  border: 2px solid rgba(255, 253, 245, 0.5);
  border-radius: 999px;
  font-weight: 600;
  color: var(--paper);
  font-size: 17px;
  transition: background 180ms, border-color 180ms;
}
.ghost-btn:hover {
  background: rgba(255, 253, 245, 0.12);
  border-color: rgba(255, 253, 245, 0.8);
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--paper);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img, .hero-bg picture {
  width: 100%; height: 100%; object-fit: cover;
  animation: slow-pan 30s ease-in-out infinite alternate;
  filter: brightness(0.72) saturate(1.15) contrast(1.05);
}
@keyframes slow-pan {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.08) translate(-2%, -1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Smoky vignette — dark edges, slightly lighter mid */
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.88) 100%),
    /* Overall darken + warm wash */
    linear-gradient(180deg, rgba(26, 31, 28, 0.55) 0%, rgba(26, 31, 28, 0.7) 55%, rgba(26, 31, 28, 0.88) 100%),
    /* Accent glows */
    radial-gradient(ellipse at top right, rgba(255, 140, 66, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(62, 212, 98, 0.18) 0%, transparent 55%);
}
.hero-overlay::after {
  /* Drifting smoke layer */
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(600px 300px at 20% 80%, rgba(255, 255, 255, 0.04), transparent 60%),
    radial-gradient(500px 240px at 70% 30%, rgba(255, 255, 255, 0.05), transparent 60%),
    radial-gradient(700px 350px at 50% 50%, rgba(0, 0, 0, 0.12), transparent 65%);
  filter: blur(30px);
  animation: drift 40s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(3%, -2%, 0); }
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 6vw 60px;
  max-width: 900px;
}
.hero .kicker {
  color: var(--lime);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.hero h1 {
  font-size: clamp(64px, 11vw, 160px);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
  margin-bottom: 28px;
}
.hero .tagline {
  font-size: clamp(17px, 1.8vw, 20px);
  color: rgba(255, 253, 245, 0.92);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-badges {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badges li {
  padding: 8px 14px;
  background: rgba(255, 253, 245, 0.12);
  border: 1px solid rgba(255, 253, 245, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ── Features ─────────────────────────────────────────── */
.features {
  padding: 80px 6vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: transform 220ms, box-shadow 220ms;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}
.feature img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}
.feature figcaption { padding: 24px; }
.feature h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--ink);
}
.feature p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

/* ── About ───────────────────────────────────────────── */
.about {
  padding: 100px 6vw;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about .kicker { color: var(--lime); }
.about h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 24px;
}
.about p {
  color: rgba(255, 253, 245, 0.75);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.about-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  transform: rotate(-1deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── Menu ────────────────────────────────────────────── */
.menu { padding: 100px 6vw; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
}
.section-head p { color: var(--ink-soft); font-size: 17px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-loading { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); }
.menu-cat {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 220ms, box-shadow 220ms;
}
.menu-cat:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.menu-cat-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--lime-pale);
  overflow: hidden;
}
.menu-cat-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms ease;
}
.menu-cat:hover .menu-cat-photo img { transform: scale(1.06); }
.menu-cat-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 31, 28, 0.5));
}
.menu-cat-photo h3 {
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: var(--paper);
  font-size: 26px;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.menu-cat ul { list-style: none; padding: 20px 22px 22px; }
.menu-cat li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  gap: 12px;
  font-size: 15px;
}
.menu-cat li:last-child { border-bottom: none; }
.menu-cat .item-name { color: var(--ink); }
.menu-cat .item-price {
  color: var(--ink-soft);
  font-weight: 500;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-cta { text-align: center; margin-top: 48px; }

/* ── Gallery marquee ─────────────────────────────────── */
.gallery {
  overflow: hidden;
  padding: 20px 0 60px;
  background: var(--paper);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll 45s linear infinite;
}
.gallery-track img {
  width: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none; }
  .hero-bg img { animation: none; }
}

/* ── Visit ───────────────────────────────────────────── */
.visit {
  padding: 100px 6vw;
  background:
    linear-gradient(135deg, var(--lime-pale) 0%, #f5eab0 100%);
  position: relative;
}
.visit-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.visit .kicker { color: var(--chili); }
.visit h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 48px;
}
.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: left;
}
.visit-grid h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.visit-grid p { font-size: 17px; line-height: 1.65; }
.visit-grid a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  padding: 28px 6vw;
  background: var(--ink);
  color: rgba(255, 253, 245, 0.6);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer .powered a { color: var(--lime); font-weight: 500; }
.footer .powered a:hover { color: var(--paper); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 820px) {
  .about {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 80px 6vw;
  }
  .about-photo { transform: none; aspect-ratio: 4 / 3; order: -1; }
}
@media (max-width: 560px) {
  .nav { padding: 10px 5vw; }
  .nav-links { gap: 12px; font-size: 14px; }
  .nav-links a:not(.order-btn) { display: none; }
  .hero-inner { padding-top: 100px; }
  .features, .menu, .visit { padding: 64px 5vw; }
  .gallery-track img { width: 220px; }
  .brand span { display: none; }
}
