:root {
  --bg: #100904;
  --bg-2: #180d07;
  --text: #fff8ee;
  --muted: rgba(255, 248, 238, 0.70);
  --soft: rgba(255, 248, 238, 0.14);
  --gold: #d9a24c;
  --gold-2: #f4cf86;
  --tomato: #b9432f;
  --green: #78965b;
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.48);
  --radius: 34px;
  --max: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 22% 10%, rgba(217, 162, 76, 0.20), transparent 34rem),
    radial-gradient(circle at 82% 0%, rgba(185, 67, 47, 0.18), transparent 32rem),
    linear-gradient(180deg, #100904 0%, #1a0f08 45%, #0b0704 100%);
}

body.is-loading {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

::selection {
  color: #17100a;
  background: var(--gold-2);
}

/* Utility layers */

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.cursor-glow {
  position: fixed;
  z-index: 35;
  left: 0;
  top: 0;
  width: 560px;
  height: 560px;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      rgba(244, 207, 134, 0.26) 0%,
      rgba(217, 162, 76, 0.16) 28%,
      rgba(185, 67, 47, 0.08) 46%,
      transparent 68%
    );
  opacity: 0;
  mix-blend-mode: screen;
  filter: blur(4px);
  transition: opacity 0.25s ease;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), #fff0bd);
  box-shadow: 0 0 22px rgba(244, 207, 134, 0.58);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 162, 76, 0.18), transparent 24rem),
    #100904;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  display: grid;
  width: 150px;
  height: 104px;
  place-items: center;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(244, 207, 134, 0.34);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(244, 207, 134, 0.20), rgba(217, 162, 76, 0.10)),
    rgba(16, 9, 4, 0.48);
  box-shadow:
    0 28px 80px rgba(217, 162, 76, 0.22),
    inset 0 1px 0 rgba(255, 248, 238, 0.12);
}

.preloader-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preloader p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-2);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.85s cubic-bezier(.2,.75,.18,1),
    transform 0.85s cubic-bezier(.2,.75,.18,1),
    filter 0.85s cubic-bezier(.2,.75,.18,1);
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

.delay-5 {
  transition-delay: 0.40s;
}

/* Header */

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 80;
  width: min(calc(100% - 32px), var(--max));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 248, 238, 0.14);
  border-radius: 999px;
  background: rgba(16, 9, 4, 0.56);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  transition: top 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(16, 9, 4, 0.82);
  border-color: rgba(255, 248, 238, 0.18);
}

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

.brand-mark {
  display: grid;
  width: 72px;
  height: 48px;
  place-items: center;
  padding: 5px;
  overflow: hidden;
  border: 1px solid rgba(244, 207, 134, 0.32);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(244, 207, 134, 0.18), rgba(217, 162, 76, 0.08)),
    rgba(16, 9, 4, 0.42);
  box-shadow:
    0 16px 34px rgba(217, 162, 76, 0.18),
    inset 0 1px 0 rgba(255, 248, 238, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand em {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.brand em {
  margin-top: 3px;
  font-family: var(--serif);
  font-style: normal;
  font-size: 1.28rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.06);
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 800;
  transition: 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--text);
  background: rgba(255, 248, 238, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: flex;
  padding: 4px;
  border: 1px solid rgba(255, 248, 238, 0.12);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.05);
}

.lang-btn {
  border: 0;
  width: 42px;
  height: 34px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  font-weight: 950;
  font-size: 0.78rem;
  transition: 0.2s ease;
}

.lang-btn.is-active {
  color: #17100a;
  background: var(--gold-2);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 248, 238, 0.13);
  border-radius: 50%;
  background: rgba(255, 248, 238, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: 0.25s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  top: 86px;
  left: 16px;
  right: 16px;
  z-index: 70;
  display: none;
  flex-direction: column;
  padding: 16px;
  border: 1px solid rgba(255, 248, 238, 0.14);
  border-radius: 24px;
  background: rgba(16, 9, 4, 0.92);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.mobile-panel.is-open {
  display: flex;
}

.mobile-panel a {
  padding: 14px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 850;
}

.mobile-panel a:hover {
  color: var(--text);
  background: rgba(255, 248, 238, 0.08);
}

/* Buttons */

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.35), transparent 34%);
  transition: opacity 0.2s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  color: #17100a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 20px 46px rgba(217, 162, 76, 0.26);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 248, 238, 0.16);
  background: rgba(255, 248, 238, 0.07);
  backdrop-filter: blur(16px);
}

/* Hero */

.hero {
  min-height: 100svh;
  padding: 150px 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 90px calc(50% - 50vw) 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 46%, rgba(244, 207, 134, 0.18), transparent 24rem),
    radial-gradient(circle at 84% 34%, rgba(255, 248, 238, 0.10), transparent 18rem),
    radial-gradient(circle at 24% 44%, rgba(185, 67, 47, 0.10), transparent 22rem);
  mix-blend-mode: screen;
}

.hero-bg {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -4;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  opacity: 0.68;
  filter: blur(0.5px) saturate(1.08) contrast(1.12);
  transform: scale(1.04);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 40%, rgba(217, 162, 76, 0.24), transparent 28rem),
    radial-gradient(circle at 18% 24%, rgba(185, 67, 47, 0.18), transparent 32rem),
    linear-gradient(90deg,
      rgba(16, 9, 4, 0.88) 0%,
      rgba(16, 9, 4, 0.62) 42%,
      rgba(16, 9, 4, 0.24) 100%
    ),
    linear-gradient(180deg,
      rgba(16, 9, 4, 0.06) 0%,
      rgba(16, 9, 4, 0.20) 58%,
      #100904 100%
    );
}

.hero-light {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(38px);
  pointer-events: none;
}

.hero-light-one {
  right: -120px;
  top: 120px;
  width: 360px;
  height: 360px;
  background: rgba(244, 207, 134, 0.22);
  animation: pulseGlow 6s ease-in-out infinite;
}

.hero-light-two {
  left: 12%;
  bottom: 18%;
  width: 220px;
  height: 220px;
  background: rgba(185, 67, 47, 0.20);
  animation: pulseGlow 7s ease-in-out infinite reverse;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.hero-copy-panel {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 248, 238, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.075);
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-title {
  max-width: 760px;
  margin: 16px 0 24px;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 8.1vw, 8.8rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.078em;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 248, 238, 0.78);
  font-size: clamp(1.06rem, 1.45vw, 1.32rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-micro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 36px;
}

.hero-micro div {
  padding: 17px 18px;
  border: 1px solid rgba(255, 248, 238, 0.12);
  border-radius: 22px;
  background: rgba(255, 248, 238, 0.06);
  backdrop-filter: blur(18px);
}

.hero-micro strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: 1.58rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

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

.hero-stage {
  position: relative;
  width: 120%;
  min-height: 816px;
  justify-self: start;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.plate-glow {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 72%;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 207, 134, 0.24), transparent 68%);
  filter: blur(30px);
  transform: translate(-50%, -50%);
  animation: pulseGlow 4.8s ease-in-out infinite;
}

.hero-food {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 238, 0.16);
  background: rgba(255, 248, 238, 0.08);
  box-shadow: var(--shadow);
}

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

.hero-food-main {
  position: absolute;
  inset: 26px 64px 31px 98px;
  border-radius: 58px;
  transform: rotate(-2deg);
  animation: heroFloat 6.8s ease-in-out infinite;
}

.hero-food-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(16, 9, 4, 0.04) 45%, rgba(16, 9, 4, 0.52) 100%);
}

.hero-food-left,
.hero-food-right {
  position: absolute;
  z-index: 4;
  width: 286px;
  border-radius: 36px;
  background: rgba(16, 9, 4, 0.78);
  backdrop-filter: blur(18px);
}

.hero-food-left {
  left: 0;
  bottom: 46px;
  transform: rotate(4deg);
}

.hero-food-right {
  right: 0;
  top: 31px;
  transform: rotate(5deg);
}

.hero-food-left img,
.hero-food-right img {
  height: 180px;
}

.hero-food figcaption {
  padding: 18px 19px 20px;
}

.hero-food figcaption span,
.signature-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-food figcaption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.signature-card {
  position: absolute;
  z-index: 5;
  left: 130px;
  right: 101px;
  bottom: 62px;
  max-width: 528px;
  padding: 28px 29px;
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 36px;
  background: rgba(16, 9, 4, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 84px rgba(0,0,0,0.40);
}

.signature-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.8vw, 4.08rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.signature-card p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.float-soft {
  animation: cardFloat 5.8s ease-in-out infinite;
}

.float-soft-reverse {
  animation: cardFloat 6.4s ease-in-out infinite reverse;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: end;
  margin-top: 36px;
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-hint span {
  position: relative;
  width: 30px;
  height: 50px;
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 999px;
}

.scroll-hint span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-2);
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.scroll-hint p {
  margin: 0;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-strip article {
  padding: 22px 24px;
  border: 1px solid rgba(255, 248, 238, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.10), rgba(255, 248, 238, 0.045));
  box-shadow: 0 18px 55px rgba(0,0,0,0.16);
  backdrop-filter: blur(18px);
}

.hero-strip span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
}

.hero-strip strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-strip p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Marquee */

.marquee-section {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 248, 238, 0.08);
  border-bottom: 1px solid rgba(255, 248, 238, 0.08);
  background: rgba(255, 248, 238, 0.035);
}

.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 38px;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  color: rgba(255, 248, 238, 0.42);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.06em;
}

/* Sections */

.intro,
.menu-section,
.gallery,
.visit {
  padding: 108px 0;
}

.intro-grid,
.section-head {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: end;
  margin-top: 22px;
}

.intro h2,
.section-head h2,
.visit h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.intro-copy,
.section-head p,
.visit p {
  color: var(--muted);
  font-size: 1.04rem;
}

/* Premium story block */

.story-premium {
  position: relative;
  padding: 128px 0 105px;
}

.story-bg-glow {
  position: absolute;
  inset: 40px -12% auto auto;
  z-index: -1;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(244, 207, 134, 0.16), transparent 68%);
  filter: blur(34px);
  pointer-events: none;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
}

.story-copy-block h2 {
  max-width: 760px;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.story-text-card {
  position: relative;
  overflow: hidden;
  max-width: 620px;
  margin-top: 38px;
  padding: 30px;
  border: 1px solid rgba(255, 248, 238, 0.13);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 0%, rgba(244, 207, 134, 0.13), transparent 18rem),
    linear-gradient(180deg, rgba(255, 248, 238, 0.09), rgba(255, 248, 238, 0.045));
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
}

.story-text-card::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 86px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
}

.story-text-card p {
  color: rgba(255, 248, 238, 0.74);
  font-size: 1.05rem;
}

.story-text-card p:last-of-type {
  margin-bottom: 0;
}

.story-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 248, 238, 0.12);
}

.story-signature span {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.story-signature small {
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-visual {
  position: relative;
  min-height: 620px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.story-image-main {
  position: absolute;
  inset: 54px 42px 40px 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 238, 0.14);
  border-radius: 44px;
  background: rgba(255, 248, 238, 0.07);
  box-shadow: var(--shadow);
}

.story-image-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(16, 9, 4, 0.58) 100%);
}

.story-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.story-image-label {
  display: none;
}

.story-image-label span {
  display: none;
}

.story-image-label strong {
  display: none;
}

.story-floating {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 238, 0.16);
  border-radius: 30px;
  background: rgba(255, 248, 238, 0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.34);
}

.story-floating img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-floating-one {
  top: 0;
  right: 0;
  width: 260px;
  height: 190px;
  transform: rotate(4deg);
}

.story-floating-two {
  left: 0;
  bottom: 0;
  width: 250px;
  height: 180px;
  transform: rotate(-5deg);
}

/* Updated story logo stamp */

.story-stamp {
  position: absolute;
  z-index: 4;
  right: 6px;
  bottom: -76px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  min-height: 0;
  padding: 8px 12px;
  overflow: hidden;
  border: 1px solid rgba(244, 207, 134, 0.30);
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 0%, rgba(244, 207, 134, 0.18), transparent 15rem),
    linear-gradient(135deg, rgba(255, 248, 238, 0.10), rgba(255, 248, 238, 0.035)),
    rgba(16, 9, 4, 0.76);
  backdrop-filter: blur(20px);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.36),
    inset 0 1px 0 rgba(255, 248, 238, 0.10);
}

.story-stamp img,
.story-stamp-logo {
  display: block;
  width: 238px !important;
  max-width: none;
  height: auto !important;
  object-fit: contain;
  transform: none;
  filter:
    drop-shadow(0 10px 22px rgba(0,0,0,0.28))
    drop-shadow(0 0 18px rgba(244, 207, 134, 0.12));
}

.story-stamp strong,
.story-stamp span {
  display: none;
}

.story-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 90px;
}

.story-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(255, 248, 238, 0.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 12%, rgba(244, 207, 134, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(255, 248, 238, 0.105), rgba(255, 248, 238, 0.045));
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  backdrop-filter: blur(18px);
}

.story-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(120deg, transparent, rgba(255, 248, 238, 0.10), transparent);
  transform: translateX(-100%);
  transition: opacity 0.25s ease;
}

.story-feature-card:hover::before {
  opacity: 1;
  animation: shimmer 1.2s ease;
}

.story-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.story-card-top span {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
}

.story-card-top i {
  display: block;
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, rgba(244, 207, 134, 0.8), transparent);
}

.story-feature-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.4vw, 2.7rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.story-feature-card p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 248, 238, 0.68);
  font-size: 1.02rem;
}

/* Old feature row fallback */

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 54px;
}

.feature-row article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(255, 248, 238, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 20%, rgba(244, 207, 134, 0.10), transparent 18rem),
    linear-gradient(180deg, rgba(255, 248, 238, 0.10), rgba(255, 248, 238, 0.045));
}

.feature-row span {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 2rem;
}

.feature-row h3,
.dish-card h3 {
  margin: 18px 0 8px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.035em;
}

.feature-row p,
.dish-card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Menu */

.menu-section {
  width: min(calc(100% - 32px), 1280px);
  padding-top: 90px;
}

.menu-layout {
  margin-top: 34px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.menu-tab {
  border: 1px solid rgba(255, 248, 238, 0.14);
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--muted);
  background: rgba(255, 248, 238, 0.06);
  cursor: pointer;
  font-weight: 950;
  transition: 0.2s ease;
}

.menu-tab.is-active {
  color: #17100a;
  border-color: transparent;
  background: var(--gold-2);
}

.menu-panel {
  display: none;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
}

.menu-panel.is-active {
  display: grid;
}

.dish-card {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 248, 238, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 10%, rgba(244, 207, 134, 0.10), transparent 20rem),
    rgba(255, 248, 238, 0.07);
  box-shadow: 0 20px 70px rgba(0,0,0,0.18);
  transform-style: preserve-3d;
}

.dish-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.2,.75,.18,1);
}

.dish-card:hover img {
  transform: scale(1.06);
}

.dish-card > div {
  padding: 24px;
}

.dish-card.featured {
  min-height: 590px;
}

.dish-card.featured img {
  height: 390px;
}

.dish-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.dish-top h3 {
  margin: 0 0 10px;
}

.dish-top span {
  min-width: max-content;
  color: var(--gold-2);
  font-weight: 950;
}

/* Gallery */

.premium-gallery {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  grid-auto-rows: 255px;
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 34px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 248, 238, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 248, 238, 0.07);
  box-shadow: 0 24px 80px rgba(0,0,0,0.20);
}

.gallery-large {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-item:nth-child(6) {
  grid-row: span 2;
}

.gallery-item:nth-child(7) {
  grid-column: span 2;
}

.gallery-item:nth-child(8) {
  grid-row: span 1;
}

.gallery-item:nth-child(9) {
  grid-row: span 2;
}

.gallery-item:nth-child(10) {
  grid-column: span 1;
}

.gallery-item img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  transition: transform 0.95s cubic-bezier(.2,.75,.18,1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(16, 9, 4, 0.18));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Visit */

.visit-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(255, 248, 238, 0.14);
  border-radius: 46px;
  background:
    radial-gradient(circle at 78% 20%, rgba(244, 207, 134, 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(217, 162, 76, 0.14), rgba(255, 248, 238, 0.06)),
    rgba(255, 248, 238, 0.06);
  box-shadow: var(--shadow);
}

.visit-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent, rgba(244, 207, 134, 0.22), transparent);
  transform: translateX(-100%);
  animation: shimmer 7s ease-in-out infinite;
}

.visit-card > * {
  position: relative;
  z-index: 1;
}

.visit-info {
  display: grid;
  gap: 12px;
  align-self: center;
}

.visit-info div {
  padding: 20px;
  border: 1px solid rgba(255, 248, 238, 0.12);
  border-radius: 22px;
  background: rgba(16, 9, 4, 0.28);
  backdrop-filter: blur(18px);
}

.visit-info span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 0.77rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit-info strong {
  font-size: 1.02rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Footer */

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(calc(100% - 32px), var(--max));
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 30px 0 42px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 248, 238, 0.12);
}

.site-footer p {
  margin: 0;
}

/* Animations */

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.45;
    transform: scale(1);
  }

  50% {
    opacity: 0.80;
    transform: scale(1.08);
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-14px) rotate(-1deg);
  }
}

@keyframes cardFloat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes shimmer {
  0%, 72% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Responsive */

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

  .hero-copy-panel {
    max-width: 860px;
  }

  .hero-title {
    max-width: 880px;
    font-size: clamp(4.1rem, 11vw, 7.3rem);
  }

  .hero-stage {
    width: 100%;
    min-height: 720px;
    justify-self: stretch;
  }

  .hero-food-main {
    inset: 24px 90px 24px 70px;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .scroll-hint {
    display: none;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-copy-block h2 {
    max-width: 860px;
  }

  .story-text-card {
    max-width: 760px;
  }

  .story-visual {
    min-height: 600px;
  }

  .story-stamp {
    right: 20px;
    bottom: -60px;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .intro-grid,
  .section-head,
  .visit-card {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .menu-panel {
    grid-template-columns: 1fr;
  }

  .story-feature-grid {
    grid-template-columns: 1fr;
  }

  .story-feature-card {
    min-height: auto;
  }

  .dish-card,
  .dish-card.featured {
    min-height: auto;
  }

  .premium-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-large,
  .gallery-tall,
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(9),
  .gallery-item:nth-child(10) {
    grid-column: auto;
    grid-row: auto;
  }
}

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

  .hero-micro,
  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .hero-food-main,
  .hero-food-left,
  .hero-food-right,
  .signature-card {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }

  .hero-food-main {
    min-height: 560px;
    border-radius: 34px;
  }

  .hero-food-left,
  .hero-food-right {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
  }

  .hero-food-left img,
  .hero-food-right img {
    height: 100%;
    min-height: 130px;
  }

  .signature-card {
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    top: 10px;
    padding: 9px 10px;
  }

  .brand-mark {
    width: 58px;
    height: 40px;
    border-radius: 13px;
    padding: 4px;
  }

  .brand strong {
    display: none;
  }

  .brand em {
    font-size: 1.08rem;
  }

  .language-switcher {
    gap: 0;
  }

  .lang-btn {
    width: 34px;
    height: 32px;
    font-size: 0.72rem;
  }

  .hero {
    padding: 118px 0 52px;
  }

  .hero-badges span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .hero-title {
    font-size: clamp(3.65rem, 17vw, 5.6rem);
    line-height: 0.86;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-food-main {
    min-height: 500px;
  }

  .signature-card {
    padding: 20px;
    border-radius: 24px;
  }

  .signature-card strong {
    font-size: 2.35rem;
  }

  .hero-food-left,
  .hero-food-right {
    grid-template-columns: 120px 1fr;
    border-radius: 22px;
  }

  .hero-food-left img,
  .hero-food-right img {
    min-height: 112px;
  }

  .intro,
  .menu-section,
  .gallery,
  .visit {
    padding: 70px 0;
  }

  .story-premium {
    padding: 78px 0 50px;
  }

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

  .intro h2,
  .section-head h2,
  .visit h2 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .story-copy-block h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .story-text-card {
    margin-top: 28px;
    padding: 24px;
    border-radius: 26px;
  }

  .story-signature {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .story-image-main,
  .story-floating,
  .story-stamp {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    transform: none;
  }

  .story-image-main {
    min-height: 420px;
    border-radius: 30px;
  }

  .story-floating {
    height: 230px;
  }

  .story-stamp {
    justify-self: start;
    min-width: 0;
    min-height: 0;
    padding: 8px 12px;
    border-radius: 20px;
    transform: none;
  }

  .story-stamp img,
  .story-stamp-logo {
    width: 198px !important;
    transform: none;
  }

  .story-feature-grid {
    margin-top: 48px;
  }

  .story-feature-card {
    padding: 26px;
    border-radius: 28px;
  }

  .feature-row article {
    min-height: 210px;
  }

  .dish-card img,
  .dish-card.featured img {
    height: 285px;
  }

  .dish-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .premium-gallery {
    grid-template-columns: 1fr;
  }

  .visit-card {
    border-radius: 30px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

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

/* Mobile width fix */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

main,
section,
.site-header,
.mobile-panel,
.hero,
.hero-layout,
.hero-copy-panel,
.hero-stage {
  max-width: 100%;
}

.hero {
  overflow: visible;
}

.hero-bg {
  left: 50%;
  right: auto;
  width: 100vw;
  transform: translateX(-50%);
}

.hero-bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.hero-stage {
  width: 100%;
}

@media (max-width: 820px) {
  .section {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-stage {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .site-header {
    left: 10px;
    right: 10px;
    width: auto;
    max-width: calc(100% - 20px);
    transform: none;
    gap: 8px;
    padding: 8px 9px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
    flex: 1 1 auto;
  }

  .brand-mark {
    flex: 0 0 auto;
    width: 54px;
    height: 38px;
    padding: 4px;
    border-radius: 13px;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand em {
    max-width: 112px;
    overflow: hidden;
    font-size: 1rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 6px;
  }

  .language-switcher {
    padding: 3px;
    max-width: 124px;
    overflow: hidden;
  }

  .lang-btn {
    width: 36px;
    height: 32px;
    font-size: 0.72rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .hero {
    padding: 118px 0 46px;
  }

  .hero-badges {
    gap: 8px;
    margin-bottom: 18px;
  }

  .hero-badges span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .eyebrow {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px 10px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .hero-title {
    max-width: 100%;
    margin: 18px 0 20px;
    font-size: clamp(3.05rem, 14.8vw, 4.85rem);
    line-height: 0.9;
    letter-spacing: -0.07em;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-cta .btn {
    width: 100%;
    min-height: 56px;
  }

  .hero-micro {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .hero-micro div {
    padding: 15px 16px;
  }

  .hero-food-main {
    min-height: 420px;
  }
}

@media (max-width: 390px) {
  .brand em {
    max-width: 92px;
    font-size: 0.95rem;
  }

  .language-switcher {
    max-width: 112px;
  }

  .lang-btn {
    width: 32px;
    height: 30px;
    font-size: 0.68rem;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-title {
    font-size: clamp(2.75rem, 14.2vw, 4.2rem);
  }

  .hero-copy {
    font-size: 0.96rem;
  }
}