/*
 * LA PIZZETTA — Premium Design System v3.0
 * Customer-facing redesign only. Admin panel out of scope.
 * Drop-in replacement: every class/ID from v2.0 is preserved exactly.
 * No HTML or JS changes required to use this file.
 *
 * What changed vs v2.0, at a glance:
 *  - Refined, higher-contrast palette (same hues, deeper/cleaner)
 *  - New elevation/glass/motion tokens, used consistently everywhere
 *  - Real focus-visible states + prefers-reduced-motion support (was missing)
 *  - CSS-only 3D tilt on cards (perspective + hover, no JS)
 *  - Layered, ambient hero (ember/grain) — pure CSS, optional JS hook for
 *    cursor-reactive parallax (see hero-3d-parallax.js, additive/optional)
 *  - Skeleton + empty-state classes added for cart/menu (dormant unless your
 *    JS opts in by toggling them — safe no-op otherwise)
 *  - Tightened spacing/typography rhythm, deeper shadow system, calmer motion
 */

/* ── Design Tokens ──────────────────────────────────── */
:root {
  /* Colors — refined premium palette (same hues, deeper + cleaner) */
  --brand-primary:       #6e1620;
  --brand-primary-dark:  #460e16;
  --brand-primary-light: #8c2530;
  --brand-gold:          #c6a266;
  --brand-gold-light:    #ddc191;
  --brand-gold-dark:     #a17e48;
  --brand-cream:         #faf7f2;
  --brand-cream-dark:    #eee5d6;
  --brand-black:         #08080a;
  --brand-black-soft:    #101012;
  --brand-charcoal:      #18181b;
  --brand-gray-900:      #18181a;
  --brand-gray-800:      #27272a;
  --brand-gray-600:      #52525b;
  --brand-gray-400:      #a1a1aa;
  --brand-gray-200:      #e4e4e7;
  --brand-gray-100:      #f4f4f5;
  --brand-white:         #ffffff;

  /* New accents — used sparingly (hero ambience, fresh/veg cues) */
  --brand-ember:         #ff7a45;
  --brand-sage:          #707b5e;
  --brand-success:       #1b8a5a;
  --brand-error:         #c4392f;

  /* Typography */
  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Fluid type scale */
  --fs-xs:   clamp(0.74rem, 0.71rem + 0.15vw, 0.82rem);
  --fs-sm:   clamp(0.84rem, 0.81rem + 0.15vw, 0.92rem);
  --fs-base: clamp(0.96rem, 0.93rem + 0.15vw, 1.02rem);
  --fs-lg:   clamp(1.08rem, 1rem + 0.4vw, 1.25rem);
  --fs-xl:   clamp(1.4rem, 1.25rem + 0.75vw, 1.8rem);
  --fs-2xl:  clamp(2rem, 1.6rem + 2vw, 2.8rem);
  --fs-3xl:  clamp(2.4rem, 1.8rem + 3vw, 3.6rem);
  --fs-hero: clamp(2.5rem, 1.6rem + 5vw, 5.2rem);

  /* Spacing Scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radius */
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    30px;
  --radius-2xl:   38px;
  --radius-full:  9999px;

  /* Shadows — layered, softer falloff for a more "physical" depth */
  --shadow-xs:   0 1px 2px rgba(10,8,8,0.05);
  --shadow-sm:   0 2px 6px rgba(10,8,8,0.06), 0 1px 2px rgba(10,8,8,0.04);
  --shadow-md:   0 8px 24px rgba(10,8,8,0.08), 0 2px 6px rgba(10,8,8,0.05);
  --shadow-lg:   0 18px 48px rgba(10,8,8,0.12), 0 4px 14px rgba(10,8,8,0.06);
  --shadow-xl:   0 32px 80px rgba(10,8,8,0.16), 0 10px 24px rgba(10,8,8,0.08);
  --shadow-2xl:  0 48px 110px rgba(10,8,8,0.22), 0 14px 32px rgba(10,8,8,0.1);
  --shadow-gold: 0 10px 36px rgba(198,162,102,0.28);
  --shadow-glow-gold: 0 0 0 1px rgba(198,162,102,0.18), 0 10px 32px rgba(198,162,102,0.22);
  --shadow-inner-sm: inset 0 1px 2px rgba(0,0,0,0.05);

  /* Glass surfaces */
  --glass-bg-dark:    rgba(16,16,18,0.6);
  --glass-border-dark: rgba(255,255,255,0.09);
  --glass-bg-light:   rgba(255,255,255,0.72);
  --glass-border-light: rgba(255,255,255,0.55);

  /* Transitions */
  --ease-out-expo:  cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out:    cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast:  180ms;
  --duration-base:  380ms;
  --duration-slow:  650ms;

  /* Layout */
  --header-height: 80px;
  --max-width: 1200px;
  --max-width-wide: 1400px;

  /* Hero parallax hooks — overwritten by optional hero-3d-parallax.js;
     safe static defaults if that script is never loaded */
  --mx: 0.5;
  --my: 0.5;
}

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--brand-gray-800);
  background-color: var(--brand-cream);
  overflow-x: hidden;
  opacity: 0;
  animation: fadeInBody 0.7s var(--ease-out-quart) forwards;
}

@keyframes fadeInBody {
  from { opacity: 0; }
  to   { opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-black);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

::selection {
  background: var(--brand-gold);
  color: var(--brand-black);
}

/* Accessible focus — visible only for keyboard users, never breaks layout */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Respect reduced-motion preference site-wide */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: var(--brand-black); }
::-webkit-scrollbar-thumb { background: var(--brand-gold-dark); border-radius: 5px; border: 2px solid var(--brand-black); background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-gold); background-clip: padding-box; }
* { scrollbar-color: var(--brand-gold-dark) transparent; scrollbar-width: thin; }

/* ── Progress Bar ──────────────────────────────────── */
#page-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-gold));
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(198,162,102,0.6);
}

/* ── Scroll Reveal ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-quart), transform 0.8s var(--ease-out-quart);
  will-change: opacity, transform;
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }
.reveal.delay-5 { transition-delay: 0.4s; }
.reveal.delay-6 { transition-delay: 0.48s; }
.reveal.visible  { opacity: 1; transform: translateY(0); }

/* ── Utility Classes ───────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.container-wide {
  max-width: var(--max-width-wide);
}

.py-12 { padding: var(--space-12) 0; }
.py-16 { padding: var(--space-16) 0; }
.py-20 { padding: var(--space-20) 0; }
.py-24 { padding: var(--space-24) 0; }

.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

.w-100 { width: 100%; }

.text-center { text-align: center; }
.text-white { color: var(--brand-white); }
.text-gold { color: var(--brand-gold); }

.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }

.gold-icon { color: var(--brand-gold); margin-right: 6px; }

.bg-cream { background-color: var(--brand-cream); }
.bg-dark { background-color: var(--brand-black); }
.bg-charcoal { background-color: var(--brand-charcoal); }
.bg-primary { background-color: var(--brand-primary); }

/* Dark theme background — used on page headers and featured section */
.bg-dark-theme {
  position: relative;
  background: linear-gradient(175deg,
    #0a0608 0%,
    #130b0e 35%,
    #200c11 65%,
    #2a0d14 100%);
  overflow: hidden;
}

/* Ambient glow layers — no border effect, pure depth */
.bg-dark-theme::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% -10%, rgba(110,22,32,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 15% 110%, rgba(198,162,102,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 90%, rgba(110,22,32,0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle noise/grain texture */
.bg-dark-theme::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.bg-dark-theme > .container,
.bg-dark-theme > div {
  position: relative;
  z-index: 1;
}

/* Center content inside bg-dark-theme sections */
.bg-dark-theme.text-center .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* New, additive: glass-surface utility — opt-in, nothing requires it */
.glass {
  background: var(--glass-bg-light);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid var(--glass-border-light);
}
.bg-dark .glass, .bg-charcoal .glass {
  background: var(--glass-bg-dark);
  border-color: var(--glass-border-dark);
}

/* ── Typography ────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--brand-primary);
  margin-bottom: 14px;
  padding: 6px 15px;
  background: rgba(110,22,32,0.06);
  border-radius: var(--radius-full);
  border: 1px solid rgba(110,22,32,0.12);
}

.section-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.section-tag.gold,
.section-tag.gold-tag {
  color: var(--brand-gold-dark);
  background: rgba(198,162,102,0.1);
  border-color: rgba(198,162,102,0.22);
}

.bg-dark .section-tag.gold,
.bg-dark .section-tag.gold-tag,
.bg-charcoal .section-tag.gold,
.bg-charcoal .section-tag.gold-tag,
.bg-dark-theme .section-tag.gold,
.bg-dark-theme .section-tag.gold-tag {
  color: var(--brand-gold);
  background: rgba(198,162,102,0.12);
  border-color: rgba(198,162,102,0.28);
}

.section-title {
  font-size: var(--fs-3xl);
  margin-bottom: 16px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--brand-gray-600);
  line-height: 1.8;
  max-width: 600px;
}

.lead-text {
  font-size: var(--fs-base);
  color: var(--brand-gray-600);
  line-height: 1.85;
}

.bg-dark .section-title,
.bg-charcoal .section-title {
  color: var(--brand-white);
}

.bg-dark .lead-text,
.bg-charcoal .lead-text {
  color: rgba(255,255,255,0.76);
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 34px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform var(--duration-base) var(--ease-spring),
              box-shadow var(--duration-base) var(--ease-out-quart),
              background var(--duration-fast) ease,
              border-color var(--duration-fast) ease,
              color var(--duration-fast) ease;
  border: 2px solid transparent;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.18) 50%,
    transparent 70%
  );
  background-size: 220% 100%;
  background-position: 200% 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.btn:hover::before {
  opacity: 1;
  animation: shimmer 0.9s ease;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.btn:active {
  transform: scale(0.96);
}

.btn-gold {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
  color: var(--brand-white);
  box-shadow: 0 6px 22px rgba(198,162,102,0.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(198,162,102,0.5);
  color: var(--brand-white);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  color: var(--brand-white);
  box-shadow: 0 6px 22px rgba(110,22,32,0.32);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(110,22,32,0.46);
  color: var(--brand-white);
}

.btn-outline {
  background: transparent;
  color: var(--brand-white);
  border-color: rgba(198,162,102,0.6);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(198,162,102,0.14);
  border-color: var(--brand-gold);
  transform: translateY(-3px);
  color: var(--brand-gold);
}

.btn-delivery {
  background: linear-gradient(135deg, #ffc000, #e0a800);
  color: var(--brand-black);
  box-shadow: 0 6px 18px rgba(255,192,0,0.32);
}
.btn-delivery:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,192,0,0.48);
}

.btn-white {
  background: var(--brand-white);
  color: var(--brand-black);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
  color: var(--brand-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-gray-600);
  border-color: transparent;
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.045);
  color: var(--brand-black);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

/* ── NAVIGATION ────────────────────────────────────── */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(8,8,10,0.7);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  border-bottom: 1px solid rgba(198,162,102,0.1);
  transition: background var(--duration-base) ease,
              box-shadow var(--duration-base) ease,
              border-color var(--duration-base) ease;
}

.header-nav.scrolled {
  background: rgba(8,8,10,0.92);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
  border-bottom-color: rgba(198,162,102,0.16);
}

.nav-container {
  max-width: var(--max-width-wide);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  position: relative;
  z-index: 1002;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand-white);
  letter-spacing: 0.5px;
  line-height: 1;
  transition: color var(--duration-fast) ease;
}

.logo-link:hover .nav-brand-text {
  color: var(--brand-gold);
}

.nav-brand-yellow {
  color: var(--brand-gold);
}

/* Desktop Menu */
.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-item {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.72);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--duration-fast) ease;
  text-decoration: none;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gold);
  transition: width var(--duration-base) var(--ease-out-quart);
  border-radius: 2px;
}

.nav-item:hover,
.nav-item.active {
  color: var(--brand-gold);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropbtn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--brand-white);
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--duration-fast) ease;
  font-family: var(--font-body);
  text-transform: uppercase;
}

.lang-dropbtn:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  background: rgba(198,162,102,0.08);
}

.lang-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: var(--brand-charcoal);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow-2xl);
  border-radius: var(--radius-md);
  z-index: 1010;
  min-width: 200px;
  max-height: 340px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-gold) transparent;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--duration-fast) ease,
              transform var(--duration-fast) var(--ease-out-quart);
  pointer-events: none;
}

.lang-dropdown.show .lang-dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-dropdown-content a {
  color: rgba(255,255,255,0.6);
  padding: 10px 16px;
  display: block;
  font-size: 0.82rem;
  transition: all var(--duration-fast) ease;
  text-decoration: none;
}

.lang-dropdown-content a:hover,
.lang-dropdown-content a.active {
  background: rgba(198,162,102,0.12);
  color: var(--brand-gold);
  padding-left: 22px;
}

/* Cart Trigger */
.cart-trigger {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--brand-white);
  font-size: 1rem;
  position: relative;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) ease;
}

.cart-trigger:hover {
  color: var(--brand-gold);
  border-color: rgba(198,162,102,0.4);
  background: rgba(198,162,102,0.08);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--brand-primary);
  color: var(--brand-white);
  font-size: 0.6rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand-black-soft);
  transition: transform var(--duration-base) var(--ease-spring);
}

.cart-badge.bounce {
  transform: scale(1.4);
}

/* Hamburger */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1002;
  position: relative;
}

.hamburger-btn .bar {
  width: 22px;
  height: 2px;
  background: var(--brand-white);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out-quart);
  display: block;
}

.hamburger-btn.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-btn.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO SECTION ──────────────────────────────────── */

/* Hero CSS custom properties — all driven by JS */
:root {
  --hero-mx: 0.5;  /* cursor X  0→1 */
  --hero-my: 0.5;  /* cursor Y  0→1 */
  --hero-scroll: 0; /* scroll progress 0→1 */
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  perspective: 1400px;
  cursor: none; /* hide default — we paint a custom spotlight */
}

/* ── Video background — parallax shifts opposite to cursor ── */
.video-background-container {
  position: absolute;
  inset: -6%;          /* overscan so the pan doesn't show edges */
  z-index: 1;
  transform-style: preserve-3d;
  /* JS-driven: translate shifts opposite to content for depth */
  transform:
    translateX(calc((var(--hero-mx) - 0.5) * 28px))
    translateY(calc((var(--hero-my) - 0.5) * 20px))
    scale(1.08)
    /* Scroll parallax: video scrolls slower than page */
    translateY(calc(var(--hero-scroll) * -60px));
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Subtle dynamic brightness based on cursor Y position */
  filter:
    brightness(calc(0.62 + (var(--hero-my) - 0.5) * -0.08))
    saturate(1.1)
    /* Slight hue shift toward warm on hover left */
    hue-rotate(calc((var(--hero-mx) - 0.5) * 8deg));
  transition: filter 0.6s ease;
}

/* ── Dark overlay ── */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,5,5,0.30) 0%,
    rgba(8,5,5,0.52) 50%,
    rgba(8,5,5,0.85) 100%
  );
  z-index: 2;
  transition: opacity 0.5s ease;
}

/* ── Cursor-following spotlight ── */
.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  /* Positioned via JS: --sx/--sy = cursor px coords */
  background: radial-gradient(
    500px 500px at var(--sx, 50%) var(--sy, 50%),
    rgba(198,162,102,0.14) 0%,
    rgba(255,122,69,0.07) 30%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease, background 0.08s linear;
  mix-blend-mode: screen;
}

.hero-section:hover .hero-spotlight {
  opacity: 1;
}

/* ── Ambient ember/grain layer ── */
.hero-section::before {
  content: '';
  position: absolute;
  inset: -10%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(420px 420px at calc(15% + (var(--hero-mx) - 0.5) * 80px) calc(20% + (var(--hero-my) - 0.5) * 60px), rgba(255,122,69,0.18), transparent 60%),
    radial-gradient(360px 360px at calc(85% + (var(--hero-mx) - 0.5) * -80px) calc(75% + (var(--hero-my) - 0.5) * -60px), rgba(198,162,102,0.16), transparent 60%);
  filter: blur(2px);
  animation: emberDrift 14s ease-in-out infinite alternate;
}

@keyframes emberDrift {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}

/* ── Depth layer (intermediate parallax speed) ── */
.hero-depth-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(110,22,32,0.22) 0%, transparent 70%);
  transform:
    translateX(calc((var(--hero-mx) - 0.5) * -8px))
    translateY(calc((var(--hero-my) - 0.5) * -6px));
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── Ripple container ── */
.hero-ripple-container {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero-ripple {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle, rgba(198,162,102,0.5) 0%, rgba(198,162,102,0.1) 50%, transparent 70%);
  animation: rippleExpand 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  pointer-events: none;
}

@keyframes rippleExpand {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 0.9; }
  60%  { opacity: 0.3; }
  100% { transform: translate(-50%, -50%) scale(6); opacity: 0; }
}

/* ── Hero content — deepest layer parallax (fastest) ── */
.hero-content {
  position: relative;
  max-width: 820px;
  color: var(--brand-white);
  padding: 0 var(--space-6);
  z-index: 4;
  transform:
    translate3d(
      calc((var(--hero-mx) - 0.5) * -22px),
      calc((var(--hero-my) - 0.5) * -16px),
      0
    )
    translateY(calc(var(--hero-scroll) * -40px));
  opacity: calc(1 - var(--hero-scroll) * 1.8);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.3s ease;
  will-change: transform, opacity;
}

/* ── Custom cursor crosshair inside hero ── */
.hero-cursor {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(198,162,102,0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
  mix-blend-mode: exclusion;
}

.hero-cursor-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--brand-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  transform: translate(-50%, -50%);
  transition: transform 0.04s linear;
}

/* Cursor expands when hovering magnetic buttons */
.hero-section .hero-magnetic:hover ~ .hero-cursor,
.hero-cursor.expanded {
  width: 60px;
  height: 60px;
  border-color: var(--brand-gold);
  background: rgba(198,162,102,0.08);
}

/* ── Hero title / subtitle ── */
.hero-title {
  font-size: var(--fs-hero);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 28px rgba(0,0,0,0.55), 0 0 60px rgba(198,162,102,0.08);
  line-height: 1.04;
  color: var(--brand-white);
  opacity: 0;
  animation: heroRise 0.9s var(--ease-out-quart) 0.15s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 44px;
  color: var(--brand-gold-light);
  font-weight: 400;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
  font-style: italic;
  font-family: var(--font-display);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: heroRise 0.9s var(--ease-out-quart) 0.3s forwards;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroRise 0.9s var(--ease-out-quart) 0.45s forwards;
}

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

/* ── Magnetic button ── */
.hero-magnetic {
  /* JS will set --mx/--my offsets via inline transform */
  transition: transform 0.35s var(--ease-spring), box-shadow var(--duration-base) ease !important;
}

.hero-magnetic:hover {
  box-shadow: 0 20px 50px rgba(198,162,102,0.35) !important;
}

/* ── Scroll Indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: color 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
  opacity: calc(1 - var(--hero-scroll) * 3);
}

.hero-scroll-indicator:hover {
  color: var(--brand-gold);
}

.hero-scroll-indicator .scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50%      { transform: rotate(45deg) translateY(6px); opacity: 1; }
}



/* ── CART PANEL ────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-base) ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -480px;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  background: var(--brand-white);
  box-shadow: -8px 0 60px rgba(0,0,0,0.18);
  z-index: 1510;
  display: flex;
  flex-direction: column;
  transition: right var(--duration-slow) var(--ease-out-quart);
}

.cart-panel.open {
  right: 0;
}

.cart-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--brand-gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.3rem;
  margin: 0;
}

.close-cart-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-gray-100);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  color: var(--brand-gray-600);
}

.close-cart-btn:hover {
  background: var(--brand-gray-200);
  color: var(--brand-black);
  transform: rotate(90deg);
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-6);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--brand-gray-100);
  animation: cartItemIn 0.35s var(--ease-out-quart);
}

@keyframes cartItemIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cart-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.cart-item-info h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: 4px;
}

.cart-item-info span {
  font-size: 0.85rem;
  color: var(--brand-gold-dark);
  font-weight: 700;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-gray-100);
  padding: 4px;
  border-radius: var(--radius-sm);
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border: none;
  background: var(--brand-white);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-gray-800);
  transition: all var(--duration-fast) ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-qty button:hover {
  background: var(--brand-gold);
  color: var(--brand-white);
}

.cart-item-qty span {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--brand-gray-200);
  background: var(--brand-gray-100);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-4);
  color: var(--brand-black);
}

/* New, additive: empty-cart state. Dormant unless your JS toggles a
   `.cart-empty` class onto `.cart-items-container` — safe no-op otherwise. */
.cart-items-container.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  color: var(--brand-gray-400);
  height: 100%;
}
.cart-items-container.cart-empty::before {
  content: '\1F355';
  font-size: 2.4rem;
  opacity: 0.5;
}

/* New, additive: skeleton/loading state for cart rows and menu cards.
   Dormant unless `.skeleton` is toggled on by your JS. */
.skeleton {
  position: relative;
  overflow: hidden;
  color: transparent !important;
  background: var(--brand-gray-200);
  border-radius: var(--radius-sm);
  pointer-events: none;
}
.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
}
@keyframes skeletonShimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* Delivery Modal */
.delivery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-base) ease;
  padding: var(--space-6);
}

.delivery-modal.open {
  opacity: 1;
  visibility: visible;
}

.delivery-modal-content {
  background: var(--brand-white);
  padding: var(--space-10);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-2xl);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--duration-base) var(--ease-out-quart);
}

.delivery-modal.open .delivery-modal-content {
  transform: translateY(0) scale(1);
}

.close-delivery-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-gray-100);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.close-delivery-modal:hover {
  background: var(--brand-gray-200);
  transform: rotate(90deg);
}

.delivery-modal-content h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.delivery-modal-content p {
  color: var(--brand-gray-600);
  margin-bottom: var(--space-6);
}

.delivery-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.delivery-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  border: 1px solid var(--brand-gray-200);
  border-radius: var(--radius-md);
  transition: all var(--duration-base) var(--ease-out-quart);
  text-decoration: none;
  color: var(--brand-black);
  max-width: 180px;
}

.delivery-card:hover {
  border-color: var(--brand-gold);
  box-shadow: 0 14px 34px rgba(198,162,102,0.18);
}

.delivery-card span {
  font-weight: 600;
  font-size: 0.9rem;
}

.delivery-logo {
  height: 36px;
  width: auto;
}

/* ── ABOUT SECTION ─────────────────────────────────── */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198,162,102,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.about-text-col {
  position: relative;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.counter-card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: rgba(110,22,32,0.035);
  border-radius: var(--radius-md);
  border: 1px solid rgba(110,22,32,0.07);
  transition: all var(--duration-base) var(--ease-out-quart);
}

.counter-card:hover {
  background: rgba(110,22,32,0.06);
  box-shadow: 0 10px 26px rgba(110,22,32,0.08);
}

.counter-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand-gold);
  font-weight: 700;
}

.counter-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  color: var(--brand-gray-600);
}

.about-image-col {
  position: relative;
}

.about-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, var(--brand-gold), transparent 50%, var(--brand-primary) 100%);
  z-index: -1;
  opacity: 0.5;
}

.img-scale {
  transition: transform 0.8s var(--ease-out-quart);
  width: 100%;
}

.img-scale:hover {
  transform: scale(1.06);
}

/* ── MENU CARDS ────────────────────────────────────── */
.featured-section {
  position: relative;
}

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

.menu-card {
  background: var(--brand-charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--duration-base) var(--ease-out-quart),
              box-shadow var(--duration-base) var(--ease-out-quart),
              border-color var(--duration-base) ease;
  transform-style: preserve-3d;
  will-change: transform;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
}

/* CSS-only 3D tilt — no JS required. Subtle, consistent lift + rotation. */
.menu-card:hover {
  border-color: rgba(198,162,102,0.32);
  box-shadow: var(--shadow-xl), var(--shadow-glow-gold);
}

.menu-card-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-quart);
}

.menu-card:hover .menu-card-img {
  transform: scale(1.1);
}

.menu-card-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.62) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* Tags */
.tag {
  position: absolute;
  top: 14px;
  padding: 5px 12px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: var(--radius-full);
  color: var(--brand-white);
  z-index: 2;
  backdrop-filter: blur(8px);
}
.tag-new     { background: rgba(198,162,102,0.88); left: 14px; }
.tag-popular { background: rgba(110,22,32,0.88);   left: 14px; }

.menu-card-info {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.menu-card-title {
  font-size: 1.15rem;
  color: var(--brand-white);
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
  flex: 1;
}

.menu-card-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-gold);
  white-space: nowrap;
  font-family: var(--font-display);
}

.menu-card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.52);
  margin-bottom: 18px;
  line-height: 1.6;
  flex: 1;
}

.menu-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.allergen-icons {
  display: flex;
  gap: 6px;
}

.allergen-badge {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.62);
  font-size: 0.62rem;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.09);
  transition: all var(--duration-fast) ease;
}

.allergen-badge:hover {
  border-color: rgba(198,162,102,0.5);
  color: var(--brand-gold);
}

.btn-add-cart {
  background: transparent;
  border: 1.5px solid rgba(198,162,102,0.42);
  color: var(--brand-gold);
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--duration-base) var(--ease-out-quart);
  font-family: var(--font-body);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-add-cart:hover {
  background: var(--brand-gold);
  color: var(--brand-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(198,162,102,0.32);
  border-color: var(--brand-gold);
}

.btn-add-cart:active {
  transform: translateY(0) scale(0.97);
}

/* ── WINE TEASER ───────────────────────────────────── */
.wine-teaser {
  position: relative;
  background: linear-gradient(135deg, var(--brand-primary-dark), var(--brand-primary));
  overflow: hidden;
}

.wine-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.wine-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.wine-teaser-img-col {
  position: relative;
}

.wine-teaser-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.wine-teaser-img-col::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 16px;
  right: -16px;
  height: 40%;
  background: var(--brand-gold);
  border-radius: var(--radius-lg);
  opacity: 0.1;
  z-index: -1;
}

.wine-teaser-text-col .lead-text {
  color: rgba(255,255,255,0.8);
}

/* Featured wines on home */
.featured-wines-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.wine-card {
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(198,162,102,0.14);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: all var(--duration-base) var(--ease-out-quart);
}

.wine-card:hover {
  border-color: rgba(198,162,102,0.32);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
  background: rgba(255,255,255,0.065);
}

.wine-card-image-wrapper {
  width: 80px;
  height: 120px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(198,162,102,0.16);
}

.wine-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-base) var(--ease-out-quart);
}

.wine-card:hover .wine-card-img {
  transform: scale(1.1);
}

.wine-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wine-info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.wine-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brand-white);
  margin: 0;
  line-height: 1.3;
}

.wine-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.btn-add-wine-cart {
  background: rgba(198,162,102,0.09);
  border: 1px solid rgba(198,162,102,0.22);
  color: var(--brand-gold);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn-add-wine-cart:hover {
  background: var(--brand-gold);
  color: var(--brand-charcoal) !important;
  border-color: var(--brand-gold);
  transform: translateY(-2px);
}

.wine-meta-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.wine-meta-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wine-meta-info strong {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* ── WHY US ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-base) var(--ease-out-quart);
  border: 1px solid rgba(198,162,102,0.09);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-primary));
  opacity: 0;
  transition: opacity var(--duration-base) ease;
}

.why-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(198,162,102,0.22);
}

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

.why-icon-wrapper {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(110,22,32,0.09), rgba(110,22,32,0.03));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--brand-primary);
  transition: all var(--duration-base) var(--ease-out-quart);
  border: 1px solid rgba(110,22,32,0.09);
}

.why-card:hover .why-icon-wrapper {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  color: var(--brand-white);
  transform: scale(1.1) rotate(-6deg);
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(110,22,32,0.22);
}

.why-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--brand-black);
}

.why-card p {
  font-size: 0.92rem;
  color: var(--brand-gray-600);
  line-height: 1.7;
}

/* ── REVIEWS ───────────────────────────────────────── */
.reviews-section {
  position: relative;
}

.reviews-slider {
  padding: 24px 0 56px;
}

.review-card {
  background: var(--brand-white);
  padding: 48px 52px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid rgba(198,162,102,0.12);
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(198,162,102,0.12);
  position: absolute;
  top: 10px;
  left: 28px;
  line-height: 1;
  pointer-events: none;
}

.review-card .stars {
  color: #e3aa1f;
  margin-bottom: 20px;
  font-size: 1.1rem;
  letter-spacing: 4px;
}

.review-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 22px;
  color: var(--brand-gray-800);
  line-height: 1.8;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-gold-dark);
  font-family: var(--font-body);
}

/* Swiper Custom */
.swiper-pagination-bullet {
  background: var(--brand-gold) !important;
  opacity: 0.3;
  width: 10px;
  height: 10px;
  transition: all var(--duration-fast) ease !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

/* ── MENU PAGE ─────────────────────────────────────── */
.menu-page-header {
  position: relative;
  padding-top: calc(var(--header-height) + var(--space-12));
  padding-bottom: var(--space-16);
}

.menu-page-header .hero-title {
  margin-bottom: 12px;
}

/* Fix: page section headers use .hero-title/.hero-subtitle but those
   have opacity:0 + animation tied to the main hero section.
   Inside any .bg-dark-theme section header, override to always visible. */
.bg-dark-theme .hero-title,
.bg-dark-theme .hero-subtitle {
  opacity: 1;
  animation: none;
  transform: none;
}

/* Decorative gold divider on bottom of all page section headers */
.menu-page-header::after,
.reservation-page-header::after,
.contact-page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
  border-radius: 2px;
}

.menu-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.search-box-wrapper {
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 420px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-gray-400);
  pointer-events: none;
  font-size: 0.9rem;
}

.menu-search-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 2px solid var(--brand-gray-200);
  border-radius: var(--radius-full);
  outline: none;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all var(--duration-fast) ease;
  background: var(--brand-white);
  color: var(--brand-black);
}

.menu-search-input:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(198,162,102,0.14);
}

.menu-search-input::placeholder {
  color: var(--brand-gray-400);
}

.dietary-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tag-btn {
  background: var(--brand-white);
  border: 2px solid var(--brand-gray-200);
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--duration-fast) ease;
  font-family: var(--font-body);
  color: var(--brand-gray-600);
}

.filter-tag-btn:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold-dark);
}

.filter-tag-btn.active {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-white);
}

/* Category Tabs */
.category-tabs-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 2px solid var(--brand-gray-200);
  padding-bottom: 0;
}

.category-tabs {
  display: inline-flex;
  gap: 32px;
  padding-bottom: 8px;
}

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-gray-600);
  cursor: pointer;
  padding: 12px 4px;
  position: relative;
  white-space: nowrap;
  transition: color var(--duration-fast) ease;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand-gold);
  border-radius: 2px;
  transition: width var(--duration-base) var(--ease-out-quart);
}

.tab-btn:hover,
.tab-btn.active {
  color: var(--brand-gold-dark);
}

.tab-btn.active::after {
  width: 100%;
}

/* Category Groups */
.menu-category-group {
  margin-bottom: var(--space-12);
}

.category-group-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand-black);
  padding-bottom: 12px;
  margin-bottom: var(--space-6);
}

.category-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ── WINE PAGE ─────────────────────────────────────── */
.wine-page-hero {
  padding-top: calc(var(--header-height) + var(--space-16));
  padding-bottom: var(--space-16);
  text-align: center;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wine-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.wine-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--brand-white);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.wine-hero-subtitle {
  font-size: 1.15rem;
  color: var(--brand-gold-light);
  margin-bottom: 40px;
  font-weight: 400;
  font-style: italic;
}

.wine-quick-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.wine-quick-nav-btn {
  background: rgba(198,162,102,0.1);
  border: 1px solid rgba(198,162,102,0.32);
  color: var(--brand-gold);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--duration-fast) ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wine-quick-nav-btn:hover {
  background: var(--brand-gold);
  color: var(--brand-black);
  transform: translateY(-2px);
}

/* Wine Listing — rich dark gradient matching the site palette */
.wine-listing-section {
  background: linear-gradient(180deg,
    #0a0608 0%,
    #0f0a0c 30%,
    #130b0e 60%,
    #0d0809 100%);
  padding: var(--space-20) 0;
  position: relative;
}

/* Subtle gold ambient at top to blend with hero */
.wine-listing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(198,162,102,0.04) 0%, transparent 100%);
  pointer-events: none;
}

/* Last wine category — ensure it never fades to light */
.wine-category-section:last-child {
  margin-bottom: 0;
  padding-bottom: var(--space-12);
}

.wine-category-section {
  margin-bottom: var(--space-20);
  scroll-margin-top: 100px;
  position: relative;
}

.wine-cat-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: var(--space-10);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(198,162,102,0.16);
}

.wine-cat-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(198,162,102,0.07);
  border: 1px solid rgba(198,162,102,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.wine-cat-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand-gold);
  margin: 0 0 4px 0;
}

.wine-cat-count {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.42);
  margin: 0;
}

/* Premium Wine Grid */
.wine-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.wine-premium-card {
  background: var(--brand-charcoal);
  border: 1px solid rgba(198,162,102,0.11);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-out-quart),
              box-shadow var(--duration-base) var(--ease-out-quart),
              border-color var(--duration-base) ease;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
  perspective: 1000px;
  position: relative;
}

/* Highlight shimmer overlay — reveals during 3D tilt */
.wine-premium-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.04) 0%,
    rgba(198,162,102,0.06) 50%,
    rgba(255,255,255,0.01) 100%
  );
  opacity: 0;
  transition: opacity var(--duration-base) ease;
  pointer-events: none;
  z-index: 10;
}

.wine-premium-card:hover::after {
  opacity: 1;
}

.wine-premium-card:hover {
  border-color: rgba(198,162,102,0.42);
  box-shadow: var(--shadow-2xl), 0 0 40px rgba(198,162,102,0.08);
}

.wine-premium-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #111;
}

.wine-premium-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-quart);
  opacity: 0.85;
}

.wine-premium-card:hover .wine-premium-img {
  transform: scale(1.08);
  opacity: 1;
}

.wine-featured-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--brand-gold);
  color: var(--brand-black);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.wine-premium-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.wine-premium-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brand-white);
  margin: 0;
}

.wine-premium-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wine-meta-tag {
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.58);
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wine-meta-tag i {
  color: var(--brand-gold);
  font-size: 0.72rem;
}

.wine-premium-pairing {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  background: rgba(198,162,102,0.055);
  border-left: 3px solid var(--brand-gold);
  padding: 10px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 0;
  line-height: 1.6;
}

.wine-premium-pairing i {
  color: var(--brand-gold);
  margin-right: 6px;
}

.wine-premium-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.wine-price-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wine-price-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wine-price-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wine-price-label i {
  color: var(--brand-gold);
  opacity: 0.7;
  font-size: 0.7rem;
}

.wine-price-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-gold);
}

.wine-add-btns {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wine-btn-add {
  background: transparent;
  border: 1px solid rgba(198,162,102,0.32);
  color: var(--brand-gold);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  white-space: nowrap;
}

.wine-btn-add:hover {
  background: var(--brand-gold);
  color: var(--brand-charcoal);
  border-color: var(--brand-gold);
  transform: translateY(-1px);
}

.wine-btn-bottle {
  background: rgba(198,162,102,0.09);
}

/* ── RESERVATION PAGE ──────────────────────────────── */
.reservation-page-header {
  position: relative;
  padding-top: calc(var(--header-height) + var(--space-12));
  padding-bottom: var(--space-16);
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: flex-start;
}

.res-info-col h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.res-details p {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-gray-600);
}

.res-details strong {
  color: var(--brand-black);
  min-width: 60px;
}

.booking-form {
  background: var(--brand-white);
  padding: var(--space-10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(198,162,102,0.11);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  color: var(--brand-gray-600);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--brand-gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--duration-fast) ease;
  background: var(--brand-cream);
  font-family: var(--font-body);
  color: var(--brand-black);
  appearance: none;
}

.form-control:focus {
  border-color: var(--brand-gold);
  background: var(--brand-white);
  box-shadow: 0 0 0 4px rgba(198,162,102,0.12);
}

.form-control::placeholder {
  color: var(--brand-gray-400);
}

.form-control.error {
  border-color: var(--brand-error);
  background: #fdf2f1;
}

.form-control.success {
  border-color: var(--brand-success);
  background: #f0faf4;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Form Status Messages */
.form-status-msg {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  display: none;
}

.success-msg {
  background: #f0faf4;
  color: #157048;
  border: 1px solid #bfe8d2;
}

.error-msg {
  background: #fdf2f1;
  color: #a32b22;
  border: 1px solid #f4c5c0;
}

.info-msg {
  background: rgba(198,162,102,0.1);
  color: var(--brand-gold-dark);
  border: 1px solid rgba(198,162,102,0.22);
}

/* WhatsApp Block */
.res-whatsapp-block {
  background: linear-gradient(135deg, rgba(37,211,102,0.07), rgba(37,211,102,0.03));
  border: 1px solid rgba(37,211,102,0.22);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

.res-wa-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.res-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: var(--brand-white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-out-quart);
  box-shadow: 0 6px 20px rgba(37,211,102,0.32);
  font-family: var(--font-body);
}

.res-wa-btn i {
  font-size: 1.3rem;
}

.res-wa-btn:hover {
  background-color: #1ebe5c;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
  color: var(--brand-white);
}

.res-wa-number {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--brand-gray-600);
  opacity: 0.65;
}

/* ── CONTACT PAGE ──────────────────────────────────── */
.contact-page-header {
  position: relative;
  padding-top: calc(var(--header-height) + var(--space-12));
  padding-bottom: var(--space-16);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.info-card-block {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--brand-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  transition: all var(--duration-base) var(--ease-out-quart);
  border: 1px solid rgba(198,162,102,0.07);
}

.info-card-block:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(198,162,102,0.18);
}

.block-icon {
  font-size: 1.8rem;
  color: var(--brand-primary);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(110,22,32,0.07);
  border-radius: var(--radius-sm);
}

.info-card-block h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--brand-black);
}

.info-card-block p {
  color: var(--brand-gray-600);
  font-size: 0.95rem;
}

.map-iframe-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(198,162,102,0.11);
}

.map-iframe-wrapper iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
}

/* ── FOOTER ────────────────────────────────────────── */
.footer-section {
  background: var(--brand-black);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 28px;
  position: relative;
}

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

.footer-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.brand-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  opacity: 0.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--brand-white);
  margin-bottom: 22px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-body);
  font-weight: 700;
}

.hours-text { font-size: 0.88rem; line-height: 1.8; opacity: 0.7; }

.footer-links { list-style: none; }

.footer-links li {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.88rem;
  transition: all var(--duration-fast) ease;
  color: rgba(255,255,255,0.7);
}

.footer-links li:hover { color: var(--brand-white); transform: translateX(4px); }
.footer-links li i { color: var(--brand-gold); width: 14px; text-align: center; flex-shrink: 0; }
.footer-links li a { color: rgba(255,255,255,0.7); transition: color var(--duration-fast) ease; }
.footer-links li a:hover { color: var(--brand-gold); }

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  transition: all var(--duration-base) var(--ease-out-quart);
  font-size: 0.95rem;
}

.social-links a:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-black);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 26px rgba(198,162,102,0.22);
}

.footer-order-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
}

.footer-delivery-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--duration-fast) ease;
  border: none;
}

.footer-pill-logo { height: 20px; width: auto; display: block; }

.glovo-pill { background-color: #ffc244; }
.glovo-pill .footer-pill-logo { filter: brightness(0); }
.glovo-pill:hover { background-color: #e6ad38; transform: translateY(-2px); }

.uber-pill { background-color: var(--brand-white); }
.uber-pill .footer-pill-logo { filter: brightness(0); }
.uber-pill:hover { background-color: var(--brand-gray-200); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom-text {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  margin: 0;
}

.footer-bottom-text strong { color: rgba(255,255,255,0.7); font-weight: 600; }

.footer-portfolio-link {
  color: var(--brand-gold);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.footer-portfolio-link:hover {
  color: var(--brand-gold-light);
  text-decoration: underline;
}

/* ── WHATSAPP FLOATING BUTTON ──────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--brand-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 1200;
  box-shadow: 0 8px 26px rgba(37,211,102,0.4);
  transition: all var(--duration-base) var(--ease-out-quart);
  text-decoration: none;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.55);
  animation: waPulse 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float:hover {
  background: #1ebe5c;
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--brand-charcoal);
  color: var(--brand-white);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration-fast) ease;
}

.whatsapp-float .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--brand-charcoal);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── RTL ADJUSTMENTS ───────────────────────────────── */
body.rtl-layout { direction: rtl; text-align: right; }
body.rtl-layout .lang-dropdown-content { left: 0; right: auto; }
body.rtl-layout .lang-dropdown-content a { text-align: right; }
body.rtl-layout .cart-panel { right: auto; left: -480px; }
body.rtl-layout .cart-panel.open { left: 0; right: auto; }
body.rtl-layout .whatsapp-float { right: auto; left: 28px; }
body.rtl-layout .search-icon { left: auto; right: 16px; }
body.rtl-layout .menu-search-input { padding: 14px 44px 14px 16px; }

/* ── RESPONSIVE ────────────────────────────────────── */

@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .wine-teaser-grid { gap: 40px; }
  .featured-wines-home-grid { grid-template-columns: repeat(2, 1fr); }
  .wine-premium-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

@media (max-width: 992px) {
  :root { --header-height: 70px; }
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(8,8,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    z-index: 999;
    border-bottom: 1px solid rgba(198,162,102,0.12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .nav-menu.active { display: flex; animation: slideDown 0.32s var(--ease-out-quart); }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-item {
    padding: 14px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.035);
    font-size: 0.92rem;
    text-transform: none;
  }
  .nav-item:last-child { border-bottom: none; }
  .nav-item::after { display: none; }
  .hamburger-btn { display: flex; }
  .about-grid, .wine-teaser-grid, .reservation-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .section-title { font-size: 2.2rem; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .review-card { padding: 36px 28px; }
  .wine-page-hero { min-height: 50vh; }
  .wine-hero-title { font-size: 2.4rem; }
  /* Cursor-tracked tilt is irrelevant on touch devices */
  .menu-card:hover { transform: none; }
}

@media (max-width: 768px) {
  .featured-grid, .category-items-grid { grid-template-columns: 1fr; gap: 20px; }
  .featured-wines-home-grid { grid-template-columns: 1fr; }
  .booking-form { padding: var(--space-6); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; }
  .counters-grid { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .counter-number { font-size: 2rem; }
  .menu-controls { flex-direction: column; align-items: stretch; }
  .search-box-wrapper { max-width: 100%; min-width: 0; }
  .dietary-filters { justify-content: center; }
  .delivery-links { flex-direction: column; align-items: center; }
  .delivery-card { max-width: 100%; width: 100%; }
  .wine-card { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .wine-info-header { flex-direction: column; align-items: center; gap: 8px; }
  .wine-prices { align-items: center; }
  .wine-premium-grid { grid-template-columns: 1fr; }
  .wine-cat-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .reservation-grid { gap: 32px; }
  .section-title { font-size: 1.8rem; }
  .reviews-slider { padding: 16px 0 48px; }
}

@media (max-width: 576px) {
  .container { padding: 0 var(--space-4); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .counters-grid { grid-template-columns: 1fr; gap: 12px; }
  .wine-page-hero { min-height: auto; padding-top: calc(var(--header-height) + var(--space-10)); background-attachment: scroll; }
  .wine-hero-title { font-size: 2rem; }
  .wine-premium-footer { flex-direction: column; align-items: flex-start; }
  .wine-add-btns { flex-direction: row; width: 100%; }
  .wine-add-btns .wine-btn-add { flex: 1; justify-content: center; }
  .contact-grid { gap: 32px; }
  .map-iframe-wrapper iframe { height: 300px; }
  .info-card-block { flex-direction: column; align-items: flex-start; gap: 12px; }
  .delivery-modal-content { padding: var(--space-6); }
  .cart-panel { width: 100%; right: -100%; }
  .cart-panel.open { right: 0; }
  .hero-section { min-height: 80vh; }
  .section-title { font-size: 1.6rem; }
  .why-card { padding: 32px 24px; }
  .review-card { padding: 28px 20px; }
  .review-card::before { font-size: 4rem; top: 6px; left: 16px; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 1.5rem; }
  .menu-card-meta { flex-direction: column; align-items: stretch; gap: 12px; }
  .allergen-icons { justify-content: center; }
  .btn-add-cart { justify-content: center; width: 100%; }
}

@media (min-width: 1600px) {
  .container { max-width: 1320px; }
  .nav-container { max-width: 1520px; }
  .featured-grid, .category-items-grid { grid-template-columns: repeat(4, 1fr); }
  .wine-premium-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Touch devices: skip hover-dependent tilt/lift, rely on tap feedback */
@media (hover: none) {
  .menu-card:hover,
  .wine-premium-card:hover,
  .why-card:hover,
  .info-card-block:hover {
    transform: none;
  }
}

@media print {
  .header-nav, .whatsapp-float, .cart-trigger, .hamburger-btn, .cart-panel, .cart-overlay, .delivery-modal, .hero-scroll-indicator { display: none !important; }
  body { background: white; color: black; }
  .hero-section { height: auto; min-height: auto; padding: 40px 0; }
  .wine-page-hero { background: none !important; padding: 20px 0; }
  .wine-hero-title, .hero-title { color: black; }
}

/* ── 3D ANIMATIONS & FLOATING EFFECTS ──────────────── */

/* Floating keyframes — used by JS to add .float-anim class */
@keyframes floatY {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(0.5deg); }
  66%       { transform: translateY(-5px) rotate(-0.5deg); }
}

@keyframes floatX {
  0%, 100% { transform: translateX(0px); }
  50%       { transform: translateX(6px); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(198,162,102,0.15), var(--shadow-lg); }
  50%       { box-shadow: 0 0 40px rgba(198,162,102,0.30), var(--shadow-xl); }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(198,162,102,0.11); }
  50%       { border-color: rgba(198,162,102,0.35); }
}

/* Why-card: 3D tilt support + shimmer overlay */
.why-card {
  transform-style: preserve-3d;
  will-change: transform;
  perspective: 1000px;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.06) 0%,
    rgba(198,162,102,0.04) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity var(--duration-base) ease;
  pointer-events: none;
}

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

/* Info-card-block: 3D support */
.info-card-block {
  transform-style: preserve-3d;
  will-change: transform;
  perspective: 900px;
  position: relative;
}

.info-card-block::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.05) 0%,
    rgba(198,162,102,0.03) 100%
  );
  opacity: 0;
  transition: opacity var(--duration-base) ease;
  pointer-events: none;
}

.info-card-block:hover::after {
  opacity: 1;
}

/* Counter cards: subtle float animation on scroll-enter */
.counter-card.animated {
  animation: floatY 5s ease-in-out infinite;
}

.counter-card.animated:nth-child(2) {
  animation-delay: 0.8s;
}

.counter-card.animated:nth-child(3) {
  animation-delay: 1.6s;
}

/* Hero floating particle dots — purely decorative */
.hero-section .particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
  0%   { opacity: 0;   transform: translateY(0) scale(0.8); }
  10%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0;   transform: translateY(-120px) scale(1.2); }
}

/* Section entry shimmer — fires once on reveal */
.reveal.visible .section-title {
  animation: titleShimmer 1.5s ease-out 0.2s both;
}

@keyframes titleShimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Wine hero: enhanced floating quick-nav pills */
.wine-quick-nav-btn {
  animation: floatY 6s ease-in-out infinite;
}

.wine-quick-nav-btn:nth-child(2) { animation-delay: 1s; }
.wine-quick-nav-btn:nth-child(3) { animation-delay: 2s; }
.wine-quick-nav-btn:nth-child(4) { animation-delay: 3s; }

/* Wine category icon: slow rotation on hover */
.wine-cat-icon-wrap {
  transition: all var(--duration-slow) var(--ease-spring);
}

.wine-cat-icon-wrap:hover {
  transform: rotate(15deg) scale(1.12);
  background: rgba(198,162,102,0.14);
  border-color: rgba(198,162,102,0.45);
  box-shadow: 0 8px 24px rgba(198,162,102,0.18);
}

/* Menu card: enhanced 3D tilt with inner glow */
.menu-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

/* JS-tilt target class applied by main.js */
.tilt-active {
  transition: none !important;
}

/* Glowing border animation for featured wine cards */
.wine-premium-card.is-featured-card {
  animation: borderGlow 3s ease-in-out infinite;
}

/* Reservation Cart Bill Styling */
.reservation-grid.has-bill {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
  .reservation-grid.has-bill {
    grid-template-columns: 1fr;
  }
}

.bill-preview-card {
  border: 1px solid rgba(198,162,102,0.2) !important;
  background-color: var(--brand-white);
}

.bill-preview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.bill-preview-item-info {
  display: flex;
  flex-direction: column;
}

.bill-preview-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-black);
}

.bill-preview-item-qty {
  font-size: 0.75rem;
  color: var(--brand-gray-500);
}

.bill-preview-item-price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-black);
}

/* Success Invoice Receipt */
.reservation-success-invoice {
  max-width: 650px;
  margin: 0 auto 40px auto;
  background: var(--brand-white);
  border: 2px solid var(--brand-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: slideUp 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.invoice-header {
  background: linear-gradient(135deg, var(--brand-black) 0%, #222 100%);
  color: var(--brand-white);
  padding: 24px;
  text-align: center;
  border-bottom: 3px solid var(--brand-gold);
  position: relative;
}

.invoice-header h2 {
  font-family: var(--font-display);
  color: var(--brand-gold);
  font-size: 2rem;
  margin-bottom: 5px;
}

.invoice-header p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.invoice-body {
  padding: 24px;
}

.invoice-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  background: var(--brand-cream);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(198,162,102,0.1);
}

.invoice-meta-item {
  font-size: 0.9rem;
  color: var(--brand-black);
}

.invoice-meta-item strong {
  color: var(--brand-black);
}

.invoice-items-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.invoice-items-table th {
  text-align: left;
  border-bottom: 2px solid var(--brand-gray-200);
  padding: 8px 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--brand-gray-500);
}

.invoice-items-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--brand-gray-200);
  font-size: 0.95rem;
  color: var(--brand-black);
}

.invoice-items-table tr:last-child td {
  border-bottom: none;
}

.invoice-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px dashed var(--brand-gold);
  padding-top: 15px;
  margin-top: 10px;
  font-weight: 750;
  font-size: 1.25rem;
  color: var(--brand-black);
}

.invoice-footer {
  text-align: center;
  padding: 16px;
  background: var(--brand-cream);
  border-top: 1px solid var(--brand-gray-200);
  display: flex;
  gap: 12px;
  justify-content: center;
}

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

/* ── News & Offers Features ────────────────────────── */
.news-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-top: var(--space-6);
}

@media (min-width: 768px) {
  .news-home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-home-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: var(--glass-bg-dark);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-base) var(--ease-out-quart),
              box-shadow var(--duration-base) var(--ease-out-quart),
              border-color var(--duration-fast) ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(198,162,102,0.35);
}

.news-card-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-quart);
}

.news-card:hover .news-card-img {
  transform: scale(1.08);
}

.news-card-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-date {
  font-size: var(--fs-xs);
  color: var(--brand-gold-light);
  font-weight: 600;
  margin-bottom: var(--space-2);
  display: block;
}

.news-card-title {
  font-size: var(--fs-lg);
  font-family: var(--font-display);
  color: var(--brand-white);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.news-card-teaser {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

.news-card-link {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--brand-gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--duration-fast) ease;
  margin-top: auto;
}

.news-card-link i {
  transition: transform var(--duration-fast) ease;
}

.news-card-link:hover {
  color: var(--brand-gold-light);
}

.news-card-link:hover i {
  transform: translateX(5px);
}

/* Public News Page Styles */
.news-page-hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  background-position: center;
  background-size: cover;
  color: var(--brand-white);
}

.news-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-hero-title {
  font-size: var(--fs-3xl);
  font-family: var(--font-display);
  color: var(--brand-white);
  margin-bottom: var(--space-3);
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.news-hero-subtitle {
  font-size: var(--fs-base);
  color: var(--brand-cream-dark);
  max-width: 600px;
  line-height: 1.5;
}

.news-premium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 768px) {
  .news-premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-premium-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-premium-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--brand-cream-dark);
  transition: transform var(--duration-base) var(--ease-out-quart),
              box-shadow var(--duration-base) var(--ease-out-quart);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.news-premium-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.news-premium-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-quart);
}

.news-premium-card:hover .news-premium-img {
  transform: scale(1.06);
}

.news-premium-body {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta-row {
  display: flex;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--brand-gray-600);
}

.news-premium-title {
  font-size: var(--fs-xl);
  font-family: var(--font-display);
  color: var(--brand-black);
  line-height: 1.25;
}

.news-premium-content {
  font-size: var(--fs-base);
  color: var(--brand-gray-800);
  line-height: 1.7;
}