:root {
  --ember: #c2410c;
  --deep: #1c1410;
  --cream: #fbf6ee;
  --ink: #231c18;
  --display: "Bebas Neue", Impact, sans-serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.4rem;
  background: var(--deep);
  color: var(--cream);
}
.logo {
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}
.nav nav { display: flex; gap: 1.4rem; font-weight: 500; }
.nav nav a:hover { color: #fdba74; }
.menu-btn {
  display: none;
  background: none;
  border: none;
  width: 1.8rem;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
}

.hero {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  color: var(--cream);
  background: #140f0c;
  overflow: hidden;
}
.hero > img {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
.hero-panel {
  position: absolute;
  z-index: 1;
  left: 50%;
  right: auto;
  bottom: 1.1rem;
  width: min(92%, 22rem);
  max-width: 22rem;
  margin: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.95rem 1.05rem;
  border-radius: 1rem;
  background: rgba(28, 20, 16, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px) saturate(1.05);
  -webkit-backdrop-filter: blur(6px) saturate(1.05);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.hero-panel p:first-child {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: #fdba74;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 9vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin: 0.15rem 0 0.4rem;
}
.tag {
  max-width: 18rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.35;
}
.btn {
  align-self: flex-start;
  background: var(--ember);
  color: #fff;
  padding: 0.7rem 1.05rem;
  font-weight: 700;
  border-radius: 6px;
  font-size: 0.9rem;
}
.btn:hover { background: #9a3412; }

.hours {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--ember);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}

.menu { padding: 3.5rem 1.4rem; }
.menu h2, .catering h2, .order h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.03em;
  margin-bottom: 1.2rem;
}
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.tiles figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
}
.tiles figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tiles figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(28, 20, 16, 0.85), transparent);
  color: #fff;
}
.tiles span { display: block; font-size: 0.85rem; opacity: 0.85; }
.prices {
  list-style: none;
  margin-top: 2rem;
  max-width: 32rem;
}
.prices li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px dashed #e0d4c4;
  font-weight: 600;
}

.catering {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: 3rem 1.4rem;
  background: var(--deep);
  color: var(--cream);
}
.catering p { max-width: 32rem; color: #e7d5c4; }
.catering ul { list-style: none; align-self: center; }
.catering li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #3a2c24;
  font-size: 1.15rem;
}

.interior {
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.interior img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.order {
  padding: 3.5rem 1.4rem 4rem;
  max-width: 36rem;
}
.order p { margin-bottom: 1.5rem; color: #5c5048; }
form { display: flex; flex-direction: column; gap: 0.9rem; }
label { display: flex; flex-direction: column; gap: 0.35rem; font-weight: 600; font-size: 0.9rem; }
input, select, textarea {
  border: 2px solid #e0d4c4;
  background: #fff;
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  font-weight: 400;
}
form button {
  background: var(--ember);
  color: #fff;
  border: none;
  padding: 0.95rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}
form button:hover { background: #9a3412; }

footer {
  background: var(--deep);
  color: #e7d5c4;
  padding: 1.4rem;
  font-size: 0.88rem;
}
.powered {
  margin-top: 0.85rem;
  font-size: 0.74rem;
  line-height: 1.55;
  color: #b9a494;
}
.powered a {
  color: #fdba74;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 800px) {
  body { overflow-x: hidden; }
  .menu-btn { display: block; }
  .nav { position: relative; padding: 0.8rem 1.1rem; }
  .nav nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--deep);
    flex-direction: column;
    padding: 1rem 1.1rem 1.3rem;
    gap: 0.7rem;
    z-index: 5;
  }
  .nav.open nav { display: flex; }
  .hero {
    min-height: 0;
    padding: 0;
    align-items: stretch;
  }
  .hero > img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }
  .hero-panel {
    left: 50%;
    right: auto;
    bottom: 0.75rem;
    width: min(88%, 19.5rem);
    max-width: 19.5rem;
    transform: translateX(-50%);
    min-height: auto;
    padding: 0.85rem 0.95rem;
    background: rgba(28, 20, 16, 0.12);
  }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 2.8rem); }
  .menu, .catering, .order { padding-left: 1.1rem; padding-right: 1.1rem; }
  .tiles, .catering { grid-template-columns: 1fr; }
  .tiles figure { aspect-ratio: 4 / 3; }
  .hours {
    flex-direction: column;
    padding: 0.9rem 1.1rem;
    font-size: 0.86rem;
  }
  .interior { aspect-ratio: 16 / 9; }
  .btn, form button { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .logo { font-size: 1.55rem; }
  .tag { font-size: 0.98rem; }
}

/* Motion */
.hero-panel > * {
  opacity: 0;
  transform: translateY(26px);
  animation: rise-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-panel > *:nth-child(1) { animation-delay: 0.05s; }
.hero-panel > *:nth-child(2) { animation-delay: 0.18s; }
.hero-panel > *:nth-child(3) { animation-delay: 0.32s; }
.hero-panel > *:nth-child(4) { animation-delay: 0.46s; }

.hero,
.tiles figure,
.interior {
  overflow: hidden;
}
.hero > img {
  animation: none;
}
.tiles figure img,
.interior img {
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.tiles figure:hover img,
.interior:hover img {
  transform: scale(1.07);
}

.btn,
form button {
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn {
  animation: soft-pulse 2.8s ease-in-out infinite;
}
.btn:hover,
form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(194, 65, 12, 0.35);
  animation: none;
}

.hours {
  overflow: hidden;
}
.hours span {
  display: inline-block;
  animation: slide-hint 12s linear infinite;
}

.prices li {
  transition: padding-left 0.25s ease, color 0.25s ease;
}
.prices li:hover {
  padding-left: 0.4rem;
  color: var(--ember);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.07s; }
.reveal-delay-2 { transition-delay: 0.14s; }
.reveal-delay-3 { transition-delay: 0.21s; }

@keyframes rise-in {
  to { opacity: 1; transform: none; }
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.14) translate(-2%, 1%); }
}
@keyframes soft-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(194, 65, 12, 0); }
}
@keyframes slide-hint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-panel > *,
  .hero > img,
  .btn,
  .hours span,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
