/* ═══════════════════════════════════════════════════════════════
   GOSTILNA ZLATI HRAST — Premium Stylesheet
   Warm Dark · Gold · Cormorant Garamond · Inter
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ────────────────────────────────────────────── */
:root {
  --bg:        #0C0A07;
  --bg2:       #131008;
  --bg3:       #1C160E;
  --bg4:       #241C12;
  --gold:      #C9A96E;
  --gold-l:    #E8D5A3;
  --gold-d:    #8A6B3A;
  --gold-glow: rgba(201,169,110,.18);
  --cream:     #F2EAD3;
  --text:      #9A8E7A;
  --text-l:    #C8BCA8;
  --text-ll:   #F2EAD3;
  --border:    rgba(201,169,110,.12);
  --border-h:  rgba(201,169,110,.28);
  --radius:    4px;
  --radius-lg: 8px;
  --trans:     .35s cubic-bezier(.4,0,.2,1);
  --font-d:    'Cormorant Garamond', Georgia, serif;
  --font-b:    'Inter', 'DM Sans', sans-serif;
  --wrap:      min(1200px, 92vw);
}

/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul { list-style: none; }
::selection { background: var(--gold-d); color: var(--cream); }

/* ── SCROLLBAR ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-d); border-radius: 2px; }

/* ── NOISE TEXTURE ────────────────────────────────────────────── */
.noise {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-d);
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; }
h4 { font-size: 1rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
p { font-size: clamp(.9rem, 1.5vw, 1rem); line-height: 1.85; }
em { font-family: var(--font-d); font-style: italic; }

.gold-text { color: var(--gold); }
.italic-serif { font-family: var(--font-d); font-style: italic; color: var(--gold); }

/* ── LAYOUT ───────────────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(80px, 10vw, 140px) 0; }

/* Section headings */
.sec-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-b); font-size: .72rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.sec-tag::before, .sec-tag::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.sec-tag.no-line::before, .sec-tag.no-line::after { display: none; }
.sec-title { color: var(--cream); margin-bottom: 20px; }
.sec-sub { color: var(--text); max-width: 560px; }
.sec-sub.center { max-width: 580px; margin: 0 auto; text-align: center; }
.sec-hd { text-align: center; margin-bottom: clamp(50px, 7vw, 80px); }
.sec-hd .sec-tag { justify-content: center; }

/* ── GOLD DIVIDER ─────────────────────────────────────────────── */
.gold-line {
  width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px 0;
}
.gold-line.center { margin: 24px auto; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-b); font-size: .82rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  transition: var(--trans); cursor: pointer;
}
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; transition: transform .3s; }
.btn:hover svg { transform: translateX(4px); }

.btn-gold {
  background: var(--gold); color: var(--bg);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-l); border-color: var(--gold-l); }

.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--border-h);
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-glow); }

.btn-ghost {
  background: transparent; color: var(--text-l);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--cream); border-color: var(--border-h); }

.btn-lg { padding: 17px 36px; font-size: .86rem; }

/* ── NAVIGATION ───────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--trans), backdrop-filter var(--trans), border-color var(--trans);
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(12,10,7,.88);
  backdrop-filter: blur(24px) saturate(1.4);
  border-color: var(--border);
}
.nav-wrap {
  max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
  height: 80px;
}

.nav-logo { flex-shrink: 0; }
.logo-main { display: block; font-family: var(--font-d); font-size: 1.5rem; font-weight: 400; color: var(--cream); letter-spacing: .05em; line-height: 1; }
.logo-sub { display: block; font-size: .62rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.nav-links { flex: 1; display: flex; justify-content: center; gap: 6px; }
.nav-links a {
  font-size: .72rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text); padding: 8px 14px; border-radius: var(--radius);
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px; background: var(--gold); transition: width .35s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }

.nav-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

.lang-switch { display: flex; align-items: center; gap: 6px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.lang-switch a { color: var(--text); transition: color var(--trans); }
.lang-switch a:hover, .lang-switch .lang-active { color: var(--gold); }
.lang-sep { color: var(--border-h); }

.nav-reserve { display: none; }

.nav-burger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; }
.nav-burger span { display: block; height: 1px; background: var(--cream); transition: var(--trans); transform-origin: center; }

/* Mobile nav */
.nav-overlay {
  position: fixed; inset: 0; z-index: 1100; background: rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; transition: var(--trans);
  backdrop-filter: blur(4px);
}
.nav-overlay.open { opacity: 1; visibility: visible; }

.nav-mobile {
  position: fixed; top: 0; right: -100%; bottom: 0; z-index: 1200;
  width: min(340px, 88vw); background: var(--bg2);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column; padding: 30px 32px 40px;
  transition: right .45s cubic-bezier(.4,0,.2,1);
}
.nav-mobile.open { right: 0; }
.nav-mobile-close {
  align-self: flex-end; margin-bottom: 24px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%;
}
.nav-mobile-close svg { width: 18px; height: 18px; stroke: var(--text-l); fill: none; stroke-width: 1.5; }
.nav-mobile-logo { font-family: var(--font-d); font-size: 1.8rem; color: var(--cream); margin-bottom: 32px; }
.nav-mobile-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.nav-mobile-links a {
  font-family: var(--font-d); font-size: 1.5rem; font-weight: 300;
  color: var(--text-l); padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--trans), padding-left var(--trans);
}
.nav-mobile-links a:hover { color: var(--gold); padding-left: 8px; }
.nav-mobile-lang { display: flex; gap: 16px; margin-top: 28px; margin-bottom: 20px; }
.nav-mobile-lang a { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text); transition: color var(--trans); }
.nav-mobile-lang .lang-active { color: var(--gold); }
.nav-mobile-cta { text-align: center; justify-content: center; }

/* ── PAGE HERO ────────────────────────────────────────────────── */
.page-hero {
  min-height: 55vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 0 80px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.22) saturate(.7);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,10,7,.3) 0%, var(--bg) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content .sec-tag { margin-bottom: 16px; }
.page-hero-content h1 { margin-bottom: 16px; }
.page-hero-content p { max-width: 520px; }

/* ── HOME HERO ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  filter: brightness(.18) saturate(.6);
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1.08); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,10,7,.85) 0%, rgba(12,10,7,.5) 60%, rgba(12,10,7,.7) 100%);
}
.hero-deco { display: none; }
.hero-deco-line { display: none; }
.hero-content {
  position: relative; z-index: 1;
  padding: 100px 0 80px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .7rem; font-weight: 500; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); animation: pulse 2.5s infinite; }
.hero-title {
  font-family: var(--font-d); font-weight: 300;
  font-size: clamp(3.2rem, 7vw, 7rem);
  color: var(--cream); line-height: 1.05;
  margin-bottom: 28px;
}
.hero-title .italic { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: var(--text-l); max-width: 500px; line-height: 1.85;
  margin-bottom: 44px;
}
.hero-acts { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 1;
}
.hero-scroll span { font-size: .62rem; letter-spacing: .25em; text-transform: uppercase; color: var(--text); }
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.3;transform:scaleY(.4)} }

/* ── ABOUT TEASER ─────────────────────────────────────────────── */
.about-teaser {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 100px);
  align-items: center;
}
.about-teaser-img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5;
}
.about-teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.about-teaser-img-accent { display: none; }
.about-text-wrap p { color: var(--text-l); margin-bottom: 20px; }

/* ── DISH CARDS ───────────────────────────────────────────────── */
.dishes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 60px;
}
.dish-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.dish-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(201,169,110,.08);
}
.dish-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; filter: brightness(.9) saturate(.85); }
.dish-card:hover .dish-img img { transform: scale(1.07); filter: brightness(1) saturate(1); }
.dish-body { padding: 24px; }
.dish-tag {
  font-size: .62rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.dish-title { font-family: var(--font-d); font-size: 1.4rem; color: var(--cream); margin-bottom: 8px; }
.dish-desc { font-size: .88rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.dish-price { font-family: var(--font-d); font-size: 1.2rem; color: var(--gold); }

/* ── ATMOSPHERE SECTION ───────────────────────────────────────── */
.atm-section {
  position: relative; overflow: hidden;
  min-height: 65vh; display: flex; align-items: center;
}
.atm-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  filter: brightness(.2) saturate(.5);
}
.atm-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,10,7,.92) 0%, rgba(12,10,7,.4) 60%, transparent 100%);
}
.atm-content { position: relative; z-index: 1; max-width: 560px; }
.atm-content p { color: var(--text-l); font-size: 1.05rem; line-height: 1.85; margin-bottom: 32px; }

/* ── STATS ────────────────────────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
}
.stat-item {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat-num {
  display: block; font-family: var(--font-d); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text); }

/* ── CTA BANNER ───────────────────────────────────────────────── */
.cta-banner {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(50px, 8vw, 90px) clamp(32px, 6vw, 80px);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--cream); margin-bottom: 12px; }
.cta-banner p { color: var(--text-l); max-width: 440px; }
.cta-acts { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ── MENU PAGE ────────────────────────────────────────────────── */
.menu-tabs {
  display: flex; gap: 4px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px; padding: 6px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 40px; width: fit-content; margin: 0 auto 60px;
}
.menu-tab {
  padding: 10px 24px; border-radius: 36px;
  font-size: .72rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text); transition: var(--trans); cursor: none;
}
.menu-tab:hover { color: var(--cream); }
.menu-tab.active { background: var(--gold); color: var(--bg); }

.menu-panel { display: none; animation: fadeIn .4s ease; }
.menu-panel.active { display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }

.menu-cat-title {
  font-family: var(--font-d); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300;
  color: var(--cream); margin-bottom: 8px; font-style: italic;
}
.menu-cat-sub { font-size: .88rem; color: var(--text); margin-bottom: 40px; }
.menu-list { display: flex; flex-direction: column; gap: 2px; }

.menu-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--border);
  transition: border-color var(--trans);
}
.menu-item:hover { border-color: var(--border-h); }
.menu-item-body { flex: 1; }
.menu-item-name {
  font-family: var(--font-d); font-size: 1.25rem; color: var(--cream);
  margin-bottom: 4px; display: flex; align-items: center; gap: 12px;
}
.menu-badge {
  font-family: var(--font-b); font-size: .58rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 20px;
  border: 1px solid var(--gold-d); color: var(--gold);
}
.menu-item-desc { font-size: .88rem; color: var(--text); }
.menu-item-price {
  font-family: var(--font-d); font-size: 1.3rem; color: var(--gold);
  flex-shrink: 0; align-self: center;
}
.menu-note-box {
  margin-top: 50px; padding: 24px 28px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  font-size: .88rem; color: var(--text); font-style: italic;
}

/* ── ABOUT PAGE ───────────────────────────────────────────────── */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.story-images { position: relative; }
.story-img-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; }
.story-img-main img { width: 100%; height: 100%; object-fit: cover; }
.story-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 55%; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden;
  border: 3px solid var(--bg);
}
.story-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.story-text p { color: var(--text-l); margin-bottom: 22px; font-size: 1.02rem; }

.chef-section {
  display: grid; grid-template-columns: auto 1fr; gap: 60px;
  align-items: center;
}
.chef-img { width: 280px; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; flex-shrink: 0; }
.chef-img img { width: 100%; height: 100%; object-fit: cover; }
.chef-title { font-family: var(--font-d); font-size: 2.5rem; font-weight: 300; color: var(--cream); margin-bottom: 4px; }
.chef-role { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.chef-text { color: var(--text-l); font-size: 1.02rem; line-height: 1.85; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.value-card {
  padding: 36px 28px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: border-color var(--trans), transform var(--trans);
}
.value-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.value-num {
  font-family: var(--font-d); font-size: 3rem; font-weight: 300;
  color: rgba(201,169,110,.15); line-height: 1; margin-bottom: 16px;
}
.value-title { font-family: var(--font-d); font-size: 1.4rem; color: var(--cream); margin-bottom: 12px; }
.value-text { font-size: .92rem; color: var(--text); }

/* ── GALLERY PAGE ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: none; aspect-ratio: 4/3;
}
.gallery-item:nth-child(4n+1) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease, filter .5s;
  filter: brightness(.85) saturate(.8);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1) saturate(1); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,10,7,.85) 100%);
  opacity: 0; transition: opacity .4s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { font-family: var(--font-d); font-size: 1.1rem; color: var(--cream); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.95); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.5; }

/* ── RESERVATIONS / CONTACT FORMS ─────────────────────────────── */
.form-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
input, select, textarea {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  color: var(--cream); font-family: var(--font-b); font-size: .95rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none; width: 100%;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold-d);
  box-shadow: 0 0 0 3px rgba(201,169,110,.08);
}
select { cursor: pointer; }
select option { background: var(--bg2); }
textarea { resize: vertical; min-height: 120px; }
.form-submit { grid-column: 1/-1; margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

.info-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 32px; position: sticky; top: 100px;
}
.info-card h3 { font-family: var(--font-d); font-size: 1.5rem; color: var(--cream); margin-bottom: 24px; }
.info-row {
  display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.info-icon svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.info-row-label { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.info-row-val { font-size: .92rem; color: var(--text-l); }

.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text); }
.hours-val { color: var(--cream); font-family: var(--font-d); font-size: 1rem; }

/* Map */
.map-wrap { margin-top: 60px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 380px; filter: grayscale(1) invert(1) contrast(.8); }

/* ── FOOTER ───────────────────────────────────────────────────── */
#site-footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.footer-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,169,110,.04) 0%, transparent 70%);
  pointer-events: none;
}
.footer-wrap {
  max-width: var(--wrap); margin: 0 auto; padding: 80px 24px 60px;
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 60px;
}
.footer-logo { font-family: var(--font-d); font-size: 2rem; font-weight: 300; color: var(--cream); margin-bottom: 12px; }
.footer-tagline { color: var(--text); font-size: .9rem; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--trans), background var(--trans);
}
.footer-socials a:hover { border-color: var(--gold); background: var(--gold-glow); }
.footer-socials svg { width: 16px; height: 16px; stroke: var(--text-l); fill: none; stroke-width: 1.5; }

.footer-col h4 { font-family: var(--font-b); font-size: .68rem; letter-spacing: .2em; color: var(--gold); margin-bottom: 20px; }
.footer-col a, .footer-col span {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--text); margin-bottom: 10px; line-height: 1.6;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--cream); }
.footer-col svg { width: 14px; height: 14px; stroke: var(--gold-d); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  max-width: var(--wrap); margin: 0 auto; padding: 24px 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: .78rem; color: var(--text);
}
.footer-bottom a { transition: color var(--trans); }
.footer-bottom a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
.fu {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fu.visible { opacity: 1; transform: none; }
.fu:nth-child(2) { transition-delay: .1s; }
.fu:nth-child(3) { transition-delay: .2s; }
.fu:nth-child(4) { transition-delay: .3s; }

/* ── ANIMATIONS ───────────────────────────────────────────────── */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }

.hero-content .hero-tag  { animation: fadeInUp .8s .2s both; }
.hero-content .hero-title{ animation: fadeInUp .9s .4s both; }
.hero-content .hero-sub  { animation: fadeInUp .8s .6s both; }
.hero-content .hero-acts { animation: fadeInUp .8s .8s both; }

/* ── EVENT PREVIEW CARDS ──────────────────────────────────────── */
.event-preview-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: border-color var(--trans), transform var(--trans);
}
.event-preview-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity var(--trans);
}
.event-preview-card:hover { border-color: var(--border-h); transform: translateY(-5px); }
.event-preview-card:hover::before { opacity: 1; }
.ep-day {
  font-size: .65rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.ep-title { font-family: var(--font-d); font-size: 1.6rem; color: var(--cream); margin-bottom: 12px; }
.ep-desc { font-size: .9rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.ep-time {
  font-family: var(--font-d); font-size: 2.2rem; font-weight: 300;
  color: rgba(201,169,110,.25); line-height: 1;
}

/* ── EVENTS PAGE ──────────────────────────────────────────────── */
.weekly-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.weekly-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: border-color var(--trans);
}
.weekly-item:hover { border-color: var(--border-h); }
.weekly-day-block {
  flex-shrink: 0; width: 64px; text-align: center;
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 10px 8px;
}
.weekly-day { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.weekly-time { font-family: var(--font-d); font-size: 1rem; color: var(--cream); margin-top: 4px; }
.weekly-info h4 { font-family: var(--font-d); font-size: 1.2rem; font-weight: 400; color: var(--cream); margin-bottom: 6px; }
.weekly-info p { font-size: .88rem; color: var(--text); line-height: 1.6; }

.upcoming-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.upcoming-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color var(--trans), transform var(--trans);
}
.upcoming-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.upcoming-img { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.upcoming-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75) saturate(.7); transition: transform .6s, filter .5s; }
.upcoming-card:hover .upcoming-img img { transform: scale(1.06); filter: brightness(.9) saturate(.9); }
.upcoming-date {
  position: absolute; top: 14px; left: 14px;
  background: var(--bg); border: 1px solid var(--gold); border-radius: var(--radius);
  padding: 6px 12px; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold);
}
.upcoming-body { padding: 24px; }
.upcoming-body h3 { font-family: var(--font-d); font-size: 1.3rem; color: var(--cream); margin-bottom: 8px; }
.upcoming-body p { font-size: .88rem; color: var(--text); line-height: 1.65; }

.private-box {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.private-box::before {
  content: ''; position: absolute; top: -60%; right: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-reserve { display: none !important; }
  .nav-burger { display: flex; }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser, .story-grid, .chef-section { grid-template-columns: 1fr; }
  .story-images { display: none; }
  .chef-img { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .info-card { position: static; }
  .footer-wrap { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-banner p { max-width: 100%; }
  .upcoming-grid { grid-template-columns: 1fr 1fr; }
  .weekly-grid { grid-template-columns: 1fr; }
  .private-box { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .dishes-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(4n+1) { grid-column: span 1; aspect-ratio: 4/3; }
  .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-wrap { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .about-teaser { gap: 40px; }
  .about-teaser[style*="rtl"] { direction: ltr; }
  .menu-tabs { width: 100%; border-radius: var(--radius-lg); }
  .upcoming-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.6rem; }
  .hero-acts { flex-direction: column; align-items: flex-start; }
  .hero-acts .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(4n+1) { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

