/* ══════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════ */
:root {
  --saffron:       #D4520A;
  --saffron-light: #F06A1A;
  --gold:          #B8860B;
  --gold-light:    #E5B94A;
  --gold-pale:     #F5E6C0;
  --cream:         #FBF6EC;
  --earth:         #2C1A0E;
  --earth-mid:     #5C3A1E;
  --earth-light:   #8C6040;
  --green-sacred:  #2D6A2D;
  --green-light:   #4A9B4A;
  --white:         #FFFFFF;
  --off-white:     #FAF8F4;
  --text-dark:     #1A0F06;
  --text-mid:      #4A3020;
  --text-soft:     #7A5E48;

  --font-display: 'Cormorant Garamond', serif;
  --font-devanagari: 'Tiro Devanagari Sanskrit', serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-pill:  999px;

  --shadow-soft:  0 4px 24px rgba(44,26,14,0.10);
  --shadow-mid:   0 8px 40px rgba(44,26,14,0.16);
  --shadow-heavy: 0 16px 64px rgba(44,26,14,0.24);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ══════════════════════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--earth);
  margin-bottom: 1.25rem;
}
.section-desc {
  max-width: 640px;
  color: var(--text-soft);
  font-size: 1.05rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-title { margin: 0 auto 1rem; }
.section-header .section-desc { margin: 0 auto; }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--saffron);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,82,10,0.30);
}
.btn-primary:hover {
  background: var(--saffron-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,82,10,0.40);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); }
.btn-wa {
  background: #25D366;
  color: var(--white);
  font-size: 0.82rem;
  padding: 0.65rem 1.25rem;
  box-shadow: 0 2px 12px rgba(37,211,102,0.30);
}
.btn-wa:hover { background: #1EB858; transform: translateY(-1px); }
.btn-outline-saffron {
  background: transparent;
  color: var(--saffron);
  border: 1.5px solid var(--saffron);
  font-size: 0.82rem;
  padding: 0.65rem 1.25rem;
}
.btn-outline-saffron:hover {
  background: var(--saffron);
  color: var(--white);
}
.btn-whatsapp-large {
  background: #25D366;
  color: var(--white);
  font-size: 1.05rem;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  box-shadow: 0 6px 28px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.btn-whatsapp-large:hover {
  background: #1EB858;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.45);
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(44,26,14,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.brand-symbol { font-size: 1.9rem; line-height: 1; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover, .nav-links a:hover::after { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--green-sacred);
  color: var(--white) !important;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--green-light); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  border: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,26,14,0.55) 0%,
    rgba(44,26,14,0.30) 40%,
    rgba(44,26,14,0.70) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  animation: heroFadeUp 1.2s ease both;
}
@keyframes heroFadeUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-devanagari);
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  letter-spacing: 0.02em;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

/* Hero video controls */
.hero-video-controls {
  position: absolute;
  top: 88px;
  right: 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-ctrl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.hero-ctrl-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-1px);
}
.hero-ctrl-btn svg { flex-shrink: 0; }
.hero-yt-btn {
  background: rgba(255,0,0,0.18);
  border-color: rgba(255,80,80,0.40);
}
.hero-yt-btn:hover {
  background: rgba(255,0,0,0.35);
  border-color: rgba(255,80,80,0.7);
}
@media (max-width: 500px) {
  .hero-video-controls { top: 80px; right: 1rem; gap: 0.4rem; }
  .hero-ctrl-btn { padding: 0.45rem 0.7rem; font-size: 0.72rem; }
  .hero-yt-btn span { display: none; }
}

/* ══════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════ */
.trust-bar {
  background: var(--earth);
  padding: 0;
}
.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 1.5rem 1rem;
  text-align: center;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.trust-item span:last-child {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about {
  padding: 6rem 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: visible;        /* let badge peek out */
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-heavy);
  position: relative;
}
/* actual clipping box sits inside so badge is not cut */
.about-img-frame > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center; */
   object-position: left center;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius-lg) + 6px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
.about-visual { position: relative; padding-bottom: 2.5rem; padding-right: 1.5rem; }
.about-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--earth-mid);
  box-shadow: var(--shadow-soft);
  z-index: 2;
}
.about-badge .badge-icon { font-size: 1.4rem; }
.about-text p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.about-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--earth-mid);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.contact-pill:hover {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════ */
.products {
  padding: 6rem 0;
  background: var(--off-white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184,134,11,0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-mid);
}

/* gold accent line at bottom of image */
.product-icon-wrap {
  background: var(--cream);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.product-icon-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.product-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* badge — top right over image */
.product-card-tag {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.product-body {
  padding: 1.1rem 1.25rem 0.75rem;
  flex: 1;
}

/* category eyebrow */
.product-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--earth);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.product-desc {
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.product-footer {
  padding: 0.85rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(184,134,11,0.10);
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.product-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-soft);
  font-family: var(--font-body);
}
.product-actions {
  display: flex;
  gap: 0.5rem;
}
.products-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ══════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════ */
.gallery {
  padding: 6rem 0;
  background: var(--earth);
}
.gallery .section-eyebrow { color: var(--gold-light); }
.gallery .section-title { color: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 1rem;
}
.g-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.g-item:first-child {
  grid-row: span 2;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,14,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lb-img-wrap {
  max-width: 900px;
  max-height: 75vh;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.lb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: background var(--transition);
  font-size: 1.3rem;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--saffron); }
.lb-close { top: 1.5rem; right: 1.5rem; width: 42px; height: 42px; }
.lb-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lb-caption {
  margin-top: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════
   LOCATE
══════════════════════════════════════════════ */
.locate {
  padding: 6rem 0;
  background: var(--cream);
}
.locate-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.locate-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}
.locate-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.locate-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.locate-list strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.3rem;
}
.locate-list p, .locate-list a {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.locate-list a:hover { color: var(--saffron); }
.locate-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-heavy);
  border: 3px solid var(--gold-pale);
}

/* ══════════════════════════════════════════════
   CONTACT CTA
══════════════════════════════════════════════ */
.contact-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--earth) 0%, var(--earth-mid) 60%, var(--saffron) 150%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '🐄';
  position: absolute;
  font-size: 18rem;
  opacity: 0.04;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--text-dark);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer .brand-name { font-size: 0.95rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  letter-spacing: 0.04em;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(4px);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-heavy);
  animation: modalIn 0.35s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--cream);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-mid);
  transition: background var(--transition);
  z-index: 1;
}
.modal-close:hover { background: var(--saffron); color: var(--white); }
.modal-body { padding: 2.5rem; }
.modal-icon { font-size: 3.5rem; margin-bottom: 1rem; text-align: center; }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--earth);
  margin-bottom: 0.5rem;
}
.modal-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.modal-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--saffron);
  padding-left: 1rem;
}
.modal-benefits {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.modal-benefits h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--saffron);
  margin-bottom: 0.75rem;
}
.modal-benefits ul li {
  font-size: 0.92rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.modal-benefits ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-sacred);
  font-weight: 700;
}
.modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.modal-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--saffron);
}
.modal-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.modal-actions .btn { flex: 1; justify-content: center; }

/* ══════════════════════════════════════════════
   PRODUCT LISTING PAGE styles (products.html)
══════════════════════════════════════════════ */
.products-page-hero {
  background: linear-gradient(135deg, var(--earth), var(--earth-mid));
  padding: 9rem 2rem 4rem;
  text-align: center;
}
.products-page-hero .section-eyebrow { color: var(--gold-light); }
.products-page-hero .section-title { color: var(--white); }
.products-page-hero p { color: rgba(255,255,255,0.7); margin-top: 0.75rem; }
.all-products-section { padding: 5rem 0; background: var(--off-white); }
.all-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.products-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  background: var(--white);
  border: 1.5px solid rgba(184,134,11,0.25);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid, .locate-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 0.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
  }
  .g-item:first-child { grid-row: span 1; }
  .trust-inner { flex-wrap: wrap; }
  .trust-divider { display: none; }
}

@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--earth);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.mobile-open + .nav-cta { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .modal-actions .btn { font-size: 0.8rem; padding: 0.7rem 1rem; }
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials {
  padding: 6rem 0;
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184,134,11,0.15);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-mid);
}
.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  position: relative;
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold-pale);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(184,134,11,0.10);
  padding-top: 1rem;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--earth);
}
.testi-author span {
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* ══════════════════════════════════════════════
   BOOKING / SEVA SECTION
══════════════════════════════════════════════ */
.booking-section {
  padding: 6rem 0;
  background: var(--off-white);
}
.booking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184,134,11,0.15);
  padding: 1.75rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-soft);
}
.booking-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-color: var(--gold);
}
.booking-card-icon {
  font-size: 2.8rem;
  line-height: 1;
  background: var(--cream);
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-pale);
}
.booking-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--earth);
  margin: 0;
}
.booking-card-desc {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.booking-card-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.booking-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 0.7rem 1rem;
}

/* ══════════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════════ */
.floating-btns {
  position: fixed;
  bottom: 2rem;
  right: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  z-index: 999;
}
.fab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.1rem 0.7rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.fab:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.fab-wa {
  background: #25D366;
  color: var(--white);
}
.fab-puja {
  background: var(--saffron);
  color: var(--white);
  font-size: 1rem;
}
.fab-call {
  background: var(--earth);
  color: var(--white);
}
.fab-label {
  font-size: 0.8rem;
  font-weight: 600;
}

/* ══════════════════════════════════════════════
   BOOKING MODAL EXTRAS
══════════════════════════════════════════════ */
.booking-seva-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0;
}
.seva-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  border: 1px solid rgba(184,134,11,0.12);
}
.seva-option span { color: var(--gold); font-weight: 600; }

/* ══════════════════════════════════════════════
   RESPONSIVE – new sections
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .booking-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .booking-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .booking-card { padding: 1.25rem 0.9rem; }
  .fab-label { display: none; }
  .fab { padding: 0.85rem; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
}
