/* ============================================================
   PYALI CAFE — Premium Frontend
   Cream · Coffee Brown · Warm Beige · Dark Chocolate · Matte Black
   Accents: Golden · Terracotta · Warm Orange
   ============================================================ */

:root {
  --cream: #f5efe6;
  --beige: #e8d5b7;
  --coffee: #4b2e2b;
  --chocolate: #2a1b16;
  --black: #14100e;
  --black-2: #0d0a09;
  --gold: #c9a227;
  --gold-2: #e0b93e;
  --terracotta: #b5651d;
  --orange: #e07b39;
  --text-dark: #35241f;
  --muted-dark: rgba(53, 36, 31, 0.65);
  --muted-light: rgba(245, 239, 230, 0.6);
  --line-dark: rgba(53, 36, 31, 0.12);
  --line-light: rgba(245, 239, 230, 0.12);
  --glass-light: rgba(255, 255, 255, 0.55);
  --glass-dark: rgba(255, 255, 255, 0.05);
  --radius: 22px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 0.9, 0.3, 1);
  --nav-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* Hard stop for horizontal overflow on mobile — clip beats hidden
   because it never turns the page into a horizontal scroll container */
@supports (overflow-x: clip) {
  html, body { overflow-x: clip; }
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(201, 162, 39, 0.35); }

img, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%;
  pointer-events: none; z-index: 9000; opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); } 10% { transform: translate(-5%, -8%); }
  20% { transform: translate(-12%, 4%); } 30% { transform: translate(6%, -14%); }
  40% { transform: translate(-4%, 12%); } 50% { transform: translate(-10%, 6%); }
  60% { transform: translate(12%, 0%); } 70% { transform: translate(0%, 10%); }
  80% { transform: translate(-8%, -4%); } 90% { transform: translate(8%, 6%); }
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black-2);
  display: flex; align-items: center; justify-content: center;
  transition: visibility 0s 1.4s;
}
.loader.done { visibility: hidden; }
.loader-inner { text-align: center; position: relative; z-index: 2; transition: opacity 0.5s, transform 0.5s; }
.loader.leaving .loader-inner { opacity: 0; transform: translateY(-26px); }
.loader-cup { position: relative; width: 130px; margin: 0 auto 8px; }
.loader-cup svg { width: 100%; }
.loader-cup-body { stroke-dasharray: 200; stroke-dashoffset: 200; animation: drawIn 1.2s 0.2s var(--ease) forwards; }
.loader-handle { stroke-dasharray: 80; stroke-dashoffset: 80; animation: drawIn 0.9s 0.8s var(--ease) forwards; }
.loader-saucer { stroke-dasharray: 220; stroke-dashoffset: 220; animation: drawIn 1s 1s var(--ease) forwards; }
@keyframes drawIn { to { stroke-dashoffset: 0; } }
.loader-steam { opacity: 0; animation: steamUp 2.2s ease-in-out infinite; }
.loader-steam.s2 { animation-delay: 0.4s; }
.loader-steam.s3 { animation-delay: 0.8s; }
@keyframes steamUp {
  0% { opacity: 0; transform: translateY(6px); }
  40% { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(-10px); }
}
.loader-bean {
  position: absolute; font-size: 14px; opacity: 0;
  animation: beanFloat 2.6s ease-in-out infinite;
}
.loader-bean--1 { left: -26px; top: 30%; animation-delay: 0.2s; }
.loader-bean--2 { right: -30px; top: 16%; animation-delay: 0.9s; }
.loader-bean--3 { right: -12px; bottom: 8%; animation-delay: 1.5s; }
@keyframes beanFloat {
  0%, 100% { opacity: 0; transform: translateY(8px) rotate(-20deg); }
  50% { opacity: 0.85; transform: translateY(-8px) rotate(16deg); }
}
.loader-brand {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px);
  color: var(--coffee); letter-spacing: 2px;
  clip-path: inset(0 0 100% 0); animation: revealDown 0.9s 0.5s var(--ease) forwards;
}
@keyframes revealDown { to { clip-path: inset(0 0 0% 0); } }
.loader-tag { color: var(--muted-dark); font-size: 12px; letter-spacing: 3.5px; text-transform: uppercase; margin-top: 8px; opacity: 0; animation: fadeUp 0.8s 1s forwards; }
@keyframes fadeUp { to { opacity: 1; } }
.loader-count {
  position: absolute; bottom: -90px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 15px; color: var(--terracotta);
  letter-spacing: 2px;
}
.loader-count::after { content: "%"; font-size: 11px; opacity: 0.7; }
.loader-curtain {
  position: absolute; left: 0; width: 100%; height: 50%;
  background: var(--beige); z-index: 1;
  transition: transform 1s var(--ease) 0.15s;
}
.loader-curtain--1 { top: 0; transform-origin: top; }
.loader-curtain--2 { bottom: 0; transform-origin: bottom; }
.loader.leaving .loader-curtain--1 { transform: scaleY(0); }
.loader.leaving .loader-curtain--2 { transform: scaleY(0); }
.loader { background: transparent; }
.loader::before {
  content: ""; position: absolute; inset: 0; background: var(--cream);
  transition: opacity 0.6s 0.5s;
}
.loader.leaving::before { opacity: 0; }

/* ============================================================
   ANNOUNCEMENT + NAV
   ============================================================ */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--chocolate); color: var(--beige);
  font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase;
  overflow: hidden; height: 34px; display: flex; align-items: center;
}
.announce-track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.announce-track span { display: inline-flex; align-items: center; gap: 26px; padding-right: 26px; }
.announce-track em { color: var(--gold); font-style: normal; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  transition: transform 0.5s var(--ease), background 0.4s, box-shadow 0.4s, top 0.3s;
}
.nav--with-announce { top: 34px; }
.nav.scrolled { top: 0; }
.nav-inner {
  max-width: 1360px; margin: 0 auto; padding: 0 34px;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: height 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(20, 16, 14, 0.72);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.nav.scrolled .nav-inner { height: 62px; }
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display); font-size: 28px; font-weight: 600;
  color: var(--cream); letter-spacing: 1px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.nav-logo-dot { color: var(--gold); }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--cream); text-decoration: none; font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.8px; position: relative; padding: 6px 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-search-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(8px);
  color: var(--cream); display: grid; place-items: center; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.nav-search-btn svg { width: 17px; height: 17px; }
.nav-search-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: scale(1.08); }

.nav-burger {
  display: none; flex-direction: column; gap: 6px; background: none; border: none;
  padding: 8px; cursor: pointer;
}
.nav-burger span { width: 26px; height: 2px; background: var(--cream); transition: all 0.35s var(--ease); }
.nav-burger.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Menu overlay ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 850; visibility: hidden; pointer-events: none;
}
.menu-overlay.open { visibility: visible; pointer-events: auto; }
.menu-overlay-bg {
  position: absolute; inset: 0; background: rgba(13, 10, 9, 0.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  clip-path: circle(0% at calc(100% - 60px) 50px);
  transition: clip-path 0.8s var(--ease);
}
.menu-overlay.open .menu-overlay-bg { clip-path: circle(150% at calc(100% - 60px) 50px); }
.menu-overlay-content {
  position: relative; height: 100%; display: flex; flex-direction: column;
  justify-content: center; padding: 90px 8vw 50px; gap: 40px;
}
.menu-overlay-links { display: flex; flex-direction: column; gap: 4px; }
.menu-overlay-links a {
  font-family: var(--font-display); font-size: clamp(34px, 6vw, 60px);
  color: var(--cream); text-decoration: none; width: fit-content;
  display: flex; align-items: baseline; gap: 18px; line-height: 1.25;
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), color 0.3s;
  transition-delay: 0s;
}
.menu-overlay.open .menu-overlay-links a {
  opacity: 1; transform: none;
  transition-delay: calc(0.22s + var(--i) * 0.07s);
}
.menu-overlay-links a:hover { color: var(--gold); }
.menu-overlay-links a small { font-family: var(--font-body); font-size: 12px; color: var(--gold); letter-spacing: 2px; }
.menu-overlay-meta {
  display: flex; gap: 60px; color: var(--muted-light); font-size: 13.5px;
  opacity: 0; transition: opacity 0.6s 0.6s;
}
.menu-overlay.open .menu-overlay-meta { opacity: 1; }

/* ---------- Search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 860;
  background: rgba(13, 10, 9, 0.94); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 16vh 20px 40px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-close, .lightbox-close, .popup-close, .dish-modal-close {
  position: absolute; top: 26px; right: 30px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.07); border: 1px solid var(--line-light);
  color: var(--cream); font-size: 16px; cursor: pointer;
  transition: all 0.3s; display: grid; place-items: center; z-index: 5;
}
.search-close:hover, .lightbox-close:hover, .popup-close:hover, .dish-modal-close:hover {
  background: var(--gold); color: var(--black); transform: rotate(90deg);
}
.search-box { width: min(680px, 100%); }
.search-label { color: var(--gold); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.search-box input {
  width: 100%; background: transparent; border: none;
  border-bottom: 2px solid var(--line-light);
  font-family: var(--font-display); font-size: clamp(26px, 4vw, 42px);
  color: var(--cream); padding: 10px 0; outline: none; transition: border-color 0.3s;
}
.search-box input:focus { border-color: var(--gold); }
.search-results { margin-top: 28px; display: flex; flex-direction: column; gap: 6px; max-height: 46vh; overflow-y: auto; }
.search-result {
  display: flex; align-items: center; gap: 16px; padding: 12px 14px;
  border-radius: 14px; text-decoration: none; color: var(--cream);
  transition: background 0.25s; cursor: pointer; border: 1px solid transparent;
}
.search-result:hover { background: var(--glass-dark); border-color: var(--line-light); }
.search-result img { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; }
.search-result strong { display: block; font-size: 15px; }
.search-result small { color: var(--muted-light); font-size: 12px; }
.search-result .sr-price { margin-left: auto; color: var(--gold); font-weight: 600; }
.search-empty { color: var(--muted-light); padding: 14px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-magnetic {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 34px; border-radius: 60px; border: none; text-decoration: none;
  background: linear-gradient(135deg, var(--gold-2), #a3801a);
  color: var(--black); font-weight: 600; font-size: 14px; letter-spacing: 0.6px;
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}
.btn-magnetic span { position: relative; z-index: 2; transition: color 0.35s; }
.btn-magnetic::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--chocolate);
  border-radius: inherit; transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}
.btn-magnetic:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(201, 162, 39, 0.35); }
.btn-magnetic:hover::before { transform: translateY(0); }
.btn-magnetic:hover span { color: var(--cream); }
.btn-lg { padding: 18px 44px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-outline {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 60px; text-decoration: none;
  border: 1.5px solid currentColor; background: transparent;
  color: inherit; font-weight: 500; font-size: 14px; letter-spacing: 0.6px;
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: color 0.4s var(--ease), transform 0.35s var(--ease), border-color 0.4s;
}
.btn-outline span { position: relative; z-index: 2; }
.btn-outline::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--gold); border-radius: inherit;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.btn-outline:hover { color: var(--black); border-color: var(--gold); transform: translateY(-2px); }
.btn-outline:hover::before { transform: scaleX(1); transform-origin: left; }

.hero .btn-outline, .section-dark .btn-outline, .footer .btn-outline { color: var(--cream); }
.hero .btn-outline:hover, .section-dark .btn-outline:hover, .footer .btn-outline:hover { color: var(--black); }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 34px; }
.container-narrow { max-width: 860px; }
.section { padding: 110px 0; position: relative; }
/* "Dark" sections are re-scoped to a warm light tone — variables are
   overridden so every component inside inherits the light palette. */
.section-dark {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(201, 162, 39, 0.14), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(181, 101, 29, 0.1), transparent 60%),
    #f9f3e8;
  color: var(--text-dark);
  --cream: #3a2620;
  --muted-light: rgba(53, 36, 31, 0.62);
  --line-light: rgba(53, 36, 31, 0.14);
  --glass-dark: rgba(255, 255, 255, 0.55);
  --gold-2: #9a7a12;
}
.section-dark .glass-card {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(53, 36, 31, 0.08);
  box-shadow: 0 24px 60px rgba(42, 27, 22, 0.12);
}
.section-dark .review-card,
.section-dark .faq-item { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(14px); }
.section-dark .review-card p { color: rgba(53, 36, 31, 0.85); }
.section-dark .review-stars { color: rgba(53, 36, 31, 0.15); }
.section-dark .countdown div { background: rgba(255, 255, 255, 0.6); }
.section-dark .menu-filters select,
.section-dark .menu-filters input {
  background: rgba(53, 36, 31, 0.05); border-color: var(--line-light); color: var(--text-dark);
}
.section-dark .menu-filters select option { background: var(--beige); color: var(--text-dark); }
.section-dark .ffield input, .section-dark .ffield select, .section-dark .ffield textarea {
  background: rgba(255, 255, 255, 0.75); border-color: rgba(53, 36, 31, 0.12); color: var(--text-dark);
}
.section-eyebrow {
  color: var(--terracotta); font-size: 12px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ""; width: 36px; height: 1.5px; background: var(--gold); }
.section-dark .section-eyebrow { color: var(--gold-2); }
.section-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px); line-height: 1.15; margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section-dark .section-title em { color: var(--gold-2); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 26px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head .section-title { margin-bottom: 0; }
.section-head-center { justify-content: center; text-align: center; }
.section-head-center .section-eyebrow { justify-content: center; }

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(20, 16, 14, 0.18);
}
.section:not(.section-dark) .glass-card,
.reserve .glass-card {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(53, 36, 31, 0.08);
}

.line-mask { display: block; overflow: hidden; }
.line-mask > span { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease); }
.in-view .line-mask > span, .line-mask.in-view > span { transform: none; }

.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.form-msg { font-size: 13px; margin-top: 12px; min-height: 18px; color: var(--terracotta); opacity: 0; transition: opacity 0.3s; }
.form-msg.show { opacity: 1; }
.form-msg.ok { color: #4c9a5f; }

.empty-note { text-align: center; color: var(--muted-dark); padding: 60px 0; font-size: 17px; }
.empty-note a { color: var(--terracotta); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--black);
  color: var(--cream); text-align: center;
}
.hero-media { position: absolute; inset: -6%; z-index: 1; }
.hero-video, .hero-image { width: 100%; height: 100%; object-fit: cover; }
.hero-image { background-size: cover; background-position: center; animation: heroZoom 22s ease-in-out infinite alternate; }
.hero-video { animation: heroZoom 22s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.09); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(42, 27, 22, 0.5) 0%, rgba(42, 27, 22, 0.22) 45%, rgba(42, 27, 22, 0.72) 100%);
}
.hero-shade {
  position: absolute; inset: 0; z-index: 2;
  background: #180f0a; /* admin-controlled: Settings → Hero → Video darkness */
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(120% 90% at 50% 40%, transparent 45%, rgba(42, 27, 22, 0.45) 100%);
}
.hero-steam { position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0.7; }
.hero-beans { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hero-bean {
  position: absolute; width: 26px; opacity: 0.5;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4)) blur(0.4px);
  animation: beanDrift 12s ease-in-out infinite;
  animation-delay: calc(var(--d) * -3.2s);
}
.hero-bean:nth-child(1) { left: 12%; top: 24%; }
.hero-bean:nth-child(2) { left: 82%; top: 20%; width: 34px; }
.hero-bean:nth-child(3) { left: 70%; top: 68%; width: 20px; }
.hero-bean:nth-child(4) { left: 20%; top: 70%; width: 30px; }
@keyframes beanDrift {
  0%, 100% { transform: translateY(0) rotate(-14deg); }
  50% { transform: translateY(-34px) rotate(18deg); }
}
.hero-content { position: relative; z-index: 4; max-width: 900px; padding: 120px 24px 40px; }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 4.5px; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(44px, 8.4vw, 104px); line-height: 1.06; margin-bottom: 26px;
  text-shadow: 0 8px 50px rgba(0, 0, 0, 0.4);
}
.hero-title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero-title .word > span { display: inline-block; transform: translateY(112%); }
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px); color: rgba(245, 239, 230, 0.8);
  max-width: 560px; margin: 0 auto 40px; font-weight: 300;
}
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.reveal-up { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-up.in { opacity: 1; transform: none; }

.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted-light); font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none;
}
.hero-scroll-line { width: 1.5px; height: 44px; background: var(--line-light); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--gold); animation: scrollHint 1.8s var(--ease) infinite;
}
@keyframes scrollHint { 0% { top: -50%; } 100% { top: 110%; } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--chocolate); color: var(--beige);
  padding: 20px 0; overflow: hidden; position: relative; z-index: 5;
}
.marquee-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display); font-size: clamp(17px, 2vw, 24px); letter-spacing: 1px;
}
.marquee-track em { color: var(--gold); font-style: normal; padding: 0 18px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about { overflow: hidden; }
.about-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-visual {
  position: relative; min-height: 560px;
}
.about-img { position: absolute; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 70px rgba(42, 27, 22, 0.3); }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.about-img:hover img { transform: scale(1.07); }
.about-img--1 { width: 62%; height: 74%; top: 0; left: 0; z-index: 2; }
.about-img--2 { width: 52%; height: 42%; right: 0; top: 10%; z-index: 1; }
.about-img--3 { width: 46%; height: 40%; right: 6%; bottom: 0; z-index: 3; border: 6px solid var(--cream); }
.about-badge {
  position: absolute; left: 48%; bottom: 12%; z-index: 4;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--chocolate); display: grid; place-items: center;
  box-shadow: 0 20px 50px rgba(42, 27, 22, 0.4);
}
.about-badge svg { position: absolute; inset: 8px; animation: spin 14s linear infinite; }
.about-badge svg text { fill: var(--beige); font-size: 10.5px; letter-spacing: 2.4px; }
.about-badge span { font-size: 30px; }
@keyframes spin { to { transform: rotate(360deg); } }
.about-para { color: var(--muted-dark); margin-bottom: 16px; max-width: 54ch; }
.about-stats {
  display: grid; grid-template-columns: repeat(4, auto); gap: 30px;
  margin-top: 38px; padding-top: 32px; border-top: 1px solid var(--line-dark);
}
.about-stats strong {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px);
  color: var(--coffee); display: block; line-height: 1;
}
.about-stats strong::after { content: "+"; color: var(--gold); }
.about-stats span { font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted-dark); }

.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
  margin-top: 110px; position: relative; padding-top: 40px;
}
.timeline-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
  opacity: 0.5;
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: ""; position: absolute; top: -46px; left: 2px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.18);
}
.timeline-year { font-family: var(--font-display); font-size: 30px; color: var(--terracotta); font-style: italic; }
.timeline-item h3 { font-size: 17px; margin: 8px 0 6px; font-weight: 600; }
.timeline-item p { font-size: 13.5px; color: var(--muted-dark); }

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 22px; flex-wrap: wrap; margin-bottom: 42px;
}
.menu-cats { display: flex; gap: 10px; flex-wrap: wrap; }
.menu-cat {
  padding: 10px 22px; border-radius: 40px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--line-light); background: transparent; color: var(--muted-light);
  cursor: pointer; transition: all 0.3s var(--ease); letter-spacing: 0.4px;
}
.section:not(.section-dark) .menu-cat { border-color: var(--line-dark); color: var(--muted-dark); }
.menu-cat:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold-2); }
.menu-cat.active {
  background: var(--gold); border-color: var(--gold); color: var(--black);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
}
.menu-filters { display: flex; gap: 12px; }
.menu-filters select, .menu-filters input {
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-light);
  color: var(--cream); border-radius: 40px; padding: 10px 20px;
  font-family: inherit; font-size: 13px; outline: none; transition: border-color 0.3s;
}
.section:not(.section-dark) .menu-filters select,
.section:not(.section-dark) .menu-filters input {
  background: rgba(53, 36, 31, 0.05); border-color: var(--line-dark); color: var(--text-dark);
}
.menu-filters select:focus, .menu-filters input:focus { border-color: var(--gold); }
.menu-filters select option { background: var(--chocolate); color: var(--cream); }
.menu-filters input { width: 180px; }

.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(262px, 1fr));
  gap: 26px; min-height: 280px;
}
.menu-loading {
  grid-column: 1 / -1; display: flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--muted-light); padding: 70px 0; font-size: 14px;
}
.section:not(.section-dark) .menu-loading { color: var(--muted-dark); }
.brew-spinner {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2.5px solid rgba(201, 162, 39, 0.25); border-top-color: var(--gold);
  animation: spin 0.9s linear infinite;
}

.dish-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(53, 36, 31, 0.1);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
  opacity: 0; transform: translateY(36px);
  cursor: pointer;
}
.dish-card.in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), box-shadow 0.5s, border-color 0.4s; }
.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(42, 27, 22, 0.22);
  border-color: rgba(201, 162, 39, 0.5);
}
.dish-media { position: relative; aspect-ratio: 4 / 4.4; overflow: hidden; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.dish-card:hover .dish-media img { transform: scale(1.1) rotate(0.6deg); }
.dish-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.dish-badge {
  font-size: 10px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 5px 11px; border-radius: 30px; width: fit-content;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.dish-badge--best { background: rgba(201, 162, 39, 0.9); color: var(--black); }
.dish-badge--trend { background: rgba(224, 123, 57, 0.88); color: #fff; }
.dish-badge--offer { background: rgba(179, 65, 58, 0.88); color: #fff; }
.dish-badge--soldout { background: rgba(20, 16, 14, 0.8); color: var(--beige); }
.dish-veg {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 20px; height: 20px; border-radius: 5px; border: 2px solid;
  display: grid; place-items: center; background: rgba(255, 255, 255, 0.9);
}
.dish-veg::after { content: ""; width: 9px; height: 9px; border-radius: 50%; }
.dish-veg--yes { border-color: #2e7d43; } .dish-veg--yes::after { background: #2e7d43; }
.dish-veg--no { border-color: #b3413a; } .dish-veg--no::after { background: #b3413a; }
.dish-wish {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(20, 16, 14, 0.55); backdrop-filter: blur(10px);
  color: var(--cream); display: grid; place-items: center;
  transition: all 0.3s var(--ease); opacity: 0; transform: translateY(8px);
}
.dish-card:hover .dish-wish { opacity: 1; transform: none; }
.dish-wish svg { width: 18px; height: 18px; }
.dish-wish:hover { background: var(--gold); color: var(--black); transform: scale(1.12); }
.dish-wish.active { opacity: 1; transform: none; background: #b3413a; color: #fff; }
.dish-wish.pop { animation: wishPop 0.45s var(--ease); }
@keyframes wishPop { 40% { transform: scale(1.35); } }
.dish-body { padding: 20px 22px 22px; }
.dish-body small { color: var(--terracotta); font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; }
.dish-body h3 { font-family: var(--font-display); font-size: 20px; margin: 6px 0 8px; color: var(--coffee); font-weight: 500; }
.dish-body p { font-size: 13px; color: var(--muted-dark); min-height: 40px; }
.dish-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.dish-price { font-family: var(--font-display); font-size: 20px; color: var(--terracotta); }
.dish-price s { font-size: 14px; color: var(--muted-dark); margin-left: 8px; font-family: var(--font-body); }
.dish-unavailable { filter: grayscale(0.7); }

.view-more-card {
  display: flex; align-items: center; justify-content: center; text-align: center;
  text-decoration: none; min-height: 320px;
  background: linear-gradient(150deg, rgba(201, 162, 39, 0.14), rgba(181, 101, 29, 0.1));
  border: 1.5px dashed rgba(181, 101, 29, 0.45);
}
.view-more-card .view-more-inner strong {
  display: block; font-family: var(--font-display); font-size: 24px;
  color: var(--coffee); margin-bottom: 8px;
}
.view-more-card .view-more-inner small { color: var(--terracotta); font-weight: 600; letter-spacing: 0.6px; }
.view-more-card:hover { border-color: var(--gold); background: rgba(201, 162, 39, 0.16); }

/* ============================================================
   FEATURED (3D tilt rail)
   ============================================================ */
.featured { overflow: hidden; }
.featured-rail {
  display: flex; gap: 30px; padding: 10px 34px 30px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; max-width: 1360px; margin: 0 auto;
}
.featured-rail::-webkit-scrollbar { display: none; }
.featured-card {
  position: relative; flex: 0 0 min(360px, 82vw); scroll-snap-align: start;
  border-radius: 26px; overflow: hidden;
  background: var(--chocolate); color: var(--cream);
  transform-style: preserve-3d; will-change: transform;
  box-shadow: 0 30px 60px rgba(42, 27, 22, 0.35);
}
.featured-card-media { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; }
.featured-card-media img, .featured-card-media video {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  transition: transform 0.7s var(--ease), opacity 0.5s;
}
.featured-card-media video { opacity: 0; z-index: 2; }
.featured-card:hover .featured-card-media video { opacity: 1; }
.featured-card:hover .featured-card-media img { transform: scale(1.08); }
.featured-price {
  position: absolute; right: 16px; bottom: -18px; z-index: 3;
  background: var(--gold); color: var(--black);
  font-family: var(--font-display); font-size: 19px;
  padding: 10px 20px; border-radius: 40px;
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.4);
}
.featured-card-body { padding: 30px 24px 26px; transform: translateZ(40px); }
.featured-card-body small { color: var(--gold-2); font-size: 11px; letter-spacing: 2.4px; text-transform: uppercase; }
.featured-card-body h3 { font-family: var(--font-display); font-size: 24px; margin: 8px 0; font-weight: 500; }
.featured-card-body p { font-size: 13.5px; color: var(--muted-light); }
.tilt-glare {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: radial-gradient(600px circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.14), transparent 45%);
  opacity: 0; transition: opacity 0.4s;
}
.featured-card:hover .tilt-glare { opacity: 1; }

/* ============================================================
   TODAY'S SPECIAL
   ============================================================ */
.special { overflow: hidden; }
.special-glow {
  position: absolute; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.16), transparent 65%);
  top: -220px; right: -160px; pointer-events: none;
}
.special-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.special-media { position: relative; border-radius: 30px; overflow: hidden; box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45); }
.special-media img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; transition: transform 0.9s var(--ease); }
.special-media:hover img { transform: scale(1.06); }
.special-badge {
  position: absolute; top: 22px; left: 22px;
  background: var(--gold); color: var(--black);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 9px 18px; border-radius: 40px;
  animation: pulseBadge 2.4s ease-in-out infinite;
}
@keyframes pulseBadge { 50% { box-shadow: 0 0 0 12px rgba(201, 162, 39, 0); } }
.special-desc { color: var(--muted-light); max-width: 52ch; margin-bottom: 26px; }
.special-price { display: flex; align-items: baseline; gap: 16px; margin-bottom: 30px; flex-wrap: wrap; }
.special-price strong { font-family: var(--font-display); font-size: clamp(38px, 4vw, 54px); color: var(--gold-2); }
.special-price s { color: var(--muted-light); font-size: 20px; }
.special-save {
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  background: rgba(181, 101, 29, 0.2); border: 1px solid rgba(224, 123, 57, 0.5);
  color: var(--orange); padding: 6px 14px; border-radius: 30px;
}
.countdown { display: flex; gap: 14px; margin-bottom: 36px; }
.countdown div {
  min-width: 76px; text-align: center; padding: 14px 10px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-light);
  border-radius: 16px; backdrop-filter: blur(12px);
}
.countdown b { font-family: var(--font-display); font-size: 30px; color: var(--cream); display: block; line-height: 1.1; font-weight: 500; }
.countdown span { font-size: 10px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--muted-light); }

/* ============================================================
   GALLERY (masonry + lightbox)
   ============================================================ */
.masonry { columns: 4 240px; column-gap: 22px; }
.masonry-item {
  position: relative; border-radius: 18px; overflow: hidden;
  margin-bottom: 22px; break-inside: avoid; cursor: pointer;
  box-shadow: 0 18px 44px rgba(42, 27, 22, 0.18);
}
.masonry-item img, .masonry-item video { width: 100%; transition: transform 0.8s var(--ease); }
.masonry-item:hover img, .masonry-item:hover video { transform: scale(1.07); }
.masonry-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 34px 18px 16px;
  background: linear-gradient(transparent, rgba(20, 16, 14, 0.8));
  color: var(--cream); display: flex; justify-content: space-between; align-items: baseline;
  opacity: 0; transform: translateY(12px); transition: all 0.45s var(--ease);
}
.masonry-item:hover figcaption { opacity: 1; transform: none; }
.masonry-item figcaption span { font-family: var(--font-display); font-size: 16px; }
.masonry-item figcaption small { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-2); }
.masonry-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(20, 16, 14, 0.6); color: var(--gold); font-size: 16px;
  backdrop-filter: blur(8px); border: 1px solid rgba(201, 162, 39, 0.5);
}

.lightbox {
  position: fixed; inset: 0; z-index: 920;
  background: rgba(13, 10, 9, 0.95); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-stage { max-width: min(1100px, 88vw); max-height: 82vh; display: flex; align-items: center; justify-content: center; }
.lightbox-stage img, .lightbox-stage video {
  max-width: 100%; max-height: 82vh; border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: lbIn 0.5s var(--ease);
}
@keyframes lbIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: none; } }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.07); border: 1px solid var(--line-light);
  color: var(--cream); font-size: 18px; cursor: pointer; transition: all 0.3s; z-index: 5;
}
.lightbox-prev { left: 26px; } .lightbox-next { right: 26px; }
.lightbox-nav:hover { background: var(--gold); color: var(--black); }
.lightbox-caption {
  position: absolute; bottom: 28px; left: 0; right: 0; text-align: center;
  color: var(--muted-light); font-size: 13.5px; letter-spacing: 1px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-swiper { padding: 10px 6vw 70px; }
.reviews-swiper .swiper-slide { width: min(460px, 86vw); height: auto; }
.review-card {
  height: 100%; padding: 34px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 24px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: transform 0.5s var(--ease), border-color 0.4s;
  display: flex; flex-direction: column; gap: 18px;
}
.swiper-slide-active .review-card { border-color: rgba(201, 162, 39, 0.45); transform: translateY(-6px); }
.review-stars {
  position: relative; font-size: 18px; letter-spacing: 4px; width: fit-content;
  color: rgba(245, 239, 230, 0.18);
}
.review-stars::before {
  content: "★★★★★"; position: absolute; inset: 0; color: var(--gold);
  width: calc(var(--rating) / 5 * 100%); overflow: hidden; white-space: nowrap; letter-spacing: 4px;
}
.review-card p { font-size: 15.5px; line-height: 1.75; color: rgba(245, 239, 230, 0.85); flex: 1; font-weight: 300; }
.review-card footer { display: flex; align-items: center; gap: 14px; }
.review-card footer img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(201, 162, 39, 0.4); }
.review-card footer strong { font-size: 14.5px; display: block; }
.review-card footer span { font-size: 12px; color: var(--muted-light); }
.review-source { margin-left: auto; }
.review-video { aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; }
.review-video iframe { width: 100%; height: 100%; border: 0; }
.reviews .swiper-pagination-bullet { background: var(--muted-light); opacity: 0.5; }
.reviews .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; width: 22px; border-radius: 6px; transition: width 0.3s; }

/* ============================================================
   OUR STORY — reels rail
   ============================================================ */
.story { overflow: hidden; }
.story-rail {
  display: flex; gap: 24px; padding: 10px 34px 26px;
  overflow-x: auto; scrollbar-width: none;
  max-width: 1360px; margin: 0 auto;
  -webkit-overflow-scrolling: touch;
}
.story-rail::-webkit-scrollbar { display: none; }
.story-card {
  flex: 0 0 min(300px, 74vw); border-radius: 22px; overflow: hidden;
  background: var(--chocolate);
  box-shadow: 0 24px 55px rgba(42, 27, 22, 0.25);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  position: relative;
}
.story-card:hover { transform: translateY(-6px); box-shadow: 0 34px 70px rgba(42, 27, 22, 0.35); }
.story-card video, .story-card iframe {
  width: 100%; max-width: 100%; min-width: 0;
  aspect-ratio: 9 / 14; object-fit: cover; display: block; border: 0; background: #1d1310;
}
.story-follow-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; width: 100%; aspect-ratio: 9 / 14; text-decoration: none; text-align: center;
  background:
    radial-gradient(300px 220px at 70% 20%, rgba(201, 162, 39, 0.25), transparent 65%),
    var(--chocolate);
  padding: 24px;
}
.story-follow-logo { font-family: var(--font-display); font-size: 40px; color: var(--cream); }
.story-follow-logo span { color: var(--gold); }
.story-follow-text { color: var(--muted-light); font-size: 13.5px; max-width: 22ch; }
.story-card-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 13px 16px; color: var(--cream); font-size: 13px;
}
.story-card-meta a {
  color: var(--gold-2); text-decoration: none; font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; white-space: nowrap;
}
.story-card-meta a:hover { text-decoration: underline; }
.story .section-head { margin-bottom: 34px; }

/* ============================================================
   RESERVATION
   ============================================================ */
.reserve {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(201, 162, 39, 0.09), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--beige));
}
.reserve-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.reserve-copy p { color: var(--muted-dark); max-width: 50ch; }
.reserve-points { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.reserve-points li { display: flex; gap: 12px; align-items: center; font-size: 14.5px; }
.reserve-points li::before {
  content: "✓"; width: 24px; height: 24px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(201, 162, 39, 0.16); color: var(--terracotta); font-size: 12px; font-weight: 700;
}
.reserve-card { padding: 38px 36px; position: relative; overflow: hidden; }
.form-row { display: flex; gap: 16px; }
.form-row .ffield { flex: 1; }
.form-row-3 .ffield { flex: 1; min-width: 0; }
.ffield { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.ffield > span { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-dark); }
.ffield input, .ffield select, .ffield textarea {
  font-family: inherit; font-size: 14.5px; color: var(--text-dark);
  background: rgba(255, 255, 255, 0.72); border: 1px solid var(--line-dark);
  border-radius: 13px; padding: 13px 16px; outline: none; width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.ffield input:focus, .ffield select:focus, .ffield textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.14);
}
.ffield textarea { resize: vertical; }
.ffield.err input, .ffield.err select, .ffield.err textarea { border-color: #b3413a; box-shadow: 0 0 0 4px rgba(179, 65, 58, 0.12); }
.ffield .ffield-err { color: #b3413a; font-size: 11.5px; }

.reserve-success {
  position: absolute; inset: 0; padding: 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center;
  background: inherit; border-radius: inherit;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(20px);
  opacity: 0; visibility: hidden; transform: scale(0.96);
  transition: all 0.5s var(--ease);
}
.reserve-success.show { opacity: 1; visibility: visible; transform: none; }
.reserve-success svg { width: 88px; height: 88px; }
.success-circle {
  fill: none; stroke: var(--gold); stroke-width: 3;
  stroke-dasharray: 214; stroke-dashoffset: 214;
}
.success-check {
  fill: none; stroke: var(--terracotta); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 60; stroke-dashoffset: 60;
}
.reserve-success.show .success-circle { animation: dash 0.8s var(--ease) forwards; }
.reserve-success.show .success-check { animation: dash 0.5s 0.55s var(--ease) forwards; }
@keyframes dash { to { stroke-dashoffset: 0; } }
.reserve-success h3 { font-family: var(--font-display); font-size: 26px; }
.reserve-success p { color: var(--muted-dark); font-size: 14px; }

/* ============================================================
   EVENTS
   ============================================================ */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.event-card { overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s; }
.event-card:hover { transform: translateY(-8px); box-shadow: 0 34px 70px rgba(0, 0, 0, 0.4); }
.event-media { position: relative; aspect-ratio: 16/10.5; overflow: hidden; }
.event-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.event-card:hover .event-media img { transform: scale(1.08); }
.event-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(20, 16, 14, 0.62); backdrop-filter: blur(10px);
  color: var(--gold-2); font-size: 10.5px; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase;
  padding: 7px 14px; border-radius: 30px; border: 1px solid rgba(201, 162, 39, 0.35);
}
.event-date {
  position: absolute; right: 14px; bottom: -22px;
  background: var(--gold); color: var(--black); text-align: center;
  border-radius: 14px; padding: 8px 14px; line-height: 1.1;
  box-shadow: 0 12px 26px rgba(201, 162, 39, 0.4);
}
.event-date strong { font-family: var(--font-display); font-size: 22px; display: block; }
.event-date span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.event-body { padding: 32px 24px 26px; }
.event-body h3 { font-family: var(--font-display); font-size: 21px; font-weight: 500; margin-bottom: 8px; }
.event-body p { font-size: 13.5px; color: var(--muted-light); margin-bottom: 16px; }
.event-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 12.5px; color: var(--gold-2); }

/* ============================================================
   OFFERS
   ============================================================ */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.offer-card {
  display: flex; border-radius: 22px; overflow: hidden;
  background: var(--chocolate); color: var(--cream);
  box-shadow: 0 24px 55px rgba(42, 27, 22, 0.3);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  position: relative;
}
.offer-card::after {
  content: ""; position: absolute; left: 108px; top: -8px; bottom: -8px;
  border-left: 2px dashed rgba(245, 239, 230, 0.25);
}
.offer-card:hover { transform: translateY(-7px) rotate(-0.5deg); box-shadow: 0 34px 70px rgba(42, 27, 22, 0.45); }
.offer-value {
  width: 108px; flex-shrink: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--terracotta), #7d4212);
}
.offer-value strong { font-family: var(--font-display); font-size: 30px; }
.offer-value span { font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase; opacity: 0.85; }
.offer-body { padding: 26px 24px; }
.offer-body h3 { font-family: var(--font-display); font-size: 19px; font-weight: 500; margin-bottom: 8px; }
.offer-body p { font-size: 13px; color: var(--muted-light); margin-bottom: 16px; }
.offer-code {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(201, 162, 39, 0.1); border: 1.5px dashed rgba(201, 162, 39, 0.55);
  color: var(--gold-2); border-radius: 12px; padding: 9px 16px; cursor: pointer;
  font-family: ui-monospace, monospace; font-size: 13.5px; letter-spacing: 2.5px;
  transition: all 0.3s;
}
.offer-code:hover { background: rgba(201, 162, 39, 0.2); }
.offer-code-copy { font-family: var(--font-body); font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase; opacity: 0.75; }
.offer-valid { display: block; margin-top: 12px; font-size: 11.5px; color: var(--muted-light); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq-grid > div:first-child p { color: var(--muted-light); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line-light); border-radius: 16px;
  background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(10px);
  overflow: hidden; transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(201, 162, 39, 0.4); }
.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 19px 22px; font-weight: 500; font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; background: var(--gold); transition: transform 0.35s var(--ease);
}
.faq-plus::before { left: 0; right: 0; top: 7px; height: 2px; }
.faq-plus::after { top: 0; bottom: 0; left: 7px; width: 2px; }
.faq-item[open] .faq-plus::after { transform: scaleY(0); }
.faq-item p { padding: 0 22px 20px; color: var(--muted-light); font-size: 14px; }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.insta-handle { text-decoration: none; transition: color 0.3s; }
.insta-handle:hover { color: var(--terracotta); }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.insta-cell { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1; display: block; }
.insta-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.insta-cell:hover img { transform: scale(1.12) rotate(1.5deg); }
.insta-hover {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(42, 27, 22, 0.55); color: var(--cream);
  opacity: 0; transition: opacity 0.4s; backdrop-filter: blur(2px);
}
.insta-cell:hover .insta-hover { opacity: 1; }

/* ============================================================
   LOCATION
   ============================================================ */
.location-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 70px); }
.location-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 34px 0; }
.location-card { padding: 24px; }
.location-card h4 {
  font-size: 12px; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 10px;
}
.location-card p { font-size: 14px; color: var(--muted-light); }
.location-card a { color: inherit; text-decoration: none; }
.location-link { display: inline-block; margin-top: 12px; color: var(--gold-2) !important; font-size: 13px; font-weight: 500; }
.location-link:hover { text-decoration: underline !important; }
.contact-form { padding: 30px 28px; }
.contact-form h4 { font-family: var(--font-display); font-size: 21px; margin-bottom: 18px; font-weight: 500; }
.section-dark .ffield > span { color: var(--muted-light); }
.section-dark .ffield input, .section-dark .ffield select, .section-dark .ffield textarea {
  background: rgba(0, 0, 0, 0.3); border-color: var(--line-light); color: var(--cream);
}
.location-map { border-radius: 26px; overflow: hidden; min-height: 480px; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4); position: sticky; top: 100px; }
.location-map iframe { width: 100%; height: 100%; min-height: 640px; border: 0; filter: saturate(0.85) contrast(1.02); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative; overflow: hidden;
  background: var(--black-2); color: var(--cream); padding-top: 100px;
}
.footer-glow {
  position: absolute; width: 800px; height: 500px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201, 162, 39, 0.1), transparent);
  top: -160px; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.footer-cta { text-align: center; padding-bottom: 90px; border-bottom: 1px solid var(--line-light); }
.footer-cta-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(32px, 5.4vw, 64px); line-height: 1.15; margin-bottom: 36px;
}
.footer-cta-title em { color: var(--gold-2); font-style: italic; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 60px); padding: 70px 0 50px;
}
.footer-logo {
  font-family: var(--font-display); font-size: 34px; color: var(--cream);
  text-decoration: none; display: inline-block; margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }
.footer-col p { font-size: 13.5px; color: var(--muted-light); margin-bottom: 12px; }
.footer-col h4 { font-size: 12px; letter-spacing: 2.6px; text-transform: uppercase; color: var(--gold-2); margin-bottom: 18px; }
.footer-col > a { display: block; color: var(--muted-light); text-decoration: none; font-size: 14px; padding: 5px 0; transition: color 0.25s, transform 0.25s; width: fit-content; }
.footer-col > a:hover { color: var(--gold-2); transform: translateX(5px); }
.footer-col a { color: var(--muted-light); }
.footer-hours { white-space: pre-line; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-light); display: grid; place-items: center;
  color: var(--muted-light); transition: all 0.35s var(--ease);
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); transform: translateY(-4px) rotate(6deg); }
.newsletter-row {
  display: flex; background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-light); border-radius: 50px; padding: 5px;
  transition: border-color 0.3s;
}
.newsletter-row:focus-within { border-color: var(--gold); }
.newsletter-row input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--cream); padding: 10px 18px; font-family: inherit; font-size: 14px; min-width: 0;
}
.newsletter-row button {
  width: 46px; height: 46px; border-radius: 50%; border: none; flex-shrink: 0;
  background: var(--gold); color: var(--black); font-size: 18px; cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.newsletter-row button:hover { transform: rotate(-35deg) scale(1.06); background: var(--gold-2); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 24px 0 30px; border-top: 1px solid var(--line-light);
  font-size: 13px; color: var(--muted-light); flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--muted-light); text-decoration: none; transition: color 0.25s; }
.footer-legal a:hover { color: var(--gold-2); }
.footer-marquee { overflow: hidden; opacity: 0.05; pointer-events: none; }
.footer-marquee-track {
  display: flex; white-space: nowrap; width: max-content;
  font-family: var(--font-display); font-size: clamp(90px, 16vw, 220px); line-height: 1;
  animation: marquee 34s linear infinite;
}

/* ============================================================
   WHATSAPP FAB · POPUP
   ============================================================ */
.whatsapp-fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 700;
  width: 56px; height: 56px; border-radius: 50%;
  background: #22c15e; color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 34px rgba(34, 193, 94, 0.4);
  transition: transform 0.35s var(--ease);
  animation: fabIn 0.6s 2s var(--ease) backwards;
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab:hover { transform: scale(1.12) rotate(8deg); }
@keyframes fabIn { from { opacity: 0; transform: translateY(30px); } }

.popup-banner {
  position: fixed; inset: 0; z-index: 930;
  background: rgba(13, 10, 9, 0.7); backdrop-filter: blur(10px);
  display: grid; place-items: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: all 0.45s;
}
.popup-banner.show { opacity: 1; visibility: visible; }
.popup-card {
  position: relative; width: min(430px, 100%); text-align: center;
  background: var(--cream); border-radius: 26px; padding: 42px 36px;
  transform: translateY(30px) scale(0.96); transition: transform 0.5s var(--ease);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.5);
}
.popup-banner.show .popup-card { transform: none; }
.popup-card img { border-radius: 16px; margin-bottom: 20px; max-height: 200px; object-fit: cover; width: 100%; }
.popup-card h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 10px; }
.popup-card p { color: var(--muted-dark); font-size: 14px; margin-bottom: 24px; }
.popup-close { background: rgba(0, 0, 0, 0.06); color: var(--text-dark); top: 14px; right: 14px; width: 38px; height: 38px; }

/* ============================================================
   DISH MODAL
   ============================================================ */
.dish-modal {
  position: fixed; inset: 0; z-index: 910;
  background: rgba(13, 10, 9, 0.8); backdrop-filter: blur(14px);
  display: grid; place-items: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: all 0.4s;
}
.dish-modal.open { opacity: 1; visibility: visible; }
.dish-modal-card {
  position: relative; width: min(760px, 100%); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  background: rgba(30, 23, 19, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: var(--cream);
  transform: translateY(34px) scale(0.97); transition: transform 0.5s var(--ease);
}
.dish-modal.open .dish-modal-card { transform: none; }
.dish-modal-media { min-height: 380px; }
.dish-modal-media img { width: 100%; height: 100%; object-fit: cover; }
.dish-modal-body { padding: 40px 34px; display: flex; flex-direction: column; }
.dish-modal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.dish-modal-body h3 { font-family: var(--font-display); font-size: 30px; font-weight: 500; margin-bottom: 12px; }
.dish-modal-body p { color: var(--muted-light); font-size: 14.5px; flex: 1; }
.dish-modal-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 26px; }
.dish-modal-price { font-family: var(--font-display); font-size: 32px; color: var(--gold-2); }
.dish-modal-price s { font-size: 17px; color: var(--muted-light); margin-left: 10px; font-family: var(--font-body); }
.wish-btn {
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, 0.07); border: 1px solid var(--line-light);
  color: var(--cream); display: grid; place-items: center; transition: all 0.3s var(--ease);
}
.wish-btn svg { width: 22px; height: 22px; }
.wish-btn:hover { transform: scale(1.1); border-color: var(--gold); }
.wish-btn.active { background: #b3413a; border-color: #b3413a; color: #fff; }

/* ============================================================
   SUBPAGES (page-hero, blog, post, careers, 404)
   ============================================================ */
.page-hero {
  position: relative; padding: 200px 0 90px; text-align: center;
  background:
    radial-gradient(720px 480px at 50% -20%, rgba(201, 162, 39, 0.16), transparent 65%),
    linear-gradient(180deg, #2e1d16, #23150f);
  color: var(--cream); overflow: hidden;
}
.page-hero-sm { padding: 170px 0 70px; }
.page-hero-glow {
  position: absolute; width: 720px; height: 480px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201, 162, 39, 0.14), transparent);
  top: -120px; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.page-hero .section-eyebrow { justify-content: center; }
.page-hero-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 6vw, 72px); line-height: 1.1; margin-bottom: 18px;
}
.page-hero-title em { font-style: italic; color: var(--gold-2); }
.page-hero-sub { color: var(--muted-light); max-width: 56ch; margin: 0 auto; font-weight: 300; }
.notfound-code {
  font-family: var(--font-display); font-size: clamp(80px, 16vw, 160px);
  line-height: 1; color: rgba(201, 162, 39, 0.16); margin-bottom: -20px;
}
.notfound .hero-actions { margin-top: 36px; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 30px; }
.blog-grid-3 { grid-template-columns: repeat(3, 1fr); }
.blog-card { overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 34px 70px rgba(42, 27, 22, 0.22); }
.blog-card-media { display: block; position: relative; aspect-ratio: 16/10; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.blog-card:hover .blog-card-media img { transform: scale(1.08); }
.blog-cat {
  position: absolute; top: 14px; left: 14px;
  background: rgba(20, 16, 14, 0.65); backdrop-filter: blur(8px); color: var(--gold-2);
  font-size: 10.5px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
  padding: 7px 14px; border-radius: 30px;
}
.blog-card-body { padding: 26px 24px; }
.blog-date { font-size: 12px; color: var(--muted-dark); letter-spacing: 0.6px; }
.blog-card-body h3 { font-family: var(--font-display); font-size: 21px; font-weight: 500; margin: 10px 0; line-height: 1.35; }
.blog-card-body h3 a { text-decoration: none; transition: color 0.3s; }
.blog-card-body h3 a:hover { color: var(--terracotta); }
.blog-card-body p { font-size: 13.5px; color: var(--muted-dark); margin-bottom: 16px; }
.blog-more { font-size: 13px; font-weight: 600; color: var(--terracotta); text-decoration: none; }
.blog-more:hover { text-decoration: underline; }

.post-hero { padding: 190px 0 50px; background: var(--black); color: var(--cream); text-align: center; position: relative; overflow: hidden; }
.post-meta { color: var(--muted-light); font-size: 13.5px; }
.post-cover { border-radius: 24px; overflow: hidden; margin: -40px auto 50px; position: relative; z-index: 2; box-shadow: 0 34px 80px rgba(42, 27, 22, 0.3); }
.post-content { font-size: 16.5px; line-height: 1.85; color: #46312b; }
.post-content h2, .post-content h3 { font-family: var(--font-display); color: var(--coffee); margin: 34px 0 14px; font-weight: 500; }
.post-content h2 { font-size: 28px; } .post-content h3 { font-size: 22px; }
.post-content p { margin-bottom: 18px; }
.post-content ul, .post-content ol { margin: 0 0 18px 22px; }
.post-content a { color: var(--terracotta); }
.post-content blockquote {
  border-left: 3px solid var(--gold); padding: 8px 0 8px 22px; margin: 24px 0;
  font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--coffee);
}
.post-content img { border-radius: 16px; }
.post-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 36px 0; }
.tag {
  font-size: 12px; padding: 7px 15px; border-radius: 30px;
  background: rgba(75, 46, 43, 0.07); border: 1px solid var(--line-dark); color: var(--muted-dark);
}
.tag-gold { background: rgba(201, 162, 39, 0.12); border-color: rgba(201, 162, 39, 0.4); color: #8a6b12; }

.comments { margin: 60px 0; }
.comments h2, .related h2 { font-family: var(--font-display); font-size: 26px; margin-bottom: 26px; font-weight: 500; }
.comment { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-dark); }
.comment-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--chocolate); color: var(--gold); display: grid; place-items: center;
  font-family: var(--font-display); font-size: 18px;
}
.comment p { font-size: 14.5px; color: var(--muted-dark); margin-top: 4px; }
.comment-form { padding: 30px 28px; margin-top: 34px; }
.comment-form h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 18px; font-weight: 500; }
.related { margin-bottom: 60px; }

.jobs-list { display: flex; flex-direction: column; gap: 22px; }
.job-card { padding: 32px 34px; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.job-card:hover { transform: translateY(-4px); box-shadow: 0 26px 60px rgba(42, 27, 22, 0.18); }
.job-head { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 12px; }
.job-head h3 { font-family: var(--font-display); font-size: 23px; font-weight: 500; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-card p { color: var(--muted-dark); font-size: 14.5px; margin-bottom: 22px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .about-grid, .special-grid, .reserve-grid, .faq-grid, .location-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 480px; max-width: 560px; }
  .events-grid, .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 60px; }
  .timeline-line { display: none; }
  .timeline { padding-top: 0; }
  .timeline-item::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .location-map { min-height: 380px; position: static; }
  .location-map iframe { min-height: 380px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-reserve { display: none; }
  .section { padding: 80px 0; }
  .container { padding: 0 22px; }
  .events-grid, .offers-grid, .blog-grid-3 { grid-template-columns: 1fr; }
  .dish-modal-card { grid-template-columns: 1fr; max-height: 88vh; overflow-y: auto; }
  .dish-modal-media { min-height: 240px; max-height: 300px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .featured-rail { padding: 10px 22px 26px; }
  .form-row { flex-direction: column; gap: 0; }
  .form-row-3 { flex-direction: row; gap: 12px; }
  .hero-actions .btn-lg { padding: 15px 30px; }
  .location-cards { grid-template-columns: 1fr; }
  .whatsapp-fab { right: 18px; bottom: 18px; width: 50px; height: 50px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 560px) {
  /* story rail: compact reel cards */
  .story-rail { padding: 10px 22px 22px; gap: 14px; }
  .story-card { flex: 0 0 min(272px, 76vw); }
  /* menu: two dishes side by side on mobile */
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dish-media { aspect-ratio: 1 / 1; }
  .dish-body { padding: 12px 13px 14px; }
  .dish-body h3 { font-size: 15px; margin: 4px 0 5px; }
  .dish-body p { font-size: 11px; min-height: 0; display: none; }
  .dish-body small { font-size: 9px; letter-spacing: 1.2px; }
  .dish-price { font-size: 16px; }
  .dish-price s { font-size: 12px; margin-left: 5px; }
  .dish-badges { top: 8px; left: 8px; gap: 4px; }
  .dish-badge { font-size: 8.5px; padding: 4px 8px; letter-spacing: 0.8px; }
  .dish-veg { top: 9px; right: 9px; width: 16px; height: 16px; }
  .dish-wish { width: 34px; height: 34px; right: 9px; bottom: 9px; opacity: 1; transform: none; }
  .view-more-card { min-height: 200px; }
  .view-more-card .view-more-inner strong { font-size: 18px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; row-gap: 40px; }
  .masonry { columns: 2 150px; column-gap: 12px; }
  .masonry-item { margin-bottom: 12px; border-radius: 12px; }
  .countdown div { min-width: 62px; padding: 10px 6px; }
  .countdown b { font-size: 23px; }
  .menu-filters { width: 100%; }
  .menu-filters input { flex: 1; width: auto; }
  .reserve-card { padding: 28px 22px; }
  .form-row-3 { flex-direction: column; gap: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .grain { display: none; }
}
