:root {
  --black: #080808;
  --charcoal-950: #0d0c0b;
  --charcoal-900: #141210;
  --charcoal-850: #1b1714;
  --charcoal-800: #241f1b;
  --charcoal-700: #393029;
  --paper: #f5eee7;
  --paper-muted: #d2c5b8;
  --muted: #9d9083;
  --copper: #d47a47;
  --ember: #ff9a5e;
  --ember-hot: #ffbd7d;
  --blue: #28a9d6;
  --blue-soft: #7ddfff;
  --green: #83c57a;
  --line: rgba(245, 238, 231, 0.14);
  --glass: rgba(245, 238, 231, 0.065);
  --glass-strong: rgba(245, 238, 231, 0.105);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  --radius: 8px;
  --max: none;
  --edge: clamp(34px, 4.8vw, 92px);
  --font-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 74% 6%, rgba(40, 169, 214, 0.13), transparent 28%),
    radial-gradient(circle at 16% 8%, rgba(255, 154, 94, 0.16), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 72px),
    linear-gradient(180deg, #090909 0%, #12100e 46%, #090909 100%);
  font-family: var(--font-body);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.72);
  border-bottom: 1px solid rgba(125, 223, 255, 0.18);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.26);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ember), var(--blue), transparent);
  opacity: 0.72;
}

.nav-shell {
  width: 100%;
  min-height: 76px;
  margin: 0;
  padding: 0 var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(40, 169, 214, 0.5);
  box-shadow: 0 0 28px rgba(40, 169, 214, 0.2);
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  color: var(--ember);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(255, 154, 94, 0.22);
}

.brand small {
  color: var(--paper-muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.nav-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--paper-muted);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--paper);
  background: linear-gradient(135deg, rgba(255, 154, 94, 0.14), rgba(40, 169, 214, 0.08));
  border-color: rgba(255, 154, 94, 0.28);
  transform: translateY(-1px);
}

.lang-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-left: 8px;
  padding: 3px;
  border: 1px solid rgba(125, 223, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(245, 238, 231, 0.05);
}

.lang-switch button {
  width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  color: var(--paper-muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.lang-switch button.is-active {
  color: #080808;
  background: linear-gradient(135deg, var(--ember-hot), var(--ember));
  box-shadow: 0 0 18px rgba(255, 154, 94, 0.32);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(125, 223, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(245, 238, 231, 0.06);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--paper);
}

.section-dark,
.section-ink,
.section-paper {
  position: relative;
  overflow: clip;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.25), rgba(8, 8, 8, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 72px),
    var(--charcoal-900);
}

.section-ink {
  background:
    radial-gradient(circle at 82% 12%, rgba(40, 169, 214, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(14, 13, 12, 0.98), rgba(8, 8, 8, 0.98));
}

.section-paper {
  color: var(--charcoal-950);
  background:
    radial-gradient(circle at 80% 10%, rgba(40, 169, 214, 0.09), transparent 28%),
    linear-gradient(180deg, #f5eee7, #e5d7c8);
}

.section-paper h2,
.section-paper h3 {
  color: var(--charcoal-950);
}

.section-paper p {
  color: #5d5147;
}

.section {
  padding: 96px 0;
}

.section-inner,
.page-grid {
  width: 100%;
  margin: 0;
  padding-inline: var(--edge);
}

.hero {
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--copper), var(--blue), var(--copper));
  opacity: 0.95;
  box-shadow: 0 0 30px rgba(40, 169, 214, 0.28);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.05);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 0.9fr) minmax(520px, 0.84fr);
  gap: clamp(44px, 4vw, 86px);
  align-items: center;
  padding-block: 82px 66px;
}

.hero-copy {
  max-width: min(780px, 44vw);
  animation: heroRise 720ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 12ch;
  color: var(--paper);
  font-size: clamp(4rem, 8vw, 8.2rem);
  text-shadow: 0 0 42px rgba(255, 154, 94, 0.16);
}

h2 {
  color: var(--paper);
  font-size: clamp(2.6rem, 5.2vw, 5rem);
}

h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.25;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--paper-muted);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions,
.location-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: transform 520ms ease;
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn svg,
.principle svg,
.quick-tile svg,
.map-placeholder svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--ember-hot), var(--ember));
  border-color: rgba(255, 154, 94, 0.75);
  box-shadow: 0 0 26px rgba(255, 154, 94, 0.26);
}

.btn-ghost {
  color: var(--paper);
  background: rgba(245, 238, 231, 0.065);
  border-color: rgba(125, 223, 255, 0.22);
}

.btn-ghost:hover {
  box-shadow: 0 0 22px rgba(40, 169, 214, 0.2);
}

.hero-media {
  position: relative;
  min-height: clamp(560px, 34vw, 680px);
  animation: heroFloatIn 900ms ease both;
}

.hero-image-main {
  position: absolute;
  inset: 38px 28px 54px 20px;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image-main img,
.category-photo img,
.story-main,
.story-float,
.menu-photo-link img,
.grill-atmosphere > img,
.image-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.neon-frame {
  border: 1px solid rgba(125, 223, 255, 0.26);
  box-shadow:
    0 0 0 1px rgba(255, 154, 94, 0.12) inset,
    0 0 34px rgba(40, 169, 214, 0.14),
    var(--shadow);
}

.scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(125, 223, 255, 0.16) 48%, transparent 52%);
  transform: translateY(-120%);
  animation: scanMove 4.5s ease-in-out infinite;
}

.hero-image-orbit {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 154, 94, 0.28);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.75);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 26px rgba(255, 154, 94, 0.15);
}

.hero-image-orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-orbit-top {
  top: 0;
  right: 0;
  width: clamp(170px, 10vw, 220px);
  height: clamp(156px, 9.2vw, 202px);
  animation: floatSlow 6s ease-in-out infinite;
}

.hero-orbit-bottom {
  left: 0;
  bottom: 0;
  width: clamp(190px, 12vw, 260px);
  height: clamp(132px, 8.4vw, 182px);
  animation: floatSlow 7s ease-in-out infinite reverse;
}

.hero-status {
  position: absolute;
  right: 0;
  bottom: 82px;
  z-index: 3;
  width: min(350px, 70%);
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(125, 223, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-status div {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(245, 238, 231, 0.075), rgba(40, 169, 214, 0.045));
}

.hero-status span,
.detail-block span,
.quick-tile span,
.feature-number {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-status strong {
  display: block;
  margin-top: 6px;
  color: var(--paper);
  font-size: 1.05rem;
}

.image-rail {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.rail-track {
  width: 100%;
  margin: 0;
  padding-inline: var(--edge);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.rail-track figure {
  position: relative;
  min-height: 154px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 238, 231, 0.12);
  border-radius: var(--radius);
  background: var(--charcoal-900);
}

.rail-track img {
  width: 100%;
  height: 100%;
  min-height: 154px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
  transition: transform 500ms ease;
}

.rail-track figure:hover img {
  transform: scale(1.07);
}

.rail-track figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  padding: 6px 9px;
  border: 1px solid rgba(255, 154, 94, 0.3);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(8, 8, 8, 0.65);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.feature-grid,
.principle-grid,
.quick-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.feature-card,
.principle,
.quick-tile,
.menu-card {
  border: 1px solid rgba(125, 223, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245, 238, 231, 0.075), rgba(40, 169, 214, 0.035));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.feature-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.image-feature > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: brightness(0.62) saturate(1.08) contrast(1.08);
  transition: transform 640ms ease, filter 220ms ease;
}

.image-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.18), rgba(8, 8, 8, 0.84));
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 154, 94, 0.5);
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.34), 0 0 24px rgba(255, 154, 94, 0.1);
}

.feature-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.75) saturate(1.12) contrast(1.1);
}

.feature-card > :not(img) {
  position: relative;
  z-index: 1;
}

.feature-number {
  margin-bottom: auto;
  color: var(--ember);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 400;
}

.feature-card p,
.principle p {
  margin: 10px 0 0;
  color: var(--paper-muted);
}

.split-layout,
.original-menu,
.story-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.signature-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 154, 94, 0.14), transparent 28%),
    linear-gradient(180deg, #f5eee7, #dfd0bf);
}

.menu-preview {
  border-radius: var(--radius);
  overflow: hidden;
  background: #11100f;
}

.menu-preview-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(245, 238, 231, 0.12);
  color: var(--paper);
  font-weight: 900;
}

.menu-preview-row:last-child {
  border-bottom: 0;
}

.menu-preview-row strong {
  color: var(--ember);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: #8d4024;
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.grill-atmosphere {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 110px 0;
}

.grill-atmosphere > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: brightness(0.58) saturate(1.16) contrast(1.14);
}

.grill-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.86), rgba(8, 8, 8, 0.2), rgba(8, 8, 8, 0.82)),
    linear-gradient(180deg, rgba(8, 8, 8, 0.16), rgba(8, 8, 8, 0.86));
}

.atmosphere-content {
  position: relative;
  z-index: 1;
  max-width: none;
}

.atmosphere-content h2 {
  max-width: 760px;
}

.atmosphere-content p:not(.eyebrow) {
  max-width: 640px;
  color: var(--paper-muted);
}

.section-location {
  padding: 76px 0;
  border-top: 1px solid rgba(245, 238, 231, 0.12);
  background: #0c0b0a;
}

.location-strip {
  justify-content: space-between;
  margin-top: 0;
}

.location-strip h2 {
  max-width: 850px;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
}

.site-footer {
  border-top: 1px solid rgba(125, 223, 255, 0.14);
  background: #080808;
}

.footer-inner {
  width: 100%;
  min-height: 112px;
  margin: 0;
  padding-inline: var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner span,
.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-inner .footer-address,
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-social:hover {
  color: var(--paper);
}

.footer-inner .footer-address svg,
.footer-social svg {
  width: 15px;
  height: 15px;
  color: var(--ember);
}

.page-hero {
  padding: 122px 0 88px;
  border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
  max-width: none;
}

.page-hero h1 {
  max-width: 10.5ch;
  font-size: clamp(4rem, 8vw, 7.4rem);
}

.page-hero .lead {
  max-width: 620px;
}

.menu-hero,
.about-hero,
.contact-hero {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.48), rgba(8, 8, 8, 0.88)),
    image-set(url("../images/stock/flames-wide.webp") type("image/webp")),
    var(--charcoal-900);
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-hero {
  background-image:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.44), rgba(8, 8, 8, 0.9)),
    image-set(url("../images/stock/grill-meat-wide.webp") type("image/webp"));
}

.contact-hero {
  background-image:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.48), rgba(8, 8, 8, 0.9)),
    image-set(url("../images/stock/hero-burger-wide.webp") type("image/webp"));
}

.menu-section {
  padding-top: 64px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 2.8vw, 46px);
  align-items: start;
  perspective: 1600px;
}

.menu-card {
  overflow: hidden;
}

.visual-menu-card {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding-left: clamp(16px, 1.2vw, 24px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform-style: preserve-3d;
  transition: transform 240ms ease;
}

.visual-menu-card::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  z-index: 3;
  width: clamp(18px, 1.25vw, 26px);
  border: 1px solid rgba(255, 154, 94, 0.32);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.92), rgba(37, 22, 14, 0.94) 46%, rgba(255, 154, 94, 0.34)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 13px);
  box-shadow:
    inset -10px 0 18px rgba(0, 0, 0, 0.62),
    0 0 22px rgba(255, 154, 94, 0.14);
}

.visual-menu-card::after {
  content: "";
  position: absolute;
  inset: 14px -10px -12px clamp(28px, 2.3vw, 42px);
  z-index: 0;
  border: 1px solid rgba(245, 238, 231, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(245, 238, 231, 0.08), rgba(245, 238, 231, 0.02) 10%, transparent 16%),
    repeating-linear-gradient(90deg, rgba(245, 238, 231, 0.09) 0 2px, rgba(245, 238, 231, 0.02) 2px 7px),
    rgba(8, 8, 8, 0.62);
  box-shadow: 18px 22px 42px rgba(0, 0, 0, 0.34);
  opacity: 0.85;
}

.visual-menu-card:hover {
  transform: translateY(-6px) rotateX(1deg);
}

.visual-menu-card > .category-photo,
.visual-menu-card > .menu-card-head,
.visual-menu-card > .menu-items {
  position: relative;
  z-index: 2;
}

.category-photo {
  position: relative;
  height: clamp(210px, 16vw, 286px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(125, 223, 255, 0.2);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: #111;
  box-shadow: inset 0 1px 0 rgba(245, 238, 231, 0.12);
}

.category-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.02), rgba(8, 8, 8, 0.72)),
    linear-gradient(90deg, rgba(255, 154, 94, 0.22), transparent 28%, rgba(40, 169, 214, 0.12));
}

.category-photo img {
  filter: saturate(1.08) contrast(1.08);
  transition: transform 640ms ease;
}

.visual-menu-card:hover .category-photo img {
  transform: scale(1.07);
}

.menu-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 18px;
  border: 1px solid rgba(125, 223, 255, 0.2);
  border-top: 0;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.98), rgba(20, 16, 13, 0.92)),
    repeating-linear-gradient(90deg, rgba(245, 238, 231, 0.04) 0 1px, transparent 1px 18px);
}

.menu-card-head::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 154, 94, 0.6), rgba(40, 169, 214, 0.26), transparent);
}

.menu-card-head span {
  color: var(--ember);
  font-weight: 900;
}

.menu-card-head h2 {
  font-size: 3.5rem;
}

.menu-items {
  counter-reset: product-page;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(14px, 1.45vw, 22px);
  border: 1px solid rgba(125, 223, 255, 0.2);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background:
    linear-gradient(90deg, rgba(255, 154, 94, 0.12), transparent 7%, transparent 93%, rgba(125, 223, 255, 0.08)),
    repeating-linear-gradient(0deg, rgba(245, 238, 231, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(13, 12, 11, 0.98), rgba(16, 19, 19, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(245, 238, 231, 0.08),
    inset 0 -14px 26px rgba(0, 0, 0, 0.28);
}

.menu-item {
  counter-increment: product-page;
  position: relative;
  min-height: 148px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  overflow: hidden;
  padding: 38px 18px 16px 20px;
  color: #1b130e;
  border: 1px solid rgba(112, 70, 39, 0.32);
  border-radius: 7px 10px 10px 7px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 38%),
    repeating-linear-gradient(0deg, rgba(68, 46, 28, 0.06) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #f6ead9 0%, #e5d3bd 52%, #cdb69d 100%);
  box-shadow:
    inset 5px 0 0 rgba(84, 51, 30, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 10px 20px rgba(0, 0, 0, 0.24);
  transform-origin: left center;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.menu-item::before {
  content: counter(product-page, decimal-leading-zero);
  position: absolute;
  top: 12px;
  left: 20px;
  color: rgba(112, 70, 39, 0.76);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.menu-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(225deg, rgba(255, 255, 255, 0.62), rgba(189, 148, 107, 0.26) 52%, transparent 54%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.menu-item:hover {
  filter: brightness(1.03);
  transform: translateY(-4px) rotateY(-3deg);
  box-shadow:
    inset 5px 0 0 rgba(255, 154, 94, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 18px 28px rgba(0, 0, 0, 0.28),
    0 0 20px rgba(255, 154, 94, 0.12);
}

.menu-item:last-child {
  border-bottom: 1px solid rgba(112, 70, 39, 0.32);
}

.menu-item > div,
.menu-item strong {
  position: relative;
  z-index: 1;
}

.menu-item h3 {
  color: #17100c;
  font-size: 1rem;
  text-transform: uppercase;
}

.menu-item p {
  margin: 5px 0 0;
  color: #6d5747;
  font-size: 0.9rem;
}

.menu-item strong {
  justify-self: end;
  min-width: 0;
  color: #91411f;
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 400;
  text-align: right;
}

.original-menu {
  align-items: start;
}

.menu-photo-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
}

.story-media {
  position: relative;
  min-height: 560px;
}

.story-stack {
  overflow: visible;
  box-shadow: none;
}

.story-main {
  position: absolute;
  inset: 40px 80px 40px 0;
  border-radius: var(--radius);
}

.story-float {
  position: absolute;
  width: 44%;
  height: 190px;
  border: 1px solid rgba(255, 154, 94, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-float-top {
  top: 0;
  right: 0;
}

.story-float-bottom {
  right: 32px;
  bottom: 0;
}

.story-copy p {
  font-size: 1.05rem;
}

.principle {
  min-height: 250px;
  padding: 24px;
  transition: transform 200ms ease, border-color 200ms ease;
}

.principle:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 223, 255, 0.34);
}

.principle svg {
  width: 28px;
  height: 28px;
  color: var(--ember);
  margin-bottom: 28px;
}

.principle h3 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
}

.contact-section {
  padding-top: 78px;
}

.map-panel {
  min-height: 520px;
  border-radius: var(--radius);
  padding: 16px;
  background:
    radial-gradient(circle at 50% 50%, rgba(40, 169, 214, 0.16), transparent 32%),
    repeating-linear-gradient(45deg, rgba(8, 8, 8, 0.08) 0 1px, transparent 1px 28px),
    #151b1d;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 488px;
  display: block;
  border: 0;
  border-radius: var(--radius);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 488px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  border: 1px dashed rgba(125, 223, 255, 0.38);
  border-radius: var(--radius);
  color: var(--paper);
  text-align: center;
  background:
    linear-gradient(rgba(125, 223, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 223, 255, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
}

.map-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--blue-soft);
}

.map-placeholder strong {
  font-size: 1.1rem;
}

.map-placeholder span {
  max-width: 300px;
  color: var(--paper-muted);
}

.contact-details {
  display: grid;
  gap: 14px;
}

.direction-panel {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(125, 223, 255, 0.16);
  border-radius: var(--radius);
  background: #11100f;
}

.direction-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.direction-panel > *:not(img) {
  position: relative;
  z-index: 1;
}

.detail-block {
  padding: 20px;
  border: 1px solid rgba(245, 238, 231, 0.12);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.62);
}

.detail-block span {
  color: var(--ember);
}

.detail-block strong {
  display: block;
  margin-top: 8px;
  color: var(--paper);
  font-size: 1.1rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.detail-actions .btn {
  flex: 1 1 140px;
}

.detail-block p {
  margin: 6px 0 0;
  color: var(--paper-muted);
}

.quick-tile {
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.quick-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 154, 94, 0.5);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.28), 0 0 24px rgba(255, 154, 94, 0.1);
}

.quick-tile svg {
  width: 26px;
  height: 26px;
  color: var(--ember);
}

.quick-tile strong {
  color: var(--paper);
  font-size: 1.06rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes scanMove {
  0%,
  32% {
    transform: translateY(-120%);
  }
  62%,
  100% {
    transform: translateY(120%);
  }
}

@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-image-main {
    inset: 34px 0 64px 0;
  }

  .hero-status {
    right: 18px;
  }

  .rail-track {
    grid-template-columns: repeat(5, 220px);
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .rail-track figure {
    scroll-snap-align: start;
  }

  .feature-grid,
  .principle-grid,
  .quick-contact,
  .menu-grid,
  .split-layout,
  .original-menu,
  .story-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-media {
    min-height: 520px;
  }
}

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

  .nav-panel {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
    border-bottom: 1px solid rgba(125, 223, 255, 0.2);
    background: rgba(8, 8, 8, 0.98);
  }

  .nav-panel.is-open {
    display: grid;
  }

  .nav-link {
    width: 100%;
    min-height: 50px;
  }

  .lang-switch {
    width: 104px;
    margin: 8px 0 0;
  }

  .page-hero {
    padding: 94px 0 66px;
  }

  .footer-inner,
  .location-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .section-inner,
  .page-grid,
  .footer-inner,
  .rail-track {
    width: 100%;
    padding-inline: 12px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(3.55rem, 17vw, 5.7rem);
  }

  .page-hero h1 {
    max-width: 9.6ch;
    font-size: clamp(3.1rem, 15.5vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-block: 72px 46px;
  }

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

  .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-image-main {
    inset: 18px 0 82px;
  }

  .hero-orbit-top {
    width: 132px;
    height: 122px;
  }

  .hero-orbit-bottom {
    width: 154px;
    height: 112px;
  }

  .hero-status {
    left: 12px;
    right: 12px;
    bottom: 0;
    width: auto;
    grid-template-columns: 1fr;
  }

  .hero-status div {
    padding: 13px 16px;
  }

  .rail-track {
    grid-template-columns: repeat(5, 190px);
  }

  .feature-card {
    min-height: 280px;
  }

  .visual-menu-card {
    padding-left: 14px;
    padding-right: 8px;
  }

  .visual-menu-card::before {
    top: 14px;
    bottom: 14px;
    width: 18px;
  }

  .visual-menu-card::after {
    inset: 10px 0 -8px 24px;
  }

  .category-photo {
    height: 190px;
  }

  .menu-card-head {
    padding: 18px 16px 12px;
  }

  .menu-card-head::after {
    right: 16px;
    left: 16px;
  }

  .menu-card-head h2 {
    font-size: 2.35rem;
    line-height: 0.95;
    text-align: right;
  }

  .menu-items {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .menu-item {
    min-height: 122px;
    padding: 34px 14px 14px;
  }

  .menu-item::before {
    left: 16px;
  }

  .menu-item strong {
    font-size: 2rem;
  }

  .story-media {
    min-height: 420px;
  }

  .story-main {
    inset: 28px 0 74px;
  }

  .story-float {
    height: 130px;
  }

  .story-float-top {
    width: 42%;
  }

  .story-float-bottom {
    width: 50%;
    right: 14px;
  }

  .map-panel {
    min-height: 360px;
  }

  .map-placeholder {
    min-height: 328px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
