:root {
  color-scheme: dark;
  --bg: #071338;
  --bg-alt: #0c1d4d;
  --bg-strong: #0b1740;
  --cream: #f7f1e3;
  --gold: #f5a425;
  --gold-strong: #f2b03a;
  --orange: #f07c24;
  --red: #e5472e;
  --mint: #2bbf88;
  --ink: #04102a;
  --white: #ffffff;
  --muted: rgba(247, 241, 227, 0.72);
  --stroke: rgba(247, 241, 227, 0.18);
  --surface: rgba(9, 18, 46, 0.72);
  --surface-strong: rgba(9, 18, 46, 0.9);
  --shadow: 0 20px 40px rgba(3, 7, 22, 0.45);
  --radius: 22px;
  --radius-sm: 16px;
  --transition: 180ms ease;
  --font-display: "Bowlby One SC", sans-serif;
  --font-body: "Manrope", sans-serif;
  --text: var(--cream);
  --text-inverse: var(--cream);
  --muted-light: var(--muted);
  --stroke-light: var(--stroke);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--cream);
  background-color: var(--bg);
  background-image: radial-gradient(circle at 12% 18%, rgba(245, 164, 37, 0.14), transparent 42%),
    radial-gradient(circle at 90% 15%, rgba(224, 74, 46, 0.12), transparent 50%),
    linear-gradient(180deg, #0c1d4d 0%, #071338 60%, #050f2a 100%);
  min-height: 100vh;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.6' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 1;
}

.container {
  width: min(1150px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(14px);
  background: var(--surface-strong);
  border-bottom: 1px solid var(--stroke);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
}

.nav-links a {
  color: var(--muted);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--cream);
  display: block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 16px 28px rgba(245, 164, 37, 0.25);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 1px solid rgba(5, 11, 30, 0.2);
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px rgba(245, 164, 37, 0.32);
  background: var(--gold-strong);
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--stroke);
  color: var(--cream);
  box-shadow: none;
}

.button--small {
  padding: 10px 18px;
  font-size: 14px;
}

.hero {
  padding: 90px 0 70px;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.95;
  margin: 18px 0;
}

.hero-copy h1 span {
  color: var(--gold);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--gold);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.hero-stats strong {
  font-size: 20px;
  display: block;
  font-weight: 700;
}

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

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 600;
}

.hero-card h3 {
  font-size: 28px;
  margin: 18px 0 8px;
}

.hero-card p {
  color: var(--muted);
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245, 164, 37, 0.18);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
}

.hero-image {
  position: absolute;
  inset: auto -20% -30% auto;
  width: 280px;
  height: 280px;
  pointer-events: none;
}

.hero-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 164, 37, 0.55), transparent 65%);
  filter: blur(1px);
}

.hero-dots {
  position: absolute;
  inset: 25% 10% auto auto;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(247, 241, 227, 0.25) 2px, transparent 2px);
  background-size: 18px 18px;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  background: rgba(9, 18, 46, 0.8);
}

.marquee-track {
  display: flex;
  gap: 40px;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 32px;
  color: rgba(247, 241, 227, 0.5);
  animation: scroll 18s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.menu,
.deals,
.story,
.locations,
.testimonials,
.contact {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.section-head {
  margin-bottom: 40px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  margin: 14px 0;
}

.menu-board {
  margin: 0 0 40px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  text-align: center;
}

.menu-board-media {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-strong);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-zoom-trigger {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  cursor: zoom-in;
}

.menu-zoom-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.menu-board img {
  width: 100%;
  height: auto;
  max-height: 68vh;
  object-fit: contain;
  display: block;
}

.menu-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 26, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 36px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 30;
}

.menu-lightbox.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.menu-lightbox-content {
  position: relative;
  width: min(1100px, 92vw);
  max-height: 90vh;
  padding: 16px;
  background: #0b1740;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: grid;
}

.menu-lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
}

.menu-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(7, 17, 44, 0.9);
  color: var(--cream);
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
}

.menu-lightbox-close:hover {
  background: rgba(7, 17, 44, 1);
}

.menu-board figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.menu-note {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
}

.menu-categories {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.menu-category {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 30px rgba(4, 12, 32, 0.3);
}

.menu-category--wide {
  grid-column: 1 / -1;
}

.menu-category h3 {
  margin-top: 0;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(247, 241, 227, 0.18);
}

.menu-item:last-child {
  border-bottom: none;
}

.item-main {
  display: grid;
  gap: 6px;
}

.item-main span {
  color: var(--muted);
  font-size: 13px;
}

.item-price {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.menu-table {
  display: grid;
  gap: 10px;
  overflow-x: auto;
}

.menu-table-head,
.menu-table-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(70px, 1fr));
  gap: 12px;
  min-width: 520px;
}

.menu-table-head {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(247, 241, 227, 0.2);
}

.menu-table-row {
  font-size: 14px;
  padding: 6px 0;
}

.deals {
  background: linear-gradient(120deg, rgba(245, 164, 37, 0.12), rgba(224, 74, 46, 0.2));
}

.deals-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.deal-card,
.deal-highlight {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
}

.deal-highlight {
  background: linear-gradient(135deg, rgba(245, 164, 37, 0.15), rgba(9, 18, 46, 0.85));
  text-align: center;
}

.price-tag {
  margin-top: 18px;
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.story-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.story-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
}

.story-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.story-list h4 {
  margin-bottom: 6px;
}

.story-panel {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  display: grid;
  gap: 18px;
}

.story-stamp {
  font-family: var(--font-display);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 20px;
}

.story-metric span {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.location-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.location-card {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--stroke);
}

.location-card span {
  color: var(--muted);
  font-size: 14px;
}

.testimonial-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial {
  padding: 24px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--stroke);
  font-style: italic;
}

.contact {
  background: linear-gradient(120deg, rgba(43, 191, 136, 0.12), rgba(245, 164, 37, 0.08));
}

.contact-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.contact-info {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-link,
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 600;
}

.contact-link {
  margin-top: 6px;
}

.social-stack {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.icon-inline {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.icon-inline svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(247, 241, 227, 0.25);
  background: rgba(7, 17, 44, 0.35);
  color: var(--cream);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input::placeholder,
textarea::placeholder {
  color: rgba(247, 241, 227, 0.55);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 164, 37, 0.2);
  background: rgba(7, 17, 44, 0.8);
}

.form-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.form-hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-form .button {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  box-shadow: 0 12px 20px rgba(245, 164, 37, 0.2);
  padding: 10px 18px;
}

.contact-form .button:hover {
  background: var(--gold-strong);
  color: var(--ink);
}

.contact-form .button--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--stroke);
}

.is-hidden {
  display: none;
}

.site-footer {
  padding: 50px 0 70px;
  border-top: 1px solid var(--stroke);
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 10px;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.footer-bottom {
  width: min(1150px, 90vw);
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--stroke);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.footer-link {
  color: var(--cream);
}

.footer-link:hover {
  color: var(--gold);
}

.footer-grid a:hover {
  color: var(--white);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: 600ms ease;
}

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

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    right: 5vw;
    top: 72px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 16px;
    background: var(--surface-strong);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    min-width: 200px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 70px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card {
    order: -1;
  }
}
