/* ============================================================
   CHERRY'S BISTRO BAR — CINEMATIC DESIGN SYSTEM
   Mobile-first · EN / DE / FR
   ============================================================ */

:root {
  --bg-deep:    #0E0B08;
  --bg-mid:     #181310;
  --bg-warm:    #251D16;
  --bg-light:   #F5EEE3;
  --bg-light2:  #EDE4D4;
  --text:       #F5EEE3;
  --text-muted: #A8977E;
  --text-dim:   #6A5840;
  --text-dark:  #1A1108;
  --gold:       #C8A96A;
  --gold-dark:  #A8893A;
  --gold-light: #E8C98A;
  --cherry:     #C04A5A;
  --cherry-dim: rgba(192, 74, 90, 0.12);
  --gold-glow:  rgba(200, 169, 106, 0.12);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans:  'Inter', sans-serif;
  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;
  --radius-full: 9999px;
  --shadow-gold: 0 8px 40px rgba(200, 169, 106, 0.25);
  --shadow-deep: 0 16px 70px rgba(0, 0, 0, 0.55);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --cookie-h: 0px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ===== GRAIN TEXTURE ===== */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23g)' opacity='0.45'/%3E%3C/svg%3E");
  opacity: 0.025;
  mix-blend-mode: overlay;
}

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 0.625rem;
  color: var(--gold); font-size: 0.67rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-tag::before {
  content: ''; display: block; width: 2rem; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent); opacity: 0.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: var(--radius-full);
  padding: 0.875rem 1.75rem; cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color: #1A1108;
  box-shadow: 0 4px 24px rgba(200, 169, 106, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(200, 169, 106, 0.52); }
.btn-glass {
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 169, 106, 0.22);
  color: var(--text);
}
.btn-glass:hover { background: rgba(200, 169, 106, 0.1); border-color: rgba(200, 169, 106, 0.45); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(200, 169, 106, 0.35); color: var(--gold); }
.btn-outline:hover { background: rgba(200, 169, 106, 0.08); border-color: var(--gold); transform: translateY(-2px); }
.btn-light { background: var(--text); color: var(--bg-deep); font-weight: 600; }
.btn-light:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200, 169, 106, 0.3); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.7rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 0.82rem; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  background: rgba(14, 11, 8, 0.45);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 169, 106, 0.06);
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  padding: 0.6rem 0;
  background: rgba(14, 11, 8, 0.96);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border-bottom-color: rgba(200, 169, 106, 0.1);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.nav-content { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.5rem; z-index: 10; }
.logo-mark {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #1A1108; font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 700; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(200, 169, 106, 0.3);
  transition: box-shadow var(--transition), transform var(--transition);
}
.logo:hover .logo-mark { transform: scale(1.05); box-shadow: var(--shadow-gold); }
.logo-text { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--text); display: none; letter-spacing: 0.02em; }
.logo-sub { font-size: 0.58rem; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; display: none; margin-top: 0.05rem; }
.nav-links { display: none; gap: 2rem; }
.nav-links a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(245, 238, 227, 0.88);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.lang-switcher { display: none; gap: 0.2rem; }
.lang-btn { padding: 0.28rem 0.55rem; font-size: 0.65rem; font-weight: 500; color: var(--text-muted); border-radius: var(--radius-sm); transition: all var(--transition); letter-spacing: 0.06em; }
.lang-btn:hover, .lang-btn.active { color: var(--gold); background: rgba(200, 169, 106, 0.1); }
.nav-call { display: none; color: var(--text-muted); transition: color var(--transition); padding: 0.5rem; }
.nav-call:hover { color: var(--gold); }
.menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; }
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.mobile-menu-bd {
  position: fixed; inset: 0; z-index: 98;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-menu-bd.active { opacity: 1; pointer-events: all; }
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 99;
  width: min(82vw, 300px);
  background: rgba(14, 11, 8, 0.99);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(200, 169, 106, 0.1);
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.mobile-menu.active { transform: translateX(0); pointer-events: all; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 0; }
.mobile-menu-inner a { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 300; color: var(--text); transition: color var(--transition); letter-spacing: 0.02em; padding: 0.85rem 0; border-bottom: 1px solid rgba(200,169,106,0.08); display: block; }
.mobile-menu-inner a:hover { color: var(--gold); }
.mobile-menu-phone { font-size: 0.88rem !important; color: var(--gold) !important; letter-spacing: 0.1em !important; font-family: var(--font-sans) !important; font-weight: 400 !important; padding: 1.25rem 0 0 !important; border-bottom: none !important; border-top: 1px solid rgba(200,169,106,0.15) !important; margin-top: 0.25rem; }
.mobile-lang { display: flex; justify-content: flex-start; gap: 0.75rem; padding-top: 1rem; }

/* ===== KEYFRAMES ===== */
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
@keyframes heroUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; opacity: 1; } 50% { transform: scaleY(1); transform-origin: top; opacity: 1; } 100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; } }
@keyframes conciergeRing { 0% { transform: scale(1); opacity: 0.55; } 100% { transform: scale(1.55); opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: 5rem; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.hero-bg-zoom {
  position: absolute; inset: -8%;
  background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1920&q=80');
  background-size: cover; background-position: center 35%;
  animation: heroZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(158deg, rgba(14,11,8,0.88) 0%, rgba(14,11,8,0.38) 45%, rgba(14,11,8,0.95) 100%);
}
.hero-overlay::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,11,8,0.9) 0%, transparent 50%);
}
.hero-ambient {
  position: absolute; z-index: 2; width: 70vmax; height: 70vmax; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(200,169,106,0.06) 0%, transparent 68%);
  top: 38%; left: 32%; transform: translate(-50%, -50%); pointer-events: none;
}
.hero-content { position: relative; z-index: 3; max-width: 700px; padding: 0 1.25rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.875rem;
  font-size: 0.65rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 1.25rem;
  animation: heroUp 0.85s ease 0.2s both;
}
.hero-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: linear-gradient(to right, var(--gold), transparent); }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 11vw, 7rem);
  font-weight: 300; line-height: 0.92; letter-spacing: -0.025em;
  color: var(--text); margin-bottom: 0.5rem;
  text-shadow: 0 4px 60px rgba(0,0,0,0.5);
  animation: heroUp 1s ease 0.4s both;
}
.hero-title-welcome {
  display: block; font-size: 0.55em; font-weight: 300;
  letter-spacing: 0.06em; color: rgba(245,238,227,0.7); margin-bottom: 0.2rem;
}
.hero-title-name { font-style: italic; }
.hero-subtitle {
  font-size: 1rem; color: rgba(245, 238, 227, 0.78);
  max-width: 460px; line-height: 1.78; margin-bottom: 0.75rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
  animation: heroUp 0.85s ease 0.65s both;
}
.hero-urgency { font-size: 0.7rem; color: var(--gold); font-style: italic; letter-spacing: 0.04em; margin-bottom: 2rem; opacity: 0.85; animation: heroUp 0.8s ease 0.82s both; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; animation: heroUp 0.85s ease 0.98s both; }
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  animation: heroUp 0.8s ease 1.15s both;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(14, 11, 8, 0.5); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200,169,106,0.16); border-radius: var(--radius-full);
  padding: 0.3rem 0.75rem; font-size: 0.63rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(245,238,227,0.75);
}
.trust-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.7; }

.hero-glass-card {
  display: none; position: absolute; bottom: 3rem; right: 2rem; z-index: 4; width: 300px;
  background: rgba(14, 11, 8, 0.74); backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(200, 169, 106, 0.18); border-radius: var(--radius-xl); padding: 1.75rem;
  box-shadow: 0 28px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  animation: heroUp 0.9s ease 1.2s both;
  transition: bottom var(--transition);
}
.card-available { display: flex; align-items: center; gap: 0.5rem; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: #6EBF80; margin-bottom: 1rem; }
.card-dot { width: 6px; height: 6px; border-radius: 50%; background: #6EBF80; animation: pulseDot 2s ease infinite; }
.hero-glass-card h3 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500; color: var(--text); margin-bottom: 0.25rem; }
.hero-glass-card > p { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.card-divider { height: 1px; background: rgba(200,169,106,0.12); margin: 1rem 0; }
.card-meta { display: flex; justify-content: space-between; margin-bottom: 1.25rem; }
.card-meta span { font-size: 0.7rem; color: var(--text-muted); }
.card-meta strong { display: block; font-size: 0.88rem; color: var(--text); font-weight: 500; margin-top: 0.15rem; }
.card-phone { display: block; text-align: center; margin-top: 0.75rem; font-size: 0.73rem; color: var(--text-muted); transition: color var(--transition); }
.card-phone:hover { color: var(--gold); }

.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero-scroll-line { width: 1px; height: 2.5rem; background: linear-gradient(to bottom, rgba(200,169,106,0.6), transparent); animation: scrollLine 2s ease-in-out infinite; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--bg-mid); border-top: 1px solid rgba(200,169,106,0.07); border-bottom: 1px solid rgba(200,169,106,0.07); padding: 1.25rem 0; }
.trust-inner { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem 1rem; text-align: center; }
.trust-item { display: flex; flex-direction: column; gap: 0.2rem; align-items: center; }
.trust-val { font-family: var(--font-serif); font-size: 1.15rem; color: var(--gold); font-weight: 600; letter-spacing: 0.02em; }
.trust-label { font-size: 0.63rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.16em; }
.trust-sep { display: none; width: 1px; background: rgba(200,169,106,0.1); align-self: stretch; }

/* ===== SECTIONS ===== */
.sec { padding: 4.5rem 0; }
.sec-dark  { background: var(--bg-deep); }
.sec-mid   { background: var(--bg-mid); }
.sec-warm  { background: var(--bg-warm); }
.sec-light { background: var(--bg-light); color: var(--text-dark); }
.sec-light .section-tag { color: var(--gold-dark); }
.sec-light .section-tag::before { background: linear-gradient(to right, var(--gold-dark), transparent); }
.sec-header { margin-bottom: 2.5rem; }
.sec-header.center { text-align: center; }
.sec-header.center .section-tag { justify-content: center; }
.sec-header.center .section-tag::before { display: none; }
.sec-title { font-family: var(--font-serif); font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 300; line-height: 1.08; margin-bottom: 1rem; letter-spacing: -0.01em; }
.sec-light .sec-title { color: var(--text-dark); }
.sec-desc { font-size: 0.93rem; line-height: 1.8; color: var(--text-muted); max-width: 580px; }
.sec-header.center .sec-desc { margin: 0 auto; }
.sec-light .sec-desc { color: #5C4A30; }

/* ===== EXPERIENCE CARDS ===== */
.exp-grid { display: grid; gap: 1.25rem; }
.exp-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200,169,106,0.13);
  border-top: 2px solid rgba(200,169,106,0.42);
  border-radius: var(--radius-xl); padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0; transform: translateY(28px);
}
.exp-card.visible { opacity: 1; transform: none; }
.exp-card:nth-child(2) { transition-delay: 0.1s; }
.exp-card:nth-child(3) { transition-delay: 0.2s; }
.exp-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); border-color: rgba(200,169,106,0.35); border-top-color: var(--gold); }
.exp-icon {
  width: 3.25rem; height: 3.25rem; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.35rem; color: #1A1108;
  box-shadow: 0 6px 20px rgba(200,169,106,0.25);
}
.exp-card h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; color: var(--text); margin-bottom: 0.625rem; letter-spacing: -0.01em; }
.exp-card p { color: var(--text-muted); line-height: 1.75; font-size: 0.88rem; }

/* ===== DISH / FOOD CAROUSEL ===== */
.carousel-wrap { position: relative; }
.carousel-track-outer { overflow: hidden; }
.carousel-track {
  display: flex; gap: 1.25rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 0.5rem; cursor: grab; user-select: none;
}
.carousel-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.dish-card {
  flex: 0 0 85%; scroll-snap-align: start;
  background: var(--bg-warm); border: 1px solid rgba(200,169,106,0.08);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.dish-card:hover { border-color: rgba(200,169,106,0.28); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.dish-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.dish-card:hover .dish-img img { transform: scale(1.08); }
.dish-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,11,8,0.8) 0%, transparent 55%); opacity: 0; transition: opacity var(--transition); }
.dish-card:hover .dish-img-overlay { opacity: 1; }
.dish-body { padding: 1.35rem; }
.dish-meta { display: flex; justify-content: space-between; align-items: flex-start; }
.dish-name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--text); line-height: 1.2; }
.dish-price { color: var(--gold); font-weight: 600; font-size: 0.85rem; white-space: nowrap; margin-left: 0.5rem; }
.dish-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; margin-top: 0.5rem; }

.carousel-nav { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1.75rem; align-items: center; }
.carousel-btn {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  border: 1px solid rgba(200,169,106,0.22);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer; background: transparent;
}
.carousel-btn:hover { background: rgba(200,169,106,0.1); border-color: var(--gold); transform: scale(1.06); }
.carousel-dots { display: flex; gap: 0.4rem; }
.carousel-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(200,169,106,0.25); transition: var(--transition); cursor: pointer; }
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }

/* ===== RESERVATION BLOCK ===== */
.reservation-block {
  background: linear-gradient(155deg, #0E0A06 0%, #180E08 40%, var(--bg-warm) 70%, #16120E 100%);
  padding: 6rem 0; border-top: 1px solid rgba(200,169,106,0.07);
  border-bottom: 1px solid rgba(200,169,106,0.07); position: relative; overflow: hidden;
}
.reservation-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,169,106,0.07) 0%, transparent 72%);
  pointer-events: none;
}
.res-inner { text-align: center; max-width: 720px; margin: 0 auto; position: relative; z-index: 1; padding: 0 1.25rem; }
.res-ornament { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--gold); margin-bottom: 1.75rem; opacity: 0.5; }
.res-ornament::before, .res-ornament::after { content: ''; display: block; flex: 1; max-width: 4rem; height: 1px; background: linear-gradient(to right, transparent, var(--gold)); }
.res-ornament::after { background: linear-gradient(to left, transparent, var(--gold)); }
.res-title { font-family: var(--font-serif); font-size: clamp(1.75rem, 5vw, 3.5rem); font-weight: 300; margin-bottom: 1rem; letter-spacing: -0.015em; line-height: 1.1; }
.res-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.78; }
.res-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.res-urgency { margin-top: 1.5rem; font-size: 0.7rem; color: var(--text-dim); font-style: italic; letter-spacing: 0.04em; }

/* ===== REVIEWS CAROUSEL ===== */
.review-card {
  flex: 0 0 85%; scroll-snap-align: start;
  background: rgba(255,255,255,0.035); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200,169,106,0.09); border-radius: var(--radius-xl); padding: 2.25rem 1.75rem 1.75rem;
  transition: border-color var(--transition), background var(--transition);
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '\201C'; font-family: var(--font-serif); font-size: 6.5rem; line-height: 0.72;
  color: var(--gold); opacity: 0.1; position: absolute; top: 1.25rem; left: 1.25rem;
  pointer-events: none; user-select: none;
}
.review-card:hover { border-color: rgba(200,169,106,0.22); background: rgba(255,255,255,0.055); }
.review-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.12em; margin-bottom: 1rem; }
.review-text { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: var(--text); line-height: 1.72; margin-bottom: 1.4rem; }
.review-author { display: flex; align-items: center; gap: 0.875rem; }
.review-avatar { width: 2.35rem; height: 2.35rem; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: #1A1108; flex-shrink: 0; }
.review-name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.review-origin { font-size: 0.7rem; color: var(--text-muted); }
.review-badge { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(200,169,106,0.09); display: flex; align-items: center; gap: 0.5rem; }
.review-badge .google-g-sm { width: 1rem; height: 1rem; }
.review-badge span { font-size: 0.68rem; color: var(--text-muted); }

/* ===== GALLERY ===== */
.gal-main-row { display: flex; gap: 0.875rem; margin-bottom: 0.875rem; }
.gal-hero { flex: 3; position: relative; overflow: hidden; border-radius: var(--radius-lg); min-height: 200px; cursor: pointer; background: var(--bg-warm); }
.gal-sidebar { flex: 2; display: flex; flex-direction: column; gap: 0.875rem; }
.gal-item { flex: 1; position: relative; overflow: hidden; border-radius: var(--radius-lg); cursor: pointer; background: var(--bg-warm); min-height: 95px; }
.gal-panoramic { position: relative; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 0.875rem; cursor: pointer; height: 180px; background: var(--bg-warm); }
.gal-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
.gal-strip .gal-item { min-height: 150px; }
.gal-hero img, .gal-item img, .gal-panoramic img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.25,0.46,0.45,0.94);
  transform: scale(1.06);
}
.gal-hero:hover img, .gal-item:hover img, .gal-panoramic:hover img { transform: scale(1); }
.gal-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1rem 0.8rem;
  background: linear-gradient(0deg, rgba(14,11,8,0.85) 0%, transparent 100%);
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.85rem; color: rgba(245,238,227,0.8); letter-spacing: 0.03em;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gal-hero:hover .gal-caption, .gal-item:hover .gal-caption, .gal-panoramic:hover .gal-caption { opacity: 1; transform: none; }

/* ===== EVENTS ===== */
.events-layout { display: grid; gap: 2.5rem; }
.events-text { opacity: 0; transform: translateX(-24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.events-text.visible { opacity: 1; transform: none; }
.events-features { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.events-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.86rem; color: #5C4A30; line-height: 1.55; }
.events-features li svg { flex-shrink: 0; margin-top: 0.1rem; color: var(--gold-dark); }
.events-image-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden; height: 380px;
  opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease 0.15s, transform 0.65s ease 0.15s;
}
.events-image-wrap.visible { opacity: 1; transform: none; }
.events-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.events-image-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(37,29,22,0.45) 0%, transparent 65%); }
.events-stat-card {
  position: absolute; bottom: 1.25rem; left: 1.25rem; z-index: 2;
  background: rgba(245,238,227,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg); padding: 1rem 1.25rem;
  border: 1px solid rgba(200,169,106,0.18); box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.events-stat-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }
.events-stat-label { font-size: 0.68rem; color: #5C4A30; text-transform: uppercase; letter-spacing: 0.12em; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.45rem; }
.faq-item { border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(200,169,106,0.07); opacity: 0; transform: translateY(16px); transition: opacity 0.45s ease, transform 0.45s ease; }
.faq-item.visible { opacity: 1; transform: none; }
.faq-item:nth-child(2) { transition-delay: 0.07s; }
.faq-item:nth-child(3) { transition-delay: 0.14s; }
.faq-item:nth-child(4) { transition-delay: 0.21s; }
.faq-item:nth-child(5) { transition-delay: 0.28s; }
.faq-item:nth-child(6) { transition-delay: 0.35s; }
.faq-item:nth-child(7) { transition-delay: 0.42s; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 1.35rem; text-align: left; color: var(--text); font-size: 0.89rem; font-weight: 400; cursor: pointer; width: 100%; background: rgba(255,255,255,0.025); transition: background var(--transition), color var(--transition); }
.faq-q:hover { background: rgba(255,255,255,0.042); }
.faq-q.open { background: rgba(200,169,106,0.06); color: var(--gold); }
.faq-icon { flex-shrink: 0; width: 1.4rem; height: 1.4rem; border-radius: 50%; border: 1px solid rgba(200,169,106,0.22); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; line-height: 1; transition: var(--transition); }
.faq-q.open .faq-icon { background: var(--gold); color: #1A1108; border-color: var(--gold); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-body { padding: 0.25rem 1.35rem 1.25rem; color: var(--text-muted); font-size: 0.855rem; line-height: 1.8; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; gap: 2.5rem; }
.contact-detail-list { display: flex; flex-direction: column; gap: 1.35rem; margin: 1.75rem 0; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail svg { color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
.contact-detail h4 { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.3rem; }
.contact-detail p, .contact-detail a { font-size: 0.88rem; color: var(--text); line-height: 1.65; }
.contact-detail a:hover { color: var(--gold); transition: color var(--transition); }
.map-wrap { border-radius: var(--radius-xl); overflow: hidden; height: 360px; position: relative; opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.map-wrap.visible { opacity: 1; transform: none; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.8) contrast(1.1) sepia(0.1); }
.map-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-mid) 0%, transparent 30%); pointer-events: none; }

/* ===== FOOTER ===== */
.footer { background: #080604; padding: 4.5rem 0 2rem; border-top: 1px solid rgba(200,169,106,0.07); }
.footer-grid { display: grid; gap: 2.5rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-tagline { font-size: 0.8rem; color: var(--text-muted); line-height: 1.75; max-width: 280px; margin-bottom: 1.35rem; }
.footer-social { display: flex; gap: 0.65rem; }
.social-btn { width: 2.1rem; height: 2.1rem; border-radius: 50%; border: 1px solid rgba(200,169,106,0.18); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: var(--transition); }
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,169,106,0.07); }
.footer-col h4 { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1.2rem; font-weight: 500; }
.footer-nav-list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-list a { font-size: 0.82rem; color: var(--text-muted); transition: color var(--transition); }
.footer-nav-list a:hover { color: var(--text); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(200,169,106,0.06); display: flex; flex-direction: column; gap: 0.75rem; align-items: center; text-align: center; }
.footer-copy { font-size: 0.7rem; color: var(--text-dim); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem; justify-content: center; }
.footer-legal a { font-size: 0.68rem; color: var(--text-dim); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-muted); }

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: rgba(14, 11, 8, 0.98); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px); border-top: 1px solid rgba(200, 169, 106, 0.14); padding: 1.1rem 1.25rem; transform: translateY(100%); transition: transform 0.45s ease; box-shadow: 0 -8px 50px rgba(0, 0, 0, 0.45); }
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.875rem; }
.cookie-text h4 { font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.cookie-text p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.55; }
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 0.65rem; flex-wrap: wrap; align-items: center; }
.cookie-btn-accept { background: var(--gold); color: #1A1108; font-size: 0.73rem; font-weight: 600; letter-spacing: 0.06em; padding: 0.5rem 1.25rem; border-radius: var(--radius-full); transition: var(--transition); cursor: pointer; }
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-reject { font-size: 0.73rem; color: var(--text-muted); padding: 0.5rem 0.9rem; border-radius: var(--radius-full); transition: var(--transition); cursor: pointer; border: 1px solid rgba(255,255,255,0.09); }
.cookie-btn-reject:hover { color: var(--text); border-color: rgba(255,255,255,0.18); }
.cookie-btn-manage { font-size: 0.7rem; color: var(--text-dim); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; transition: color var(--transition); background: none; border: none; }
.cookie-btn-manage:hover { color: var(--text-muted); }

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; background: rgba(14, 11, 8, 0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid rgba(200,169,106,0.1); padding: 0.75rem 1.25rem; display: flex; gap: 0.5rem; box-shadow: 0 -6px 30px rgba(0,0,0,0.35); transition: transform var(--transition); }
.mobile-sticky.hidden { transform: translateY(100%); }
.mobile-sticky .btn { flex: 1; font-size: 0.68rem; padding: 0.7rem 0.5rem; }
.mobile-sticky-order { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem; flex: 0 0 auto; padding: 0.7rem 0.75rem; color: var(--text-muted); font-size: 0.58rem; letter-spacing: 0.08em; border: 1px solid rgba(200,169,106,0.13); border-radius: var(--radius-full); transition: var(--transition); min-width: 3.25rem; text-transform: uppercase; }
.mobile-sticky-order:hover { color: var(--gold); border-color: var(--gold); }

/* ===== CONCIERGE ===== */
.concierge-btn { position: fixed; bottom: 7rem; right: 1.1rem; z-index: 210; width: 3.35rem; height: 3.35rem; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); display: flex; align-items: center; justify-content: center; color: #1A1108; box-shadow: 0 8px 28px rgba(200,169,106,0.4); transition: bottom var(--transition), transform var(--transition), box-shadow var(--transition); }
.concierge-btn::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid rgba(200,169,106,0.35); animation: conciergeRing 2.5s ease-out infinite; }
.concierge-btn:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(200,169,106,0.55); }
.concierge-panel { position: fixed; bottom: 12rem; right: 1.1rem; z-index: 210; width: min(340px, calc(100vw - 2rem)); background: rgba(14, 11, 8, 0.98); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px); border: 1px solid rgba(200,169,106,0.14); border-radius: var(--radius-xl); padding: 1.35rem; box-shadow: var(--shadow-deep); opacity: 0; pointer-events: none; transform: translateY(14px) scale(0.97); transition: bottom var(--transition), opacity var(--transition), transform var(--transition); }
.concierge-panel.active { opacity: 1; pointer-events: all; transform: none; }
.concierge-head { display: flex; justify-content: space-between; align-items: start; margin-bottom: 1.1rem; }
.concierge-head h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--text); }
.concierge-head p { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }
.concierge-close { color: var(--text-muted); font-size: 1.2rem; transition: color var(--transition); padding: 0.25rem; }
.concierge-close:hover { color: var(--text); }
.concierge-options { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.875rem; }
.concierge-options button { text-align: left; padding: 0.8rem 0.9rem; background: rgba(255,255,255,0.032); border-radius: var(--radius-md); color: var(--text); font-size: 0.82rem; border: 1px solid rgba(200,169,106,0.07); transition: var(--transition); cursor: pointer; }
.concierge-options button:hover { background: rgba(200,169,106,0.08); border-color: rgba(200,169,106,0.2); color: var(--gold); }
.concierge-foot { text-align: center; font-size: 0.67rem; color: var(--text-dim); }

/* ===== BASE ANIMATIONS ===== */
.anim-fade { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim-fade.visible { opacity: 1; transform: none; }
.anim-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim-left.visible { opacity: 1; transform: none; }
.anim-right { opacity: 0; transform: translateX(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim-right.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE — SMALL MOBILE ===== */
@media (max-width: 639px) {
  .footer { padding-bottom: 5.5rem; }
  .hero-actions .btn-lg { padding: 0.875rem 1.5rem; font-size: 0.75rem; }
}

@media (max-width: 1023px) {
  .nav-actions .reserve-cta { display: none; }
}

/* ===== RESPONSIVE — TABLET ===== */
@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
  .hero-content { padding: 0 1.5rem; }
  .trust-inner { grid-template-columns: repeat(4,1fr); }
  .trust-sep { display: block; }
  .exp-grid { grid-template-columns: repeat(2,1fr); }
  .dish-card { flex: 0 0 46%; }
  .review-card { flex: 0 0 46%; }
  .mobile-sticky { display: none; }
  .concierge-btn { bottom: 2rem; right: 1.75rem; width: 3.75rem; height: 3.75rem; }
  .concierge-panel { bottom: 7rem; right: 1.75rem; }
  .cookie-inner { flex-direction: row; align-items: center; }
  .cookie-text { flex: 1; }
  .map-wrap { height: 420px; }
  .gal-hero { min-height: 320px; }
  .gal-panoramic { height: 230px; }
  .gal-strip { grid-template-columns: repeat(4, 1fr); }
  .gal-strip .gal-item { min-height: 180px; }
}

/* ===== RESPONSIVE — DESKTOP ===== */
@media (min-width: 1024px) {
  html { font-size: 17px; }
  .logo-text { display: block; }
  .logo-sub { display: block; }
  .nav-links { display: flex; }
  .lang-switcher { display: flex; }
  .nav-call { display: flex; }
  .menu-toggle { display: none; }
  .hero { align-items: center; padding-bottom: 5rem; }
  .hero-content { max-width: 760px; }
  .hero-glass-card { display: block; }
  .sec { padding: 7rem 0; }
  .exp-grid { grid-template-columns: repeat(3,1fr); }
  .dish-card { flex: 0 0 31%; }
  .review-card { flex: 0 0 31%; }
  .events-layout { grid-template-columns: 1fr 1fr; align-items: center; gap: 4.5rem; }
  .contact-layout { grid-template-columns: 1fr 1fr; align-items: start; gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3.5rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-legal { justify-content: flex-end; }
  .gal-main-row { gap: 1.1rem; margin-bottom: 1.1rem; }
  .gal-hero { min-height: 460px; }
  .gal-panoramic { height: 280px; margin-bottom: 1.1rem; }
  .gal-strip { gap: 1.1rem; }
  .gal-strip .gal-item { min-height: 220px; }
  .map-wrap { height: 440px; }
  .events-image-wrap { height: 460px; }
}

@media (min-width: 1280px) {
  .hero-title { font-size: 7.5rem; }
}

/* ===== RESERVATION MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 350;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-card {
  background: var(--bg-mid); border: 1px solid rgba(200,169,106,0.16); border-radius: var(--radius-xl);
  padding: 2rem; width: 100%; max-width: 620px;
  max-height: calc(100svh - 2rem); overflow-y: auto;
  box-shadow: 0 40px 120px rgba(0,0,0,0.75), inset 0 1px 0 rgba(255,255,255,0.04);
  transform: translateY(18px) scale(0.98); transition: transform 0.35s ease;
  scrollbar-width: thin; scrollbar-color: rgba(200,169,106,0.2) transparent;
}
.modal-overlay.active .modal-card { transform: none; }
.modal-header {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.75rem;
}
.modal-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem; font-weight: 500;
}
.modal-title {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--text); line-height: 1.15;
}
.modal-close {
  color: var(--text-muted); padding: 0.4rem; border-radius: var(--radius-sm); flex-shrink: 0;
  transition: color var(--transition), background var(--transition); margin-top: 0.3rem; margin-left: 1rem;
}
.modal-close:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.res-form { display: flex; flex-direction: column; gap: 1rem; }
.res-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 540px) { .res-row { grid-template-columns: 1fr 1fr; } }
.res-field { display: flex; flex-direction: column; gap: 0.4rem; }
.res-field label { font-size: 0.65rem; letter-spacing: 0.16em; color: var(--text-muted); font-weight: 500; }
.req { color: var(--gold); margin-left: 2px; }
.res-field input,
.res-field select,
.res-field textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(200,169,106,0.14);
  border-radius: var(--radius-md); color: var(--text); font-family: var(--font-sans);
  font-size: 0.92rem; padding: 0.85rem 1rem;
  transition: border-color var(--transition), background var(--transition); outline: none; width: 100%;
}
.res-field input::placeholder, .res-field textarea::placeholder { color: rgba(168,151,126,0.5); }
.res-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8977E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.res-field select option { background: var(--bg-mid); color: var(--text); }
.res-field input:focus, .res-field select:focus, .res-field textarea:focus { border-color: rgba(200,169,106,0.5); background: rgba(255,255,255,0.06); }
.res-field input.invalid, .res-field select.invalid, .res-field textarea.invalid { border-color: var(--cherry); }
.res-field input[type="date"] { color-scheme: dark; }
.res-field textarea { resize: vertical; min-height: 88px; }
.res-error { font-size: 0.8rem; color: var(--cherry); min-height: 1em; }
.res-submit { width: 100%; justify-content: center; padding: 1rem 1.5rem; margin-top: 0.25rem; font-size: 0.82rem; letter-spacing: 0.18em; }
.res-legal { text-align: center; font-size: 0.67rem; color: var(--text-dim); line-height: 1.55; }
.res-success-state {
  display: none; flex-direction: column; align-items: center; text-align: center;
  gap: 1rem; padding: 2rem 0;
}
.res-success-state.active { display: flex; }
.res-success-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center; color: var(--bg-deep); font-size: 1.4rem;
}
.res-success-state h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--text); }
.res-success-state p { font-size: 0.85rem; color: var(--text-muted); max-width: 360px; line-height: 1.6; }
.res-success-state .res-alt-label { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.5rem; }
.res-success-actions { display: flex; flex-direction: column; gap: 0.65rem; width: 100%; max-width: 320px; }
.res-success-actions .btn { justify-content: center; }

/* ===== CONCIERGE CHAT ===== */
.concierge-chat { display: none; flex-direction: column; gap: 0.65rem; }
.concierge-chat.active { display: flex; }
.concierge-options.hidden { display: none; }
.chat-back {
  font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.2rem;
  transition: color var(--transition); background: none; border: none;
  cursor: pointer; padding: 0; margin-bottom: 0.1rem;
}
.chat-back:hover { color: var(--gold); }
.chat-messages {
  max-height: 210px; overflow-y: auto; display: flex; flex-direction: column; gap: 0.45rem;
  scrollbar-width: thin; scrollbar-color: rgba(200,169,106,0.15) transparent;
}
.chat-msg {
  padding: 0.6rem 0.8rem; border-radius: var(--radius-md);
  font-size: 0.8rem; line-height: 1.5; max-width: 92%;
}
.chat-msg.bot {
  background: rgba(200,169,106,0.07); border: 1px solid rgba(200,169,106,0.1);
  color: var(--text); align-self: flex-start; border-radius: var(--radius-sm) var(--radius-md) var(--radius-md) var(--radius-md);
}
.chat-msg.bot a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.chat-msg.user {
  background: rgba(200,169,106,0.16); border: 1px solid rgba(200,169,106,0.22);
  color: var(--text); align-self: flex-end;
  border-radius: var(--radius-md) var(--radius-sm) var(--radius-md) var(--radius-md);
}
.chat-input-row { display: flex; gap: 0.4rem; }
.chat-input {
  flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(200,169,106,0.14);
  border-radius: var(--radius-full); color: var(--text); font-family: var(--font-sans);
  font-size: 0.82rem; padding: 0.52rem 0.9rem; outline: none;
  transition: border-color var(--transition);
}
.chat-input::placeholder { color: rgba(168,151,126,0.5); }
.chat-input:focus { border-color: rgba(200,169,106,0.4); }
.chat-send {
  width: 2.1rem; height: 2.1rem; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-deep); display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.chat-send:hover { transform: scale(1.08); }
.chat-action-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.15rem; }
.chat-chip {
  font-size: 0.68rem; padding: 0.3rem 0.65rem; border-radius: var(--radius-full);
  background: rgba(200,169,106,0.07); border: 1px solid rgba(200,169,106,0.14);
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.chat-chip:hover { background: rgba(200,169,106,0.15); color: var(--gold); border-color: rgba(200,169,106,0.3); }

/* ===== ORDER PAGE ===== */
.order-page-wrap { display: flex; flex-direction: column; min-height: 100svh; }
.order-topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,11,8,0.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,169,106,0.1); padding: 0.85rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.order-back-btn {
  font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem;
  transition: color var(--transition);
}
.order-back-btn:hover { color: var(--gold); }
.order-brand { display: flex; align-items: center; gap: 0.65rem; }
.order-brand .logo-mark { width: 2rem; height: 2rem; font-size: 0.85rem; }
.order-hero-band {
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-mid) 100%);
  border-bottom: 1px solid rgba(200,169,106,0.1);
  padding: 2.5rem 1.25rem 2rem; text-align: center;
}
.order-hero-band .section-tag { margin-bottom: 0.5rem; }
.order-hero-band h1 { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 500; color: var(--text); margin-bottom: 0.5rem; }
.order-hero-band p { font-size: 0.85rem; color: var(--text-muted); max-width: 480px; margin: 0 auto; }
.order-frame-outer { flex: 1; position: relative; background: var(--bg-deep); }
.order-frame-outer iframe { width: 100%; height: calc(100svh - 56px); border: none; display: block; }
.order-loading {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  color: var(--text-muted); font-size: 0.88rem; pointer-events: none;
}
.order-loading-ring {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid rgba(200,169,106,0.18); border-top-color: var(--gold);
  animation: orderSpin 0.85s linear infinite;
}
@keyframes orderSpin { to { transform: rotate(360deg); } }
.order-fallback-bar {
  display: none; background: rgba(200,169,106,0.05); border-top: 1px solid rgba(200,169,106,0.12);
  padding: 1rem 1.25rem; text-align: center; gap: 0.75rem;
  flex-direction: column; align-items: center; font-size: 0.8rem; color: var(--text-muted);
}
.order-fallback-bar.show { display: flex; }
.order-fallback-bar a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* ===== FLOATING UI — COOKIE VISIBLE OFFSETS ===== */
/* JS sets --cookie-h to banner.offsetHeight and adds body.cookie-visible */
@media (min-width: 640px) {
  body.cookie-visible .concierge-btn {
    bottom: calc(var(--cookie-h) + 2rem + 0.5rem + env(safe-area-inset-bottom, 0px));
  }
  body.cookie-visible .concierge-panel {
    bottom: calc(var(--cookie-h) + 7rem + 0.5rem + env(safe-area-inset-bottom, 0px));
  }
}
@media (min-width: 1024px) {
  body.cookie-visible .hero-glass-card {
    bottom: calc(var(--cookie-h) + 3rem + 0.5rem + env(safe-area-inset-bottom, 0px));
  }
}
