/* ============================================================
   BANQUETOS™ — Luxury Client Experience CSS
   Powered & Developed by Damerax Cloud Solutions
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ─── */
:root {
  --primary:        #8B1A1A;
  --primary-dark:   #6b1212;
  --primary-light:  #a82020;
  --primary-glow:   rgba(139,26,26,.18);
  --accent:         #B8962E;
  --accent-light:   #d4af54;
  --accent-dim:     rgba(184,150,46,.12);
  --accent-border:  rgba(184,150,46,.28);

  /* Light Mode — warm ivory, like Taj / Oberoi */
  --bg:             #FDFAF5;
  --bg-card:        #FFFFFF;
  --bg-card-alt:    #F8F4ED;
  --bg-glass:       rgba(255,255,255,0.85);
  --surface:        #F3EDE2;
  --surface-2:      #EBE4D6;
  --border:         #E4D9C8;
  --border-subtle:  rgba(160,130,90,.12);

  --text:           #1C1610;
  --text-muted:     #6B5B45;
  --text-light:     #A0896B;
  --text-on-dark:   #F5EFE4;

  --shadow-xs:  0 1px 3px rgba(0,0,0,.04);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.05), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md:  0 8px 32px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.10), 0 8px 20px rgba(0,0,0,.06);
  --shadow-xl:  0 40px 100px rgba(0,0,0,.12), 0 16px 40px rgba(0,0,0,.08);
  --shadow-gold: 0 8px 32px rgba(184,150,46,.18);

  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --radius-2xl: 44px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.32s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: 0.16s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.55s cubic-bezier(0.16,1,0.3,1);

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'Inter', 'Helvetica Neue', sans-serif;

  --section-y:  100px;
  --section-sm: 64px;

  /* Navbar height token — used throughout */
  --nav-h: 68px;
}

/* ── Dark Mode — true luxury dark, NOT brownish mud ── */
[data-theme="dark"] {
  /* Deep neutral charcoal, like a 5-star suite at night */
  --bg:             #111111;
  --bg-card:        #1A1A1A;
  --bg-card-alt:    #222222;
  --bg-glass:       rgba(17,17,17,.88);
  --surface:        #202020;
  --surface-2:      #282828;
  --border:         #2E2E2E;
  --border-subtle:  rgba(184,150,46,.08);

  --text:           #F0EDE8;
  --text-muted:     #8A8078;
  --text-light:     #5A5248;

  --shadow-xs:  0 1px 3px rgba(0,0,0,.4);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.5);
  --shadow-md:  0 8px 32px rgba(0,0,0,.6);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.7);
  --shadow-xl:  0 40px 100px rgba(0,0,0,.8);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--primary-light); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -.01em;
}
h1 { font-weight: 400; letter-spacing: -.03em; }
h2 { font-weight: 400; letter-spacing: -.025em; }
h3 { font-weight: 500; }
em { font-style: italic; }

.label-caps {
  font-family: var(--font-sans);
  font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 600;
  color: var(--text-muted);
}
.label-caps-gold {
  font-family: var(--font-sans);
  font-size: .67rem; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 700;
  color: var(--accent);
}
.text-accent  { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted   { color: var(--text-muted); }

/* ── Layout ── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 780px;  margin: 0 auto; padding: 0 40px; }
.container-xs { max-width: 540px;  margin: 0 auto; padding: 0 40px; }
.section    { padding: var(--section-y) 0; }
.section-sm { padding: var(--section-sm) 0; }

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

@media (max-width: 1024px) {
  .container, .container-sm { padding: 0 28px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  :root { --section-y: 72px; --section-sm: 48px; }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .container, .container-sm, .container-xs { padding: 0 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR — fixed, slim, never wraps on mobile
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 32px;
  gap: 0;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(253,250,245,.92);
  border-bottom: 1px solid rgba(160,130,90,.1);
  transition: height var(--transition), background var(--transition), box-shadow var(--transition);
}
[data-theme="dark"] .navbar {
  background: rgba(17,17,17,.92);
  border-bottom-color: rgba(184,150,46,.06);
}
.navbar.scrolled {
  height: 60px;
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
}
[data-theme="dark"] .navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
}

/* Brand — NEVER wraps */
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
  margin-right: auto;
}
.navbar-logo {
  height: 36px; width: auto; object-fit: contain; flex-shrink: 0;
}
.navbar-wordmark {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 700;
  color: var(--primary);
  letter-spacing: .04em;
  white-space: nowrap; /* CRITICAL — never wraps */
  line-height: 1;
}
.navbar-wordmark sup {
  font-size: .5em; vertical-align: super; opacity: .55; letter-spacing: .1em;
}

/* Nav links — hidden on mobile */
.navbar-nav {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0 32px;
}
.navbar-nav a {
  font-size: .76rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-muted); white-space: nowrap;
  position: relative; padding-bottom: 2px;
  transition: color var(--transition-fast);
}
.navbar-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--transition-fast);
}
.navbar-nav a:hover { color: var(--text); }
.navbar-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* Actions — always visible, nowrap */
.navbar-actions {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.navbar-actions .btn { white-space: nowrap; }

/* Theme toggle */
.theme-toggle {
  width: 34px; height: 34px; border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}
.theme-toggle:hover {
  background: var(--surface);
  border-color: var(--accent-border);
  color: var(--accent);
  transform: rotate(20deg);
}

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; margin-left: 6px; flex-shrink: 0;
}
.menu-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition-fast); transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Breakpoints: hide nav links, show hamburger */
@media (max-width: 900px) {
  .navbar { padding: 0 20px; }
  .navbar-nav { display: none; }
  .menu-toggle { display: flex; }
  /* On small screens, show only theme toggle + hamburger in actions */
  .navbar-actions .btn-ghost { display: none; }
}
@media (max-width: 480px) {
  /* Shrink brand text so it never crowds the CTA button */
  .navbar-wordmark { font-size: 1.1rem; }
  .navbar-actions { gap: 8px; }
  .btn-sm { padding: 8px 16px; font-size: .72rem; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 999;
  background: var(--bg-card);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
  border-left: 1px solid var(--border);
}
[data-theme="dark"] .mobile-nav { background: #1A1A1A; }
.mobile-nav.open { transform: translateX(0); box-shadow: var(--shadow-xl); }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.45rem; font-weight: 400;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: block;
  transition: all var(--transition-fast);
  letter-spacing: -.01em;
}
.mobile-nav a:hover { color: var(--primary); padding-left: 8px; }
.mobile-nav a:last-child { border: none; color: var(--accent); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   HERO — full viewport, real luxury hotel feel
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  min-height: 100vh; /* fallback */
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  /* Padding-top accounts for fixed navbar */
  padding: calc(var(--nav-h) + 60px) 24px 80px;
}

/* Dark background — NOT muddy brown. True deep charcoal with warm undertone */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #0E0E0E;
}

/* If a hero image is present */
.hero-bg-img {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: .22;
  filter: grayscale(20%) brightness(.9);
}

/* Multi-layer depth overlay */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(139,26,26,.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 10%, rgba(184,150,46,.05) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(14,14,14,.1) 0%, rgba(14,14,14,.0) 40%, rgba(14,14,14,.35) 100%);
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 860px; margin: 0 auto;
  width: 100%;
}

/* Brand pill */
.hero-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .64rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  margin-bottom: 36px;
  padding: 9px 22px;
  border: 1px solid rgba(184,150,46,.3);
  border-radius: 100px;
  background: rgba(184,150,46,.04);
  animation: heroFadeDown .8s var(--ease-out) both;
}
.hero-tag::before, .hero-tag::after {
  content: '';
  width: 22px; height: 1px;
  background: rgba(184,150,46,.5);
}

/* Headline — sized to never overflow on mobile */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6.5vw, 5.8rem);
  font-weight: 300;
  color: #F2EDE5;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -.035em;
  animation: heroFadeUp .85s var(--ease-out) .12s both;
}
.hero-title em {
  font-style: italic; color: var(--accent); font-weight: 300;
}

/* Ornamental divider */
.hero-rule {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; margin-bottom: 24px;
  animation: heroFadeUp .85s var(--ease-out) .22s both;
}
.hero-rule::before, .hero-rule::after {
  content: ''; flex: 1; max-width: 72px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,150,46,.45));
}
.hero-rule::after { background: linear-gradient(to left, transparent, rgba(184,150,46,.45)); }
.hero-ornament { color: var(--accent); font-size: .85rem; opacity: .7; letter-spacing: .28em; }

.hero-subtitle {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: rgba(242,237,229,.55);
  max-width: 460px; margin: 0 auto 48px;
  line-height: 1.85; font-weight: 300; letter-spacing: .01em;
  animation: heroFadeUp .85s var(--ease-out) .32s both;
}

.hero-actions {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  animation: heroFadeUp .85s var(--ease-out) .42s both;
}

/* Scroll cue */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(242,237,229,.3); font-size: .62rem; letter-spacing: .16em;
  text-transform: uppercase;
  animation: heroFadeUp .85s var(--ease-out) .7s both;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(184,150,46,.5), transparent);
  animation: scrollPulse 2.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .5; }
  50% { opacity: 1; }
}
@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile hero adjustments */
@media (max-width: 480px) {
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; border-radius: 100px;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: all var(--transition-fast);
  white-space: nowrap; position: relative; overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.1) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .45s ease;
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 18px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-primary:hover {
  background: var(--primary-light); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--primary-glow);
}
.btn-primary:active { transform: translateY(0); }

.btn-accent {
  background: var(--accent); color: #1a1410;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-accent:hover {
  background: var(--accent-light); color: #1a1410;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184,150,46,.28);
}

.btn-outline {
  border: 1.5px solid var(--border); color: var(--text); background: transparent;
}
.btn-outline:hover {
  border-color: var(--primary); color: var(--primary);
  background: var(--primary-glow); transform: translateY(-2px);
}

.btn-outline-gold {
  border: 1.5px solid var(--accent-border); color: var(--accent); background: transparent;
}
.btn-outline-gold:hover {
  background: var(--accent-dim); transform: translateY(-2px);
}

.btn-outline-light {
  border: 1.5px solid rgba(242,237,229,.2); color: rgba(242,237,229,.8);
  background: rgba(242,237,229,.04);
}
.btn-outline-light:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(184,150,46,.06); transform: translateY(-2px);
}

.btn-ghost { color: var(--text-muted); padding: 10px 18px; letter-spacing: .06em; }
.btn-ghost:hover { color: var(--primary); }

.btn-sm  { padding: 9px 22px; font-size: .72rem; }
.btn-lg  { padding: 16px 44px; font-size: .8rem; letter-spacing: .12em; }
.btn-xl  { padding: 20px 56px; font-size: .85rem; letter-spacing: .12em; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* Pulse ring CTA */
.btn-primary-pulse { position: relative; }
.btn-primary-pulse::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  border: 2px solid var(--primary);
  animation: pulseRing 2.2s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: .5; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.card:hover .card-img img { transform: scale(1.06); }
.card-body  { padding: 24px; }
.card-title { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 8px; }
.card-text  { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ── Dish Card ── */
.dish-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition); position: relative;
}
.dish-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-4px);
  border-color: rgba(184,150,46,.22);
}
.dish-card-img { aspect-ratio: 3/2; overflow: hidden; background: var(--surface); position: relative; }
.dish-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.dish-card:hover .dish-card-img img { transform: scale(1.09); }

.dish-type-badge {
  position: absolute; top: 10px; left: 10px;
  width: 18px; height: 18px; border-radius: 3px;
  border: 2px solid; display: flex; align-items: center; justify-content: center;
  background: rgba(14,14,14,.65); backdrop-filter: blur(4px);
}
.dish-type-badge.veg  { border-color: #22a244; }
.dish-type-badge.veg::after  { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #22a244; }
.dish-type-badge.non-veg { border-color: var(--primary); }
.dish-type-badge.non-veg::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }

.dish-featured-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--accent); color: #1a1410;
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800;
  padding: 3px 9px; border-radius: 100px;
}

.dish-card-body { padding: 16px 18px; }
.dish-name { font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 5px; line-height: 1.3; }
.dish-desc {
  font-size: .8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.dish-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.dish-cuisine    { font-size: .72rem; color: var(--text-light); }
.dish-price-ref  { font-size: .78rem; font-weight: 700; color: var(--accent); }

.dish-add-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--primary); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 300; line-height: 1;
  transition: all var(--transition-fast); flex-shrink: 0;
}
.dish-add-btn:hover, .dish-add-btn.added {
  background: var(--primary); color: #fff;
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════════
   PACKAGE CARDS — image placeholder markers clearly visible
   ═══════════════════════════════════════════════════════════════ */
.package-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}
.package-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(139,26,26,.25);
}
.package-card.featured { border-color: rgba(184,150,46,.35); }
.package-card.featured::before {
  content: 'FEATURED';
  position: absolute; top: 22px; right: -28px;
  background: var(--accent); color: #1a1410;
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 800;
  padding: 5px 44px; transform: rotate(45deg);
  z-index: 2;
}

.package-hero-img {
  aspect-ratio: 16/9; overflow: hidden;
  position: relative;
  background: var(--surface-2);
}
/* Gradient overlay on image */
.package-hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,.4) 0%, transparent 55%);
}
.package-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.package-card:hover .package-hero-img img { transform: scale(1.06); }

/* Placeholder shown when no real image */
.package-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  color: var(--accent); opacity: .6;
  font-family: var(--font-serif);
}
.package-img-placeholder-icon { font-size: 2rem; }
.package-img-placeholder-text { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }

.package-card-body  { padding: 32px; }
.package-name { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 500; margin-bottom: 12px; line-height: 1.2; }
.package-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.package-rules {
  font-size: .82rem; color: var(--text-light); font-style: italic;
  margin-bottom: 20px; padding: 12px 16px;
  background: var(--surface); border-radius: var(--radius);
  border-left: 2px solid var(--accent);
}
.package-price { font-size: 1.4rem; font-weight: 700; color: var(--primary); font-family: var(--font-serif); }
.package-price-sub { font-size: .8rem; color: var(--text-muted); font-weight: 400; }
.package-guest-range { font-size: .8rem; color: var(--text-muted); margin-top: 5px; }
.package-card-footer {
  padding: 20px 32px 26px; border-top: 1px solid var(--border);
  display: flex; gap: 10px; flex-wrap: wrap;
}

/* ── Section Headings ── */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .label-caps,
.section-head .label-caps-gold { display: block; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; letter-spacing: -.03em; }
.section-head p { max-width: 500px; margin: 16px auto 0; color: var(--text-muted); font-size: .96rem; line-height: 1.8; }

/* Gold divider */
.divider {
  display: flex; align-items: center; gap: 10px;
  margin: 20px auto; width: fit-content;
}
.divider::before, .divider::after {
  content: ''; width: 52px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,150,46,.5));
}
.divider::after { background: linear-gradient(to left, transparent, rgba(184,150,46,.5)); }
.divider-gem { width: 5px; height: 5px; background: var(--accent); transform: rotate(45deg); opacity: .8; }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: .75rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-label-concierge {
  display: block; font-family: var(--font-serif);
  font-size: .98rem; font-weight: 500; color: var(--text); margin-bottom: 7px;
}
.form-label-hint { font-size: .76rem; color: var(--text-muted); font-family: var(--font-sans); display: block; margin-top: 2px; }
.form-control {
  display: block; width: 100%; padding: 14px 18px;
  border-radius: var(--radius); border: 1.5px solid var(--border);
  background: var(--bg-card); color: var(--text);
  font-family: var(--font-sans); font-size: .93rem;
  transition: all var(--transition-fast); outline: none; -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-control::placeholder { color: var(--text-light); font-style: italic; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-hint  { font-size: .76rem; color: var(--text-light); margin-top: 5px; }
.form-error { font-size: .76rem; color: #dc2626; margin-top: 5px; }
.form-grid  { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }

/* ── Filter Pills ── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 0; }
.filter-pill {
  padding: 8px 20px; border-radius: 100px;
  border: 1.5px solid var(--border); color: var(--text-muted);
  font-size: .74rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  transition: all var(--transition-fast); background: transparent; white-space: nowrap;
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
  box-shadow: 0 4px 14px var(--primary-glow);
}

/* ── Estimate Bar ── */
.estimate-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: #0E0E0E;
  border-top: 1px solid rgba(184,150,46,.2);
  color: #fff; padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 -8px 32px rgba(0,0,0,.25);
  transform: translateY(100%); transition: transform var(--transition);
}
.estimate-bar.visible { transform: translateY(0); }
.estimate-bar-label { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; }
.estimate-bar-amount { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; color: #F2EDE5; }
.estimate-disclaimer { font-size: .7rem; color: rgba(242,237,229,.4); max-width: 260px; }
@media (max-width: 600px) {
  .estimate-bar { flex-direction: column; gap: 12px; text-align: center; padding: 20px 20px; }
}

/* ── Toast ── */
.toast-container {
  position: fixed; top: calc(var(--nav-h) + 16px); right: 20px; z-index: 9999;
  display: flex; flex-direction: column; gap: 8px; pointer-events: none;
}
.toast {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 18px;
  box-shadow: var(--shadow-lg); min-width: 280px; max-width: 360px;
  display: flex; align-items: flex-start; gap: 10px;
  animation: toastIn .3s var(--ease-out) both; pointer-events: all;
}
.toast.removing { animation: toastOut .25s var(--ease-in-out) both; }
.toast-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.toast-body { flex: 1; }
.toast-title { font-weight: 600; font-size: .84rem; margin-bottom: 2px; }
.toast-msg   { font-size: .8rem; color: var(--text-muted); }
.toast.success { border-left: 3px solid #22c55e; }
.toast.error   { border-left: 3px solid #dc2626; }
.toast.info    { border-left: 3px solid var(--accent); }
.toast.warning { border-left: 3px solid #f59e0b; }
@keyframes toastIn  { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateX(20px); } }

/* ── Stepper ── */
.steps {
  display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-bottom: 56px;
}
.step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; min-width: 100px; flex: 1; max-width: 150px;
}
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 16px;
  left: calc(50% + 20px); right: calc(-50% + 20px);
  height: 1px; background: var(--border); transition: background var(--transition);
}
.step.completed:not(:last-child)::after { background: var(--accent); }
.step-circle {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: var(--text-light);
  transition: all var(--transition); position: relative; z-index: 1;
}
.step.active .step-circle {
  border-color: var(--primary); background: var(--primary); color: #fff;
  box-shadow: 0 0 0 4px var(--primary-glow);
}
.step.completed .step-circle { border-color: var(--accent); background: var(--accent); color: #1a1410; }
.step-label {
  font-size: .67rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-light); text-align: center; line-height: 1.3;
}
.step.active .step-label    { color: var(--primary); font-weight: 700; }
.step.completed .step-label { color: var(--accent); }

/* ── Portal ── */
.portal-layout {
  display: grid; grid-template-columns: 248px 1fr;
  min-height: calc(100svh - var(--nav-h));
  margin-top: var(--nav-h);
}
.portal-sidebar {
  background: var(--bg-card); border-right: 1px solid var(--border);
  padding: 32px 18px;
  position: sticky; top: var(--nav-h); height: calc(100svh - var(--nav-h));
  overflow-y: auto;
}
.portal-main { padding: 40px 44px; background: var(--bg); }
.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 3px; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  border-radius: var(--radius); color: var(--text-muted);
  font-size: .85rem; font-weight: 500; transition: all var(--transition-fast);
}
.sidebar-nav a:hover { background: var(--surface); color: var(--text); }
.sidebar-nav a.active {
  background: rgba(139,26,26,.08); color: var(--primary);
  font-weight: 600; box-shadow: inset 3px 0 0 var(--primary);
}
.sidebar-icon { font-size: .9rem; width: 18px; text-align: center; flex-shrink: 0; }
.sidebar-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }
@media (max-width: 900px) {
  .portal-layout { grid-template-columns: 1fr; }
  .portal-sidebar { display: none; }
  .portal-main { padding: 24px 20px; }
}

/* ── Status Badges ── */
.status-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 11px; border-radius: 100px;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.status-enquiry     { background: rgba(107,91,69,.1);  color: #6b5b45; }
.status-discovery   { background: rgba(59,130,246,.1); color: #1d4ed8; }
.status-quote-sent  { background: rgba(234,179,8,.1);  color: #92400e; }
.status-negotiation { background: rgba(249,115,22,.1); color: #c2410c; }
.status-approved    { background: rgba(34,197,94,.1);  color: #166534; }
.status-advance-paid{ background: rgba(34,197,94,.1);  color: #166534; }
.status-planning    { background: rgba(99,102,241,.1); color: #3730a3; }
.status-tasting-scheduled { background: rgba(168,85,247,.1); color: #6b21a8; }
.status-prep        { background: rgba(249,115,22,.1); color: #c2410c; }
.status-dispatch    { background: rgba(20,184,166,.1); color: #0f766e; }
.status-live        { background: rgba(139,26,26,.15); color: var(--primary); }
.status-completed   { background: rgba(34,197,94,.1);  color: #166534; }
.status-closed      { background: rgba(107,114,128,.1);color: #374151; }
.status-cancelled   { background: rgba(220,38,38,.08); color: #dc2626; }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 18px; left: 24px;
  font-family: var(--font-serif); font-size: 5rem;
  color: var(--accent); opacity: .18; line-height: 1;
}
.stars { color: var(--accent); font-size: .85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: .95rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--surface); object-fit: cover; }
.testimonial-name   { font-weight: 600; font-size: .88rem; }
.testimonial-event  { font-size: .76rem; color: var(--text-light); }

/* ── Auth Pages ── */
.auth-split {
  min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr;
}
.auth-panel-left {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 56px 44px; position: relative; overflow: hidden;
}
.auth-panel-right {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 44px; background: var(--bg); overflow-y: auto;
}
@media (max-width: 768px) {
  .auth-split { grid-template-columns: 1fr; }
  .auth-panel-left { display: none; }
  .auth-panel-right { padding: 40px 24px; }
}

/* ── Footer ── */
.footer {
  background: #0E0E0E; color: rgba(242,237,229,.5);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(184,150,46,.08);
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,150,46,.28), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 44px; margin-bottom: 56px;
}
@media (max-width: 900px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-name {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700;
  color: rgba(242,237,229,.88); margin-bottom: 12px; letter-spacing: .04em;
}
.footer-brand-desc { font-size: .85rem; line-height: 1.75; max-width: 270px; }
.footer-col-title {
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: var(--accent); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: .85rem; color: rgba(242,237,229,.42);
  transition: all var(--transition-fast);
}
.footer-links a:hover { color: rgba(242,237,229,.88); padding-left: 4px; }
.footer-contact p {
  font-size: .85rem; margin-bottom: 10px;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(242,237,229,.05); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-copyright { font-size: .78rem; }
.footer-powered   { font-size: .7rem; letter-spacing: .07em; color: rgba(184,150,46,.6); }

/* ── Alerts ── */
.alert {
  padding: 13px 18px; border-radius: var(--radius);
  margin-bottom: 18px; font-size: .88rem; line-height: 1.5;
}
.alert-error   { background: rgba(220,38,38,.07);  border: 1px solid rgba(220,38,38,.18);  color: #dc2626; }
.alert-success { background: rgba(34,197,94,.07);  border: 1px solid rgba(34,197,94,.18);  color: #16a34a; }
.alert-info    { background: rgba(184,150,46,.07); border: 1px solid rgba(184,150,46,.18); color: #92400e; }
[data-theme="dark"] .alert-info { color: var(--accent); }

/* ── Loading ── */
.loading { display: flex; align-items: center; justify-content: center; padding: 56px; }
.spinner {
  width: 26px; height: 26px;
  border: 2px solid var(--border); border-top-color: var(--accent);
  border-radius: 50%; animation: spin .65s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%; animation: shimmer 1.5s ease infinite;
  border-radius: var(--radius);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── Empty State ── */
.empty-state { text-align: center; padding: 72px 28px; color: var(--text-muted); }
.empty-state-icon { font-size: 2.2rem; margin-bottom: 18px; opacity: .3; }
.empty-state h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 8px; color: var(--text); font-weight: 400; }

/* ── Utility ── */
.hidden   { display: none !important; }
.sr-only  { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.flex     { display: flex; }
.flex-col { flex-direction: column; }
.items-center   { align-items: center; }
.justify-between{ justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }   .gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }  .gap-6 { gap: 24px; }
.mt-4  { margin-top: 16px; } .mt-6  { margin-top: 24px; } .mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.w-full  { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.rounded-full { border-radius: 9999px; }

/* ── Glass panel ── */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

/* ── Concierge panels (plan page) ── */
.concierge-panel {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px; margin-bottom: 24px;
  transition: border-color var(--transition-fast);
}
.concierge-panel:focus-within {
  border-color: rgba(184,150,46,.28);
  box-shadow: 0 0 0 3px rgba(184,150,46,.05);
}
.concierge-panel-title {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; margin-bottom: 6px;
}
.concierge-panel-subtitle { font-size: .875rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.65; }

/* ── Tasting card ── */
.tasting-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 44px 36px;
  text-align: center; transition: all var(--transition);
}
.tasting-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tasting-ornament {
  font-family: var(--font-serif); font-size: 2.8rem;
  color: var(--accent); opacity: .55; margin-bottom: 18px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── Contact items ── */
.contact-item {
  display: flex; align-items: center; gap: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.contact-item:hover .contact-icon { transform: scale(1.1); }
.contact-icon-a { background: rgba(139,26,26,.08); }
.contact-icon-b { background: rgba(184,150,46,.08); }
.contact-label  { font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-value  { font-size: .97rem; font-weight: 600; color: var(--text); }

/* ── AOS (Animate on Scroll) ── */
[data-aos] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ── Print ── */
@media print {
  .navbar, .footer, .estimate-bar, .theme-toggle,
  .btn, .toast-container, .portal-sidebar, .mobile-nav { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .card, .package-card { box-shadow: none; border: 1px solid #ddd; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
