:root {
  --ink: #080a0d;
  --night: #0c1220;
  --coal: #12100d;
  --cream: #fff6e2;
  --gold: #ffbd2e;
  --green: #19a45b;
  --red: #e8392f;
  --orange: #ff7a1a;
  --blue: #28c8ff;
  --muted: rgba(255, 246, 226, 0.72);
  --line: rgba(255, 246, 226, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 122, 26, 0.24), transparent 32rem),
    radial-gradient(circle at 85% 5%, rgba(40, 200, 255, 0.18), transparent 30rem),
    linear-gradient(145deg, #080a0d 0%, #151009 55%, #07140d 100%);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.cursor-glow {
  position: fixed;
  inset: auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 189, 46, 0.18), transparent 68%);
  pointer-events: none;
  translate: -50% -50%;
  z-index: 1;
  opacity: 0;
  transition: opacity 220ms ease;
}

.skyline {
  position: fixed;
  inset: auto 0 0;
  height: 9rem;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 4%, rgba(255,255,255,0.09) 4% 4.2%, transparent 4.2% 12%),
    repeating-linear-gradient(90deg, transparent 0 3rem, rgba(255, 189, 46, 0.12) 3rem 3.15rem);
  mask-image: linear-gradient(to top, #000, transparent);
  opacity: 0.5;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 2rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 10, 13, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.site-header[data-reveal] {
  transform: translateX(-50%) translateY(24px);
}

.site-header[data-reveal].is-visible {
  transform: translateX(-50%) translateY(0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-left: 0.2rem;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: #10120c;
  background: linear-gradient(135deg, var(--gold), var(--orange) 55%, var(--green));
  font-size: 0.86rem;
  box-shadow: 0 0 28px rgba(255, 189, 46, 0.44);
}

nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

nav a,
.dish-controls button {
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: rgba(255, 246, 226, 0.78);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

nav a:hover,
.dish-controls button:hover,
.dish-controls button.active {
  color: #10120c;
  background: var(--gold);
  transform: translateY(-1px);
}

.nav-cta {
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
  z-index: -3;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 11, 0.92), rgba(3, 6, 11, 0.42) 44%, rgba(3, 6, 11, 0.15)),
    linear-gradient(0deg, rgba(8, 10, 13, 0.95), transparent 42%);
  z-index: -2;
}

.spice-field span {
  position: absolute;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px var(--gold);
  animation: floatSpice 9s linear infinite;
  opacity: 0.62;
}

.spice-field span:nth-child(1) { left: 8%; top: 68%; animation-delay: -1s; }
.spice-field span:nth-child(2) { left: 24%; top: 54%; animation-delay: -5s; background: var(--red); }
.spice-field span:nth-child(3) { left: 62%; top: 72%; animation-delay: -3s; background: var(--green); }
.spice-field span:nth-child(4) { left: 78%; top: 42%; animation-delay: -8s; }
.spice-field span:nth-child(5) { left: 48%; top: 35%; animation-delay: -6s; background: var(--blue); }
.spice-field span:nth-child(6) { left: 91%; top: 63%; animation-delay: -2s; background: var(--orange); }

.hero-content,
.story-section,
.menu-section,
.visit-section,
footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero-content {
  padding: 9rem 0 6rem;
}

.eyebrow,
.section-kicker,
.dish-tag,
.panel-label {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.94;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4.2rem, 11vw, 9.8rem);
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
}

h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

h3 {
  font-size: clamp(2rem, 4vw, 4rem);
}

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

.hero-copy {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 900;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.button:hover {
  transform: translateY(-2px) scale(1.01);
}

.primary {
  color: #10120c;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 18px 45px rgba(255, 122, 26, 0.28);
}

.secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 10rem));
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.hero-stats div,
.story-panel,
.contact-board,
.dish-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 1rem;
  border-radius: 8px;
}

.hero-stats strong,
.open-state {
  display: block;
  color: var(--cream);
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red), var(--night));
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker span {
  padding: 1rem 2rem;
  color: #080a0d;
  font-weight: 900;
  text-transform: uppercase;
}

.story-section,
.menu-section,
.visit-section {
  padding: 7rem 0;
}

.story-grid,
.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story-grid p,
.visit-copy p {
  max-width: 42rem;
  font-size: 1.08rem;
}

.story-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 2rem;
}

.order-hours {
  margin-top: 1rem;
  color: rgba(255, 189, 46, 0.82);
  font-size: 0.92rem;
}

.story-panel::before,
.contact-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 189, 46, 0.18), transparent 50%, rgba(25, 164, 91, 0.2));
  pointer-events: none;
}

.pulse-ring {
  width: 8rem;
  height: 8rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(255, 189, 46, 0.75);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 189, 46, 0.26), transparent 68%);
  animation: pulse 2.6s ease-in-out infinite;
}

.menu-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.menu-intro h2 {
  max-width: 14ch;
}

.feature-dish {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 2rem;
}

.feature-dish img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.44);
}

.feature-dish p:last-child {
  max-width: 36rem;
}

.menu-order {
  margin-top: 0.75rem;
}

.dish-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.2rem;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.dish-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border-radius: 8px;
  padding: 1rem;
  transform-style: preserve-3d;
  transition: transform 240ms ease, opacity 220ms ease, border-color 220ms ease;
}

.dish-card:hover {
  border-color: rgba(255, 189, 46, 0.75);
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
}

.dish-card.is-hidden {
  display: none;
}

.dish-icon {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: auto;
  border-radius: 50%;
  color: #080a0d;
  background: conic-gradient(from 120deg, var(--green), var(--gold), var(--red), var(--green));
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(255, 189, 46, 0.24);
}

.dish-image {
  width: calc(100% + 2rem);
  height: 10.5rem;
  margin: -1rem -1rem 1rem;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.dish-card h3 {
  font-size: 1.8rem;
}

.dish-card p:last-child {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.visit-section {
  position: relative;
}

.contact-board {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 1rem;
}

.contact-board div {
  position: relative;
  display: grid;
  gap: 0.4rem;
  padding: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.contact-board div:last-child {
  border-bottom: 0;
}

.contact-board span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-board strong {
  line-height: 1.45;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from { transform: scale(1.04) translateX(0); }
  to { transform: scale(1.11) translateX(1.5rem); }
}

@keyframes floatSpice {
  0% { transform: translate3d(0, 3rem, 0) scale(0.7); opacity: 0; }
  18% { opacity: 0.68; }
  100% { transform: translate3d(2rem, -18rem, 0) scale(1.2); opacity: 0; }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(255, 189, 46, 0.38); }
  50% { transform: scale(1); box-shadow: 0 0 0 1.4rem rgba(255, 189, 46, 0); }
}

@media (max-width: 850px) {
  .site-header {
    align-items: stretch;
    border-radius: 8px;
  }

  .brand span:last-child {
    max-width: 8rem;
    line-height: 1.1;
  }

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

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    padding-top: 7rem;
  }

  .hero-stats,
  .story-grid,
  .feature-dish,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .menu-intro {
    display: block;
  }

  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .hero-stats,
  .dish-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .visit-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
