/* =====================================================================
   AURÉLIA — Fine Dining
   Premium design system · Dark theme with champagne-gold accents
   Author: custom build · Vanilla HTML/CSS/JS (static, host-anywhere)
   ===================================================================== */

/* --------------------------------------------------------------------
   0. Design tokens
   -------------------------------------------------------------------- */
:root {
  /* Palette */
  --ink-900: #08080a;
  --ink-850: #0b0b0e;
  --ink-800: #101015;
  --ink-750: #14141b;
  --ink-700: #1a1a22;
  --ink-600: #24242e;
  --line: rgba(198, 162, 91, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);

  --cream: #f4efe3;
  --cream-dim: #cfc7b6;
  --muted: #98917f;
  --muted-2: #726c5e;

  --gold: #c6a25b;
  --gold-bright: #e2c377;
  --gold-deep: #a3823f;
  --champagne: #ecd9a8;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #e6cd8a 0%, #c6a25b 45%, #9c7c3a 100%);
  --grad-dark: linear-gradient(180deg, rgba(8,8,10,0) 0%, rgba(8,8,10,0.65) 55%, rgba(8,8,10,0.96) 100%);
  --grad-panel: linear-gradient(160deg, rgba(36,36,46,0.55) 0%, rgba(16,16,21,0.65) 100%);

  /* Typography */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing / layout */
  --wrap: 1240px;
  --wrap-narrow: 900px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --radius-lg: 10px;
  --radius-xl: 20px;

  /* Effects */
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 18px 50px rgba(163, 130, 63, 0.22);
  --glass: rgba(18, 18, 24, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --nav-h: 84px;
}

/* --------------------------------------------------------------------
   1. Reset & base
   -------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  background-color: var(--ink-900);
  color: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; color: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: var(--gold); color: var(--ink-900); }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Subtle film-grain / vignette texture on the body */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(198,162,91,0.06), transparent 60%),
    radial-gradient(80% 60% at 100% 100%, rgba(198,162,91,0.05), transparent 55%);
  mix-blend-mode: screen;
}

/* --------------------------------------------------------------------
   2. Typography
   -------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--cream);
}

.display {
  font-size: clamp(2.9rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 1.02;
}
.h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
.h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

p { color: var(--cream-dim); }
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  color: var(--cream-dim);
  font-weight: 300;
}

/* Small caps eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--grad-gold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.no-line::before { display: none; }

.script {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 500;
}

.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8.5rem); z-index: 2; }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.2rem; }
.section-head p { margin-top: 1.1rem; }

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  border: 0;
}

.bg-alt { background: var(--ink-850); }
.bg-panel { background: var(--ink-800); }

.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 0.75rem; }
.gap { gap: 1.25rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.hidden { display: none !important; }

/* Ornamental centered divider with diamond */
.orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
  margin: 1.2rem 0;
}
.orn::before, .orn::after {
  content: "";
  width: clamp(40px, 12vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep));
}
.orn::after { background: linear-gradient(90deg, var(--gold-deep), transparent); }
.orn span { font-size: 0.7rem; transform: rotate(45deg); }

/* --------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--grad-gold);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-900);
  background: var(--btn-bg);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.4s var(--ease);
  isolation: isolate;
  will-change: transform;
}
.btn::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--ink-900);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}
.btn:hover { color: var(--gold-bright); box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: translateY(0); }

.btn-outline {
  --btn-bg: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 0 var(--gold);
}
.btn-outline::after { background: var(--grad-gold); }
.btn-outline:hover { color: var(--ink-900); border-color: transparent; box-shadow: var(--shadow-gold); }

.btn-ghost {
  --btn-bg: transparent;
  color: var(--gold);
  padding-inline: 0.2rem;
  letter-spacing: 0.18em;
}
.btn-ghost::after { display: none; }
.btn-ghost .arrow { transition: transform 0.35s var(--ease); }
.btn-ghost:hover { color: var(--gold-bright); transform: none; box-shadow: none; }
.btn-ghost:hover .arrow { transform: translateX(6px); }

.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.68rem; }
.btn-lg { padding: 1.15rem 2.6rem; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------
   5. Navbar
   -------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease), height 0.4s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 68px;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line-soft);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; max-width: 1360px; }

.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.brand .brand-name b { color: var(--gold); font-weight: 600; }
.brand .brand-sub {
  font-size: 0.56rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  padding-left: 3px;
}

.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.4rem 0;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.has-mega { display: inline-flex; align-items: center; gap: 0.35rem; }
.nav-link.has-mega .chev { transition: transform 0.35s var(--ease); font-size: 0.6rem; }

.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  color: var(--cream-dim);
  transition: all 0.3s var(--ease);
  position: relative;
}
.icon-btn:hover { color: var(--gold); border-color: var(--gold-deep); background: rgba(198,162,91,0.06); }
.icon-btn .cart-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 19px; height: 19px; padding: 0 5px;
  display: grid; place-items: center;
  background: var(--grad-gold); color: var(--ink-900);
  font-size: 0.62rem; font-weight: 600; border-radius: 20px;
  transform: scale(0); transition: transform 0.3s var(--ease);
}
.icon-btn .cart-count.show { transform: scale(1); }

/* Mega menu */
.mega-wrap { position: relative; }
.mega {
  position: fixed;
  top: var(--nav-h);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(1040px, 94vw);
  background: rgba(11, 11, 14, 0.92);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.2rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  z-index: 99;
}
.nav.scrolled .mega { top: 68px; }
.mega.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-col h5 {
  font-family: var(--font-body);
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem; font-weight: 600;
}
.mega-col a {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.95rem; color: var(--cream-dim);
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.3s var(--ease), padding 0.3s var(--ease);
}
.mega-col a:hover { color: var(--gold); padding-left: 6px; }
.mega-col a small { color: var(--muted-2); font-size: 0.72rem; }
.mega-feature {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 200px; display: flex; align-items: flex-end; padding: 1.3rem;
}
.mega-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mega-feature .ov { position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(8,8,10,0.9)); }
.mega-feature .cap { position: relative; z-index: 2; }
.mega-feature .cap span { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.mega-feature .cap p { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); margin-top: 0.2rem; }

/* Hamburger */
.hamburger { display: none; width: 42px; height: 42px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.hamburger span { width: 22px; height: 1.5px; background: var(--cream); transition: all 0.35s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(10px);
  padding: calc(var(--nav-h) + 1rem) var(--gutter) 2rem;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer a {
  font-family: var(--font-display);
  font-size: 1.7rem; color: var(--cream);
  padding: 0.55rem 0; border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer a:hover { color: var(--gold); }
.drawer .drawer-actions { margin-top: auto; padding-top: 2rem; display: grid; gap: 0.8rem; }
.drawer .drawer-social { display: flex; gap: 1rem; margin-top: 1.5rem; justify-content: center; }

/* --------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,10,0.55) 0%, rgba(8,8,10,0.35) 40%, rgba(8,8,10,0.9) 100%),
    linear-gradient(90deg, rgba(8,8,10,0.75), transparent 60%);
}
.hero-content { position: relative; z-index: 3; width: 100%; }
.hero-content .eyebrow { margin-bottom: 1.6rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero .lead { max-width: 540px; margin-bottom: 2.5rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  color: var(--muted); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.hero-scroll .line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero-scroll .line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-bright); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { to { top: 120%; } }

/* Hero side meta (awards ticker) */
.hero-badges { display: flex; gap: 2.4rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-badge { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-badge .n { font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.hero-badge .l { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* Page hero (inner pages) */
.page-hero {
  position: relative; min-height: 56vh; display: flex; align-items: flex-end;
  padding-block: clamp(3rem, 8vw, 6rem); overflow: hidden; margin-top: 0;
}
.page-hero .hero-media img::after { animation: none; }
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,0.6), rgba(8,8,10,0.92)); }
.page-hero .inner { position: relative; z-index: 2; }
.page-hero h1 { margin: 1rem 0 0.8rem; }

/* Breadcrumbs */
.crumbs { display: flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; letter-spacing: 0.06em; color: var(--muted); }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { color: var(--muted-2); }
.crumbs [aria-current] { color: var(--gold); }

/* --------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--ink-800);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-md); }

/* Dish card */
.dish {
  display: flex; flex-direction: column;
  background: var(--grad-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.dish:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow-md); }
.dish-media { position: relative; aspect-ratio: 4/3.2; overflow: hidden; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.dish:hover .dish-media img { transform: scale(1.08); }
.dish-tags { position: absolute; top: 0.85rem; left: 0.85rem; display: flex; gap: 0.4rem; flex-wrap: wrap; z-index: 2; }
.dish-price-badge {
  position: absolute; bottom: 0.85rem; right: 0.85rem; z-index: 2;
  background: rgba(8,8,10,0.72); backdrop-filter: blur(8px);
  border: 1px solid var(--line); color: var(--gold-bright);
  padding: 0.4rem 0.85rem; border-radius: 40px;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
}
.dish-body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.dish-body h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.dish-body p { font-size: 0.92rem; color: var(--muted); flex: 1; }
.dish-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.2rem; gap: 1rem; }
.dish-rate { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--gold); font-size: 0.85rem; }

/* Dietary tag chip */
.tag {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.32rem 0.6rem; border-radius: 40px;
  background: rgba(8,8,10,0.7); backdrop-filter: blur(6px);
  border: 1px solid var(--line-soft); color: var(--cream-dim);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.tag.veg { color: #8bc48a; border-color: rgba(139,196,138,0.3); }
.tag.vegan { color: #7fd39b; border-color: rgba(127,211,155,0.3); }
.tag.gf { color: #e0b978; border-color: rgba(224,185,120,0.3); }
.tag.halal { color: #86bfd6; border-color: rgba(134,191,214,0.3); }
.tag.spicy { color: #e08a6f; border-color: rgba(224,138,111,0.3); }
.tag.chef { color: var(--ink-900); background: var(--grad-gold); border-color: transparent; }
.tag.best { color: var(--ink-900); background: var(--champagne); border-color: transparent; }

/* Feature / value card */
.feature {
  padding: 2rem 1.8rem; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  background: var(--grad-panel); transition: all 0.5s var(--ease); height: 100%;
}
.feature:hover { border-color: var(--line); transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.feature .ic {
  width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line); color: var(--gold); margin-bottom: 1.3rem;
  transition: all 0.5s var(--ease);
}
.feature:hover .ic { background: var(--grad-gold); color: var(--ink-900); border-color: transparent; }
.feature h3 { font-size: 1.45rem; margin-bottom: 0.6rem; }
.feature p { font-size: 0.92rem; }

/* Glass panel */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------
   8. Forms
   -------------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.3rem; }
.field label {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.field label .req { color: var(--gold); }
.input, .select, .textarea {
  width: 100%;
  background: rgba(8,8,10,0.5);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--cream);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--gold-deep);
  background: rgba(8,8,10,0.75);
  box-shadow: 0 0 0 3px rgba(198,162,91,0.1);
}
.textarea { resize: vertical; min-height: 120px; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c6a25b' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.select option { background: var(--ink-800); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

/* Segmented / pill choices */
.choices { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.choice {
  position: relative; padding: 0.7rem 1.2rem; border: 1px solid var(--line-soft);
  border-radius: 40px; font-size: 0.82rem; color: var(--cream-dim);
  cursor: pointer; transition: all 0.3s var(--ease); user-select: none;
}
.choice:hover { border-color: var(--gold-deep); color: var(--cream); }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice.selected, .choice:has(input:checked) {
  background: var(--grad-gold); color: var(--ink-900); border-color: transparent; font-weight: 500;
}

/* Newsletter inline */
.newsletter-form { display: flex; gap: 0.6rem; max-width: 460px; }
.newsletter-form .input { flex: 1; border-radius: 2px; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.8rem; }
.form-success {
  display: none; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.1rem; border-radius: var(--radius);
  background: rgba(139,196,138,0.08); border: 1px solid rgba(139,196,138,0.3);
  color: #a7d6a5; font-size: 0.9rem; margin-top: 1rem;
}
.form-success.show { display: flex; }

/* --------------------------------------------------------------------
   9. Testimonials
   -------------------------------------------------------------------- */
.testi {
  padding: 2.4rem; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  background: var(--grad-panel); position: relative; height: 100%;
  display: flex; flex-direction: column;
}
.testi::before {
  content: "\201C"; font-family: var(--font-display); font-size: 5rem; line-height: 0.6;
  color: var(--gold); opacity: 0.28; position: absolute; top: 1.4rem; left: 1.6rem;
}
.testi .stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 0.1em; position: relative; z-index: 1; }
.testi blockquote { font-family: var(--font-display); font-size: 1.35rem; font-style: italic; line-height: 1.45; color: var(--cream); flex: 1; position: relative; z-index: 1; }
.testi .who { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.6rem; }
.testi .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.testi .who .name { font-weight: 500; color: var(--cream); font-size: 0.95rem; }
.testi .who .role { font-size: 0.75rem; color: var(--muted); }

/* Slider track */
.slider { overflow: hidden; }
.slider-track { display: flex; transition: transform 0.7s var(--ease); }
.slider-track > * { flex: 0 0 100%; }
.slider-nav { display: flex; gap: 0.6rem; justify-content: center; margin-top: 2rem; }
.slider-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-600); transition: all 0.3s var(--ease); }
.slider-dot.active { background: var(--grad-gold); width: 28px; border-radius: 40px; }

/* --------------------------------------------------------------------
   10. Gallery / Masonry
   -------------------------------------------------------------------- */
.masonry { columns: 3; column-gap: 1rem; }
.masonry .g-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: pointer; }
.masonry .g-item img { width: 100%; transition: transform 0.8s var(--ease); }
.masonry .g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,8,10,0.85));
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.masonry .g-item .g-cap {
  position: absolute; bottom: 1rem; left: 1.1rem; z-index: 2;
  opacity: 0; transform: translateY(10px); transition: all 0.4s var(--ease);
}
.masonry .g-item .g-cap span { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.masonry .g-item .g-cap p { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); }
.masonry .g-item:hover img { transform: scale(1.07); }
.masonry .g-item:hover::after { opacity: 1; }
.masonry .g-item:hover .g-cap { opacity: 1; transform: translateY(0); }

/* Filter bar */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.6rem 1.4rem; border: 1px solid var(--line-soft); border-radius: 40px;
  font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim);
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--gold-deep); color: var(--cream); }
.filter-btn.active { background: var(--grad-gold); color: var(--ink-900); border-color: transparent; font-weight: 500; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(5,5,7,0.95);
  backdrop-filter: blur(10px); display: none; align-items: center; justify-content: center;
  padding: 2rem; opacity: 0; transition: opacity 0.4s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; color: var(--cream); width: 52px; height: 52px;
  display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%;
  background: rgba(8,8,10,0.5); transition: all 0.3s var(--ease);
}
.lightbox .lb-close { top: 1.5rem; right: 1.5rem; }
.lightbox .lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: var(--grad-gold); color: var(--ink-900); border-color: transparent; }
.lightbox .lb-cap { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); text-align: center; color: var(--cream-dim); font-size: 0.9rem; }

/* --------------------------------------------------------------------
   11. Split / feature rows
   -------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/4.4; }
.split-media.tall img { aspect-ratio: 3/4; }
.split-badge {
  position: absolute; bottom: -1px; right: -1px; z-index: 3;
  background: var(--grad-gold); color: var(--ink-900); padding: 1.4rem 1.8rem;
  border-radius: var(--radius-lg) 0 var(--radius-lg) 0; max-width: 220px;
}
.split-badge .n { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; font-weight: 600; }
.split-badge .l { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }

/* Framed image with gold border offset */
.framed { position: relative; }
.framed::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(244,239,227,0.3); z-index: 2; pointer-events: none; }

/* Stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; }
.stat .n { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 600; color: var(--gold); line-height: 1; }
.stat .l { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 0.6rem; }

/* --------------------------------------------------------------------
   12. Menu page specifics
   -------------------------------------------------------------------- */
.menu-toolbar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; }
.search {
  position: relative; flex: 1; min-width: 240px; max-width: 380px;
}
.search input { width: 100%; background: rgba(8,8,10,0.5); border: 1px solid var(--line-soft); border-radius: 40px; padding: 0.8rem 1rem 0.8rem 2.8rem; color: var(--cream); }
.search input:focus { outline: none; border-color: var(--gold-deep); }
.search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted); }

.menu-list-item {
  display: flex; gap: 1.3rem; align-items: center;
  padding: 1.2rem; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  background: var(--grad-panel); transition: all 0.4s var(--ease);
}
.menu-list-item:hover { border-color: var(--line); transform: translateX(4px); }
.menu-list-item .mli-img { width: 96px; height: 96px; border-radius: var(--radius); object-fit: cover; flex-shrink: 0; }
.menu-list-item .mli-main { flex: 1; min-width: 0; }
.menu-list-item .mli-top { display: flex; align-items: baseline; gap: 0.8rem; }
.menu-list-item .mli-top h4 { font-size: 1.35rem; }
.menu-list-item .mli-dots { flex: 1; border-bottom: 1px dotted var(--muted-2); margin-bottom: 5px; min-width: 20px; }
.menu-list-item .mli-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); font-weight: 600; }
.menu-list-item .mli-desc { font-size: 0.88rem; color: var(--muted); margin-top: 0.3rem; }
.menu-list-item .mli-tags { display: flex; gap: 0.4rem; margin-top: 0.6rem; flex-wrap: wrap; }
.menu-category-title { display: flex; align-items: center; gap: 1.2rem; margin: 3rem 0 1.8rem; }
.menu-category-title h2 { white-space: nowrap; }
.menu-category-title .ln { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--muted); }

.qty-add { display: inline-flex; align-items: center; gap: 0.5rem; }

/* --------------------------------------------------------------------
   13. Cart / Order
   -------------------------------------------------------------------- */
.cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100vw); z-index: 150;
  background: var(--ink-850); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column; box-shadow: var(--shadow-md);
}
.cart-panel.open { transform: translateX(0); }
.cart-overlay { position: fixed; inset: 0; z-index: 149; background: rgba(5,5,7,0.6); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: all 0.4s var(--ease); }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--line-soft); }
.cart-head h3 { font-size: 1.5rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.cart-line { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
.cart-line img { width: 68px; height: 68px; border-radius: var(--radius); object-fit: cover; }
.cart-line .cl-main { flex: 1; min-width: 0; }
.cart-line .cl-name { font-size: 1rem; font-weight: 400; }
.cart-line .cl-price { color: var(--gold); font-size: 0.9rem; margin-top: 0.2rem; }
.cart-line .cl-remove { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.08em; margin-top: 0.4rem; }
.cart-line .cl-remove:hover { color: var(--gold); }
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line-soft); border-radius: 40px; overflow: hidden; }
.stepper button { width: 30px; height: 30px; display: grid; place-items: center; color: var(--cream-dim); transition: all 0.2s var(--ease); }
.stepper button:hover { background: var(--gold); color: var(--ink-900); }
.stepper .q { min-width: 32px; text-align: center; font-size: 0.9rem; }
.cart-foot { padding: 1.5rem; border-top: 1px solid var(--line); background: var(--ink-800); }
.cart-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--cream-dim); margin-bottom: 0.6rem; }
.cart-row.total { font-size: 1.15rem; color: var(--cream); font-weight: 500; padding-top: 0.8rem; border-top: 1px solid var(--line-soft); margin-top: 0.4rem; }
.cart-row.total b { font-family: var(--font-display); color: var(--gold); font-size: 1.6rem; }

.order-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5rem; align-items: start; }
.summary-box { position: sticky; top: 100px; padding: 1.8rem; }
.coupon-row { display: flex; gap: 0.5rem; margin: 1rem 0; }
.coupon-row .input { border-radius: 2px; }

/* --------------------------------------------------------------------
   14. Pricing cards (catering)
   -------------------------------------------------------------------- */
.price-card {
  padding: 2.4rem 2rem; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  background: var(--grad-panel); position: relative; height: 100%; display: flex; flex-direction: column;
  transition: all 0.5s var(--ease);
}
.price-card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--gold-deep); background: linear-gradient(160deg, rgba(198,162,91,0.12), rgba(16,16,21,0.7)); }
.price-card.featured::before {
  content: "Most Popular"; position: absolute; top: -1px; left: 50%; transform: translate(-50%,-50%);
  background: var(--grad-gold); color: var(--ink-900); padding: 0.4rem 1.1rem; border-radius: 40px;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; white-space: nowrap;
}
.price-card h3 { font-size: 1.7rem; }
.price-card .price { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--gold); margin: 0.6rem 0; line-height: 1; }
.price-card .price small { font-size: 0.9rem; color: var(--muted); font-family: var(--font-body); }
.price-card ul.feat-list { margin: 1.4rem 0; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.price-card ul.feat-list li { display: flex; gap: 0.7rem; font-size: 0.92rem; color: var(--cream-dim); }
.price-card ul.feat-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* --------------------------------------------------------------------
   15. Accordion (FAQ)
   -------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--line-soft); }
.acc-item { border-bottom: 1px solid var(--line-soft); }
.acc-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; text-align: left; font-family: var(--font-display); font-size: 1.35rem; color: var(--cream); transition: color 0.3s var(--ease); }
.acc-q:hover { color: var(--gold); }
.acc-q .pm { flex-shrink: 0; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); transition: all 0.4s var(--ease); position: relative; }
.acc-q .pm::before, .acc-q .pm::after { content: ""; position: absolute; background: currentColor; }
.acc-q .pm::before { width: 12px; height: 1.5px; }
.acc-q .pm::after { width: 1.5px; height: 12px; transition: transform 0.4s var(--ease); }
.acc-item.open .acc-q .pm { background: var(--grad-gold); color: var(--ink-900); border-color: transparent; }
.acc-item.open .acc-q .pm::after { transform: scaleY(0); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.acc-a-inner { padding: 0 0 1.6rem; color: var(--muted); font-size: 0.98rem; max-width: 760px; }

/* --------------------------------------------------------------------
   16. Events / timeline / calendar
   -------------------------------------------------------------------- */
.event-row {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 1.8rem; align-items: center;
  padding: 1.6rem; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  background: var(--grad-panel); transition: all 0.4s var(--ease);
}
.event-row:hover { border-color: var(--line); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.event-date { text-align: center; border-right: 1px solid var(--line-soft); padding-right: 1.5rem; }
.event-date .d { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); line-height: 1; font-weight: 600; }
.event-date .m { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }
.event-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; color: var(--muted); font-size: 0.82rem; margin-top: 0.5rem; }
.event-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }

/* --------------------------------------------------------------------
   17. Location cards
   -------------------------------------------------------------------- */
.loc-card { overflow: hidden; display: flex; flex-direction: column; }
.loc-map { aspect-ratio: 16/9; border: 0; width: 100%; filter: grayscale(1) invert(0.9) contrast(0.85) hue-rotate(180deg); transition: filter 0.5s var(--ease); }
.loc-card:hover .loc-map { filter: grayscale(0.3) invert(0.86) contrast(0.9) hue-rotate(175deg); }
.loc-body { padding: 1.6rem; display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.loc-info { display: flex; gap: 0.7rem; font-size: 0.9rem; color: var(--cream-dim); }
.loc-info svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.loc-actions { display: flex; gap: 0.7rem; margin-top: auto; padding-top: 0.6rem; }

/* --------------------------------------------------------------------
   18. Chef / team
   -------------------------------------------------------------------- */
.chef-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.chef-card img { width: 100%; aspect-ratio: 3/3.6; object-fit: cover; transition: transform 0.8s var(--ease); }
.chef-card:hover img { transform: scale(1.06); }
.chef-card .chef-ov { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,8,10,0.94)); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.6rem; }
.chef-card .chef-ov h3 { font-size: 1.6rem; }
.chef-card .chef-ov .role { color: var(--gold); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 0.2rem; }
.chef-card .chef-social { display: flex; gap: 0.6rem; margin-top: 1rem; opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease); }
.chef-card:hover .chef-social { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------
   19. Instagram grid
   -------------------------------------------------------------------- */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; }
.ig-item { position: relative; aspect-ratio: 1; overflow: hidden; }
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.ig-item::after { content: ""; position: absolute; inset: 0; background: rgba(8,8,10,0.5); opacity: 0; display: grid; place-items: center; transition: opacity 0.4s var(--ease); }
.ig-item .ig-ic { position: absolute; inset: 0; display: grid; place-items: center; color: var(--cream); opacity: 0; z-index: 2; transition: opacity 0.4s var(--ease); }
.ig-item:hover img { transform: scale(1.1); }
.ig-item:hover::after, .ig-item:hover .ig-ic { opacity: 1; }

/* --------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------- */
.footer { position: relative; background: var(--ink-850); border-top: 1px solid var(--line); padding-top: clamp(4rem, 7vw, 6rem); z-index: 2; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.footer .brand { margin-bottom: 1.3rem; }
.footer-col h5 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; font-weight: 600; }
.footer-col a { display: block; color: var(--cream-dim); font-size: 0.92rem; padding: 0.35rem 0; transition: all 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li { display: flex; gap: 0.7rem; color: var(--cream-dim); font-size: 0.92rem; margin-bottom: 0.8rem; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-hours { font-size: 0.9rem; }
.footer-hours .row { display: flex; justify-content: space-between; padding: 0.3rem 0; border-bottom: 1px solid var(--line-soft); color: var(--cream-dim); }
.footer-hours .row span:last-child { color: var(--gold); }
.socials { display: flex; gap: 0.7rem; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-soft); border-radius: 50%; color: var(--cream-dim); transition: all 0.3s var(--ease); }
.socials a:hover { background: var(--grad-gold); color: var(--ink-900); border-color: transparent; transform: translateY(-3px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 1.8rem 0; border-top: 1px solid var(--line-soft); font-size: 0.82rem; color: var(--muted); }
.footer-bottom .legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom .legal a:hover { color: var(--gold); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-bg::after { content: ""; position: absolute; inset: 0; background: rgba(8,8,10,0.82); }
.cta-band .inner { position: relative; z-index: 2; }
.cta-band .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* --------------------------------------------------------------------
   21. Utilities: reveal animations
   -------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].in { transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* Marquee */
.marquee { overflow: hidden; white-space: nowrap; border-block: 1px solid var(--line-soft); padding: 1.4rem 0; }
.marquee-track { display: inline-flex; gap: 3.5rem; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--font-display); font-size: 1.7rem; font-style: italic; color: var(--cream-dim); display: inline-flex; align-items: center; gap: 3.5rem; }
.marquee-item::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 0.9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Back to top */
.to-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 90; width: 48px; height: 48px; border-radius: 50%; background: var(--grad-gold); color: var(--ink-900); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.4s var(--ease); box-shadow: var(--shadow-gold); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); }

/* Toast */
.toast-wrap { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 300; display: flex; flex-direction: column; gap: 0.6rem; align-items: center; }
.toast {
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--ink-750); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.9rem 1.3rem; box-shadow: var(--shadow-md); color: var(--cream);
  font-size: 0.9rem; transform: translateY(20px); opacity: 0; transition: all 0.4s var(--ease);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { color: var(--gold); }

/* Loader */
.loader { position: fixed; inset: 0; z-index: 500; background: var(--ink-900); display: grid; place-items: center; transition: opacity 0.7s var(--ease), visibility 0.7s; }
.loader.done { opacity: 0; visibility: hidden; }
.loader .lo-mark { text-align: center; }
.loader .lo-mark .m { font-family: var(--font-display); font-size: 3rem; color: var(--gold); letter-spacing: 0.1em; }
.loader .lo-bar { width: 160px; height: 1px; background: var(--ink-600); margin: 1.2rem auto 0; overflow: hidden; }
.loader .lo-bar::after { content: ""; display: block; height: 100%; width: 40%; background: var(--grad-gold); animation: loadBar 1.1s var(--ease) infinite; }
@keyframes loadBar { 0% { transform: translateX(-100%); } 100% { transform: translateX(400%); } }

/* --------------------------------------------------------------------
   22. Responsive
   -------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .mega { grid-template-columns: 1fr 1fr; }
  .mega-feature { grid-column: span 2; min-height: 160px; }
}

@media (max-width: 900px) {
  :root { --nav-h: 72px; }
  .nav-links, .nav .desktop-only { display: none; }
  .hamburger { display: flex; }
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split-media { order: 0; }
  .order-grid { grid-template-columns: 1fr; }
  .summary-box { position: static; }
  .masonry { columns: 2; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .event-row { grid-template-columns: 90px 1fr; }
  .event-row .btn { grid-column: span 2; }
}

@media (max-width: 640px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .newsletter-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .menu-list-item .mli-img { width: 72px; height: 72px; }
  .cart-panel { width: 100vw; }
  .to-top { bottom: 1.2rem; right: 1.2rem; }
  .split-badge { position: static; border-radius: 0 0 var(--radius-lg) var(--radius-lg); max-width: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-media img { animation: none; }
}

/* Print */
@media print {
  .nav, .footer, .to-top, .hero-scroll, .cart-panel, .cart-overlay { display: none !important; }
  body { background: #fff; color: #000; }
}
