/* ============================================================
   Rich Delights — styles.css
   Animation-first design system
   ============================================================ */

:root {
  --navy:       #1a2240;
  --navy-mid:   #232d52;
  --navy-light: #2e3d6e;
  --gold:       #c8a040;
  --gold-light: #e8c060;
  --gold-pale:  #f5e8c0;
  --cream:      #fdf8f0;
  --cream-deep: #f5ead8;
  --beige:      #e8d5b0;
  --brown:      #7a4a1e;
  --brown-dark: #4a2a0e;
  --blush:      #f2c8a0;
  --white:      #ffffff;

  --ring-red:    #e63535;
  --ring-yellow: #f5c518;
  --ring-green:  #22b14c;
  --ring-blue:   #1a82d4;

  --text-dark:  #1a2240;
  --text-mid:   #3a4a6a;
  --text-light: #7a8aaa;

  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;

  --nav-h:    72px;
  --radius:   16px;
  --radius-sm: 8px;
  --shadow:      0 4px 32px rgba(26,34,64,0.10);
  --shadow-hover:0 16px 56px rgba(26,34,64,0.22);
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}
/* Restore cursor on touch devices */
@media (hover: none) { body { cursor: auto; } }

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right,
    var(--ring-red), var(--ring-yellow),
    var(--ring-green), var(--ring-blue));
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============================================================
   SPARKLE CURSOR TRAIL
   ============================================================ */
.cursor-spark {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  line-height: 1;
  user-select: none;
  will-change: transform, opacity;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-eyebrow {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--navy);
  position: relative;
  display: inline-block;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--brown); }
.section-sub { font-size: 1rem; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-sub { margin-top: 16px; }

/* ── Gold paint-stroke underline ── */
.title-stroke {
  position: absolute;
  bottom: -6px; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 2px;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
  filter: drop-shadow(0 0 6px rgba(200,160,64,0.6));
}
.section-title.stroked .title-stroke { width: 100%; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.04em;
  transition: box-shadow 0.3s, background 0.3s, color 0.3s;
  position: relative; overflow: hidden;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--gold); color: var(--navy); font-weight: 600;
  box-shadow: 0 4px 20px rgba(200,160,64,0.35);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 8px 32px rgba(200,160,64,0.5); }

.btn-outline {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

.btn-outline-light {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

.btn-full { width: 100%; justify-content: center; }

.btn-wa {
  background: #25d366; color: #fff; font-size: 0.9rem;
  padding: 12px 20px; border-radius: 50px;
  box-shadow: 0 2px 12px rgba(37,211,102,0.3);
  display: inline-flex; align-items: center; gap: 8px;
  position: relative; overflow: hidden; 
  transition: box-shadow 0.3s, background 0.3s; will-change: transform;
}
.btn-wa:hover { background: #1eb85a; box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
.btn-wa svg { width: 18px; height: 18px; }

.btn-wa-sm {
  background: #25d366; color: #fff;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 500;
  box-shadow: 0 2px 12px rgba(37,211,102,0.25);
  position: relative; overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s; will-change: transform;
}
.btn-wa-sm:hover { background: #1eb85a; }
.btn-wa-sm svg { width: 15px; height: 15px; }

/* ============================================================
   LOGO
   ============================================================ */
.logo-img {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--gold);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.logo:hover .logo-img { transform: rotate(10deg) scale(1.08); }
.logo-img-sm { width: 32px; height: 32px; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
  padding: 0;
}
#navbar.scrolled {
  background: rgba(253,248,240,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(26,34,64,0.10);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: var(--nav-h); gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--cream); white-space: nowrap; transition: color 0.3s;
}
.logo-text em { font-style: italic; font-weight: 300; color: var(--gold-light); }
#navbar.scrolled .logo-text { color: var(--navy); }
#navbar.scrolled .logo-text em { color: var(--gold); }

.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  font-size: 0.875rem; font-weight: 400;
  color: rgba(253,248,240,0.8); letter-spacing: 0.03em;
  position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.35s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover, .nav-links a.nav-active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.nav-active::after { width: 100%; }
#navbar.scrolled .nav-links a { color: var(--text-mid); }
#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.nav-active { color: var(--navy); }

.nav-whatsapp {
  display: flex; align-items: center; gap: 6px;
  background: #25d366; color: #fff;
  padding: 9px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 500;
  transition: background 0.3s; flex-shrink: 0;
  text-decoration: none;
  position: relative; overflow: hidden; will-change: transform;
}
.nav-whatsapp svg { width: 16px; height: 16px; }
.nav-whatsapp:hover { background: #1eb85a; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--cream);
  border-radius: 2px; transition: all 0.35s; display: block;
}
#navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; background: rgba(253,248,240,0.98);
  backdrop-filter: blur(16px); border-top: 1px solid var(--cream-deep);
  padding: 8px 24px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu li { border-bottom: 1px solid var(--cream-deep); }
.mobile-menu a {
  display: block; padding: 14px 0;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--navy);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--navy);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 45%, rgba(200,160,64,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(200,160,64,0.06) 0%, transparent 45%),
    linear-gradient(135deg, #0f1628 0%, #1a2240 45%, #2e3d6e 100%);
  will-change: transform;
}
.hero-decor {
  position: absolute; border-radius: 50%; pointer-events: none;
  will-change: transform;
}
.hero-decor-1 {
  width: 560px; height: 560px; top: -180px; right: -120px;
  border: 1px solid rgba(200,160,64,0.10);
  background: radial-gradient(circle, rgba(200,160,64,0.04) 0%, transparent 70%);
  animation: float1 9s ease-in-out infinite;
}
.hero-decor-2 {
  width: 380px; height: 380px; bottom: -80px; left: -60px;
  border: 1px solid rgba(200,160,64,0.06);
  animation: float2 11s ease-in-out infinite;
}
@keyframes float1 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(2deg); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(14px) rotate(-2deg); }
}

/* Canvas particles sit at z-index:1 — content above at z-index:2 */
#hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 24px 80px; max-width: 860px;
}

/* ── Hero load-in ── */
.hero-animate {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease var(--delay,0s), transform 0.8s ease var(--delay,0s);
}
body.page-loaded .hero-animate { opacity: 1; transform: none; }

.hero-eyebrow {
  font-size: 0.78rem; letter-spacing: 0.25em; color: var(--gold-light);
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  line-height: 1.08; color: var(--cream); margin-bottom: 24px;
  overflow: visible;
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--gold-light); display: block; }

/* ── Character split animation ── */
.char {
  display: inline-block;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transform: translateY(0.4em);
  opacity: 0;
  transition:
    clip-path 0.6s cubic-bezier(0.22,1,0.36,1) var(--cd, 0ms),
    transform  0.6s cubic-bezier(0.22,1,0.36,1) var(--cd, 0ms),
    opacity    0.4s ease var(--cd, 0ms);
}
body.page-loaded .char {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: translateY(0);
  opacity: 1;
}
.char-space { display: inline-block; width: 0.28em; }

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(253,248,240,0.68); line-height: 1.85; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute; bottom: 120px; left: 80%; transform: translateX(-80%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(253,248,240,0.35); font-size: 0.68rem;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(253,248,240,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.4; }
  50%      { transform: scaleY(0.5); opacity: 1; }
}

/* ============================================================
   USP STRIP — elastic spring pop
   ============================================================ */
.usp-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 14, 30, 0.85);
  backdrop-filter: blur(12px);
  border-top: 3px solid transparent;
  border-image: linear-gradient(to right,
    var(--ring-red),var(--ring-yellow),var(--ring-green),var(--ring-blue)) 1;
  overflow: hidden;
  z-index: 3;
}
.usp-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: stretch; justify-content: space-around;
}
.usp-badge {
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 20px; gap: 10px; flex: 1;
  opacity: 1; transform: scale(1) translateY(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.usp-badge.revealed { opacity: 1; transform: scale(1) translateY(0); }
.usp-badge:hover {
  background: rgba(200,160,64,0.08);
  transform: scale(1.06) translateY(-3px);
}
.usp-icon {
  font-size: 2rem; line-height: 1;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.usp-badge:hover .usp-icon { transform: scale(1.3) rotate(-8deg); }
.usp-label {
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-pale); text-align: center;
}
.usp-divider {
  width: 1px; background: rgba(200,160,64,0.12);
  align-self: stretch; flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 20px 0; background: var(--cream); position: relative; overflow: hidden;
}
.about::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,160,64,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap { position: relative; height: 520px; }
.about-img {
  position: absolute; background-size: 120%; background-position: center;
  background-color: var(--cream-deep); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  /* Ken Burns drift on hover */
  overflow: hidden;
  transition: background-size 8s ease;
}
.about-img:hover { background-size: 130%; }
.about-img-1 { width: 75%; height: 75%; top: 0; left: 0; box-shadow: var(--shadow-hover); }
.about-img-2 {
  width: 55%; height: 50%; bottom: 0; right: 0;
  box-shadow: var(--shadow-hover); border: 4px solid var(--cream);
}
.img-placeholder {
  color: var(--text-light); font-size: 0.8rem; text-align: center;
  padding: 8px; opacity: 0.55; pointer-events: none;
}
.img-placeholder.small { font-size: 0.7rem; }

.about-badge-float {
  position: absolute; top: 50%; left: 60%; transform: translate(-50%, -50%);
  background: var(--navy); color: var(--gold-pale); border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(26,34,64,0.4); z-index: 3; text-align: center;
  border: 3px solid var(--gold);
  /* spinning ring on hover */
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.about-badge-float:hover { transform: translate(-50%,-50%) scale(1.1) rotate(5deg); }
.big-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  line-height: 1; color: var(--gold-light);
}
.small-txt { font-size: 0.6rem; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.4; opacity: 0.85; }

.about-text { padding-left: 8px; }
.about-para { color: var(--text-mid); margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.about-pillars { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.pillar {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px; background: var(--cream-deep);
  border-radius: var(--radius-sm); border-left: 3px solid var(--gold);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s;
}
.pillar:hover { transform: translateX(8px) scale(1.01); box-shadow: var(--shadow); }
.pillar-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.pillar strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 2px; }
.pillar p { font-size: 0.84rem; color: var(--text-light); margin: 0; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { padding: 20px 0; background: var(--cream-deep); }
.filter-bar {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 500;
  color: var(--text-mid); background: var(--cream); border: 1.5px solid var(--beige);
  position: relative; overflow: hidden;
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
}
.filter-btn:hover {
  border-color: var(--gold); color: var(--navy);
  transform: translateY(-2px);
}
.filter-btn.active {
  background: var(--navy); color: var(--gold-light);
  border-color: var(--navy); box-shadow: 0 4px 16px rgba(26,34,64,0.25);
}
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px; transition: opacity 0.35s, transform 0.35s;
}

/* ── 3D flip-in from bottom ── */
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  opacity: 0;
  transform: perspective(600px) rotateX(25deg) translateY(40px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.4s;
}
.product-card.visible {
  opacity: 1; transform: perspective(600px) rotateX(0deg) translateY(0);
}
.product-card:hover { box-shadow: var(--shadow-hover); }
.card-flip-in { } /* alias — same as product-card */

.pc-img-wrap {
  overflow: hidden; height: 200px; background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.pc-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  /* Ken Burns: slow zoom on hover */
  transition: transform 6s ease;
}
.product-card:hover .pc-img { transform: scale(1.08) translate(1%, -1%); }

/* Warm glow overlay — position driven by JS */
.pc-glow {
  position: absolute; inset: 0; pointer-events: none;
  mix-blend-mode: screen; transition: background 0.15s;
}

.pc-img-placeholder {
  color: var(--text-light); font-size: 0.8rem; text-align: center;
  padding: 12px; position: absolute;
}
.pc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pc-category {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
}
.pc-name {
  font-family: var(--font-heading); font-size: 1.1rem;
  color: var(--navy); margin-bottom: 8px; font-weight: 400;
}
.pc-desc {
  font-size: 0.84rem; color: var(--text-light); line-height: 1.6;
  margin-bottom: 14px; flex: 1;
}
.pc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.pc-tag {
  font-size: 0.67rem; padding: 3px 9px; border-radius: 50px;
  background: var(--gold-pale); color: var(--brown); font-weight: 500;
  border: 1px solid rgba(200,160,64,0.3);
  transition: background 0.25s, transform 0.25s;
}
.pc-tag:hover { background: var(--gold); color: var(--navy); transform: scale(1.05); }

/* ============================================================
   GALLERY — 3D flip-tile reveal
   ============================================================ */
.gallery { padding: 20px 0; background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.gallery-item {
  position: relative; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer; aspect-ratio: 1;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;

  /* 3D flip-in from front-face rotation */
  opacity: 0;
  transform: perspective(900px) rotateY(60deg) scale(0.85);
  transition:
    opacity 0.6s ease calc(var(--gi,0) * 80ms),
    transform 0.7s cubic-bezier(0.22,1,0.36,1) calc(var(--gi,0) * 80ms);
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 2/1; }

.gallery-item.flipped-in {
  opacity: 1; transform: perspective(900px) rotateY(0deg) scale(1);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,34,64,0.7), transparent);
  opacity: 0; transition: opacity 0.35s;
  display: flex; align-items: flex-end; padding: 14px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-caption {
  font-family: var(--font-display); font-size: 0.95rem;
  color: var(--cream); font-style: italic;
}
.gallery-zoom {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px; background: rgba(255,255,255,0.92);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; opacity: 0; transform: scale(0.7) rotate(-20deg);
  transition: opacity 0.3s, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1) rotate(0deg); }
.gallery-placeholder {
  color: var(--text-light); font-size: 0.75rem; text-align: center;
  padding: 8px; opacity: 0.5;
}

/* ── Lightbox ── */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(8,12,28,0.96); z-index: 2000;
  display: none; cursor: pointer;
}
.lightbox-overlay.open { display: block; animation: fadeIn 0.3s ease; }
.lightbox {
  position: fixed; inset: 0; z-index: 2001;
  display: none; align-items: center; justify-content: center;
  padding: 24px; pointer-events: none;
}
.lightbox.open { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lb-img-wrap {
  pointer-events: all; max-width: 900px; width: 100%;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.lb-img-wrap img { width: 100%; max-height: 80vh; object-fit: contain; transition: opacity 0.15s; }
.lb-close {
  position: fixed; top: 18px; right: 24px; font-size: 1.4rem;
  color: rgba(255,255,255,0.7); cursor: pointer; pointer-events: all;
  background: rgba(255,255,255,0.1); width: 42px; height: 42px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.3s;
}
.lb-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  font-size: 2rem; color: rgba(255,255,255,0.6); cursor: pointer; pointer-events: all;
  background: rgba(255,255,255,0.1); width: 46px; height: 46px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
.lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,0.2); color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.lb-caption {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-family: var(--font-display);
  font-style: italic; font-size: 0.95rem; pointer-events: none;
}

/* ============================================================
   COMING SOON
   ============================================================ */
.coming-soon {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f1628 0%, #1a2240 50%, #2e3d6e 100%);
  position: relative; overflow: hidden;
}
.coming-soon::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--ring-red),var(--ring-yellow),var(--ring-green),var(--ring-blue));
}
.cs-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 60px; position: relative; z-index: 2;
}
.cs-content { max-width: 560px; }
.cs-tag {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 16px; display: inline-block;
}
.cs-content h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 20px;
}
.cs-content h2 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.cs-content p { color: rgba(253,248,240,0.65); margin-bottom: 36px; line-height: 1.8; }
.cs-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.cs-decorations { position: relative; width: 280px; height: 280px; flex-shrink: 0; }
.cs-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(253,248,240,0.1);
  animation: spin 30s linear infinite;
}
.cs-ring-1 { inset: 0; }
.cs-ring-2 { inset: 20px; animation-direction: reverse; animation-duration: 20s; }
.cs-ring-3 { inset: 40px; animation-duration: 40s; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cs-float {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 5rem; animation: float1 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 20px 0; background: var(--cream-deep); }
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; align-items: start; }
.form-info-banner {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--gold-pale); border: 1px solid rgba(200,160,64,0.3);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 22px;
  font-size: 0.88rem; color: var(--brown); line-height: 1.6;
}
.form-info-banner span { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow);
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; gap: 7px; }
.form-group label {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--text-mid); text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--beige); border-radius: var(--radius-sm);
  padding: 11px 15px; font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text-dark); background: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  outline: none; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,160,64,0.12);
  background: var(--white); transform: scale(1.005);
}
.form-note { margin-top: 10px; font-size: 0.84rem; text-align: center; min-height: 20px; }

.contact-info { display: flex; flex-direction: column; gap: 24px; padding-top: 4px; }
.ci-block h3 {
  font-family: var(--font-heading); font-size: 1.35rem;
  color: var(--navy); margin-bottom: 8px; font-weight: 400;
}
.ci-note { font-size: 0.93rem; color: var(--text-mid); line-height: 1.7; }
.ci-note small { color: var(--text-light); font-size: 0.8rem; }
.ci-actions { display: flex; flex-direction: column; gap: 10px; }
.ci-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.ci-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.ci-wa { background: #25d366; color: #fff; }
.ci-wa:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.ci-email { background: var(--cream); color: var(--navy); border: 1.5px solid var(--beige); }
.ci-email:hover { border-color: var(--gold); transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow); }
.ci-social p {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light); margin-bottom: 10px;
}
.social-row { display: flex; gap: 10px; }
.social-btn {
  display: flex; align-items: center; gap: 6px; padding: 9px 9px;
  border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 500;
  border: 1.5px solid var(--beige); color: var(--text-dark); background: var(--cream);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, color 0.25s, border-color 0.25s;
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: var(--shadow); }
.instagram:hover { color: #e1306c; border-color: #e1306c; }
.facebook:hover  { color: #1877f2; border-color: #1877f2; }
.youtube:hover { color: #ff0000; border-color: #ff0000; }
.justdial:hover      { color: #F26600; border-color: #F26600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy); padding: 60px 0 0;
  border-top: 4px solid transparent;
  border-image: linear-gradient(to right,
    var(--ring-red),var(--ring-yellow),var(--ring-green),var(--ring-blue)) 1;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; padding-bottom: 40px;
  border-bottom: 1px solid rgba(200,160,64,0.1);
}
.footer .logo-text { color: var(--cream); }
.footer .logo-text em { color: var(--gold-light); }
.footer-brand p { font-size: 0.8rem; color: rgba(253,248,240,0.35); margin-top: 4px; margin-left: 42px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 0.84rem; color: rgba(253,248,240,0.45); transition: color 0.25s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-tags span {
  font-size: 0.68rem; padding: 4px 11px; border-radius: 50px;
  background: rgba(200,160,64,0.1); color: var(--gold-pale);
  letter-spacing: 0.04em; border: 1px solid rgba(200,160,64,0.15);
  transition: background 0.3s, transform 0.3s;
}
.footer-tags span:hover { background: rgba(200,160,64,0.2); transform: translateY(-2px); }
.footer-bottom { padding: 18px 0; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(253,248,240,0.25); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 900; box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.float-wa svg { width: 28px; height: 28px; fill: #fff; }
.float-wa:hover { transform: scale(1.15) rotate(-8deg); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.float-wa-pulse {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: #25d366; animation: pulse 2.5s ease-out infinite; z-index: -1;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(2.2); opacity: 0; } }

/* ============================================================
   SCROLL REVEAL — generic classes
   ============================================================ */
.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-fade  { transform: none; }
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.revealed.reveal-fade,
.revealed.reveal-up,
.revealed.reveal-left,
.revealed.reveal-right { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links, .nav-whatsapp { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: 2; }
  .about-text   { order: 1; }
  .about-img-wrap { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .cs-decorations { display: none; }
  .cs-inner { justify-content: center; text-align: center; }
  .cs-ctas  { justify-content: center; }
}
@media (max-width: 640px) {
  body { cursor: auto; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .usp-inner { flex-wrap: wrap; }
  .usp-divider { display: none; }
  .usp-badge { width: 50%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; aspect-ratio: 1; }
  .contact-form-wrap { padding: 20px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .product-grid { grid-template-columns: 1fr; }
  .social-row { flex-wrap: wrap; }
  /* Restore cursor on touch */
  a, button { cursor: auto; }
}
@media (hover: none) {
  /* Disable hover-only effects on touch */
  body, a, button { cursor: auto; }
  .cursor-spark { display: none; }
}

/* ============================================================
   FULL MENU SECTION
   ============================================================ */
.full-menu {
  padding: 20px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
/* Subtle grain texture overlay */
.full-menu::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(200,160,64,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(200,160,64,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.full-menu .section-title { color: var(--cream); }
.full-menu .section-title em { color: var(--gold-light); }
.full-menu .section-eyebrow { color: var(--gold); }
.full-menu .section-sub { color: rgba(253,248,240,0.6); }

/* ── Menu grid: 4 cols → 2 → 1 ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* ── Individual menu card ── */
.menu-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,160,64,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.4s,
    border-color 0.3s,
    background 0.3s;
  /* staggered reveal delay driven by --mc custom prop */
  opacity: 0;
  transform: translateY(32px);
}
.menu-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease calc(var(--mc, 0) * 80ms),
    transform 0.7s cubic-bezier(0.22,1,0.36,1) calc(var(--mc, 0) * 80ms),
    box-shadow 0.4s,
    border-color 0.3s,
    background 0.3s;
}
.menu-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,160,64,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}

/* ── Card header with colored left border ── */
.menu-card-header {
  padding: 18px 18px 14px;
  border-left: 4px solid var(--mcolor, var(--gold));
  background: linear-gradient(135deg,
    rgba(var(--mcolor, 200,160,64), 0.12) 0%,
    transparent 100%);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.menu-card-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.menu-card-header h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 3px;
}
.menu-card-sub {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}
.premium-tag {
  display: inline-block;
  font-size: 0.6rem;
  padding: 2px 7px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.06em;
  vertical-align: middle;
  margin-left: 4px;
}

/* ── Menu items list ── */
.menu-items {
  padding: 14px 18px 18px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-items li {
  font-size: 0.84rem;
  color: rgba(253,248,240,0.78);
  line-height: 1.45;
  padding-left: 14px;
  position: relative;
  transition: color 0.2s, transform 0.25s;
}
/* Heart bullet — matching brand */
.menu-items li::before {
  content: '♥';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 3px;
  opacity: 0.7;
}
.menu-items li:hover {
  color: var(--gold-pale);
  transform: translateX(4px);
}
.menu-items li small {
  font-size: 0.72rem;
  opacity: 0.6;
}
.mi-star {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ── Item badges ── */
.mi-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 50px;
  vertical-align: middle;
  margin-left: 4px;
  text-transform: uppercase;
}
.mi-badge.new       { background: #1a82d4; color: #fff; }
.mi-badge.must      { background: linear-gradient(90deg,#e63535,#ff6b35); color: #fff; }
.mi-badge.trending  { background: linear-gradient(90deg,#f5c518,#e8a020); color: var(--navy); }
.mi-badge.healthy   { background: linear-gradient(90deg,#22b14c,#4acf70); color: #fff; }

/* ── Order details strip ── */
.menu-order-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(200,160,64,0.08);
  border: 1px solid rgba(200,160,64,0.2);
  border-radius: var(--radius);
  overflow: hidden;
}
.mos-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid rgba(200,160,64,0.12);
  transition: background 0.3s;
}
.mos-item:hover { background: rgba(200,160,64,0.06); }
.mos-item:last-child { border-right: none; }
.mos-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}
.mos-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--gold-pale);
  font-weight: 600;
  margin-bottom: 2px;
}
.mos-item p {
  font-size: 0.72rem;
  color: rgba(253,248,240,0.45);
  margin: 0;
}
.mos-cta {
  justify-content: center;
  background: rgba(200,160,64,0.08);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-order-strip { grid-template-columns: repeat(2, 1fr); }
  .mos-item:nth-child(2) { border-right: none; }
  .mos-item:nth-child(4) { border-right: none; }
}
@media (max-width: 640px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-order-strip { grid-template-columns: 1fr; }
  .mos-item { border-right: none; border-bottom: 1px solid rgba(200,160,64,0.12); }
  .mos-item:last-child { border-bottom: none; }
}
