/* ═══════════════════════════════════════════════════════════
   PEE DEE BEANS COFFEE — Main Stylesheet
   Premium Coffee Experience — Warm Luxury Minimalism
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,600&display=swap');

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --bg:    #fdf8f0;
  --bg-2:  #f5ede0;
  --bg-3:  #eddcc8;
  --bg-4:  #e4ccb4;

  --cream:      #180c04;
  --cream-2:    #2c1a0c;
  --cream-3:    #4a3322;
  --text:       #1e0e06;
  --text-muted: #7a5c44;
  --text-dark:  #180c04;

  --gold:       #9a6e14;
  --gold-light: #b88a28;
  --gold-dark:  #7a5510;
  --gold-glow:  rgba(154,110,20,0.15);

  --border:   rgba(154,110,20,0.20);
  --border-2: rgba(24,12,4,0.09);

  --shadow:      0 24px 64px rgba(80,40,10,0.18);
  --shadow-sm:   0 4px 24px rgba(80,40,10,0.10);
  --shadow-gold: 0 8px 40px rgba(154,110,20,0.30);

  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'DM Sans', -apple-system, system-ui, sans-serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;

  --radius:    6px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  --nav-h:     80px;
  --section-v: clamp(80px, 10vw, 130px);
  --gutter:    clamp(24px, 5vw, 80px);
  --container: 1280px;

  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:    0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: clamp(15px, 1.05vw, 16.5px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Custom Cursor ───────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot { width: 5px; height: 5px; background: var(--gold); }
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(200,168,74,0.6);
  transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.08s;
}
.cursor-ring.hover { width: 52px; height: 52px; border-color: var(--gold); }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Grain Noise ─────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.018;
  pointer-events: none;
  z-index: 9998;
  animation: grain 0.5s steps(1) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10% { transform: translate(-2%,-3%); }
  20% { transform: translate(3%,2%); }
  30% { transform: translate(-1%,4%); }
  40% { transform: translate(4%,-2%); }
  50% { transform: translate(-3%,1%); }
  60% { transform: translate(2%,-4%); }
  70% { transform: translate(-4%,3%); }
  80% { transform: translate(3%,-1%); }
  90% { transform: translate(-2%,4%); }
}

/* ── Preloader ───────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.pre-logo {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--text);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 700;
}
.pre-logo span { color: var(--gold); }
.pre-bar-wrap {
  width: 180px; height: 1px;
  background: var(--border-2);
  border-radius: 1px;
  overflow: hidden;
}
.pre-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  width: 0%;
  transition: width 0.1s linear;
}
.pre-tagline {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 3px;
}

/* ── Announcement Bar ────────────────────────────────────── */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  padding: 9px 48px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* ── Navigation ──────────────────────────────────────────── */
#nav {
  position: fixed;
  top: var(--announce-h, 0px); left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  gap: 0;
  /* Default: transparent dark gradient — only correct over homepage photo hero */
  background: linear-gradient(to bottom, rgba(8,5,3,0.65) 0%, rgba(8,5,3,0.0) 100%);
  transition: background 0.45s var(--ease), backdrop-filter 0.45s var(--ease),
              border-color 0.45s var(--ease), height 0.35s var(--ease),
              box-shadow 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}

/* Scrolled state — warm light, used on all pages once user scrolls down */
#nav.scrolled,
body.inner-page #nav {
  background: rgba(253,248,240,0.97);
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  border-color: rgba(154,110,20,0.10);
  height: 64px;
  box-shadow: 0 1px 24px rgba(80,40,10,0.07);
}

/* Inner-page text colours (same as scrolled state) */
body.inner-page .nav-logo           { color: var(--text); }
body.inner-page .nav-links a        { color: rgba(30,14,6,0.62); }
body.inner-page .nav-links a:hover,
body.inner-page .nav-links a.active { color: var(--text); }
body.inner-page .nav-cart-btn       { color: var(--text-muted); }
body.inner-page .hamburger span     { background: var(--text); }

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(250,242,228,0.96);
  flex-shrink: 0;
  margin-right: auto;
  transition: color 0.4s var(--ease), opacity var(--transition-fast);
  white-space: nowrap;
}
.nav-logo:hover { opacity: 0.82; }
.nav-logo span { color: var(--gold); }
#nav.scrolled .nav-logo { color: var(--text); }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 32px);
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244,234,216,0.80);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 3px;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: rgba(255,255,255,0.98); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
#nav.scrolled .nav-links a { color: rgba(30,14,6,0.65); }
#nav.scrolled .nav-links a:hover,
#nav.scrolled .nav-links a.active { color: var(--text); }

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-cart-btn {
  position: relative;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(244,234,216,0.82);
  transition: color var(--transition-fast);
}
.nav-cart-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.nav-cart-btn:hover { color: var(--gold); }
#nav.scrolled .nav-cart-btn { color: var(--text-muted); }
#nav.scrolled .nav-cart-btn:hover { color: var(--gold); }
.cart-badge {
  position: absolute;
  top: 2px; right: 1px;
  background: var(--gold);
  color: #0b0806;
  font-size: 8px;
  font-weight: 700;
  width: 14px; height: 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.nav-cta {
  background: var(--gold);
  color: #0b0806 !important;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  font-weight: 700;
  border-radius: 2px;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(154,110,20,0.35);
}
#nav.scrolled .nav-cta { background: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(244,234,216,0.9);
  transition: all 0.3s;
  border-radius: 1px;
}
#nav.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
#mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 100vw);
  height: 100%;
  background: var(--bg);
  z-index: 999;
  padding: calc(var(--nav-h) + var(--announce-h, 0px) + 16px) 36px 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: right 0.45s cubic-bezier(0.77,0,0.175,1);
  border-left: 1px solid var(--border-2);
}
#mobile-nav.open { right: 0; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; }
#mobile-nav .mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-2);
  display: block;
}
#mobile-nav .mobile-nav-links a:first-child { border-top: 1px solid var(--border-2); }
#mobile-nav .mobile-nav-links a:hover,
#mobile-nav .mobile-nav-links a.active { color: var(--gold); padding-left: 8px; }
.mobile-nav-reserve {
  margin-top: 28px;
}
.mobile-nav-reserve a {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #0b0806 !important;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 2px;
}
.mobile-nav-divider {
  height: 1px;
  background: var(--border-2);
  margin: 28px 0 24px;
}
.mobile-nav-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.mobile-nav-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.mobile-nav-social a svg { width: 16px; height: 16px; }
.mobile-nav-social a:hover { border-color: var(--gold); color: var(--gold); }
.mobile-nav-tagline {
  margin-top: 20px;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
}
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.48);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

/* ── Skip Link ───────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -60px; left: 16px;
  background: var(--gold); color: #0b0806;
  padding: 8px 16px; font-size: 13px; font-weight: 600;
  z-index: 10001; transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ── Marquee Strip ───────────────────────────────────────── */
.marquee-strip {
  background: var(--gold);
  color: #0b0806;
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 15px;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.marquee-item::after { content: '✦'; font-style: normal; font-size: 9px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Typography ──────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -2px;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 600;
  line-height: 1.12;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1.2;
}
.editorial {
  font-family: var(--font-editorial);
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-muted);
}
.overline {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.overline::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
/* section-header overlines are centred — symmetric lines both sides */
.section-header .overline {
  display: flex;
  justify-content: center;
}
.section-header .overline::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.body-lg { font-size: 17px; line-height: 1.85; }
.body-sm { font-size: 14px; line-height: 1.65; color: var(--text-muted); }

/* ── Section Layout ──────────────────────────────────────── */
.section { padding: var(--section-v) var(--gutter); }
.section-dark  { background: var(--bg); }
.section-mid   { background: var(--bg-2); }
.section-cream { background: var(--bg-3); color: var(--text); }

.container        { max-width: var(--container); margin: 0 auto; width: 100%; }
.container-narrow { max-width: 820px; margin: 0 auto; }
.container-wide   { max-width: 1600px; margin: 0 auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,2.5vw,40px); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(16px,2vw,32px); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(24px,3vw,48px); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header p { color: var(--text-muted); margin-top: 16px; font-size: 16px; line-height: 1.7; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-gold {
  background: var(--gold);
  color: #0b0806;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #0b0806;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-sm { padding: 10px 20px; font-size: 10.5px; }
.btn-lg { padding: 20px 52px; font-size: 12px; }


/* ── Hero Carousel ───────────────────────────────────────── */
#hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full-screen carousel layer */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.active { opacity: 1; }
.hero-fallback {
  background: linear-gradient(160deg, #2a1a0a 0%, #0d0804 50%, #1a0d06 100%);
}
.hero-media {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dark gradient overlay — keeps text readable over any photo */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,6,3,0.72) 0%, rgba(10,6,3,0.38) 60%, rgba(10,6,3,0.15) 100%),
    linear-gradient(to bottom, rgba(10,6,3,0.4) 0%, rgba(10,6,3,0.0) 40%, rgba(10,6,3,0.6) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Hero text block — centred-left */
.hero-content-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* CSS-only hero entrance (no GSAP needed) */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-in { from { opacity: 0; } to { opacity: 1; } }

.hero-overline {
  font-size: 10.5px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
  font-weight: 600;
  animation: hero-fade-up 0.8s 0.3s var(--ease) both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 28px;
  animation: hero-fade-up 1s 0.55s var(--ease) both;
  max-width: 700px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 24px);
  color: rgba(255,255,255,0.72);
  margin-bottom: 52px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 520px;
  animation: hero-fade-up 0.8s 0.8s var(--ease) both;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: hero-fade-up 0.8s 1s var(--ease) both;
}

/* Carousel controls */
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 20;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  line-height: 1;
  padding-bottom: 2px;
}
.carousel-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev { left: clamp(16px, 3vw, 40px); }
.carousel-next { right: clamp(16px, 3vw, 40px); }

.carousel-dots {
  position: absolute;
  bottom: 80px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 20;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 10;
  animation: hero-bounce 2.5s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 9.5px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(200,168,74,0.7), transparent);
}
@keyframes hero-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.stat-item {
  padding: 44px 24px;
  text-align: center;
  border-right: 1px solid var(--border-2);
  transition: background var(--transition-fast);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-3); }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Cards (generic) ─────────────────────────────────────── */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--border); }
.card-body { padding: 24px; }
.card-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 600; }
.card-title { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; color: var(--text); }
.card-desc  { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ── Menu Cards ──────────────────────────────────────────── */
.menu-card {
  background: var(--bg-2);
  border: 1px solid rgba(154,110,20,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
  box-shadow: 0 1px 6px rgba(80,40,10,0.05), 0 4px 20px rgba(80,40,10,0.04);
}
.menu-card:hover {
  border-color: rgba(154,110,20,0.26);
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(80,40,10,0.10), 0 24px 56px rgba(80,40,10,0.07);
}

/* Image / Placeholder area */
.menu-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-3);
}
.menu-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.menu-card:hover .menu-card-img { transform: scale(1.06); }

/* Elegant placeholder when no photo */
.menu-card-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(145deg, var(--bg-3) 0%, var(--bg-4) 100%);
}
.menu-card-placeholder-icon {
  width: 48px; height: 48px;
  opacity: 0.28;
}
.menu-card-placeholder-line {
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

/* Special / Featured ribbon */
.menu-card-ribbon {
  position: absolute;
  top: 16px; left: 0;
  background: var(--gold);
  color: #fff;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px 5px 12px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

/* Card body */
.menu-card-body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  gap: 12px;
}
.menu-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.menu-card-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0;
}
.menu-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* Dietary indicators — understated dots */
.dietary-flags {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dietary-dot {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}
.dietary-dot::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dietary-dot.veg::before   { background: #5a9e5a; }
.dietary-dot.vegan::before { background: #4a8e4a; }
.dietary-dot.nonveg::before{ background: #c0604a; }
.dietary-dot.gf::before    { background: var(--gold); }

/* Chef's pick — subtle gold mark */
.menu-card-pick {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.menu-card-pick::before {
  content: '✦';
  font-style: normal;
  font-size: 8px;
}

/* ── Badges (used elsewhere on the site) ─────────────────── */
.badge {
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 700; padding: 4px 10px; border-radius: 2px;
}
.badge-veg    { background: rgba(90,158,90,0.12);   color: #5a9e5a; }
.badge-vegan  { background: rgba(74,142,74,0.12);   color: #4a8e4a; }
.badge-nonveg { background: rgba(192,96,74,0.12);   color: #c0604a; }
.badge-gf     { background: rgba(154,110,20,0.12);  color: var(--gold); }
.badge-special{ background: var(--gold);            color: #fff; }
.badge-new    { background: rgba(99,102,241,0.12);  color: #6366f1; }
.badge-popular{ background: rgba(219,39,119,0.10);  color: #db2777; }

/* ── Menu Filter Tabs ────────────────────────────────────── */
.menu-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 52px; }
.filter-btn {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 10px 24px; border: 1px solid var(--border-2); border-radius: 40px;
  color: var(--text-muted); background: transparent; cursor: pointer;
  transition: all var(--transition-fast); font-family: var(--font-body); font-weight: 500;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); color: #0b0806; border-color: var(--gold);
}

/* ── Product Cards ───────────────────────────────────────── */
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--border); }
.product-img-wrap { aspect-ratio: 1; overflow: hidden; position: relative; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: #0b0806;
  font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 700; padding: 4px 10px; border-radius: 2px;
}
.product-info { padding: 20px; }
.product-name  { font-family: var(--font-display); font-size: 18px; margin-bottom: 6px; }
.product-desc  { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price  { font-size: 18px; font-weight: 700; color: var(--gold); }
.product-price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; }
.add-to-cart-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); padding: 8px 16px; font-size: 11px;
  letter-spacing: 1px; border-radius: var(--radius);
  transition: all var(--transition-fast); cursor: pointer;
  font-family: var(--font-body); font-weight: 600; text-transform: uppercase;
}
.add-to-cart-btn:hover { background: var(--gold); border-color: var(--gold); color: #0b0806; }


.product-name { color: var(--text); }

/* ── Card Placeholders (shared) ──────────────────────────── */
.card-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  background: var(--bg-3);
}
.card-placeholder svg {
  width: 36px; height: 36px;
  color: var(--text-muted);
  opacity: 0.3;
}
.card-placeholder-rule {
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* ── Team Cards ──────────────────────────────────────────── */
.team-card {
  background: var(--bg-2);
  border: 1px solid rgba(154,110,20,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(80,40,10,0.10);
  border-color: rgba(154,110,20,0.22);
}
.team-card-media {
  aspect-ratio: 1;
  background: var(--bg-3);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.team-card-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform 0.6s var(--ease);
}
.team-card:hover .team-card-media img { transform: scale(1.04); }
.team-card-initials {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: rgba(154,110,20,0.20);
  letter-spacing: -3px;
  line-height: 1;
  user-select: none;
}
.team-card-body {
  padding: 22px 20px 26px;
}
.team-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.team-card-role {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.team-card-rule {
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 0 auto 14px;
}
.team-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Cart Sidebar */
#cart-sidebar {
  position: fixed; right: -440px; top: 0; width: 440px; height: 100vh;
  background: var(--bg-2); z-index: 5000; border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: right 0.5s cubic-bezier(0.77,0,0.175,1); overflow-y: auto;
}
#cart-sidebar.open { right: 0; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 28px 32px; border-bottom: 1px solid var(--border-2); }
.cart-title  { font-family: var(--font-display); font-size: 22px; }
.cart-close  { font-size: 26px; cursor: pointer; color: var(--text-muted); transition: color var(--transition-fast); }
.cart-close:hover { color: var(--cream); }
.cart-items  { flex: 1; padding: 24px 32px; }
.cart-item   { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border-2); }
.cart-item-img   { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.cart-item-info  { flex: 1; }
.cart-item-name  { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.cart-item-price { font-size: 14px; color: var(--gold); }
.cart-item-qty   { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.qty-btn { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border); color: var(--text-muted); font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition-fast); }
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-num { font-size: 15px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-remove { color: var(--text-muted); font-size: 20px; cursor: pointer; padding: 4px; transition: color var(--transition-fast); }
.cart-remove:hover { color: #f87171; }
.cart-footer       { padding: 24px 32px; border-top: 1px solid var(--border-2); }
.cart-total        { display: flex; justify-content: space-between; margin-bottom: 20px; }
.cart-total-label  { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.cart-total-amount { font-family: var(--font-display); font-size: 24px; color: var(--gold); }
.cart-empty        { text-align: center; padding: 56px 0; color: var(--text-muted); }
.cart-empty-icon   { font-size: 48px; margin-bottom: 16px; }

#cart-sidebar { background: #fff; }
.cart-title { color: var(--text); }

/* ── Blog Cards ──────────────────────────────────────────── */
.blog-card { background: var(--bg-2); border: 1px solid rgba(154,110,20,0.10); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); box-shadow: 0 1px 6px rgba(80,40,10,0.05); }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(80,40,10,0.10); border-color: rgba(154,110,20,0.26); }
.blog-card-img { aspect-ratio: 16/9; object-fit: cover; width: 100%; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 26px; }
.blog-cat     { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; font-weight: 600; }
.blog-title   { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; line-height: 1.3; }
.blog-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.blog-meta    { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-muted); }
.blog-read-time { color: var(--gold); }

.blog-title { color: var(--text); }

/* ── Review Cards ────────────────────────────────────────── */
.reviews-carousel { overflow: hidden; position: relative; }
.reviews-track { display: flex; gap: 24px; animation: scroll-reviews 42s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes scroll-reviews {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  flex-shrink: 0; width: 340px;
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); padding: 30px;
  transition: border-color var(--transition-fast);
}
.review-card:hover { border-color: var(--border); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: #0b0806; font-size: 18px; flex-shrink: 0; }
.review-name  { font-weight: 600; font-size: 14px; }
.review-date  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.review-stars { margin-bottom: 14px; }
.review-stars .star { color: var(--gold); font-size: 14px; }
.review-text  { font-size: 14px; line-height: 1.75; color: var(--text-muted); font-style: italic; }

.review-name { color: var(--text); }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-masonry { columns: 3; column-gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; overflow: hidden; border-radius: var(--radius); cursor: pointer; position: relative; }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(11,8,6,0.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { font-size: 32px; color: white; }

/* ── Lightbox ────────────────────────────────────────────── */
#lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 9000; display: none; align-items: center; justify-content: center; }
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
#lightbox-close { position: absolute; top: 24px; right: 32px; color: white; font-size: 36px; cursor: pointer; }
#lightbox-prev, #lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: white; font-size: 48px; cursor: pointer; padding: 16px;
  background: rgba(255,255,255,0.06); border-radius: var(--radius); transition: background 0.2s;
}
#lightbox-prev:hover, #lightbox-next:hover { background: rgba(200,168,74,0.2); }
#lightbox-prev { left: 24px; }
#lightbox-next { right: 24px; }

/* ── Forms ───────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.form-label { font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.form-input, .form-select, .form-textarea {
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 14px 18px;
  color: var(--text); font-size: 15px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%; appearance: none;
}
.form-input::placeholder { color: var(--text-muted); opacity: 0.45; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-error   { font-size: 12px; color: #f87171; margin-top: 4px; }
.form-success { font-size: 14px; color: #4ade80; padding: 14px 18px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); border-radius: var(--radius); margin-bottom: 16px; }

.form-input,
.form-select,
.form-textarea,
.newsletter-input {
  background: #fff; border-color: var(--border-2); color: var(--text);
}
.form-input::placeholder,
.newsletter-input::placeholder { color: var(--text-muted); opacity: 0.6; }

/* ── Events ──────────────────────────────────────────────── */
.event-card { background: var(--bg-2); border: 1px solid var(--border-2); border-radius: var(--radius-lg); overflow: hidden; display: flex; transition: all var(--transition); }
.event-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.event-date-block { background: var(--gold); color: #0b0806; min-width: 80px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px 16px; text-align: center; }
.event-day   { font-family: var(--font-display); font-size: 36px; font-weight: 900; line-height: 1; }
.event-month { font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
.event-body  { padding: 24px; flex: 1; }
.event-title { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.event-desc  { color: var(--text-muted); font-size: 14px; line-height: 1.65; }
.event-meta  { display: flex; gap: 16px; margin-top: 12px; }
.event-meta-item { font-size: 12px; color: var(--text-muted); }
.countdown { display: flex; gap: 16px; margin-top: 16px; }
.countdown-unit { text-align: center; background: var(--bg-3); border-radius: var(--radius); padding: 12px 16px; }
.countdown-number { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.countdown-label  { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; display: block; }

.event-card { background: #fff; border-color: rgba(154,110,20,0.14); box-shadow: 0 2px 12px rgba(80,40,10,0.06); }
.event-title { color: var(--text); }
.countdown-unit { background: var(--bg-3); }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(56px, 8vw, 108px) clamp(32px, 5vw, 80px);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,168,74,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section { background: linear-gradient(135deg, var(--bg-3), var(--bg-2)); border-color: var(--border); }

/* ── Loyalty Tiers ───────────────────────────────────────── */
.tier-card { background: var(--bg-2); border: 1px solid var(--border-2); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: all var(--transition); }
.tier-card.featured { border-color: var(--gold); background: linear-gradient(135deg, var(--bg-2), rgba(200,168,74,0.05)); transform: scale(1.04); }
.tier-icon  { width: 40px; height: 1px; background: var(--gold); opacity: 0.5; margin: 0 auto 20px; }
.tier-name  { font-family: var(--font-display); font-size: 24px; margin-bottom: 8px; }
.tier-points{ font-size: 13px; color: var(--gold); margin-bottom: 24px; letter-spacing: 0.5px; }
.tier-benefits { text-align: left; }
.tier-benefits li { font-size: 14px; color: var(--text-muted); padding: 9px 0; border-bottom: 1px solid var(--border-2); display: flex; gap: 8px; align-items: flex-start; }
.tier-benefits li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── WhatsApp Float ──────────────────────────────────────── */
#whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 4000;
  width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pulse 3s infinite;
}
#whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
#whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50%     { box-shadow: 0 4px 48px rgba(37,211,102,0.6); }
}

/* ── Back to Top ─────────────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 104px; right: 32px; z-index: 4000;
  width: 44px; height: 44px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); cursor: pointer;
  opacity: 0; transform: translateY(16px);
  transition: all var(--transition); font-size: 18px;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--gold); color: #0b0806; border-color: var(--gold); }
#back-to-top { background: #fff; }

/* ── Cookie Banner ───────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding: 20px var(--gutter); z-index: 8000;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 14px; color: var(--text-muted); flex: 1; min-width: 240px; }
#cookie-banner p a { color: var(--gold); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
#cookie-banner { background: #fff; }

/* ── Social Proof Toast ──────────────────────────────────── */
#social-proof {
  position: fixed; bottom: 32px; left: 32px; z-index: 4000;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 20px;
  max-width: 280px; display: flex; gap: 12px; align-items: center;
  opacity: 0; transform: translateX(-16px);
  transition: all 0.4s var(--ease); pointer-events: none;
}
#social-proof.show { opacity: 1; transform: translateX(0); pointer-events: all; }
.sp-icon { flex-shrink: 0; display: flex; align-items: center; color: var(--gold); }
.sp-text { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.sp-text strong { color: var(--cream); display: block; margin-bottom: 2px; }
#social-proof { background: #fff; box-shadow: 0 4px 24px rgba(80,40,10,0.15); }
.sp-text strong { color: var(--text); }

/* ── Popup Modal ─────────────────────────────────────────── */
#site-popup { position: fixed; inset: 0; background: rgba(0,0,0,0.82); z-index: 7000; display: none; align-items: center; justify-content: center; padding: 24px; }
#site-popup.open { display: flex; }
.popup-inner { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); max-width: 520px; width: 100%; overflow: hidden; position: relative; }
.popup-close { position: absolute; top: 16px; right: 20px; font-size: 24px; cursor: pointer; color: var(--text-muted); z-index: 1; transition: color var(--transition-fast); }
.popup-close:hover { color: var(--text); }
.popup-header { background: linear-gradient(135deg, var(--bg-3), var(--bg)); padding: 40px; text-align: center; }
.popup-body { padding: 32px 40px; }

/* ── Pull Quote ──────────────────────────────────────────── */
.pull-quote { border-left: 2px solid var(--gold); padding: 24px 36px; margin: 40px 0; background: rgba(200,168,74,0.04); border-radius: 0 var(--radius) var(--radius) 0; }
.pull-quote-text { font-family: var(--font-editorial); font-style: italic; font-size: clamp(22px,3vw,32px); color: var(--cream); line-height: 1.55; font-weight: 300; }
.pull-quote-attr { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 16px; }
.pull-quote-text { color: var(--text); }

/* ── Timeline ────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--gold), transparent); }
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-dot  { position: absolute; left: -36px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 2px solid var(--bg); box-shadow: 0 0 0 4px rgba(200,168,74,0.2); }
.timeline-year { font-size: 11px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; font-weight: 600; }
.timeline-title{ font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
.timeline-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.timeline-dot { border-color: var(--bg); }

/* ── Newsletter ──────────────────────────────────────────── */
.newsletter-form { display: flex; gap: 8px; margin-top: 20px; }
.newsletter-input {
  flex: 1; background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 12px 16px; color: var(--text);
  font-size: 14px; outline: none; transition: border-color var(--transition-fast); font-family: var(--font-body);
}
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--text-muted); opacity: 0.45; }
.newsletter-btn {
  background: var(--gold); color: #0b0806; border: none; border-radius: var(--radius);
  padding: 12px 20px; font-size: 11.5px; letter-spacing: 1px; font-weight: 700;
  cursor: pointer; transition: background var(--transition-fast); white-space: nowrap; font-family: var(--font-body);
}
.newsletter-btn:hover { background: var(--gold-light); }

/* ── Footer ──────────────────────────────────────────────── */
#footer { background: var(--bg-2); border-top: 1px solid var(--border-2); padding: 88px var(--gutter) 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(32px,4vw,72px); margin-bottom: 64px; }
.footer-brand-name { font-family: var(--font-display); font-size: 24px; margin-bottom: 4px; }
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-family: var(--font-editorial); font-style: italic; color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.footer-desc    { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }
.footer-social  { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.social-link    { width: 38px; height: 38px; border: 1px solid var(--border-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all var(--transition-fast); }
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(154,110,20,0.07); transform: translateY(-2px); }
.footer-heading { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--text); }
.footer-info   { display: flex; flex-direction: column; gap: 12px; }
.footer-info-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-muted); }
.footer-info-icon { color: var(--gold); flex-shrink: 0; margin-top: 3px; display: flex; }
.footer-info-icon svg { display: block; }
.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.footer-hours-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); }
.footer-hours-row span:last-child { color: var(--text); font-weight: 500; }
.footer-bottom { border-top: 1px solid var(--border-2); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-copy a { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; transition: color var(--transition-fast); }
.footer-legal a:hover { color: var(--text); }
.footer-brand-name { color: var(--text); }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + var(--announce-h, 0px) + 80px) var(--gutter) 80px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-2);
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; top: -40%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,168,74,0.05) 0%, transparent 70%); }
.page-hero .container { position: relative; }
.page-hero { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }

/* ── QR Menu ─────────────────────────────────────────────── */
.qr-card { background: #fff; color: #0b0806; border-radius: 12px; overflow: hidden; }

/* ── Stars ───────────────────────────────────────────────── */
.star { color: var(--gold); }
.star.empty { color: var(--bg-3); }

/* ── Error Page ──────────────────────────────────────────── */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.error-number { font-family: var(--font-display); font-size: clamp(120px,20vw,220px); font-weight: 900; color: var(--border-2); line-height: 1; margin-bottom: -24px; }
.error-number span { color: var(--gold); }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb { margin-bottom: 32px; }
.breadcrumb ol { display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.breadcrumb li::after { content: '/'; }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb li:last-child { color: var(--cream); }
.breadcrumb a:hover { color: var(--gold); }

/* ── Lang helper ─────────────────────────────────────────── */
.lang-hidden { display: none !important; }

/* ── Animation Helpers ───────────────────────────────────── */
.fade-up  { opacity: 0; transform: translateY(36px); }
.fade-up.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.fade-in { opacity: 0; }
.fade-in.visible { opacity: 1; transition: opacity 1.1s var(--ease); }
.stagger > * { opacity: 0; transform: translateY(28px); }
.parallax-img { transition: transform 0.1s linear; }

/* ── Print ───────────────────────────────────────────────── */
@media print {
  #nav,#footer,#whatsapp-float,#back-to-top,#cookie-banner,
  #site-popup,.cursor-dot,.cursor-ring,body::after { display: none !important; }
  body { background: white !important; color: black !important; font-size: 12pt; }
  .menu-card { break-inside: avoid; border: 1px solid #ddd; }
  .section { padding: 20pt 0; }
}

/* ── Responsive ──────────────────────────────────────────── */

/* Base grid definitions for responsive card grids */
.cols-2 { display: grid; grid-template-columns: repeat(2,1fr); }
.cols-3 { display: grid; grid-template-columns: repeat(3,1fr); }
.cols-4 { display: grid; grid-template-columns: repeat(4,1fr); }

/* ── 1200px ── hero centre-aligns on mid-desktop */
@media (max-width: 1200px) {
  .hero-content-wrap { text-align: center; }
  .hero-title { max-width: 100%; }
  .hero-sub   { max-width: 100%; }
  .hero-ctas  { justify-content: center; }
}

/* ── 1024px ── tablet landscape: hamburger kicks in */
@media (max-width: 1024px) {
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }
  .grid-4     { grid-template-columns: repeat(2,1fr); }
  .cols-4     { grid-template-columns: repeat(2,1fr) !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar  { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .split      { grid-template-columns: 1fr; gap: 48px; }
}

/* ── 900px ── 3-col grids collapse to 2 */
@media (max-width: 900px) {
  .cols-3     { grid-template-columns: repeat(2,1fr) !important; }
}

/* ── 768px ── phone landscape / small tablet */
@media (max-width: 768px) {
  .grid-3    { grid-template-columns: 1fr; }
  .grid-2    { grid-template-columns: 1fr; }
  .cols-2    { grid-template-columns: 1fr !important; }
  .gallery-masonry { columns: 2; }
  .event-card { flex-direction: column; }
  .event-date-block { flex-direction: row; gap: 8px; padding: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  #cart-sidebar { width: 100%; right: -100%; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-content-wrap .hero-ctas { align-items: center; }
  .newsletter-form { flex-direction: column; }
  .carousel-btn { width: 40px; height: 40px; font-size: 20px; }
  /* Filter tabs: scroll horizontally on small screens */
  .menu-filters {
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .menu-filters::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; font-size: 10px; padding: 8px 14px; }
  /* Hero title on tablets */
  .hero-title { font-size: clamp(38px, 10vw, 72px); letter-spacing: -1px; }
  /* Page hero tighter top padding */
  .page-hero { padding-top: calc(var(--nav-h) + var(--announce-h, 0px) + 36px); padding-bottom: 48px; }
  /* Blog featured post stacks on mobile */
  .blog-featured-grid { grid-template-columns: 1fr !important; }
  .blog-featured-grid > div:first-child { min-height: 220px !important; }
}

/* ── 480px ── phone portrait */
@media (max-width: 480px) {
  :root { --section-v: 56px; --gutter: 20px; }
  .cols-3    { grid-template-columns: repeat(2,1fr) !important; }
  .cols-4    { grid-template-columns: repeat(2,1fr) !important; }
  .grid-4    { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .gallery-masonry { columns: 1; }
  .hero-title { font-size: clamp(32px, 11vw, 48px); letter-spacing: -0.5px; }
  .hero-sub   { font-size: 15px; }
  .hero-overline { font-size: 9.5px; }
  .btn-lg     { padding: 15px 28px; font-size: 11px; }
  .section-header { margin-bottom: 40px; }
  .display-lg { font-size: clamp(28px, 9vw, 48px); }
  .display-md { font-size: clamp(22px, 7vw, 36px); }
  /* Cards stay 2-col down to 480px, collapse only at very narrow */
  .menu-card-body { padding: 14px; }
  .menu-card-name { font-size: 14px; }
  .menu-card-price { font-size: 14px; }
  .menu-card-desc { display: none; }
  .product-info { padding: 12px 14px; }
  .product-name { font-size: 13px; }
  .product-desc { display: none; }
  /* Stats tighter */
  .stat-number { font-size: clamp(28px, 7vw, 44px); }
  /* Review cards narrower */
  .review-card { min-width: 260px; padding: 20px; }
  /* Footer social icons row wrap */
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { flex-direction: column; gap: 8px; align-items: center; }
}

/* ── 360px ── very narrow phones */
@media (max-width: 360px) {
  .cols-3    { grid-template-columns: 1fr !important; }
  .cols-4    { grid-template-columns: 1fr !important; }
}

/* ── Accessibility ───────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
