/* ============================================
   KAPETANIJA 1908 — Editorial restaurant site
   Dark theme, full-bleed food photography
   ============================================ */

:root {
  --bg: #1a120c;
  --bg-deep: #110a06;
  --ink: #f4ead7;
  --ink-soft: rgba(244, 234, 215, 0.75);
  --ink-mute: rgba(244, 234, 215, 0.5);
  --line: rgba(244, 234, 215, 0.18);
  --accent: #c8a363;

  --serif: "PT Serif", Georgia, serif;
  --sans: "Neue Montreal", -apple-system, sans-serif;
  --display: "Cubao Wide", "PT Serif", serif;
  --display-narrow: "Cubao Narrow", "PT Serif", serif;
  --script: "Halimun", "PT Serif", cursive;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
  overflow-x: hidden;
  font-weight: 400;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

:focus {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Subtle film grain overlay — editorial richness */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1.2 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* TEST MODE — for screenshots */
.test-mode *,
.test-mode *::before,
.test-mode *::after {
  animation-delay: 0s !important;
  animation-duration: 0.01s !important;
  transition-duration: 0.01s !important;
  transition-delay: 0s !important;
}
.test-mode [class*="reveal"],
.test-mode [class*="reveal"] > * {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s var(--ease-out),
    visibility 0.6s;
}
.loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-mark {
  font-family: var(--display);
  font-size: clamp(1.8rem, 8vw, 6rem);
  color: var(--ink);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.12em;
  padding: 0 1rem;
  max-width: 100%;
  overflow: hidden;
}
.loader-mark span {
  display: inline-flex;
  align-items: center;
  transform: translateY(110%);
  animation: rise 0.7s var(--ease-out) forwards;
}
.loader-logo {
  margin: 0 0.1em;
}
.loader-logo img {
  height: 0.95em;
  width: auto;
  display: block;
}
.loader-mark span:nth-child(2) {
  animation-delay: 0.07s;
}
.loader-mark span:nth-child(3) {
  animation-delay: 0.14s;
}
.loader-mark span:nth-child(4) {
  animation-delay: 0.21s;
}
.loader-mark span:nth-child(5) {
  animation-delay: 0.28s;
}
.loader-mark span:nth-child(6) {
  animation-delay: 0.35s;
}
.loader-mark span:nth-child(7) {
  animation-delay: 0.42s;
}
.loader-mark span:nth-child(8) {
  animation-delay: 0.49s;
}
@keyframes rise {
  to {
    transform: translateY(0);
  }
}

/* ============================================
   TOP NAV BAR — sits on hero / events / contact
   ============================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.6rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  transition:
    background 0.4s,
    padding 0.4s,
    backdrop-filter 0.4s;
  pointer-events: none;
}
.topbar > * {
  pointer-events: auto;
}
.topbar.scrolled {
  padding: 1rem 2.5rem;
  background: rgba(17, 10, 6, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.topbar-mark {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.topbar.scrolled .topbar-mark {
  opacity: 1;
  pointer-events: auto;
}

.topbar-nav {
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.topbar.scrolled .topbar-nav {
  opacity: 1;
  pointer-events: auto;
}

.topbar-nav {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.topbar-nav a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.topbar-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.topbar-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.topbar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-left: auto;
  pointer-events: none;
}
.topbar-right > * {
  pointer-events: auto;
}

.lang-toggle {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.topbar.scrolled .lang-toggle {
  opacity: 1;
  pointer-events: auto;
}
.lang-toggle button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  opacity: 0.45;
  transition: opacity 0.3s;
}
.lang-toggle button.active {
  opacity: 1;
}
.lang-toggle button:hover {
  opacity: 1;
}
.lang-divider {
  opacity: 0.3;
}

.menu-button {
  display: none;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 4px;
}
.menu-button span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: currentColor;
  transition:
    transform 0.4s,
    opacity 0.3s;
}
.menu-button.open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.menu-button.open span:nth-child(2) {
  opacity: 0;
}
.menu-button.open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* MOBILE NAV PANEL */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg-deep);
  padding: 6rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease-in-out);
}
.mobile-nav.open {
  transform: translateY(0);
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.mobile-nav ul a {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 8vw, 3rem);
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
  display: block;
  line-height: 1.2;
}
.mobile-nav ul a:hover {
  color: var(--accent);
}
.mobile-nav-foot {
  font-family: var(--serif);
  font-style: italic;
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.mobile-nav-foot a {
  color: inherit;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  display: inline;
}
.mobile-lang {
  opacity: 1 !important;
  pointer-events: auto !important;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.6rem;
  align-self: flex-start;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.section-pad {
  padding: 6rem 2.5rem;
}

/* Page-number markers (01/07 — 07/07) */
.page-num {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.55;
  color: var(--ink);
}
.page-num-tl {
  position: absolute;
  top: 1.7rem;
  left: 2.5rem;
  z-index: 50;
}
.page-num-tr {
  position: absolute;
  top: 1.7rem;
  right: 2.5rem;
  z-index: 50;
}
.menu-intro-head {
  margin-bottom: 2.5rem;
}

/* ============================================
   PAGE 1 — HERO
   Full-bleed dark food photo, KPT Zemun 1908
   ============================================ */
.hero {
  background: var(--bg-deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 12s var(--ease-out) forwards;
}
@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 10, 6, 0.55) 0%,
    rgba(17, 10, 6, 0.15) 30%,
    rgba(17, 10, 6, 0.35) 80%,
    rgba(17, 10, 6, 0.5) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7rem 2.5rem 3rem;
}
.hero-wordmark {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 1rem;
  position: relative;
  gap: 2.2rem;
}
.hero-wordmark-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.4rem, 1.2vw, 1.2rem);
  white-space: nowrap;
  width: 100%;
}
.hero-letters {
  font-family: var(--display);
  font-size: clamp(5rem, 12.5vw, 13rem);
  line-height: 0.85;
  letter-spacing: -0.015em;
  font-weight: 400;
  display: flex;
  overflow: hidden;
}
.hero-letters span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s var(--ease-out) forwards;
}
.hero-letters.l span:nth-child(1) {
  animation-delay: 0.6s;
}
.hero-letters.l span:nth-child(2) {
  animation-delay: 0.68s;
}
.hero-letters.l span:nth-child(3) {
  animation-delay: 0.76s;
}
.hero-letters.r span:nth-child(1) {
  animation-delay: 0.84s;
}
.hero-letters.r span:nth-child(2) {
  animation-delay: 0.92s;
}
.hero-letters.r span:nth-child(3) {
  animation-delay: 1s;
}
.hero-letters.r span:nth-child(4) {
  animation-delay: 1.08s;
}

.hero-script {
  font-family: var(--script);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  color: var(--ink);
  line-height: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: scriptIn 1.2s 1.2s var(--ease-out) forwards;
  letter-spacing: 0.01em;
}
@keyframes scriptIn {
  to {
    opacity: 0.95;
    transform: translateY(0);
  }
}

.hero-tag {
  text-align: center;
  font-family: "Source Serif 4", "Source Serif Pro", var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 1.6s var(--ease-out) forwards;
  transform: translateY(20px);
  line-height: 1.18;
  margin-top: 0.6rem;
}
.hero-tag span {
  display: block;
}
.hero-tag span:first-child {
  margin-bottom: 0.05em;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2rem;
  padding-top: 2.5rem;
  font-family: var(--sans);
  font-size: 0.73rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 2s var(--ease-out) forwards;
}
.hero-foot .center {
  text-align: right;
}
.hero-foot .center a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border: 1px solid rgba(244, 234, 215, 0.55);
  border-radius: 999px;
  background: rgba(17, 10, 6, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    background 0.4s,
    border-color 0.4s,
    color 0.3s,
    transform 0.4s var(--ease-out);
}
.hero-foot .center a:hover {
  color: var(--bg-deep);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* HERO TOP RIGHT — initial nav (shown on hero only, replaced by topbar after scroll) */
.hero-top-nav {
  position: absolute;
  top: 1.6rem;
  right: 2.5rem;
  z-index: 50;
  display: flex;
  gap: 2.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}
.hero-top-nav a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) forwards;
}
.hero-top-nav a:nth-child(1) {
  animation-delay: 1.7s;
}
.hero-top-nav a:nth-child(2) {
  animation-delay: 1.8s;
}
.hero-top-nav a:nth-child(3) {
  animation-delay: 1.9s;
}
.hero-top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.hero-top-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-top-left {
  position: absolute;
  top: 1.7rem;
  left: 2.5rem;
  z-index: 50;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 1.7s var(--ease-out) forwards;
}

/* ============================================
   PAGE 2 — MENU INTRO
   3 vertical photo cards on dark bg
   ============================================ */
.menu-intro {
  background: var(--bg-deep);
  padding: 8rem 2.5rem 5rem;
}

.menu-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.menu-card {
  position: relative;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-card-image {
  position: relative;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  background: var(--bg);
}
.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
  transform: scale(1.02);
}
.menu-card:hover .menu-card-image img {
  transform: scale(1.08);
}

.menu-card-num {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: var(--ink);
  opacity: 0.85;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.menu-card-label {
  font-family: "Source Serif 4", "Source Serif Pro", var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-left: 0.1rem;
}
.menu-card-label strong {
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
  letter-spacing: 0;
}
.menu-card-label strong em {
  font-style: italic;
  font-size: 0.92em;
  opacity: 0.85;
  margin-left: 0.2rem;
}
.menu-card-label small {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.8;
}

.menu-card-arrow {
  position: absolute;
  bottom: 1.1rem;
  right: 1.1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 234, 215, 0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 10, 6, 0.18);
  backdrop-filter: blur(6px);
  transition:
    background 0.5s,
    transform 0.5s var(--ease-out),
    border-color 0.4s;
  opacity: 0;
  transform: translateY(8px);
}
.menu-card:hover .menu-card-arrow {
  opacity: 1;
  transform: translateY(0);
  background: var(--bg-deep);
  color: var(--ink);
  border-color: var(--ink);
}
.menu-card-arrow svg {
  width: 13px;
  height: 13px;
  transition: transform 0.5s var(--ease-out);
}
.menu-card:hover .menu-card-arrow svg {
  transform: rotate(135deg);
}

.menu-intro-foot {
  display: flex;
  align-items: end;
  padding-top: 2rem;
}
.menu-intro-foot .script {
  font-family: var(--script);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  line-height: 1.15;
  transform: rotate(-3deg);
  transform-origin: left center;
  white-space: nowrap;
}
.menu-intro-foot .script-img {
  display: block;
  width: 12.15em;      /* matches the SVG aspect at the script font-size */
  max-width: 100%;
  height: auto;
}
.menu-intro-foot .right {
  text-align: right;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ============================================
   PAGES 3, 4, 5 — MENU LISTS
   Dark, compact, sans-serif
   ============================================ */
.menu-page {
  background: var(--bg-deep);
  padding: 6rem 2.5rem 6rem;
  min-height: auto;
}

.menu-page-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.menu-page-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  font-weight: 400;
  text-transform: uppercase;
}
.menu-page-title em {
  font-family: var(--script);
  font-style: normal;
  font-size: 1.4em;
  letter-spacing: 0;
  color: var(--accent);
  margin-left: 0.5rem;
  text-transform: none;
}
.menu-page-num {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.5;
}

.menu-grid {
  display: flex;
  gap: 5rem;
  flex: 1;
  align-items: flex-start;
}

.menu-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  min-width: 0;
}

.menu-cat {
  break-inside: avoid;
}

.menu-cat-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dish {
  margin-bottom: 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1.2rem;
  align-items: baseline;
  padding-left: 0;
  transition:
    padding-left 0.3s var(--ease-out),
    opacity 0.3s;
}
.dish:hover {
  padding-left: 0.5rem;
}
.dish-name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dish-price {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.dish-desc {
  grid-column: 1 / -1;
  font-family: var(--sans);
  font-style: normal;
  opacity: 0.85;
  line-height: 1.45;
  letter-spacing: 0;
  margin-top: 0.25rem;
}

.mini-dishes {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.9rem;
}
.mini-dish {
  font-family: var(--sans);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.mini-dish strong {
  order: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.88rem;
}
.mini-dish::after {
  content: "";
  order: 2;
  flex: 1;
  min-width: 1.5rem;
}
.mini-dish > span {
  order: 3;
  color: var(--accent);
  margin-left: 0;
  font-variant-numeric: tabular-nums;
  font-size: 0.88rem;
}

.menu-page-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
}
.menu-page-foot a {
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition:
    gap 0.3s,
    color 0.3s;
}
.menu-page-foot a:hover {
  gap: 1.4rem;
  color: var(--accent);
}

/* ============================================
   PAGE 6 — EVENTS
   Two-column dark
   ============================================ */
.events {
  background: var(--bg-deep);
  padding: 7rem 2.5rem 5rem;
  min-height: auto;
}

.events-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem 6rem;
  flex: 1;
  align-items: stretch;
  min-height: 70vh;
}
.events-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.events-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.events-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}
.events-headline span {
  display: block;
}

.events-subblock {
  margin-bottom: 4rem;
}
.events-subblock .label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 0rem;
  display: block;
  opacity: 1;
}
.events-counter {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.2rem, 3vw, 2.9rem);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.events-counter .circle {
  display: inline-block;
  padding: 0.65rem 2rem 0.75rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--ink);
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 80' preserveAspectRatio='none'%3E%3Cpath d='M 55 14 C 105 5 175 4 220 16 C 248 25 238 54 195 66 C 140 79 60 76 20 60 C -8 47 -3 26 48 16 C 75 11 110 9 145 9' fill='none' stroke='%23f4ead7' stroke-width='1.8' stroke-linecap='round' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transform: rotate(-2.5deg);
}

.events-text {
  font-family: var(--sans);
  font-size: 1.6rem;
  line-height: 1.6;
  max-width: 520px;
  opacity: 0.95;
  margin-bottom: 0;
}
.events-text p + p {
  margin-top: 1.4rem;
}

.events-quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  text-align: right;
}
.events-quote span {
  display: block;
}
.events-quote::after {
  content: "";
  display: block;
  width: 190px;
  height: 12px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 190 12' preserveAspectRatio='none'%3E%3Cpath d='M 5 7 C 40 3 100 2 185 5 C 150 8 90 9 5 7 Z' fill='%23f4ead7' stroke='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin: 1.5rem 0 0 auto;
}

/* ============================================
   PAGE 7 — CONTACT
   Full-bleed food photo + script wordmark
   ============================================ */
.contact {
  background: var(--bg-deep);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  transform: scale(1.05);
  transition: transform 8s var(--ease-out);
}
.contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 10, 6, 0.35) 0%,
    rgba(17, 10, 6, 0.15) 35%,
    rgba(17, 10, 6, 0.25) 100%
  );
}

.contact-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7rem 2.5rem 3rem;
}

.reservations-pill {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 2rem 0.75rem;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 80' preserveAspectRatio='none'%3E%3Cpath d='M 55 14 C 105 5 175 4 220 16 C 248 25 238 54 195 66 C 140 79 60 76 20 60 C -8 47 -3 26 48 16 C 75 11 110 9 145 9' fill='none' stroke='%23f4ead7' stroke-width='1.8' stroke-linecap='round' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--ink);
  text-decoration: none;
  transform: rotate(-2.5deg);
  transition: opacity 0.4s;
}
.reservations-pill:hover {
  opacity: 0.75;
}

.contact-stage {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}

.contact-mark {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.contact-mark-script {
  font-family: var(--script);
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1;
  color: var(--ink);
  margin-bottom: -0.4rem;
  margin-left: clamp(8rem, 8.5vw, 10.5rem);
  opacity: 0.98;
}
.contact-mark-num {
  font-family: var(--display);
  font-size: clamp(5.5rem, 13vw, 13rem);
  line-height: 0.9;
  letter-spacing: -0.015em;
  font-weight: 400;
}

.contact-info {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
  align-self: center;
  align-items: flex-start;
  margin-left: auto;
}
.contact-info-row {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: flex-start;
}
.contact-info-row .label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.005em;
}
.contact-info-row .label::before {
  content: "\203A";
  opacity: 0.55;
  font-style: normal;
}
.contact-info-row a,
.contact-info-row p {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3.4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
  transition:
    color 0.3s,
    transform 0.3s;
}
.contact-info-row a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.contact-copyright {
  position: relative;
  z-index: 3;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  padding-top: 2rem;
}
.contact-copyright a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 234, 215, 0.4);
  padding-bottom: 1px;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.contact-copyright a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ============================================
   REVEALS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1) {
  transition-delay: 0s;
}
.reveal-stagger.in > *:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal-stagger.in > *:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal-stagger.in > *:nth-child(4) {
  transition-delay: 0.3s;
}
.reveal-stagger.in > *:nth-child(5) {
  transition-delay: 0.4s;
}
.reveal-stagger.in > *:nth-child(6) {
  transition-delay: 0.5s;
}
.reveal-stagger.in > *:nth-child(7) {
  transition-delay: 0.6s;
}
.reveal-stagger.in > *:nth-child(8) {
  transition-delay: 0.7s;
}

/* Menu grid: override stagger to fade per menu-cat (not per menu-col) */
.menu-grid.reveal-stagger > .menu-col {
  opacity: 1;
  transform: none;
  transition: none;
}
.menu-grid.reveal-stagger .menu-cat {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.menu-grid.reveal-stagger.in .menu-cat {
  opacity: 1;
  transform: translateY(0);
}
.menu-grid.reveal-stagger.in .menu-cat:nth-of-type(1) { transition-delay: 0s; }
.menu-grid.reveal-stagger.in .menu-cat:nth-of-type(2) { transition-delay: 0.08s; }
.menu-grid.reveal-stagger.in .menu-cat:nth-of-type(3) { transition-delay: 0.16s; }
.menu-grid.reveal-stagger.in .menu-cat:nth-of-type(4) { transition-delay: 0.24s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 850px) {
  .hero-wordmark-line {
    flex-direction: column;
    gap: 0.4rem;
  }
  .hero-letters {
    font-size: clamp(5rem, 13vw, 11rem);
  }
  .hero-script {
    transform: translateY(0) rotate(-4deg);
    margin: 0.1rem 0;
  }
}

@media (max-width: 1024px) {
  .menu-intro-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-intro-grid .menu-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
  .events-grid,
  .contact-stage {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .events-right {
    align-items: flex-start;
  }
  .events-quote {
    text-align: left;
  }
  .events-quote::after {
    margin: 1.5rem 0 0 0;
  }
  .contact-info {
    text-align: left;
    align-self: start;
    margin-left: 0;
    width: 100%;
  }
  .contact-info-row {
    align-items: flex-start;
  }
  .contact-info-row a:hover {
    transform: translateX(4px);
  }
  .menu-grid {
    flex-direction: column;
    gap: 3.5rem;
  }
  .menu-col {
    width: 100%;
  }
}

@media (max-width: 720px) {
  section {
    min-height: auto;
  }
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .topbar {
    padding: 1rem 1.5rem;
  }
  .topbar-nav {
    display: none;
  }
  .topbar .lang-toggle {
    display: none;
  }
  .menu-button {
    display: flex;
  }
  .hero-top-nav {
    display: none;
  }
  .hero-inner {
    padding: 6rem 1.5rem 2rem;
  }
  .hero-wordmark-line {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero-letters {
    font-size: clamp(4rem, 18vw, 7rem);
  }
  .hero-script {
    transform: translateY(0) rotate(-5deg);
    margin: 0.2rem 0;
  }
  .hero-foot {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    text-align: center;
  }
  .hero-foot .center {
    text-align: center;
  }
  .menu-intro-foot .script {
    font-size: clamp(1.5rem, 8vw, 2.4rem);
    white-space: normal;
    line-height: 1.1;
  }

  .menu-intro {
    padding: 6rem 1.5rem 4rem;
  }
  .menu-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .menu-intro-grid .menu-card:nth-child(3) {
    max-width: none;
    margin: 0;
  }
  .menu-intro-foot {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .menu-intro-foot .right {
    text-align: left;
  }

  .menu-page {
    padding: 6rem 1.5rem 4rem;
  }
  .menu-page-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .events {
    padding: 5rem 1.5rem 3rem;
  }
  .events-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
  }
  .events-headline {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    margin-bottom: 2rem;
  }
  .events-subblock {
    margin-bottom: 2.5rem;
  }
  .events-subblock .label {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }
  .events-counter {
    font-size: clamp(1.3rem, 5.5vw, 1.8rem);
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .events-counter .circle {
    padding: 0.5rem 1.4rem 0.6rem;
  }
  .events-text {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 100%;
  }
  .events-text p + p {
    margin-top: 1rem;
  }
  .events-right {
    align-items: flex-start;
  }
  .events-quote {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    text-align: left;
  }
  .events-quote::after {
    width: 130px;
    margin: 1rem 0 0 0;
  }

  .contact-inner {
    padding: 6rem 1.5rem 2rem;
  }
  .reservations-pill {
    top: 1.2rem;
    left: 1.5rem;
    padding: 0.85rem 2rem 0.95rem;
    font-size: 1rem;
  }
  .contact-stage {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 0;
  }
  .contact-mark-script {
    margin-left: 0;
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
  .contact-mark-num {
    font-size: clamp(4rem, 18vw, 6rem);
  }
  .contact-info {
    margin-left: 0;
    width: 100%;
    gap: 1rem;
  }
  .contact-info-row {
    width: 100%;
    min-width: 0;
  }
  .contact-info-row a,
  .contact-info-row p {
    font-size: clamp(1.05rem, 4.5vw, 1.6rem);
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
  }
  .contact-foot {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.6rem;
  }
  .contact-foot .c,
  .contact-foot .r {
    text-align: center;
  }

  .menu-page-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
