:root {
  --bg: #120e0c;
  --bg-soft: #1c1612;
  --surface: rgba(255, 244, 230, 0.04);
  --line: rgba(255, 214, 170, 0.14);
  --text: #f6efe6;
  --muted: #c4b4a4;
  --accent: #f0a23a;
  --accent-deep: #d9841f;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 0.95;
  font-weight: 400;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

h3 {
  font-size: 1.7rem;
}

p {
  margin: 0;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(18, 14, 12, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.topbar.is-scrolled {
  background: rgba(18, 14, 12, 0.92);
  border-bottom-color: var(--line);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: none;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
}

.btn-lg {
  min-height: 3.2rem;
  padding: 0.9rem 1.55rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #1a1008;
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(240, 162, 58, 0.45);
}

.topbar .btn {
  display: none;
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 14, 12, 0.35) 0%, rgba(18, 14, 12, 0.82) 70%, var(--bg) 100%),
    url("https://images.unsplash.com/photo-1551782450-a2132b4ba21d?auto=format&fit=crop&w=1600&q=80") center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-zoom 8s var(--ease) both;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 12vw, 7rem) clamp(1rem, 4vw, 2.5rem) clamp(3rem, 8vw, 4.5rem);
  max-width: 760px;
  animation: rise 0.9s var(--ease) 0.15s both;
}

.hero h1 {
  font-size: clamp(4.2rem, 14vw, 8.5rem);
}

.hero-lead {
  margin-top: 1rem;
  max-width: 28ch;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: 980px;
}

.menu-item {
  display: grid;
  gap: 1rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--surface);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.menu-item:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 162, 58, 0.4);
}

.menu-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.8rem;
}

.menu-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
}

.menu-top span {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--accent);
  white-space: nowrap;
}

.menu-item p {
  color: var(--muted);
  font-size: 0.98rem;
}

.about {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(240, 162, 58, 0.1), transparent 60%),
    var(--bg-soft);
}

.about-copy {
  max-width: 34rem;
}

.about-copy > p:last-child {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-media {
  min-height: 18rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(160deg, rgba(18, 14, 12, 0.1), rgba(18, 14, 12, 0.45)),
    url("https://images.unsplash.com/photo-1607013251379-e6eecfffe234?auto=format&fit=crop&w=1200&q=80") center / cover no-repeat;
  border: 1px solid var(--line);
}

.cta {
  text-align: center;
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(240, 162, 58, 0.14), transparent 65%),
    var(--bg);
}

.cta h2 {
  margin-bottom: 0.75rem;
}

.cta p {
  max-width: 34ch;
  margin: 0 auto 1.6rem;
  color: var(--muted);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.5rem clamp(1rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s var(--ease) var(--reveal-delay, 0ms),
    transform 0.85s var(--ease) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.04);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 720px) {
  .nav,
  .topbar .btn {
    display: inline-flex;
  }

  .menu-item {
    grid-template-columns: 220px 1fr;
    align-items: center;
  }

  .menu-item img {
    aspect-ratio: 1;
  }

  .about {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }

  .about-media {
    min-height: 26rem;
  }
}
