/* ============================================================
   SAFFRON GRILL — Authentic Indian Cuisine
   Design system
   ------------------------------------------------------------
   Type   : Cinzel (display caps, echoes logo)
            Cormorant Garamond (editorial serif / italic)
            Jost (UI + body sans)
   Color  : aubergine · crimson · saffron gold · cream · espresso
   ============================================================ */

:root {
  /* brand */
  --aubergine:   #4a1635;
  --aubergine-2: #6b2150;
  --plum:        #8a2c6b;
  --crimson:     #b01e36;
  --crimson-dk:  #8a1429;
  --gold:        #c8943f;
  --gold-lt:     #e3bd76;
  --gold-dp:     #a87528;

  /* neutrals (warm) */
  --espresso:    #1f0f08;
  --espresso-2:  #2c170d;
  --cocoa:       #3a2114;
  --cream:       #f7efe1;
  --cream-2:     #efe1c9;
  --paper:       #fbf6ec;
  --ink:         #2a1a12;
  --ink-soft:    #6a5642;

  /* utility */
  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-cinematic: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --shadow-soft: 0 22px 60px -28px rgba(31,15,8,.55);
  --shadow-card: 0 30px 80px -40px rgba(31,15,8,.7);

  --ff-display: "Cinzel", Georgia, serif;
  --ff-serif:   "Cormorant Garamond", Georgia, serif;
  --ff-sans:    "Jost", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--espresso);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(72px, 11vw, 150px); }

/* ---------- type scale ---------- */
.eyebrow {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-dp);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow.on-dark { color: var(--gold-lt); }
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: currentColor;
  opacity: .6;
}
.eyebrow.center::after {
  content: "";
  width: 30px; height: 1px;
  background: currentColor;
  opacity: .6;
}

h1, h2, h3 { font-family: var(--ff-display); font-weight: 600; line-height: 1.05; letter-spacing: .01em; }
.h-display { font-size: clamp(40px, 7vw, 96px); }
.h-section { font-size: clamp(32px, 5vw, 60px); }
.h-sub     { font-size: clamp(22px, 3vw, 34px); }

.lede {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink);
}
.lede.on-dark { color: #f2e6d4; }
.body-text { font-size: clamp(16px, 1.2vw, 18px); color: var(--ink-soft); max-width: 85ch; }
.body-text.on-dark { color: #d9c7b2; }

.gold-text {
  background: linear-gradient(100deg, var(--gold-dp) 0%, var(--gold-lt) 38%, #fff4dc 50%, var(--gold-lt) 62%, var(--gold-dp) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-sans); font-weight: 500;
  font-size: 14px; letter-spacing: .16em; text-transform: uppercase;
  padding: 17px 34px; border: 1px solid transparent; border-radius: 2px;
  transition: all 0.4s var(--ease-soft);
  position: relative; white-space: nowrap;
}
.btn:hover { 
  transform: scale(1.02); 
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.btn-gold {
  background: linear-gradient(145deg, var(--gold-lt), var(--gold) 55%, var(--gold-dp));
  color: #3a2208;
  box-shadow: 0 16px 40px -18px rgba(200,148,63,.85);
}
.btn-gold:hover { box-shadow: 0 22px 50px -16px rgba(200,148,63,.95); }
.btn-ghost {
  background: transparent; border-color: rgba(227,189,118,.55); color: var(--gold-lt);
}
.btn-ghost:hover { border-color: var(--gold-lt); background: rgba(227,189,118,.08); }
.btn-ghost.on-light { color: var(--crimson); border-color: rgba(176,30,54,.4); }
.btn-ghost.on-light:hover { background: rgba(176,30,54,.06); border-color: var(--crimson); }
.btn-crimson {
  background: linear-gradient(145deg, var(--crimson), var(--crimson-dk));
  color: #fff;
  box-shadow: 0 16px 40px -18px rgba(176,30,54,.7);
}

/* ---------- ornamental divider ---------- */
.ornament {
  display: block; margin: 26px auto;
  width: min(360px, 70%);
  filter: drop-shadow(0 6px 14px rgba(200,148,63,.25));
}
.ornament.sm { width: 200px; margin: 18px auto; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s, border-color .5s, transform .5s var(--ease);
  border-bottom: 1px solid transparent;
  animation: headerSlideDown 1.0s var(--ease-cinematic) 0.15s both;
}
.nav.nav-hidden {
  transform: translateY(-100%) !important;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.nav.scrolled {
  background: rgba(26,12,6,.86);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  padding-block: 12px;
  border-bottom: 1px solid rgba(200,148,63,.18);
  box-shadow: 0 18px 50px -30px rgba(0,0,0,.9);
}
.nav-brand { display: flex; align-items: center; gap: 16px; }
.nav-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  transition: width .4s var(--ease), height .4s var(--ease);
}
.nav.scrolled .nav-brand img {
  width: 44px;
  height: 44px;
}
.nav-brand .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand .wordmark b {
  font-family: var(--ff-display); font-weight: 600; font-size: 22px;
  letter-spacing: .12em; color: var(--cream); white-space: nowrap;
  transition: font-size .4s var(--ease);
}
.nav.scrolled .nav-brand .wordmark b {
  font-size: 18px;
}
.nav-brand .wordmark span {
  font-size: 9.5px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-lt); margin-top: 4px;
  transition: font-size .4s var(--ease);
}
.nav.scrolled .nav-brand .wordmark span {
  font-size: 8px;
}
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); }
.nav-links a {
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  color: #e9dcc8; position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-lt); transition: width .4s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; padding: 12px 24px; font-size: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--gold-lt); transition: .35s var(--ease); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: linear-gradient(160deg, var(--espresso), var(--aubergine));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px; opacity: 0; pointer-events: none; transform: translateY(-12px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a {
  font-family: var(--ff-display); font-size: 26px; color: var(--cream); letter-spacing: .08em;
}
.mobile-menu a:hover { color: var(--gold-lt); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; 
  overflow: hidden; 
  min-height: 100vh; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  padding-top: 120px; 
  padding-bottom: 140px; 
  box-sizing: border-box;
  text-align: center;
  background: var(--espresso);
}

.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(14, 9, 6, 0.55);
  mix-blend-mode: multiply;
  z-index: 3;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, rgba(14, 9, 6, 0.85) 0%, rgba(14, 9, 6, 0.35) 50%, var(--espresso) 100%),
    linear-gradient(to top, var(--espresso) 0%, transparent 40%);
  z-index: 3;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-bg-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-bg-video.playing {
  opacity: 1;
}

.hero-mandala {
  position: absolute; top: 40%; left: 50%; 
  width: min(132vh, 1100px); aspect-ratio: 1;
  transform: translate(-50%, -50%) translate3d(0, 0, 0);
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
  -webkit-mask: radial-gradient(circle, #000 58%, transparent 74%);
          mask: radial-gradient(circle, #000 58%, transparent 74%);
  animation: fadeMandala 2s var(--ease-cinematic) 0.4s both, spin 160s linear infinite;
  z-index: 10;
  will-change: transform, opacity;
}

@keyframes fadeMandala {
  0% { opacity: 0; transform: translate(-50%,-45%) translate3d(0, 0, 0); }
  100% { opacity: 0.22; transform: translate(-50%,-50%) translate3d(0, 0, 0); }
}

@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg) translate3d(0, 0, 0); } }

.hero-art-left, .hero-art-right {
  position: absolute; top: 50%;
  transform: translateY(-50%) translate3d(0, 0, 0);
  height: 95%; max-height: 900px;
  width: auto;
  opacity: 0.22;
  pointer-events: none;
  filter: sepia(1) hue-rotate(10deg) saturate(3) brightness(0.8) drop-shadow(0 0 15px rgba(212,175,55,0.4));
  z-index: 10;
  will-change: transform, opacity;
}

.hero-art-left {
  animation: fadeArt 2s var(--ease-cinematic) 0.8s both, floatArt 10s ease-in-out infinite alternate;
}

.hero-art-right {
  animation: fadeArt 2s var(--ease-cinematic) 1.0s both, floatArt 11s ease-in-out infinite alternate-reverse;
}

@keyframes fadeArt {
  0% { opacity: 0; transform: translateY(-48%) translate3d(0, 0, 0); filter: blur(10px) sepia(1) hue-rotate(10deg) saturate(3) brightness(0.8); }
  100% { opacity: 0.22; transform: translateY(-50%) translate3d(0, 0, 0); filter: sepia(1) hue-rotate(10deg) saturate(3) brightness(0.8) drop-shadow(0 0 15px rgba(212,175,55,0.4)); }
}

@keyframes floatArt {
  0% { transform: translateY(-50%) translate3d(0, 0, 0); }
  100% { transform: translateY(-52%) translate3d(0, 0, 0); }
}

.hero-art-left { left: 0; }
.hero-art-right { right: 0; }

.hero-vignette {
  position: absolute; inset: 0;
  box-shadow: inset 0 0 200px 60px rgba(15,7,3,.85);
  pointer-events: none;
  z-index: 10;
  transform: translate3d(0, 0, 0);
  will-change: opacity;
}

.hero-inner {
  position: relative;
  z-index: 20;
}

.hero-tag {
  font-family: var(--ff-sans); 
  font-weight: 500;
  letter-spacing: .45em; 
  text-transform: uppercase;
  font-size: clamp(11px, 1.5vw, 14px); 
  color: var(--gold-lt);
  margin-bottom: 12px;
  opacity: 0; 
  transform: translateY(15px);
  animation: fadeUp 1.2s var(--ease-cinematic) 0.4s forwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.85);
}

.hero h1 {
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero h1 .l1 {
  display: block;
  font-size: clamp(42px, 7vw, 92px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.4s var(--ease-cinematic) 0.6s forwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.85);
}

.hero h1 .l2 {
  display: block;
  font-size: clamp(42px, 8vw, 110px);
  color: var(--gold-lt);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.85);
}

.hero-ornament {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 1.2s var(--ease-cinematic) 1.3s forwards;
}

/* Glassmorphic Trust Row */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 40px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.4s var(--ease-cinematic) 1.6s forwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 239, 225, 0.9);
  transition: color 0.3s var(--ease);
}

.trust-item:hover {
  color: var(--gold-lt);
}

.trust-item .icon {
  width: 14px;
  height: 14px;
  color: var(--gold-lt);
  transition: transform 0.3s var(--ease);
}

.trust-item:hover .icon {
  transform: scale(1.18);
}

.trust-item .star-icon {
  color: #eab308;
}

.trust-separator {
  width: 4px;
  height: 4px;
  background: rgba(227, 189, 118, 0.4);
  border-radius: 50%;
}

/* Button Upgrades */
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-gold-slide, .btn-ghost-slide {
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 11.5px;
  padding: 18px 38px;
  border-radius: 1px;
  opacity: 0;
  transform: translateY(20px);
}

.btn-gold-slide {
  background: var(--gold-lt);
  color: #1a0a03;
  box-shadow: 0 16px 36px -18px rgba(227, 189, 118, 0.8);
  animation: fadeUp 1.2s var(--ease-cinematic) 1.8s forwards;
}

.btn-ghost-slide {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--cream);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeUp 1.2s var(--ease-cinematic) 2.0s forwards;
  transition: border-color 0.4s var(--ease);
}

.btn-gold-slide::before, .btn-ghost-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn-gold-slide::before {
  background: #ffffff;
}

.btn-ghost-slide::before {
  background: var(--gold-lt);
}

.btn-gold-slide:hover::before, .btn-ghost-slide:hover::before {
  transform: scaleX(1);
}

.btn-gold-slide:hover {
  color: #1a0a03;
  box-shadow: 0 20px 40px -15px rgba(255, 255, 255, 0.25);
  transform: scale(1.02);
}

.btn-ghost-slide:hover {
  color: #1a0a03;
  border-color: var(--gold-lt);
  transform: scale(1.02);
}

.btn-gold-slide span, .btn-ghost-slide span {
  position: relative;
  z-index: 2;
}

/* Premium Dashboard Feature Strip */
.hero-dashboard {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(31, 15, 8, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(227, 189, 118, 0.15);
  padding-block: 22px;
  width: 100%;
}

.dashboard-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

.dashboard-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding-inline: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s var(--ease);
}

.dashboard-box:last-child {
  border-right: none;
}

.dashboard-box:hover {
  transform: translateY(-2px);
}

.db-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(227, 189, 118, 0.08);
  color: var(--gold-lt);
  transition: background 0.3s, color 0.3s;
}

.dashboard-box:hover .db-icon-wrap {
  background: rgba(227, 189, 118, 0.18);
  color: #fff;
}

.db-icon {
  width: 18px;
  height: 18px;
}

.db-icon.star-fill {
  fill: currentColor;
}

.db-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(227, 189, 118, 0.75);
  margin-bottom: 2px;
}

.db-val {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

@media (max-width: 991px) {
  .dashboard-inner {
    flex-wrap: wrap;
    gap: 24px 0px;
  }
  .dashboard-box {
    flex: 0 0 50%;
    border-right: none;
    padding-inline: 16px;
    padding-block: 10px;
  }
  .dashboard-box:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero {
    padding-bottom: 220px;
  }
}

@media (max-width: 600px) {
  .dashboard-inner {
    flex-direction: column;
    gap: 16px;
  }
  .dashboard-box {
    flex: 0 0 100%;
    border-right: none !important;
    padding-inline: 20px;
  }
  .hero {
    padding-bottom: 320px;
  }
}

.scroll-cue {
  position: absolute; 
  bottom: 24px; 
  left: 50%; 
  transform: translateX(-50%);
  z-index: 4; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 8px;
  color: var(--gold-lt); 
  font-size: 10px; 
  letter-spacing: .3em; 
  text-transform: uppercase;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s var(--ease);
}

.scroll-cue.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  pointer-events: none;
}
.scroll-cue .line { 
  width: 1px; 
  height: 42px; 
  background: linear-gradient(var(--gold-lt), transparent); 
  position: relative; 
  overflow: hidden; 
}
.scroll-cue .line::after { 
  content:""; 
  position:absolute; 
  top:-50%; 
  left:0; 
  width:100%; 
  height:50%; 
  background: var(--cream); 
  animation: drop 2.2s var(--ease) infinite; 
}
@keyframes drop { to { top: 120%; } }

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   SECTION SURFACES
   ========================================================= */
.surface-cream { background: var(--cream); color: var(--ink); }
.surface-paper {
  background: var(--paper);
  background-image: url("assets/tex-cream.png");
  background-size: 420px; background-blend-mode: multiply;
  color: var(--ink);
}
.surface-dark {
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(31,15,8,.82), rgba(31,15,8,.92)),
    url("assets/tex-espresso.webp");
  background-size: cover; background-position: center;
}
.surface-leather {
  color: var(--cream);
  background: linear-gradient(150deg, rgba(58,33,20,.7), rgba(31,15,8,.85)), url("assets/tex-leather.png");
  background-size: cover; background-position: center;
}

/* section header block */
.sec-head { max-width: 760px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .h-section { margin-top: 18px; }
.sec-head .lede { margin-top: 18px; }

/* =========================================================
   STORY
   ========================================================= */
.story-grid {
  display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(36px, 4vw, 60px);
  align-items: center;
  max-width: 1400px; /* Expand this section to fit under 100vh */
}
.story-figure { position: relative; }
.story-figure .frame-main { aspect-ratio: 4/5; }
.story-figure .frame-float {
  position: absolute; right: -34px; bottom: -38px; width: 46%; aspect-ratio: 1;
  box-shadow: var(--shadow-card); border: 6px solid var(--cream);
}
.story-stats { 
  display: flex; 
  align-items: center;
  justify-content: space-between;
  gap: 20px; 
  margin-top: 46px; 
  border-top: 1px solid rgba(42,26,18,0.1); 
  border-bottom: 1px solid rgba(42,26,18,0.1); 
  padding: 32px 0; 
}
.story-stats .divider {
  width: 1px;
  height: 40px;
  background: rgba(42,26,18,0.1);
}
.stat { text-align: center; flex: 1; }
.stat .num { font-family: var(--ff-display); font-size: clamp(32px, 3.5vw, 46px); color: var(--crimson); line-height: 1; }
.stat .lbl { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 12px; line-height: 1.4; }

/* image slot framing */
image-slot { width: 100%; height: auto; box-shadow: var(--shadow-soft); }
.arch { aspect-ratio: 4/5; height: auto; border-radius: 50% 50% 6px 6px / 30% 30% 6px 6px; overflow: hidden; }
.frame-gold { box-shadow: var(--shadow-card); outline: 1px solid rgba(200,148,63,.4); outline-offset: 8px; }

/* =========================================================
   VIDEO EMBEDS — buffet strip & catering
   ========================================================= */

/* Two portrait video cards below buffet grid */
.buffet-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 20px);
  margin-top: 40px;
  max-width: 560px;
  margin-inline: auto;
}
.bv-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(200,148,63,.22);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.65);
}
.bv-card video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.bv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,5,2,.55) 100%);
  pointer-events: none;
}
@media (max-width: 520px) {
  .buffet-videos { max-width: none; gap: 10px; }
  .bv-card { aspect-ratio: 4/3; }
}

/* Catering arch video */
.cater-vid-wrap { position: relative; }
.cater-vid-wrap video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* =========================================================
   BUFFET
   ========================================================= */
.buffet-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.buffet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 56px; }
.buffet-card {
  position: relative; overflow: hidden; border-radius: 4px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(227,189,118,.18);
  display: flex; flex-direction: column;
}
.buffet-card .media { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.buffet-card .media image-slot { height: 100%; box-shadow: none; }
.buffet-card .media .buffet-vid {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  position: absolute; inset: 0;
}
.buffet-card .badge {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  background: linear-gradient(145deg, var(--gold-lt), var(--gold-dp));
  color: #3a2208; font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 2px;
}
.buffet-card .body { padding: 30px 32px 34px; }
.buffet-card h3 { color: var(--cream); font-size: 30px; }
.buffet-card .when { color: var(--gold-lt); font-size: 15px; letter-spacing: .12em; text-transform: uppercase; margin-top: 10px; }
.buffet-card p { color: #cbb79f; margin-top: 16px; font-size: 16.5px; line-height: 1.65; max-width: 52ch; }
.buffet-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.buffet-tags span {
  font-size: 14px; letter-spacing: .06em; color: #e6d6bf;
  border: 1px solid rgba(227,189,118,.28); border-radius: 100px; padding: 6px 14px;
}

/* =========================================================
   SIGNATURES (tabs)
   ========================================================= */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 40px; }
.tab {
  font-family: var(--ff-sans); font-size: 15px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  padding: 13px 28px; border-radius: 100px; border: 1px solid rgba(176,30,54,.25);
  background: transparent; color: var(--ink); transition: .3s var(--ease);
}
.tab:hover { border-color: var(--crimson); }
.tab.active { background: var(--crimson); color: #fff; border-color: var(--crimson); box-shadow: 0 14px 30px -16px rgba(176,30,54,.6); }

.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; transition: opacity .4s var(--ease); }
.dish-grid.swapping { opacity: 0; }
.dish {
  background: var(--paper); border-radius: 4px; overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(58,33,20,.08);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex; flex-direction: column;
}
.dish:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.dish .media { aspect-ratio: 4/3; overflow: hidden; }
.dish .media image-slot { height: 100%; box-shadow: none; border-radius: 0; }
.dish .body { padding: 22px 24px 26px; }
.dish .row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.dish h3 { font-family: var(--ff-serif); font-weight: 600; font-size: 23px; color: var(--ink); line-height: 1.1; }
.dish .tag {
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
  padding: 4px 10px; border-radius: 3px; white-space: nowrap;
}
.tag-veg { color: #2f7d3a; border: 1px solid #2f7d3a; }
.tag-nonveg { color: var(--crimson); border: 1px solid var(--crimson); }
.tag-spice { color: var(--gold-dp); border: 1px solid var(--gold-dp); }
.dish p { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); margin-top: 10px; }

/* =========================================================
   MENU
   ========================================================= */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); margin-top: 56px; }
.menu-col h3 {
  font-family: var(--ff-serif); font-size: 26px; color: var(--gold-lt); font-weight: 600;
  display: flex; align-items: center; gap: 14px; margin-bottom: 8px;
}
.menu-col h3::after { content:""; flex:1; height:1px; background: rgba(227,189,118,.25); }
.menu-item { padding: 16px 0; border-bottom: 1px dashed rgba(227,189,118,.18); }
.menu-item .top { display: flex; align-items: baseline; gap: 10px; }
.menu-item .name { font-size: 17px; color: var(--cream); font-weight: 500; }
.menu-item .leader { flex: 1; border-bottom: 1px dotted rgba(227,189,118,.4); transform: translateY(-4px); }
.menu-item .price { color: var(--gold-lt); font-family: var(--ff-serif); font-size: 19px; font-weight: 600; }
.menu-item .desc { font-size: 15px; color: #b6a288; margin-top: 6px; }
.menu-note { text-align: center; margin-top: 48px; font-family: var(--ff-serif); font-style: italic; font-size: 19px; color: #cbb79f; }

/* =========================================================
   CATERING
   ========================================================= */
.cater-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.cater-list { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.cater-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: var(--ink-soft); }
.cater-list .mk { color: var(--gold-dp); font-family: var(--ff-serif); font-size: 22px; line-height: 1; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; margin-top: 52px;
}
.gallery-grid > * { overflow: hidden; border-radius: 3px; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.gallery-grid image-slot { height: 100%; box-shadow: none; border-radius: 3px; }
.gallery-grid img { height: 100%; width: 100%; object-fit: cover; border-radius: 3px; }

/* =========================================================
   VISIT
   ========================================================= */
/* Visit — three-card + full-width map layout */
.visit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 20px);
  margin-top: 56px;
}
.visit-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,148,63,.2);
  border-radius: 8px;
  padding: clamp(24px,3vw,36px) clamp(20px,2.5vw,30px);
  position: relative;
  display: flex;
  flex-direction: column;
}
.visit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,148,63,.65) 30%, #e3bd76 50%, rgba(200,148,63,.65) 70%, transparent);
}
.vc-label {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 18px;
}
.vc-address {
  font-family: var(--ff-serif);
  font-size: clamp(18px,1.8vw,22px); color: var(--cream); line-height: 1.55;
  display: block; margin-bottom: 20px;
}
.vc-address:hover { color: var(--gold-lt); }
.vc-btn { margin-top: auto; align-self: flex-start; }
.vc-contacts { display: flex; flex-direction: column; gap: 11px; }
.vc-contacts a {
  font-family: var(--ff-serif);
  font-size: clamp(16px,1.6vw,20px); color: var(--cream); line-height: 1.4;
}
.vc-contacts a:hover { color: var(--gold-lt); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 13px 0; border-bottom: 1px solid rgba(227,189,118,.14); font-size: 15px; color: #ddccb4; vertical-align: top; }
.hours-table td.day { color: var(--cream); font-weight: 500; letter-spacing: .04em; white-space: nowrap; padding-right: 16px; }
.hours-table td.time { text-align: right; color: #c9b69d; }

.visit-map {
  margin-top: 18px;
  border-radius: 8px; overflow: hidden;
  height: clamp(300px, 38vw, 440px);
  border: 1px solid rgba(200,148,63,.18);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.5);
}
.visit-map iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(.3) sepia(.25) saturate(1.1);
}

#reserve, #inquiry-section, #contact-form-section {
  overflow: hidden;
}

/* =========================================================
   RESERVE
   ========================================================= */
.reserve-card {
  max-width: 920px; margin-inline: auto; margin-top: 48px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(227,189,118,.22);
  border-radius: 6px; padding: clamp(30px, 5vw, 56px);
  backdrop-filter: blur(6px);
}
.reserve-cta-card {
  max-width: 680px;
  text-align: center;
}
.reserve-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.reserve-cta-actions .btn {
  min-width: 190px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-lt); }
.field input, .field select, .field textarea {
  font-family: var(--ff-sans); font-size: 15px; color: var(--cream);
  background: rgba(31,15,8,.5); border: 1px solid rgba(227,189,118,.25);
  border-radius: 3px; padding: 14px 15px; transition: border-color .3s, box-shadow .3s;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(220,200,170,.4); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-lt); box-shadow: 0 0 0 3px rgba(227,189,118,.12); }
.field.error input, .field.error select, .field.error textarea { border-color: #e0623f; }
.field .err { font-size: 15px; color: #f0a085; letter-spacing: .01em; min-height: 18px; }
.reserve-actions { margin-top: 28px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.reserve-actions .or { color: #cbb79f; font-size: 15px; }
.reserve-actions a.tel { color: var(--gold-lt); font-family: var(--ff-serif); font-size: 22px; font-weight: 600; }
.reserve-success {
  text-align: center; padding: 20px 0;
}
.reserve-success .check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  display: grid; place-items: center; background: linear-gradient(145deg, var(--gold-lt), var(--gold-dp)); color: #3a2208;
  font-size: 30px;
}
.hidden { display: none !important; }

/* =========================================================
   INSTAGRAM POSTS
   ========================================================= */
.instagram-section {
  overflow: hidden;
  padding-bottom: clamp(72px, 9vw, 120px);
}
.instagram-head {
  margin-bottom: clamp(34px, 5vw, 58px);
}
.instagram-head .btn { margin-top: 26px; }
.instagram-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
}
.instagram-marquee::before,
.instagram-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(12vw, 170px);
  z-index: 2;
  pointer-events: none;
}
.instagram-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(31,15,8,.96), rgba(31,15,8,0));
}
.instagram-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(31,15,8,.96), rgba(31,15,8,0));
}
.instagram-track {
  --instagram-gap: clamp(14px, 2vw, 24px);
  --instagram-card-w: clamp(210px, 22vw, 320px);
  display: flex;
  width: max-content;
  gap: var(--instagram-gap);
  animation: instagramMarquee 48s linear infinite;
  will-change: transform;
}
.instagram-marquee:hover .instagram-track {
  animation-play-state: paused;
}
.instagram-card {
  flex: 0 0 var(--instagram-card-w);
  aspect-ratio: 1218 / 1528;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(227,189,118,.22);
  box-shadow: 0 30px 80px -42px rgba(0,0,0,.82);
}
.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-cinematic);
}
.instagram-card:hover img { transform: scale(1.025); }
@keyframes instagramMarquee {
  to {
    transform: translateX(calc(-1 * ((var(--instagram-card-w) + var(--instagram-gap)) * 11)));
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--espresso); border-top: 1px solid rgba(227,189,118,.14); padding-block: 64px 30px; color: #cbb79f; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand img { width: 200px; }
.footer-brand p { margin-top: 18px; font-size: 15.5px; line-height: 1.65; max-width: 38ch; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-social a {
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border-bottom: 1px solid rgba(227,189,118,.35);
  padding-bottom: 4px;
}
.footer-social a:hover { color: var(--cream); border-color: var(--cream); }
.footer h4 { font-family: var(--ff-sans); font-weight: 600; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a, .footer ul li { font-size: 15.5px; line-height: 1.4; }
.footer ul a:hover { color: var(--gold-lt); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(227,189,118,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 15px; letter-spacing: .04em; color: #9c886c; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
/* Base Reveal Classes for Scroll (Paragraphs, Cards) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(4px);
  transition: opacity 1.4s var(--ease-soft), transform 1.4s var(--ease-soft), filter 1.4s var(--ease-soft);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
h2.reveal {
  transition-timing-function: var(--ease-cinematic);
  transition-duration: 1.2s;
  transform: translateY(30px);
  filter: blur(8px);
}
.reveal.d1 { transition-delay: 150ms; }
.reveal.d2 { transition-delay: 300ms; }
.reveal.d3 { transition-delay: 450ms; }
.reveal.d4 { transition-delay: 600ms; }

/* Character Stagger Animations */
.char-anim {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  transition: opacity 1.2s var(--ease-cinematic), transform 1.2s var(--ease-cinematic), filter 1.2s var(--ease-cinematic);
}
.reveal.in .char-anim {
  opacity: 1; transform: translateY(0); filter: blur(0);
}
@keyframes charReveal { 100% { opacity: 1; transform: translateY(0); filter: blur(0); } }
.hero h1 .char-anim { animation: charReveal 1.2s var(--ease-cinematic) forwards; }

/* Image scaling */
image-slot img {
  transition: transform 2s var(--ease-cinematic);
}
.reveal:not(.in) image-slot img {
  transform: scale(1.05);
}
.reveal.in image-slot img {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; filter: none; }
  .char-anim { opacity: 1; transform: none; transition: none; filter: none; animation: none; }
  .hero-mandala, .scroll-cue .line::after, .chip .dot.live, .hero-art-left, .hero-art-right, .instagram-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .story-grid, .cater-grid { grid-template-columns: 1fr; }
  .visit-cards { grid-template-columns: 1fr; }
  .story-figure { max-width: 520px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav .nav-cta { display: none; }
  .buffet-grid, .dish-grid, .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-chips { display: none; }
  .visit-map { height: 300px; }
}
@media (max-width: 520px) {
  .dish-grid { grid-template-columns: 1fr; }
  .btn { padding: 15px 26px; }
  .reserve-cta-actions { align-items: stretch; flex-direction: column; }
  .reserve-cta-actions .btn { width: 100%; min-width: 0; }
  .instagram-track { --instagram-card-w: min(68vw, 260px); }
  .story-figure .frame-float { display: none; }
}

@media (max-width: 820px) {
  .hero-art-left, .hero-art-right { display: none; }
}

/* =========================================================
   PREMIUM CINEMATIC POPUP
   ========================================================= */
.sgp-noscroll { overflow: hidden; }

.sgp-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Dark / blurred background layer */
.sgp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 3, 1, 0.80);
  transition: backdrop-filter 0.75s ease, -webkit-backdrop-filter 0.75s ease;
}
.sgp-backdrop.sgp-blur {
  backdrop-filter: blur(10px) saturate(0.65);
  -webkit-backdrop-filter: blur(10px) saturate(0.65);
}

/* The glass panel itself */
.sgp-panel {
  position: relative;
  z-index: 1;
  width: min(468px, 100%);
  background: linear-gradient(
    158deg,
    rgba(74, 22, 53, 0.50) 0%,
    rgba(22, 9, 6, 0.58) 55%,
    rgba(31, 15, 8, 0.52) 100%
  );
  border: 1px solid rgba(200, 148, 63, 0.22);
  border-radius: 14px;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  /* top laser-edge highlight */
  outline: none;
}
.sgp-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200, 148, 63, 0.55) 25%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(200, 148, 63, 0.55) 75%,
    transparent 100%
  );
  z-index: 3;
}
.sgp-panel::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 10%,
    rgba(200, 148, 63, 0.4) 50%,
    transparent 90%
  );
  z-index: 3;
}
.sgp-panel.sgp-glass {
  backdrop-filter: blur(30px) saturate(1.45) brightness(1.08);
  -webkit-backdrop-filter: blur(30px) saturate(1.45) brightness(1.08);
  border-color: rgba(200, 148, 63, 0.32);
  transition: backdrop-filter 0.75s ease, -webkit-backdrop-filter 0.75s ease,
              border-color 0.5s ease;
}

/* Moving light reflection */
.sgp-shine {
  position: absolute;
  top: -55%; left: -35%;
  width: 170%; height: 160%;
  background: radial-gradient(
    ellipse at 40% 35%,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(200, 148, 63, 0.045) 30%,
    transparent 62%
  );
  pointer-events: none;
  opacity: 0.08;
  z-index: 0;
  will-change: transform, opacity;
}

/* Content area */
.sgp-inner {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 6vw, 56px) clamp(28px, 5vw, 50px) clamp(40px, 5.5vw, 54px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sgp-eyebrow {
  margin-bottom: 20px;
}
.sgp-title {
  font-size: clamp(28px, 5.5vw, 46px);
  line-height: 1.06;
  margin-bottom: 0;
}
.sgp-divider {
  margin: 14px auto 18px;
}
.sgp-divider img {
  width: 110px;
  opacity: 0.65;
  margin: 0 auto;
  display: block;
}
.sgp-body {
  font-size: clamp(16px, 1.9vw, 21px);
  margin-bottom: 6px;
}
.sgp-note {
  font-size: clamp(13px, 1.1vw, 15px);
  margin-bottom: 30px;
  opacity: 0.8;
}
.sgp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Close button */
.sgp-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  will-change: transform;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.sgp-close svg {
  display: block;
  pointer-events: none;
}
.sgp-close:hover {
  background: rgba(200, 148, 63, 0.25);
  color: #ffffff;
  border-color: rgba(200, 148, 63, 0.6);
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 520px) {
  .sgp-inner { padding: 38px 22px 44px; }
  .sgp-actions { flex-direction: column; width: 100%; }
  .sgp-actions .btn { width: 100%; justify-content: center; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sgp-backdrop, .sgp-panel, .sgp-panel.sgp-glass { transition: none; }
}

/* =========================================================
   CATERING STANDALONE PAGE STYLES
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}
.service-card {
  background: var(--paper);
  border: 1px solid rgba(200, 148, 63, 0.16);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(200, 148, 63, 0.35);
}
.service-card .media {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.service-card .media image-slot {
  width: 100%;
  height: 100%;
}
.service-card .body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--ink);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(200, 148, 63, 0.12);
  padding-top: 20px;
}
.service-card li {
  font-size: 14.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card li::before {
  content: "•";
  color: var(--gold-dp);
  font-size: 18px;
  line-height: 1;
}

/* Pricing Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
  align-items: stretch;
}
.package-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(227, 189, 118, 0.16);
  border-radius: 8px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft), background 0.4s var(--ease-soft);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 189, 118, 0.45);
  box-shadow: 0 20px 50px -20px rgba(200, 148, 63, 0.25);
  background: rgba(255, 255, 255, 0.04);
}
.package-card.featured {
  background: rgba(74, 22, 53, 0.18);
  border: 2px solid var(--gold);
  transform: scale(1.03);
  box-shadow: 0 24px 60px -25px rgba(200, 148, 63, 0.35);
}
.package-card.featured:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--gold-lt);
}
.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-dp));
  color: #3a2208;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  white-space: nowrap;
}
.package-card h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--cream);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.package-price-indicator {
  font-family: var(--ff-serif);
  font-size: 36px;
  color: var(--gold-lt);
  text-align: center;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 4px;
}
.package-subtitle {
  font-size: 13px;
  color: #d9c7b2;
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  flex-grow: 1;
  border-top: 1px solid rgba(227, 189, 118, 0.12);
  padding-top: 24px;
}
.package-features li {
  font-size: 15px;
  color: #d9c7b2;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}
.package-features li svg {
  width: 16px;
  height: 16px;
  color: var(--gold-lt);
  flex-shrink: 0;
  margin-top: 3px;
}
.package-card .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .package-card.featured {
    transform: none;
  }
  .package-card.featured:hover {
    transform: translateY(-8px);
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ADDITIONAL RESPONSIVENESS & CENTERING OVERRIDES
   ========================================================= */

/* Centering desktop header navigation links mathematically */
@media (min-width: 1025px) {
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Fix mobile hero trust pill overflowing */
@media (max-width: 768px) {
  .hero-trust-row {
    flex-wrap: wrap;
    border-radius: 12px;
    gap: 12px 20px;
    padding: 16px 20px;
    width: 92%;
  }
  .trust-separator {
    display: none;
  }
}

/* Fix dashboard positioning on mobile & remove hero excessive padding */
@media (max-width: 991px) {
  .hero-dashboard {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 48px;
    border-bottom: 1px solid rgba(227, 189, 118, 0.15);
  }
  .hero {
    padding-bottom: 60px !important;
  }
}

/* Character Stagger Animations for Subpage Heroes */
.hero.subpage h1 .char-anim {
  animation: charReveal 1.2s var(--ease-cinematic) forwards;
}

/* Mobile Hero Layout & Typography Fixes */
@media (max-width: 480px) {
  .hero h1 .l1 {
    font-size: clamp(28px, 8.5vw, 38px) !important;
  }
  .hero h1 .l2 {
    font-size: clamp(30px, 9vw, 44px) !important;
  }
  .hero-cta {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 90% !important;
    margin-inline: auto !important;
    gap: 12px !important;
  }
  .btn-gold-slide, .btn-ghost-slide {
    padding: 16px 20px !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 768px) {
  .hero.subpage {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
    min-height: auto !important;
  }
  .hero-dashboard {
    display: none !important;
  }
}

/* =========================================================
   FAQ ACCORDION STYLES (AEO / GEO / AI Readiness)
   ========================================================= */
.faq-section {
  padding-block: clamp(60px, 8vw, 100px);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(82, 59, 44, 0.15);
  padding-block: 22px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-sans);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold-dp);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, margin-top 0.3s ease;
}

.faq-item.active .faq-answer {
  opacity: 1;
  margin-top: 14px;
}

.faq-answer-inner {
  font-family: var(--ff-serif);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
  color: #554433;
}

.faq-trigger-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.4s ease;
}

.faq-trigger-icon::before,
.faq-trigger-icon::after {
  content: "";
  position: absolute;
  background-color: var(--gold-dp);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Horizontal line */
.faq-trigger-icon::before {
  width: 14px;
  height: 2px;
}

/* Vertical line */
.faq-trigger-icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-trigger-icon {
  transform: rotate(135deg);
}

