:root {
  --gold-light: #f0d89d;
  --gold: #d4a853;
  --gold-dark: #b8923d;
  --gold-muted: rgba(212, 168, 83, 0.15);
  --warm: #e87a3d;
  --warm-light: #f0955e;
  --warm-glow: rgba(232, 122, 61, 0.25);
  --amber: #f5b041;
  --amber-glow: rgba(245, 176, 65, 0.2);
  --bg: #060606;
  --bg-card: #0c0c0c;
  --bg-elevated: #111111;
  --bg-surface: #181818;
  --bg-warm: rgba(232, 122, 61, 0.04);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(212, 168, 83, 0.3);
  --border-warm: rgba(232, 122, 61, 0.2);
  --text-primary: #f7f2e8;
  --text-secondary: #c5bdb0;
  --text-muted: #8a8078;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 32px rgba(212, 168, 83, 0.15);
  --shadow-warm: 0 8px 40px rgba(232, 122, 61, 0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

body {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 15% 10%, rgba(232, 122, 61, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(212, 168, 83, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(245, 176, 65, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 60%, rgba(232, 122, 61, 0.03) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 40%, rgba(212, 168, 83, 0.04) 0%, transparent 40%);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 1rem;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(232, 122, 61, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 75% 60%, rgba(212, 168, 83, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
  animation: bgPulse 15s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 20%, rgba(245, 176, 65, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(232, 122, 61, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: bgPulse 20s ease-in-out infinite alternate-reverse;
}

@keyframes bgPulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

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

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

::selection {
  background: var(--gold);
  color: #0d0d0d;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===================== AURORA ===================== */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

#aurora-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: blur(60px);
  opacity: 0.85;
  will-change: transform;
}

.aurora-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(232, 122, 61, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 30% 25% at 50% 0%, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  mix-blend-mode: screen;
  animation: auroraGlowPulse 8s ease-in-out infinite alternate;
}

@keyframes auroraGlowPulse {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-glow {
    animation: none;
  }
}

/* ===================== BG CANVARS (adapted from cdxtool) ===================== */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-gradient {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 15% 30%, rgba(212, 168, 83, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(232, 122, 61, 0.20) 0%, transparent 50%),
    radial-gradient(circle at 45% 85%, rgba(245, 176, 65, 0.12) 0%, transparent 40%);
  animation: bgDrift 28s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes bgDrift {
  0% { transform: translate(-2%, -2%) scale(1); }
  100% { transform: translate(2%, 2%) scale(1.08); }
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 83, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 83, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: bgGridPulse 8s ease-in-out infinite;
}

@keyframes bgGridPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.55; }
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orbFloat 18s ease-in-out infinite alternate;
  will-change: transform;
}

.bg-orb--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.35), transparent 70%);
  animation-duration: 22s;
}

.bg-orb--2 {
  width: 400px;
  height: 400px;
  bottom: -5%;
  right: -5%;
  background: radial-gradient(circle, rgba(232, 122, 61, 0.28), transparent 70%);
  animation-duration: 26s;
  animation-delay: -6s;
}

.bg-orb--3 {
  width: 350px;
  height: 350px;
  top: 40%;
  left: 55%;
  background: radial-gradient(circle, rgba(245, 176, 65, 0.20), transparent 70%);
  animation-duration: 20s;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.15); }
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.2s ease-out, top 0.2s ease-out;
  will-change: left, top;
}

@media (prefers-reduced-motion: reduce) {
  .bg-gradient,
  .bg-grid,
  .bg-orb {
    animation: none;
  }
}

/* ===================== AMBIENT ORB (kept for subtle glow) ===================== */

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 6, 6, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 2rem;
  transition: all 0.3s;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 168, 83, 0.3) 20%,
    rgba(232, 122, 61, 0.4) 50%,
    rgba(212, 168, 83, 0.3) 80%,
    transparent 100%
  );
  opacity: 0.7;
}

.navbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  gap: 1.5rem;
}

.navbar .logo {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  transition: color 0.3s;
}

.navbar .logo:hover {
  color: var(--gold);
}

.logo-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 12px rgba(212, 168, 83, 0.4));
}


.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s;
  z-index: 200;
}

.nav-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 0.7rem 1.2rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
  border-bottom: none;
}

.nav-dropdown-menu li a:hover {
  color: var(--gold);
  background: var(--gold-muted);
}

.nav-dropdown-menu li:last-child a {
  border-bottom: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.1px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a .icon-wrap {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
}

.nav-links a .icon-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .btn-reserve {
  background: var(--gold);
  color: #0d0d0d;
  padding: 0.7rem 1.6rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.2);
}

.nav-links .btn-reserve:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.4);
}

.nav-links .btn-reserve::after {
  display: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 200;
  border-radius: 8px;
  transition: background 0.2s;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
  background: var(--gold);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
  background: var(--gold);
}

.lang-switcher {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-warm);
  border-radius: 999px;
  padding: 0.25rem;
  box-shadow: 0 0 15px rgba(232, 122, 61, 0.08);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: inherit;
  transition: all 0.3s;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--warm), var(--gold));
  color: #0d0d0d;
  box-shadow: 0 0 15px rgba(232, 122, 61, 0.3);
}

.lang-btn:hover:not(.active) {
  color: var(--warm-light);
  text-shadow: 0 0 8px rgba(232, 122, 61, 0.3);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -20px;
  background-image: url('https://images.unsplash.com/photo-1519676867240-f03562e64548?q=80&w=1920');
  background-size: cover;
  background-position: center;
  animation: slowZoom 30s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232, 122, 61, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
    linear-gradient(to bottom,
      rgba(6, 6, 6, 0.15) 0%,
      rgba(6, 6, 6, 0.4) 50%,
      rgba(6, 6, 6, 0.7) 80%,
      rgba(6, 6, 6, 0.9) 100%
    );
  z-index: 2;
}

@keyframes slowZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.2); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232, 122, 61, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
    linear-gradient(to bottom,
      rgba(6, 6, 6, 0.3) 0%,
      rgba(6, 6, 6, 0.7) 50%,
      rgba(6, 6, 6, 0.95) 85%,
      rgba(6, 6, 6, 1) 100%
    );
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(245, 176, 65, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(232, 122, 61, 0.05) 0%, transparent 40%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 122, 61, 0.12);
  border: 1px solid rgba(232, 122, 61, 0.3);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.6rem;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--warm-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(232, 122, 61, 0.1);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--warm);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--warm), 0 0 20px var(--warm);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--gold); }
  50% { opacity: 0.6; box-shadow: 0 0 20px var(--gold); }
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 0 60px rgba(232, 122, 61, 0.2);
}

.hero h1 .gold {
  background: linear-gradient(135deg, var(--warm-light) 0%, var(--gold) 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(232, 122, 61, 0.4));
}

.hero .subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: rgba(247, 242, 232, 0.75);
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--warm) 0%, var(--gold) 100%);
  color: #0d0d0d;
  border: none;
  padding: 1.1rem 2.4rem;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.1px;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(232, 122, 61, 0.2);
}

.btn:hover {
  background: linear-gradient(135deg, var(--warm-light) 0%, var(--gold-light) 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 122, 61, 0.4), 0 0 60px rgba(212, 168, 83, 0.2);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(232, 122, 61, 0.1);
  border-color: var(--warm);
  box-shadow: 0 15px 40px rgba(232, 122, 61, 0.2);
  color: var(--warm-light);
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== SECTIONS ===================== */
.section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10rem 2.5rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--warm), var(--gold));
  margin: 1.5rem auto 0;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(232, 122, 61, 0.3);
}

.section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  letter-spacing: -1px;
  line-height: 1.2;
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
  width: 1.4em;
  height: 1.4em;
  color: inherit;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.icon-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.navbar .logo .icon-wrap {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--gold-light);
  filter: drop-shadow(0 0 8px rgba(212, 168, 83, 0.5)) drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.section-header .icon-wrap {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--gold-light);
}

.menu-category-title .icon-wrap {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--gold-light);
  filter: drop-shadow(0 2px 3px rgba(212, 168, 83, 0.35)) drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.info-box h3 .icon-wrap {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--gold-light);
}

.btn .icon-wrap {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  color: inherit;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.hero-content .icon-wrap {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--gold-light);
  filter: drop-shadow(0 0 10px rgba(212, 168, 83, 0.5)) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.admin-header-row .icon-wrap {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
  filter: drop-shadow(0 2px 3px rgba(212, 168, 83, 0.3));
}

.login-box h2 .icon-wrap {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--gold-light);
}

.footer .logo .icon-wrap {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(212, 168, 83, 0.4));
}

.icon-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.navbar .logo .icon-wrap {
  width: 1.5em;
  height: 1.5em;
  color: var(--gold-light);
}

.menu-category-title .icon-wrap {
  width: 1.4em;
  height: 1.4em;
  color: var(--gold-light);
}

.section-header .icon-wrap {
  width: 1.5em;
  height: 1.5em;
  color: var(--gold-light);
}

.section-header .icon {
  font-size: 1rem;
  filter: none;
}

.info-box h3 .icon-wrap {
  width: 1.2em;
  height: 1.2em;
  color: var(--gold-light);
}

.btn .icon-wrap {
  width: 1em;
  height: 1em;
  margin: 0;
  color: inherit;
}

.hero-content .icon-wrap {
  width: 1.4em;
  height: 1.4em;
  color: var(--gold-light);
  filter: drop-shadow(0 2px 4px rgba(212, 168, 83, 0.3));
}

.admin-header-row .icon-wrap {
  width: 1.3em;
  height: 1.3em;
  color: var(--gold);
}

.login-box h2 .icon-wrap {
  width: 1.3em;
  height: 1.3em;
  color: var(--gold-light);
}

.footer .logo .icon-wrap {
  width: 1.4em;
  height: 1.4em;
  color: var(--gold);
}

.icon-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}

.navbar .icon-wrap {
  width: 1.1em;
  height: 1.1em;
}

.menu-category-title .icon-wrap,
.section-header .icon-wrap {
  width: 1.4em;
  height: 1.4em;
}

.info-box h3 .icon-wrap {
  width: 1.2em;
  height: 1.2em;
}

.btn .icon-wrap {
  width: 1em;
  height: 1em;
  margin: 0;
}

.hero-content .icon-wrap {
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
}

.admin-header-row .icon-wrap {
  width: 1.3em;
  height: 1.3em;
}

.section-header .icon {
  font-size: 2.4rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  display: inline-flex;
  align-items: center;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.1px;
}

/* ===================== MENU ===================== */
.menu-category {
  margin-bottom: 7rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.menu-category-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--warm-light);
  margin-bottom: 2.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.2px;
  text-shadow: 0 0 20px rgba(232, 122, 61, 0.2);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2.2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212, 168, 83, 0.08) 0%, rgba(232, 122, 61, 0.04) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--warm), var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  transform: translateY(-6px);
  background: var(--bg-elevated);
  border-color: var(--border-warm);
  box-shadow: var(--shadow-warm), var(--shadow-gold), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  opacity: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.1px;
  line-height: 1.3;
}

.card .num {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.card .desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.card .price {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--warm-light);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(232, 122, 61, 0.3);
}

.card .price::before {
  content: '€';
  font-size: 0.9rem;
  opacity: 0.5;
  font-weight: 600;
  position: relative;
  top: -0.6em;
  margin-right: 0.1rem;
}

.card .allergen {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.8rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.card .allergen span {
  background: rgba(232, 122, 61, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(232, 122, 61, 0.15);
  color: var(--warm-light);
  transition: all 0.2s;
}

.card:hover .allergen span {
  background: rgba(232, 122, 61, 0.12);
  border-color: rgba(232, 122, 61, 0.3);
}

/* ===================== DIVIDER ===================== */
.section-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-divider .line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle) 20%, var(--warm) 50%, var(--border-subtle) 80%, transparent);
  opacity: 0.6;
  box-shadow: 0 0 10px rgba(232, 122, 61, 0.2);
}

/* ===================== INFO SECTION ===================== */
.info-section {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 5rem;
  margin: 0 auto 8rem;
  max-width: 1200px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm), var(--gold), transparent);
  opacity: 0.7;
}

.info-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(232, 122, 61, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(212, 168, 83, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.info-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--warm-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  letter-spacing: -0.3px;
  text-shadow: 0 0 30px rgba(232, 122, 61, 0.2);
}

.info-section > p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-weight: 400;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: left;
  position: relative;
  z-index: 1;
}

.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--warm), var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.info-box:hover::before {
  opacity: 1;
}

.info-box:hover {
  border-color: var(--border-warm);
  box-shadow: 0 8px 30px rgba(232, 122, 61, 0.1);
  transform: translateY(-2px);
}

.info-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--warm-light);
  margin-bottom: 1rem;
  letter-spacing: 0.1px;
  text-shadow: 0 0 10px rgba(232, 122, 61, 0.15);
}

.info-box p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.info-box strong {
  color: var(--text-primary);
  font-weight: 600;
}


/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm), var(--gold), transparent);
  opacity: 0.7;
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 122, 61, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer .logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  display: inline-block;
  letter-spacing: -0.3px;
}

.footer .logo span {
  color: var(--warm-light);
  text-shadow: 0 0 20px rgba(232, 122, 61, 0.4);
}

.footer-links {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 1rem;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--warm-light);
  text-shadow: 0 0 10px rgba(232, 122, 61, 0.3);
}

.footer-bottom {
  color: #555;
  font-size: 0.95rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  letter-spacing: 0.2px;
}

.footer-bottom span {
  color: var(--gold);
}

/* ===================== RESPONSIVE ===================== */

/* ─── PC / Large desktop (≥1440px) — defaults above ─── */

/* ─── Laptop / Small desktop (1024px–1439px) ─── */
@media (max-width: 1439px) {
  .navbar-inner {
    max-width: 1100px;
  }
  .section {
    max-width: 1100px;
  }
}

/* ─── Tablet landscape / Small laptop (768px–1023px) ─── */
@media (max-width: 1023px) {
  .navbar {
    padding: 0 1.5rem;
  }
  .navbar-inner {
    max-width: 100%;
    height: 64px;
  }
  .navbar .logo {
    font-size: 1.5rem;
  }
  .nav-links {
    gap: 1.5rem;
  }
  .nav-links a {
    font-size: 0.95rem;
  }

  .section {
    max-width: 100%;
    padding: 6rem 2rem;
  }
  .section-header {
    margin-bottom: 4rem;
  }
  .section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
  }
  .section-header p {
    font-size: 1.05rem;
  }

  .menu-category {
    margin-bottom: 5rem;
  }
  .menu-category-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .card {
    padding: 1.8rem;
  }
  .card h3 {
    font-size: 1.15rem;
  }
  .card .price {
    font-size: 1.4rem;
  }

  .info-section {
    padding: 3.5rem 2.5rem;
    margin: 0 auto 5rem;
    max-width: 100%;
    border-radius: var(--radius);
  }
  .info-section h2 {
    font-size: 1.8rem;
  }
  .info-section > p {
    font-size: 1.05rem;
  }
  .info-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .footer {
    padding: 4rem 1.5rem 2.5rem;
  }
}

/* ─── Tablet portrait (≤900px) — hamburger nav ─── */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-elevated);
    flex-direction: column;
    padding: 7rem 2.5rem 3rem;
    gap: 0.2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--border-warm);
    z-index: 150;
    backdrop-filter: blur(30px);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links a {
    padding: 1.2rem 0;
    font-size: 1.15rem;
    border-bottom: 1px solid var(--border-subtle);
    width: 100%;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  .nav-dropdown-menu.open {
    max-height: 500px;
  }
  .nav-dropdown > a {
    cursor: pointer;
  }
  .nav-links .btn-reserve {
    margin-top: 1.5rem;
    text-align: center;
    justify-content: center;
    display: flex;
    font-size: 1.1rem;
    padding: 0.9rem 1.8rem;
  }
  .nav-links li:last-child {
    margin-top: 1rem;
  }

  .hero {
    height: 80vh;
    min-height: 500px;
    max-height: 800px;
  }
  .hero-content {
    padding: 1.5rem;
    max-width: 700px;
  }
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
  }
  .hero .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
  }
  .btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
  .btn-group {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .section {
    padding: 5rem 1.5rem;
  }
  .section-header {
    margin-bottom: 3.5rem;
  }

  .menu-category {
    margin-bottom: 4rem;
  }
  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
  }

  .info-section {
    padding: 3rem 2rem;
    margin: 0 auto 4rem;
  }
  .info-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
  }
  .info-box {
    padding: 1.5rem;
  }

  .footer {
    padding: 3.5rem 1.5rem 2rem;
  }
  .footer .logo {
    font-size: 1.4rem;
  }
  .footer-links {
    gap: 1.5rem;
  }
}

/* ─── Large phone / Small tablet (≤640px) ─── */
@media (max-width: 640px) {
  html {
    font-size: 15px;
  }
  .ambient-orb {
    width: 400px;
    height: 400px;
    filter: blur(40px);
  }
  .navbar {
    padding: 0 1rem;
  }
  .navbar-inner {
    height: 56px;
  }
  .navbar .logo {
    font-size: 1.35rem;
  }
  .nav-links {
    width: 85%;
    max-width: 320px;
    padding: 6rem 2rem 2.5rem;
  }

  .hero {
    height: 85vh;
    min-height: 480px;
    max-height: 700px;
  }
  .hero-content {
    padding: 1rem;
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
    letter-spacing: -1px;
    margin-bottom: 1rem;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
  }
  .hero .subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  .btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
  }
  .btn-outline {
    border-width: 1px;
  }

  .section {
    padding: 4rem 1rem;
  }
  .section-header {
    margin-bottom: 3rem;
  }
  .section-header h2 {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }
  .section-header p {
    font-size: 0.95rem;
  }

  .menu-category {
    margin-bottom: 3.5rem;
  }
  .menu-category-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
    border-radius: var(--radius-sm);
  }
  .card-header {
    margin-bottom: 0.75rem;
  }
  .card h3 {
    font-size: 1.1rem;
  }
  .card .desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .card .price {
    font-size: 1.3rem;
  }
  .card .allergen {
    font-size: 0.7rem;
    margin-top: 0.6rem;
  }

  .info-section {
    padding: 2.5rem 1.25rem;
    margin: 0 auto 3rem;
    border-radius: var(--radius-sm);
  }
  .info-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .info-section > p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .info-box {
    padding: 1.25rem;
    border-radius: var(--radius-sm);
  }
  .info-box h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }
  .info-box p {
    font-size: 0.95rem;
  }

  .section-divider {
    padding: 0 1rem;
  }

  .footer {
    padding: 3rem 1rem 1.5rem;
  }
  .footer .logo {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .footer-links {
    gap: 0.75rem;
    flex-direction: column;
    margin-bottom: 1.5rem;
  }
  .footer-links a {
    font-size: 0.95rem;
  }
  .footer-bottom {
    font-size: 0.85rem;
    padding-top: 1.5rem;
  }
}

/* ─── Small phone (≤380px) ─── */
@media (max-width: 380px) {
  html {
    font-size: 14px;
  }
  .ambient-orb {
    width: 280px;
    height: 280px;
  }
  .navbar {
    padding: 0 0.75rem;
  }
  .navbar-inner {
    height: 50px;
  }
  .navbar .logo {
    font-size: 1.2rem;
  }

  .hero {
    height: 90vh;
    min-height: 400px;
    max-height: 600px;
  }
  .hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    margin-bottom: 0.75rem;
  }
  .hero .subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.8rem;
  }
  .btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.85rem;
  }
  .btn-group {
    gap: 0.5rem;
  }
  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 3rem 0.75rem;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }

  .menu-category-title {
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
  }

  .card {
    padding: 1.2rem;
  }
  .card h3 {
    font-size: 1rem;
  }
  .card .desc {
    font-size: 0.85rem;
  }
  .card .price {
    font-size: 1.15rem;
  }

  .info-section {
    padding: 2rem 1rem;
    margin: 0 auto 2.5rem;
  }
  .info-section h2 {
    font-size: 1.3rem;
  }
  .info-box {
    padding: 1rem;
  }

  .footer {
    padding: 2.5rem 0.75rem 1.25rem;
  }
  .footer-bottom {
    font-size: 0.8rem;
  }
}

/* ─── Touch device optimizations ─── */
@media (hover: none) and (pointer: coarse) {
  .card:hover {
    transform: none;
    box-shadow: none;
  }
  .card:hover::before {
    opacity: 0;
  }
  .card:hover::after {
    opacity: 0;
  }
  .info-box:hover {
    transform: none;
  }
  .btn:hover {
    transform: none;
  }
  .nav-links a:hover::after {
    width: 0;
  }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ─── About page overrides (inline style corrections) ─── */
@media (max-width: 640px) {
  .info-section[style*="max-width"],
  .info-grid[style*="max-width"] {
    max-width: 100% !important;
  }
  .info-box[style*="background: transparent"] h2 {
    font-size: 1.5rem !important;
  }
  .info-box[style*="background: transparent"] p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }
  .hero[style*="70vh"] {
    height: 60vh !important;
    min-height: 350px !important;
  }
}
