/* ==========================================================================
   MAIN LAYOUT & TYPOGRAPHY - LA CEAUNU' CRĂPAT 2027
   Modern Carpathian Gastronomic Luxury
   ========================================================================== */

@import url('variables.css');
@import url('animations.css');
@import url('components.css');
@import url('responsive.css');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 30px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Subtle warm background ambient glow */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: 
    radial-gradient(circle at 10% 15%, rgba(194, 109, 11, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 85%, rgba(212, 175, 55, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, transparent 70%, rgba(44, 30, 20, 0.03) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-brand-primary);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

a:hover {
  color: var(--color-brand-primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: clamp(4.5rem, 7vw, 8rem);
  padding-bottom: clamp(4.5rem, 7vw, 8rem);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 4.5rem);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-brand-primary);
  margin-bottom: 0.85rem;
  padding: 0.4rem 1.15rem;
  background: var(--color-brand-primary-light);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
}

.section-title {
  margin-bottom: 1rem;
  position: relative;
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.6;
}

.traditional-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem auto;
  color: var(--color-brand-primary);
}

.traditional-divider::before,
.traditional-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

/* ==========================================================================
   REVOLUTIONARY FLOATING ISLAND HEADER (2027 ULTRA-SLIM & AUTO-HIDE)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, calc(100% - 2rem));
  z-index: 1100;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease;
  pointer-events: auto;
}

/* Smart Auto-Hide when scrolling down */
.site-header.header-hidden {
  transform: translate(-50%, -160%) !important;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(194, 109, 11, 0.22);
  border-radius: var(--radius-full);
  padding: 0.45rem 1.15rem;
  box-shadow: 0 8px 32px rgba(44, 30, 20, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

[data-theme="dark"] .header-container {
  background: rgba(20, 16, 13, 0.9);
  border-color: rgba(217, 119, 6, 0.28);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.site-header.scrolled .header-container {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--color-brand-primary);
  box-shadow: 0 12px 40px rgba(44, 30, 20, 0.14);
}

[data-theme="dark"] .site-header.scrolled .header-container {
  background: rgba(20, 16, 13, 0.98);
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.08) rotate(-2deg);
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-brand-primary);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-brand-primary);
  background: var(--color-brand-primary-light);
}

.nav-link.active {
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-primary-hover) 100%);
  box-shadow: 0 2px 10px rgba(194, 109, 11, 0.35);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-brand-primary), var(--color-brand-gold), var(--color-brand-accent));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ==========================================================================
   MULTI-PAGE TABBED VIEWS (SPA ARCHITECTURE)
   ========================================================================== */

.page-view {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: clamp(6.5rem, 8vw + 2rem, 9.5rem);
  padding-bottom: clamp(4rem, 6vw, 7rem);
  min-height: 80vh;
}

.page-view.active {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

.page-view#viewHome {
  padding-top: 0 !important;
}

/* ==========================================================================
   PREMIUM FOOTER — RESPONSIVE ON ALL SCREENS
   ========================================================================== */

.site-footer {
  background: linear-gradient(180deg, #1C1208 0%, #100C06 100%);
  color: #C2B7A8;
  padding: 4.5rem 0 0;
  margin-top: 5rem;
  font-size: 0.875rem;
}

.footer-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(194, 109, 11, 0.15);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer { padding-top: 3rem; }
}

.footer-col-brand { max-width: 280px; }

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.footer-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FAF5EE;
}

.footer-tagline {
  color: #9E9182;
  font-size: 0.8125rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}
.social-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(194,109,11,0.2);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.social-pill:hover { background: rgba(194,109,11,0.18); transform: translateY(-2px); }

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 800;
  color: #FAF5EE;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links .footer-link {
  color: #9E9182;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-links .footer-link:hover { color: var(--color-brand-primary); }

.footer-contact li { color: #9E9182; font-size: 0.8125rem; }
.footer-contact strong { color: #C2B7A8; font-size: 0.8125rem; }
.footer-sep { margin-top: 0.85rem !important; }

.footer-legal-block {
  font-size: 0.775rem;
  color: #7A7168;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.footer-legal-block strong { color: #C2B7A8; }
.footer-cif { font-size: 0.71rem; color: #5E5650; margin: 0.1rem 0 0.35rem; }
.footer-sep-sm { margin-top: 0.7rem; }

/* ANPC Badges */
.anpc-badges {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.anpc-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(194,109,11,0.15);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.anpc-badge:hover {
  background: rgba(194,109,11,0.07);
  border-color: rgba(194,109,11,0.3);
}
.anpc-badge > span:first-child { font-size: 1.1rem; flex-shrink: 0; }
.anpc-badge div { flex: 1; }
.anpc-badge strong { display: block; font-size: 0.775rem; color: #FAF5EE; line-height: 1.2; }
.anpc-badge small { font-size: 0.68rem; color: #7A7168; }
.anpc-arrow { font-size: 0.75rem; color: var(--color-brand-primary); flex-shrink: 0; }

/* Footer Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
  font-size: 0.775rem;
  color: #5E5650;
}
.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-bottom-links .footer-link {
  color: #6E6560;
  font-size: 0.775rem;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-bottom-links .footer-link:hover { color: var(--color-brand-primary); }

@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-bottom-links { flex-direction: column; gap: 0.5rem; }
}

/* ==========================================================================
   PREMIUM FLOATING HEADER — BRAND CROWN ABOVE NAV PILL
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1360px, calc(100% - 1.5rem));
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;          /* let clicks fall through to page */
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.header-hidden {
  transform: translate(-50%, -130%) !important;
}

/* ---- BRAND CROWN ---- */
.header-brand-crown {
  pointer-events: auto;
  display: flex;
  justify-content: center;
}
.brand-crown-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 252, 245, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(194, 109, 11, 0.2);
  border-radius: 100px;
  padding: 0.35rem 1.1rem 0.35rem 0.45rem;
  box-shadow: 0 4px 20px rgba(44, 30, 20, 0.1);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.brand-crown-link:hover {
  box-shadow: 0 6px 28px rgba(194, 109, 11, 0.22);
  transform: translateY(-1px);
}
[data-theme="dark"] .brand-crown-link {
  background: rgba(18, 14, 10, 0.95);
  border-color: rgba(217, 119, 6, 0.28);
}
.crown-logo {
  height: 32px;
  width: 32px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.crown-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.crown-name {
  font-family: var(--font-serif);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 800;
  color: var(--text-primary);
  white-space: nowrap;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.crown-sub {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-brand-primary);
  white-space: nowrap;
}
.crown-dot { opacity: 0.5; }

/* ---- NAV PILL ---- */
.header-nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 252, 245, 0.9);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(194, 109, 11, 0.16);
  border-radius: 100px;
  padding: 0.35rem 0.5rem;
  box-shadow: 0 4px 24px rgba(44, 30, 20, 0.07), 0 1px 4px rgba(0,0,0,0.04);
  width: 100%;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
[data-theme="dark"] .header-nav-pill {
  background: rgba(18, 14, 10, 0.93);
  border-color: rgba(217, 119, 6, 0.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.site-header.scrolled .header-nav-pill {
  background: rgba(255, 252, 245, 0.98);
  box-shadow: 0 8px 36px rgba(44, 30, 20, 0.13);
  border-color: rgba(194, 109, 11, 0.28);
}

/* ---- Desktop Nav ---- */
.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;
  min-width: 0;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
}
.nav-link {
  display: block;
  font-size: clamp(0.7rem, 0.85vw, 0.8rem);
  font-weight: 700;
  color: var(--text-secondary);
  padding: 0.3rem clamp(0.4rem, 0.65vw, 0.7rem);
  border-radius: 100px;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s;
  text-decoration: none;
}
.nav-link:hover {
  color: var(--color-brand-primary);
  background: rgba(194, 109, 11, 0.07);
}
.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, #C26D0B 0%, #9a5309 100%);
  box-shadow: 0 2px 10px rgba(194, 109, 11, 0.35);
}

/* ---- Actions ---- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.lang-pills {
  display: flex;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 0.1rem;
  gap: 0.06rem;
  flex-shrink: 0;
}
.lang-btn {
  background: transparent;
  border: none;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-muted);
  padding: 0.18rem 0.5rem;
  cursor: pointer;
  transition: all 0.18s;
  line-height: 1;
}
.lang-btn:hover { color: var(--color-brand-primary); }
.lang-btn.active {
  background: var(--color-brand-primary);
  color: #fff;
  box-shadow: 0 1px 6px rgba(194,109,11,0.35);
}
.hdr-icon-btn {
  background: transparent;
  border: none;
  border-radius: 100px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.18s;
  flex-shrink: 0;
  position: relative;
}
.hdr-icon-btn:hover { background: rgba(194,109,11,0.08); }
.cart-count-badge {
  position: absolute;
  top: -3px; right: -3px;
  background: var(--color-brand-primary);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.hdr-reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, #C26D0B 0%, #9a5309 100%);
  color: #fff !important;
  font-size: clamp(0.68rem, 0.8vw, 0.78rem);
  font-weight: 800;
  padding: 0.28rem clamp(0.5rem, 0.85vw, 0.85rem);
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(194,109,11,0.3);
  transition: transform 0.18s, box-shadow 0.18s;
  flex-shrink: 0;
}
.hdr-reserve-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(194,109,11,0.42);
}
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.hamburger-btn:hover { background: rgba(194,109,11,0.07); }
.ham-bar {
  display: block;
  width: 16px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.hamburger-btn.open .ham-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger-btn.open .ham-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open .ham-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-brand-primary), var(--color-brand-gold));
  z-index: 9001;
  transition: width 0.1s linear;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .hdr-reserve-btn { display: none; }
}
@media (max-width: 1060px) {
  .desktop-nav { display: none !important; }
  .hamburger-btn { display: flex !important; }
  .header-nav-pill { justify-content: flex-end; }
}
@media (max-width: 600px) {
  .header-brand-crown { width: 100%; }
  .brand-crown-link { width: 100%; justify-content: center; }
  .crown-sub { display: none; }
}
@media (max-width: 380px) {
  .crown-name { font-size: 0.75rem; }
  .crown-logo { height: 26px; width: 26px; }
}

/* hero padding — must clear brand crown + nav pill */
.page-view#viewHome { padding-top: 0 !important; }
.page-view:not(#viewHome) { padding-top: clamp(7rem, 10vw, 11rem); }
.hero-section { padding-top: clamp(7rem, 10vw, 11rem); }



/* ==========================================================================
   LOCATION CARDS — PREMIUM PHOTO SLIDER + MAP + INFO
   ========================================================================== */

#locationsGrid, #locationsContainer {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.location-premium-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s;
}
.location-premium-card:hover { box-shadow: var(--shadow-lg); }
.location-premium-card:nth-child(even) { direction: rtl; }
.location-premium-card:nth-child(even) > * { direction: ltr; }

@media (max-width: 900px) {
  .location-premium-card { grid-template-columns: 1fr; direction: ltr !important; }
  .location-premium-card:nth-child(even) > * { direction: ltr; }
}

/* --- Photo Slider Side --- */
.loc-photo-side {
  position: relative;
  min-height: 320px;
  background: var(--bg-secondary);
}

.loc-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: 0;
}

.loc-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.loc-slide.active { opacity: 1; position: relative; }

/* Arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: background 0.18s, transform 0.18s;
  line-height: 1;
  color: var(--text-primary);
}
.slide-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.slide-prev { left: 0.75rem; }
.slide-next { right: 0.75rem; }

/* Dots */
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0.65rem 0 0.5rem;
  background: var(--bg-card);
}
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-medium);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.slide-dot.active {
  background: var(--color-brand-primary);
  transform: scale(1.3);
}

/* Badges on photo */
.loc-open-badge {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  z-index: 5;
}
.loc-altitude-badge {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  background: var(--color-brand-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  z-index: 5;
}

/* --- Info Side --- */
.loc-info-side {
  padding: 2rem 2rem 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow-y: auto;
}
@media (max-width: 900px) {
  .loc-info-side { padding: 1.5rem; }
}

.loc-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.loc-card-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Info grid */
.loc-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
}
@media (max-width: 480px) {
  .loc-info-grid { grid-template-columns: 1fr; }
}
.loc-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
}
.loc-info-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.05rem; }
.loc-info-item strong { display: block; font-weight: 700; color: var(--text-primary); margin-bottom: 0.1rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.loc-info-item span, .loc-info-item a { color: var(--text-secondary); }
.loc-phone-link { color: var(--color-brand-primary); font-weight: 700; text-decoration: none; }
.loc-phone-link:hover { text-decoration: underline; }

/* Features */
.loc-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.loc-feature-item {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  padding-left: 0.25rem;
}
.loc-feature-item::before { color: var(--color-brand-primary); margin-right: 0.35rem; }

/* Map */
.loc-map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
}
.loc-map-loading {
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 0.5rem;
  font-size: 0.875rem;
}
.loc-map-loading span { font-size: 2rem; }
.map-overlay-open-btn {
  position: absolute;
  bottom: 0.6rem; right: 0.6rem;
  z-index: 5;
}
.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: var(--color-brand-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.18s;
}
.map-open-link:hover { background: #fff; }

/* Actions */
.loc-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.loc-actions .btn { font-size: 0.82rem; }

@media (max-width: 480px) {
  .loc-actions { gap: 0.5rem; }
  .loc-actions .btn { flex: 1 1 calc(50% - 0.25rem); justify-content: center; }
}

/* ==========================================================================
   EVENTS — GALLERY SLIDER + PACKAGE CARDS + CALCULATOR
   ========================================================================== */

/* Gallery Slider */
.evt-gallery-slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-secondary);
  aspect-ratio: 16/6;
  max-height: 420px;
}
.evt-slider-track { position: relative; width: 100%; height: 100%; }
.evt-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
}
.evt-slide.active { opacity: 1; position: relative; height: 100%; }
.evt-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.evt-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  padding: 1.5rem 1.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.evt-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.88); backdrop-filter: blur(8px);
  border: none; border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 1.35rem; cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: background 0.18s, transform 0.18s;
  color: var(--text-primary);
}
.evt-arr:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.evt-prev { left: 0.85rem; }
.evt-next { right: 0.85rem; }
.evt-slider-dots {
  position: absolute; bottom: 0.85rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.evt-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.evt-dot.active { background: #fff; transform: scale(1.3); }

/* Package Cards Grid */
.evt-packages-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
.evt-pkg-card {
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.75rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.evt-pkg-card:hover {
  border-color: var(--pkg-color, var(--color-brand-primary));
  box-shadow: 0 8px 32px rgba(194,109,11,0.12);
  transform: translateY(-3px);
}
.evt-pkg-card.active {
  border-color: var(--pkg-color, var(--color-brand-primary));
  background: linear-gradient(135deg, rgba(194,109,11,0.04) 0%, transparent 100%);
  box-shadow: 0 8px 32px rgba(194,109,11,0.16);
}
.evt-pkg-popular {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--color-brand-primary);
  color: #fff; font-size: 0.68rem; font-weight: 800;
  padding: 0.2rem 0.65rem; border-radius: 100px;
  letter-spacing: 0.05em;
}
.evt-pkg-head { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 1rem; }
.evt-pkg-icon { font-size: 2rem; flex-shrink: 0; }
.evt-pkg-name { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.2rem; }
.evt-pkg-desc { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.45; }
.evt-pkg-price { display: flex; align-items: baseline; gap: 0.35rem; margin-bottom: 1.1rem; }
.evt-pkg-amount { font-family: var(--font-serif); font-size: 2rem; font-weight: 800; color: var(--pkg-color, var(--color-brand-primary)); }
.evt-pkg-unit { font-size: 0.78rem; color: var(--text-muted); }
.evt-pkg-list { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1.25rem; }
.evt-pkg-list li { font-size: 0.8125rem; color: var(--text-secondary); padding-left: 0.25rem; }
.evt-pkg-btn { width: 100%; justify-content: center; }

/* Calculator */
.evt-calculator-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.evt-calc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .evt-calc-grid { grid-template-columns: 1fr; gap: 2rem; } }

.evt-calc-block { margin-bottom: 1.75rem; }
.evt-calc-section-label {
  display: block;
  font-size: 0.875rem; font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}
.evt-calc-label-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.6rem;
}
.evt-calc-label-row label { font-size: 0.875rem; font-weight: 700; color: var(--text-primary); }
.evt-calc-guest-count { font-size: 1.25rem; color: var(--color-brand-primary); font-weight: 800; }

.evt-range-slider {
  width: 100%;
  accent-color: var(--color-brand-primary);
  cursor: pointer;
  height: 6px;
}
.evt-range-marks {
  display: flex; justify-content: space-between;
  font-size: 0.7rem; color: var(--text-muted);
  margin-top: 0.3rem; padding: 0 2px;
}

/* Package radio group */
.evt-pkg-radio-group { display: flex; flex-direction: column; gap: 0.6rem; }
.evt-pkg-radio {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.18s;
}
.evt-pkg-radio input[type="radio"] { accent-color: var(--color-brand-primary); width: 16px; height: 16px; flex-shrink: 0; }
.evt-pkg-radio.active,
.evt-pkg-radio:has(input:checked) {
  border-color: var(--color-brand-primary);
  background: rgba(194,109,11,0.05);
}
.evt-pkg-radio-icon { font-size: 1.4rem; }
.evt-pkg-radio strong { display: block; font-size: 0.875rem; color: var(--text-primary); }
.evt-pkg-radio small { font-size: 0.75rem; color: var(--color-brand-primary); font-weight: 700; }

/* Addons grid */
.evt-addons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
@media (max-width: 600px) { .evt-addons-grid { grid-template-columns: 1fr; } }
.evt-addon-chip {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  cursor: pointer;
  transition: all 0.18s;
  font-size: 0.8125rem;
}
.evt-addon-chip input { accent-color: var(--color-brand-primary); width: 15px; height: 15px; flex-shrink: 0; }
.evt-addon-chip.checked,
.evt-addon-chip:has(input:checked) {
  border-color: var(--color-brand-primary);
  background: rgba(194,109,11,0.05);
}
.evt-addon-icon { font-size: 1.1rem; flex-shrink: 0; }
.evt-addon-text { display: flex; flex-direction: column; }
.evt-addon-text span { font-size: 0.78rem; color: var(--text-primary); line-height: 1.3; }
.evt-addon-text strong { font-size: 0.72rem; color: var(--color-brand-primary); }

/* Summary */
.evt-calc-summary {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 18px;
  padding: 2rem;
  position: sticky;
  top: calc(5.5rem + 0.5rem);
}
.evt-calc-summary-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 800; color: var(--text-primary); margin-bottom: 1.25rem; }
.evt-calc-summary-lines { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.5rem; }
.evt-calc-line { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
.evt-calc-line span { color: var(--text-secondary); }
.evt-calc-line strong { color: var(--text-primary); }
.evt-calc-total-box {
  background: var(--bg-card);
  border: 2px solid var(--color-brand-primary);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.evt-calc-total-box > span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); display: block; margin-bottom: 0.3rem; }
.evt-calc-total-amount { font-family: var(--font-serif); font-size: 2.25rem; font-weight: 800; color: var(--color-brand-primary); line-height: 1; }
.evt-calc-total-amount small { font-size: 1rem; font-weight: 600; }
.evt-calc-disclaimer { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.5rem; line-height: 1.45; }
.evt-calc-contacts { display: flex; gap: 0.65rem; margin-top: 0.75rem; }

/* Inquiry Modal */
.evt-inquiry-modal { max-width: 560px; }
@media (max-width: 640px) {
  .evt-gallery-slider { aspect-ratio: 16/9; max-height: 260px; }
  .evt-calculator-wrap { padding: 1.25rem; }
}

/* ==========================================================================
   PWA INSTALL BANNER — MOBILE ONLY, INJECTED BY JS
   ========================================================================== */

.pwa-install-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-highlight);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  z-index: 9500;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 20px 20px 0 0;
}

.pwa-install-banner.show {
  transform: translateY(0);
}

.pwa-banner-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.pwa-banner-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}

.pwa-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.pwa-banner-text strong {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--text-primary);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pwa-banner-text span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pwa-banner-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.pwa-dismiss-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: background 0.18s;
}
.pwa-dismiss-btn:hover { background: var(--bg-secondary); }

/* Only display on mobile — JS won't inject on desktop, but CSS double-protects */
@media (min-width: 769px) {
  .pwa-install-banner { display: none !important; }
}

/* ==========================================================================
   MENU — SEARCH + CATEGORY TABS + DIETARY CHIPS + DISH CARDS + MODAL
   ========================================================================== */

/* Search bar */
.menu-search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 100px;
  padding: 0.6rem 1.1rem;
  margin-bottom: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.menu-search-bar:focus-within {
  border-color: var(--color-brand-primary);
  box-shadow: 0 0 0 3px rgba(194,109,11,0.1);
}
.menu-search-icon { font-size: 1rem; flex-shrink: 0; color: var(--text-muted); }
.menu-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  font-family: var(--font-sans);
}
.menu-search-input::placeholder { color: var(--text-muted); }
.menu-search-clear {
  background: transparent;
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0 0.25rem;
  display: flex;
  align-items: center;
}

/* Category Tabs */
.category-tabs-wrap {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
}
.category-tabs-wrap::-webkit-scrollbar { display: none; }

.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 100px;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s;
  flex-shrink: 0;
}
.cat-tab:hover {
  border-color: var(--color-brand-primary);
  color: var(--color-brand-primary);
}
.cat-tab.active {
  background: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(194,109,11,0.3);
}
.cat-count {
  background: rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 0.68rem;
  padding: 0 0.4rem;
  line-height: 1.6;
  font-weight: 800;
}
.cat-tab:not(.active) .cat-count {
  background: var(--bg-secondary);
  color: var(--text-muted);
}

/* Dietary chips */
.dietary-chips-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.diet-chips-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.diet-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 100px;
  padding: 0.32rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}
.diet-chip:hover { border-color: var(--color-brand-primary); color: var(--color-brand-primary); }
.diet-chip.active {
  background: rgba(194,109,11,0.1);
  border-color: var(--color-brand-primary);
  color: var(--color-brand-primary);
  box-shadow: 0 1px 6px rgba(194,109,11,0.18);
}
.diet-chip-clear {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(239,68,68,0.08);
  border: 1.5px solid rgba(239,68,68,0.3);
  border-radius: 100px;
  padding: 0.32rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #EF4444;
  cursor: pointer;
  transition: all 0.18s;
}
.diet-chip-clear:hover { background: rgba(239,68,68,0.15); }

/* Dishes grid */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}
.menu-empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
}
.menu-empty-state h3 { font-size: 1.2rem; color: var(--text-primary); margin-bottom: 0.5rem; }

/* ANPC Modal */
.anpc-modal-box { max-width: 620px; padding: 0; overflow: hidden; }
.anpc-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem 1.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}
.anpc-modal-title { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.25rem; }
.anpc-modal-desc  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }
.anpc-modal-body  { padding: 1.25rem 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.anpc-info-row    { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; flex-wrap: wrap; }
.anpc-info-row > span:first-child { flex-shrink: 0; }

.anpc-nutrition-table {
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.anpc-nut-header {
  background: var(--color-brand-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.5rem 0.85rem;
}
.anpc-nut-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border-subtle);
}
@media (max-width: 480px) { .anpc-nut-grid { grid-template-columns: repeat(3, 1fr); } }
.anpc-nut-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.65rem 0.5rem;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  gap: 0.2rem;
}
.anpc-nut-cell:last-child { border-right: none; }
.anpc-nut-cell span { font-size: 0.68rem; color: var(--text-muted); }
.anpc-nut-cell strong { font-size: 0.9rem; color: var(--color-brand-primary); font-weight: 800; }

/* Toast notification */
.toast-notification {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: 100px;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 9600;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
  pointer-events: none;
}
.toast-notification.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ==========================================================================
   RESERVATION FORM — PREMIUM RESPONSIVE
   ========================================================================== */

.reservation-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .reservation-layout { grid-template-columns: 1fr; }
}

.res-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.res-location-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.res-loc-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.18s;
  text-align: left;
}
.res-loc-btn:hover { border-color: var(--color-brand-primary); color: var(--color-brand-primary); }
.res-loc-btn.active {
  background: rgba(194,109,11,0.07);
  border-color: var(--color-brand-primary);
  color: var(--color-brand-primary);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) { .form-grid-2 { grid-template-columns: 1fr; } }

.res-guest-stepper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
}
.res-stepper-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border-medium);
  background: var(--bg-surface);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.18s;
  line-height: 1;
}
.res-stepper-btn:hover { background: var(--color-brand-primary); color: #fff; border-color: var(--color-brand-primary); }
.res-guest-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-brand-primary);
  min-width: 2.5rem;
  text-align: center;
}
.res-guest-label { font-size: 0.875rem; color: var(--text-secondary); }

.field-error { font-size: 0.75rem; color: #EF4444; display: block; margin-top: 0.25rem; }

/* Info card */
.res-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.res-info-card h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 800; color: var(--text-primary); margin-bottom: 1rem; }
.res-info-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.25rem; }
.res-info-list li { font-size: 0.875rem; color: var(--text-secondary); }
.res-contact-phones { margin-bottom: 1.25rem; }
.res-schedule-block {
  background: var(--bg-secondary);
  border-radius: 10px;
  padding: 0.85rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ==========================================================================
   SPA PAGE VIEWS & CINEMATIC TRANSITIONS (60/120 FPS GPU ACCELERATED)
   ========================================================================== */

@keyframes pageViewEnter {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.995);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.page-view {
  display: none !important;
  opacity: 0;
  transform: translateY(16px);
  min-height: 85vh;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  padding-top: clamp(6.5rem, 9vw, 10rem);
  padding-bottom: clamp(4rem, 6vw, 7rem);
}

.page-view.active {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
  animation: pageViewEnter 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-view#viewHome {
  padding-top: 0 !important;
}

/* Base Body & Container Overflow-X Lock */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3.5vw, 2.5rem);
  padding-right: clamp(1rem, 3.5vw, 2.5rem);
  box-sizing: border-box;
}


/* ==========================================================================
   CAULDRON ANATOMY — ULTRA PREMIUM SHOWCASE CARD
   ========================================================================== */

.cauldron-interactive-wrap {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 2.25rem;
  margin-top: 2.5rem;
  align-items: start;
}
@media (max-width: 860px) {
  .cauldron-interactive-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
}

.cauldron-layers-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cauldron-layer-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.cauldron-layer-btn:hover {
  border-color: var(--layer-color, var(--color-brand-primary));
  box-shadow: 0 4px 20px rgba(194,109,11,0.12);
  transform: translateX(4px);
}
.cauldron-layer-btn.active {
  background: linear-gradient(135deg, rgba(194,109,11,0.09) 0%, rgba(154,83,9,0.03) 100%);
  border-color: var(--layer-color, var(--color-brand-primary));
  box-shadow: 0 6px 24px rgba(194,109,11,0.2);
}
.cauldron-layer-btn.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--layer-color, var(--color-brand-primary));
}
.cauldron-btn-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.cauldron-btn-text { flex: 1; min-width: 0; }
.cauldron-btn-text strong { display: block; font-size: 0.9rem; color: var(--text-primary); line-height: 1.3; font-weight: 700; }
.cauldron-btn-text small  { font-size: 0.72rem; color: var(--color-brand-primary); font-weight: 700; }
.cauldron-btn-arrow { font-size: 1.2rem; color: var(--color-brand-primary); opacity: 0.3; transition: opacity 0.2s, transform 0.2s; }
.cauldron-layer-btn:hover .cauldron-btn-arrow,
.cauldron-layer-btn.active .cauldron-btn-arrow { opacity: 1; transform: translateX(3px); }

/* Right Showcase Card */
.cauldron-detail-display {
  background: var(--bg-card);
  border: 1.5px solid var(--border-highlight);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.cauldron-detail-inner { display: flex; flex-direction: column; gap: 1.15rem; }

.cauldron-detail-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cauldron-temp-chip {
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-brand-primary);
  background: rgba(194,109,11,0.08);
  border: 1px solid rgba(194,109,11,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}
.cauldron-detail-icon-circle {
  width: 52px; height: 52px;
  border-radius: 16px;
  border: 1.5px solid;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.cauldron-detail-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.25;
}
.cauldron-detail-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Wisdom Highlight Box */
.cauldron-wisdom-box {
  background: rgba(194,109,11,0.06);
  border: 1px solid rgba(194,109,11,0.25);
  border-left: 4px solid var(--color-brand-primary);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.cauldron-wisdom-icon { font-size: 1.25rem; line-height: 1; flex-shrink: 0; margin-top: 0.1rem; }
.cauldron-wisdom-text strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-brand-primary); margin-bottom: 0.2rem; }
.cauldron-wisdom-text p { margin: 0; font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; font-style: italic; }

/* Suggested Dish Pill */
.cauldron-dish-suggest {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cauldron-dish-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: color 0.2s;
}
.cauldron-dish-link:hover { color: var(--color-brand-primary); }

.cauldron-detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}
.cauldron-dots { display: flex; gap: 6px; }
.cauldron-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-medium);
  cursor: pointer;
  transition: all 0.2s;
}
.cauldron-dot.active {
  background: var(--color-brand-primary);
  transform: scale(1.4);
}
.cauldron-detail-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   FLOATING ACTION DOCK — BEAUTIFUL & UNIFORM DIMENSIONS
   ========================================================================== */

.floating-action-dock {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(28, 25, 23, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid var(--border-highlight);
  border-radius: 100px;
  padding: 0.4rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 8900;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.05);
}

.dock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 40px;
  padding: 0 0.95rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.dock-btn-primary {
  background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-primary-dark) 100%);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(194, 109, 11, 0.35);
}
.dock-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 109, 11, 0.5);
}

.dock-btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-primary) !important;
  border-color: rgba(255, 255, 255, 0.12);
}
.dock-btn-secondary:hover {
  background: rgba(194, 109, 11, 0.15);
  border-color: var(--color-brand-primary);
  color: var(--color-brand-primary) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   GDPR BANNER — SLEEK, NON-OBTRUSIVE & INSTANT DISMISS
   ========================================================================== */

.gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1.5px solid var(--border-highlight);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.28);
  padding: 1rem 1.5rem;
  z-index: 9950;
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.32s ease;
  box-sizing: border-box;
}

.gdpr-banner.show {
  transform: translateY(0);
}

.gdpr-content {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gdpr-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.gdpr-text strong { color: var(--text-primary); }

.gdpr-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}


/* Section Glow Pulse when navigated via sub-anchor (e.g. #anatomia-ceaunului) */
@keyframes sectionGlowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(194, 109, 11, 0.4);
    border-color: var(--color-brand-primary);
  }
  50% {
    box-shadow: 0 0 40px 8px rgba(194, 109, 11, 0.25);
    border-color: var(--color-brand-primary-light);
  }
  100% {
    box-shadow: none;
    border-color: var(--border-highlight);
  }
}

.section-glow-pulse {
  animation: sectionGlowPulse 2.2s ease-out forwards !important;
  border-radius: 24px;
}


/* ==========================================================================
   MOBILE DRAWER & BACKDROP (HIGH PRIORITY Z-INDEX)
   ========================================================================== */

.mobile-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100dvh;
  background: var(--bg-card, #1c1917);
  border-left: 1.5px solid var(--border-highlight, rgba(194, 109, 11, 0.3));
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
  z-index: 9995;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.mobile-drawer-close {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.2s;
}
.mobile-drawer-close:hover {
  background: var(--color-brand-primary);
  color: #fff;
}

.mobile-nav-list {
  list-style: none;
  padding: 0.75rem 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
  border-left: 3px solid transparent;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(194, 109, 11, 0.1);
  color: var(--color-brand-primary);
  border-left-color: var(--color-brand-primary);
  padding-left: 1.75rem;
}

.mobile-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  flex-shrink: 0;
  background: var(--bg-surface);
}


/* ==========================================================================
   CAULDRON SECRET MODAL POPUP & ANIMATIONS
   ========================================================================== */

@keyframes modalEnter {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cauldron-secret-overlay {
  z-index: 9999 !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  background: rgba(0, 0, 0, 0.7) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem !important;
}

.cauldron-secret-modal-box {
  max-width: 580px !important;
  width: 100% !important;
  max-height: 92vh !important;
  overflow-y: auto !important;
  border: 1.5px solid var(--border-highlight) !important;
  background: var(--bg-card, #1c1917) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
  padding: 1.75rem !important;
  position: relative !important;
}

.cauldron-btn-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-brand-primary);
  background: rgba(194, 109, 11, 0.08);
  border: 1px solid rgba(194, 109, 11, 0.2);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.cauldron-layer-btn:hover .cauldron-btn-badge,
.cauldron-layer-btn.active .cauldron-btn-badge {
  background: var(--color-brand-primary);
  color: #fff;
}


/* ==========================================================================
   HAMBURGER BUTTON — ULTRA RELIABLE 44PX TOUCH TARGET
   ========================================================================== */

.hamburger-btn {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(194, 109, 11, 0.35) !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  pointer-events: auto !important;
  z-index: 9999 !important;
  position: relative !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  padding: 0 !important;
}

.hamburger-btn:hover,
.hamburger-btn:active {
  background: rgba(194, 109, 11, 0.2) !important;
  border-color: var(--color-brand-primary) !important;
  transform: scale(1.05);
}

.hamburger-btn * {
  pointer-events: none !important;
}

.ham-bar {
  display: block !important;
  width: 20px !important;
  height: 2.5px !important;
  background: var(--text-primary, #fafaf9) !important;
  border-radius: 3px !important;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hamburger-btn.open .ham-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg) !important;
  background: var(--color-brand-primary) !important;
}
.hamburger-btn.open .ham-bar:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}
.hamburger-btn.open .ham-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg) !important;
  background: var(--color-brand-primary) !important;
}

@media (min-width: 1061px) {
  .hamburger-btn {
    display: none !important;
  }
}

/* ==========================================================================
   PREMIUM MOBILE FOOTER — PERFECTLY FRAMED, VISIBLE & ANIMATED BUTTONS
   ========================================================================== */

.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.footer-links li a:hover {
  color: var(--color-brand-primary);
  transform: translateX(4px);
}
.footer-links li a::before {
  content: '›';
  font-size: 1.1rem;
  color: var(--color-brand-primary);
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-links li a:hover::before {
  opacity: 1;
  transform: translateX(2px);
}

.footer-contact .footer-link {
  font-weight: 700;
  color: var(--text-primary);
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-pill:hover {
  background: rgba(194, 109, 11, 0.18);
  border-color: var(--color-brand-primary);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 20px rgba(194, 109, 11, 0.25);
}

.anpc-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 0.45rem;
}
.anpc-badge:hover {
  border-color: var(--color-brand-primary);
  color: var(--color-brand-primary);
  transform: translateX(3px);
}
