/* ═══════════════════════════════════════════════════════════
   DPSM LUXE — Sacred Editorial
   Heritage Modern aesthetic for Divya Prem Sewa Mission
   PrecisionPulse · pure HTML/CSS · v1
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ────────────────────────────────────────────── */
:root {
  /* Palette — warm ivory ground, deep maroon ink, antique gold thread */
  --ink:          #1A1410;
  --ink-soft:     #3A2D26;
  --muted:        #6E6258;
  --line:         #E5DCC9;
  --line-soft:    #F1EBDB;

  --paper:        #FAF6EC;       /* warm ivory ground */
  --paper-2:      #F4EEDD;       /* slightly deeper ivory */
  --cream:        #FFFBF1;
  --white:        #FFFFFF;

  --maroon:       #6B1818;       /* deep maroon ink */
  --maroon-deep:  #4A0F0F;
  --maroon-soft:  #F5E5E5;

  --gold:         #B8893A;       /* antique gold */
  --gold-bright:  #D4A647;
  --gold-deep:    #8C6826;
  --gold-soft:    #F8EFD9;

  --night:        #14110D;       /* almost-black, warm */
  --night-2:      #1F1A14;

  /* Type */
  --display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --body:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --sanskrit:'Tiro Devanagari Sanskrit', 'Cormorant Garamond', serif;

  /* Spacing & rhythm */
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(80px, 9vw, 140px);
  --container-max: 1520px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: 0.25s;
  --t: 0.45s;
  --t-slow: 0.85s;
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
ul { list-style: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }

/* Selection */
::selection { background: var(--maroon); color: var(--cream); }

/* ─── LAYOUT PRIMITIVES ─────────────────────────────────── */
.luxe-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── TYPOGRAPHY PRIMITIVES ─────────────────────────────── */
.luxe-display {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.luxe-display em {
  font-style: italic;
  color: var(--maroon);
  font-weight: 500;
}
.luxe-display.light { color: var(--cream); }
.luxe-display.light em { color: var(--gold-bright); }
.luxe-display.center { text-align: center; }
.luxe-display__sub {
  display: block;
  font-family: var(--body);
  font-size: clamp(11.5px, 0.85vw, 13px);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 14px;
  line-height: 1;
}
.luxe-display.light .luxe-display__sub { color: var(--gold-bright); }

.luxe-eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 22px;
}
.luxe-eyebrow--gold { color: var(--gold); }

.luxe-lead {
  font-size: clamp(18.5px, 1.5vw, 21px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-weight: 400;
}

.luxe-section-head {
  margin-bottom: clamp(48px, 5vw, 72px);
}
.luxe-section-head .luxe-display.center { max-width: 880px; margin: 0 auto; }
/* When a centered heading is inside the section-head, center the eyebrow too */
.luxe-section-head:has(.luxe-display.center) { text-align: center; }
.luxe-section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.luxe-section-sub {
  font-size: 17px;
  color: var(--muted);
  margin-top: 22px;
  line-height: 1.7;
}
.luxe-section-sub.center { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }
.luxe-section-head--light .luxe-display { color: var(--cream); }
.luxe-section-head--light .luxe-eyebrow { color: var(--gold-bright); }

/* ─── BUTTONS ───────────────────────────────────────────── */
.luxe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 0;        /* sharp, editorial */
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.luxe-btn--lg { padding: 17px 36px; font-size: 14px; }

.luxe-btn--gold {
  background: var(--gold);
  color: var(--white) !important;
  border-color: var(--gold);
}
.luxe-btn--gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(184,137,58,0.55);
}

.luxe-btn--maroon {
  background: var(--maroon);
  color: var(--white) !important;
  border-color: var(--maroon);
}
.luxe-btn--maroon:hover {
  background: var(--maroon-deep);
  border-color: var(--maroon-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(107,24,24,0.55);
}

.luxe-btn--ghost {
  background: transparent;
  color: var(--cream) !important;
  border-color: rgba(255,251,241,0.35);
}
.luxe-btn--ghost:hover {
  background: var(--cream);
  color: var(--ink) !important;
  border-color: var(--cream);
}

.luxe-btn--ghost-light {
  background: transparent;
  color: var(--cream) !important;
  border-color: rgba(255,251,241,0.45);
}
.luxe-btn--ghost-light:hover {
  background: rgba(255,251,241,0.10);
  border-color: var(--cream);
}

/* ─── LOADING SCREEN (first-visit only, Cabot-style intro) ════════ */
/* Suppress completely on subsequent navigations within a browser session */
.no-loader .luxe-loader { display: none !important; }

.luxe-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}
.luxe-loader.is-loading { pointer-events: auto; }
/* Final exit — slide upward and fade out */
.luxe-loader.is-leaving {
  animation: loaderRise 1.0s cubic-bezier(.65, 0, .35, 1) forwards;
}
@keyframes loaderRise {
  from { transform: translateY(0); opacity: 1; }
  60%  { opacity: 1; }
  to   { transform: translateY(-100%); opacity: 1; visibility: hidden; }
}

/* Three layered "waves" in the brand palette, each rolling at different speeds */
.luxe-loader__wave {
  position: absolute;
  left: -25%; right: -25%;
  bottom: -20%;
  height: 60%;
  border-radius: 42% 38% 0 0 / 65% 60% 0 0;
  transform-origin: 50% 70%;
  animation: waveRoll 8s ease-in-out infinite;
}
.luxe-loader__wave--1 {
  background: var(--maroon-deep);
  opacity: 0.32;
  animation-duration: 9s;
}
.luxe-loader__wave--2 {
  background: var(--maroon);
  opacity: 0.28;
  animation-duration: 11s;
  animation-delay: -2s;
  bottom: -28%;
  height: 55%;
}
.luxe-loader__wave--3 {
  background: var(--gold-deep);
  opacity: 0.26;
  animation-duration: 13s;
  animation-delay: -4s;
  bottom: -34%;
  height: 50%;
}
@keyframes waveRoll {
  0%, 100% { transform: rotate(-2deg) translateX(-2%); }
  50%      { transform: rotate(2deg)  translateX(2%); }
}

/* Center brand block — Om + logo + name + thread + tag */
.luxe-loader__center {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ink);
  padding: 0 24px;
  animation: brandIn 1.4s 0.2s cubic-bezier(.16, 1, .3, 1) both;
}
@keyframes brandIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.luxe-loader__om {
  display: block;
  font-family: var(--sanskrit);
  font-size: clamp(56px, 7vw, 84px);
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 6px 32px rgba(107, 24, 24, 0.18);
  animation: omPulse 3s ease-in-out infinite;
}
@keyframes omPulse {
  0%, 100% { text-shadow: 0 4px 24px rgba(140, 104, 38, 0.25); transform: scale(1); }
  50%      { text-shadow: 0 8px 40px rgba(140, 104, 38, 0.55); transform: scale(1.05); }
}
/* Logo wrap holds the layered halo behind the logo */
.luxe-loader__logo-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto 28px;
  z-index: 3;
}

/* Three layered halos — each with different blur, opacity and timing
   for a soft, atmospheric, candle-lamp depth (premium diffused glow). */
.luxe-loader__halo {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  mix-blend-mode: multiply;        /* darker tint blends naturally onto cream */
  will-change: opacity, transform;
}
/* Outer — broadest, most diffuse, almost atmospheric */
.luxe-loader__halo--outer {
  width: 260%;
  aspect-ratio: 1;
  background: radial-gradient(circle,
    rgba(107, 24, 24, 0.10) 0%,
    rgba(140, 104, 38, 0.06) 35%,
    transparent 65%);
  filter: blur(22px);
  animation: haloBloomOuter 2.4s 2.4s cubic-bezier(.16, 1, .3, 1) forwards,
             haloPulse      4.8s 4.8s ease-in-out infinite;
}
/* Mid — soft warmth ring */
.luxe-loader__halo--mid {
  width: 175%;
  aspect-ratio: 1;
  background: radial-gradient(circle,
    rgba(184, 137, 58, 0.18) 0%,
    rgba(140, 104, 38, 0.10) 30%,
    rgba(107, 24, 24, 0.05) 60%,
    transparent 78%);
  filter: blur(8px);
  animation: haloBloomMid 2.0s 2.6s cubic-bezier(.16, 1, .3, 1) forwards,
             haloPulse    4.0s 4.6s ease-in-out infinite;
}
/* Inner — tight glow right behind the logo, like a held flame */
.luxe-loader__halo--inner {
  width: 120%;
  aspect-ratio: 1;
  background: radial-gradient(circle,
    rgba(212, 166, 71, 0.32) 0%,
    rgba(184, 137, 58, 0.18) 30%,
    rgba(140, 104, 38, 0.06) 60%,
    transparent 82%);
  filter: blur(2px);
  animation: haloBloomInner 1.8s 2.8s cubic-bezier(.16, 1, .3, 1) forwards,
             haloPulse      3.6s 4.6s ease-in-out infinite;
}

@keyframes haloBloomOuter {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.55); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.25); }
}
@keyframes haloBloomMid {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.55); }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.10); }
}
@keyframes haloBloomInner {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  50%  { opacity: 1; }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.0); }
}
@keyframes haloPulse {
  0%, 100% { opacity: 1;    }
  50%      { opacity: 0.75; }
}

.luxe-loader__logo {
  position: relative;
  z-index: 1;
  height: clamp(140px, 16vw, 220px);
  width: auto;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(74, 15, 15, 0.18));
  animation: logoSettle 1.6s 0.3s cubic-bezier(.16, 1, .3, 1) forwards;
}
@keyframes logoSettle {
  0%   { opacity: 0; transform: rotate(-14deg) scale(0.85); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: rotate(0deg)   scale(1); }
}

.luxe-loader__line {
  width: 220px; height: 1px;
  background: rgba(107, 24, 24, 0.18);
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}
.luxe-loader__line span {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: lineSwipe 2.2s ease-in-out infinite;
}
@keyframes lineSwipe {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.luxe-loader__name {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-shadow:
    0 1px 2px rgba(74, 15, 15, 0.55),
    0 2px 14px rgba(74, 15, 15, 0.35);
}
.luxe-loader__tag {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 1;
  margin: 0;
  text-shadow:
    0 1px 2px rgba(74, 15, 15, 0.55),
    0 2px 10px rgba(74, 15, 15, 0.30);
}

/* Don't allow scrolling while loader is up */
body.luxe-loading { overflow: hidden; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .luxe-loader, .luxe-loader__center, .luxe-loader__logo, .luxe-loader__om, .luxe-loader__wave, .luxe-loader__line span {
    animation: none !important;
    transition: opacity 0.3s linear;
  }
}

/* ═══════════════════════════════════════════════════════════
   HEADER — dcmsh.com pattern, DPSM-branded
   White desktop bar with logo · centered nav · maroon Donate.
   On mobile (≤1080px), nav and Donate hide; hamburger opens
   a full-screen dark night-blue panel with accordion items
   and a maroon Donate Now pinned at the bottom.
   ═══════════════════════════════════════════════════════════ */

.dpsm-header * { box-sizing: border-box; }
.dpsm-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  font-family: var(--body);
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(26,20,16,0.06);
  border-bottom: 1px solid rgba(26,20,16,0.08);
  transition: background 0.3s, box-shadow 0.3s;
}
.dpsm-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 30px rgba(26,20,16,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.dpsm-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.2rem, 4vw, 3.5rem);
  height: 96px;
  max-width: 1600px;
  margin: 0 auto;
  gap: 1rem;
}

/* ── Logo ─────────────────────────────────────────────── */
.dpsm-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 10;
}
.dpsm-logo__img {
  height: 78px;
  width: auto;
  display: block;
  transition: transform 0.2s var(--ease);
}
.dpsm-logo:hover .dpsm-logo__img { transform: scale(1.04); }

/* ── Desktop nav ──────────────────────────────────────── */
.dpsm-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.dpsm-nav > li { position: relative; }
.dpsm-nav > li > a,
.dpsm-nav > li > span {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 clamp(0.6rem, 1.2vw, 1.1rem);
  height: 96px;
  font-size: clamp(0.70rem, 0.90vw, 0.80rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.dpsm-nav > li > a::after,
.dpsm-nav > li > span::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--gold);
  transition: left 0.25s var(--ease), right 0.25s var(--ease);
}
.dpsm-nav > li:hover > a,
.dpsm-nav > li:hover > span,
.dpsm-nav > li > a.active,
.dpsm-nav > li > span.active { color: var(--maroon); }
.dpsm-nav > li:hover > a::after,
.dpsm-nav > li:hover > span::after,
.dpsm-nav > li > a.active::after,
.dpsm-nav > li > span.active::after {
  left: clamp(0.6rem, 1.2vw, 1.1rem);
  right: clamp(0.6rem, 1.2vw, 1.1rem);
}
.dpsm-arrow {
  width: 10px; height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.dpsm-nav > li:hover .dpsm-arrow { transform: rotate(180deg); }

/* ── Desktop dropdowns ────────────────────────────────── */
.dpsm-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(26,20,16,0.18);
  min-width: 240px;
  padding: 0.6rem 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  z-index: 100;
  border-top: 3px solid var(--gold);
}
.dpsm-nav > li:hover .dpsm-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dpsm-dropdown li a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-decoration: none;
  text-transform: none;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.dpsm-dropdown li a::before {
  content: '';
  width: 5px; height: 5px;
  background: rgba(184,137,58,0.30);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.15s;
}
.dpsm-dropdown li a:hover {
  background: var(--gold-soft);
  color: var(--maroon);
  padding-left: 1.5rem;
}
.dpsm-dropdown li a:hover::before { background: var(--gold); }
.dpsm-dropdown li + li { border-top: 1px solid rgba(26,20,16,0.06); }

/* ── Donate CTA (desktop) ─────────────────────────────── */
.dpsm-apply {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65em 1.5em;
  background: var(--maroon);
  color: #ffffff !important;
  font-family: var(--body);
  font-size: clamp(0.68rem, 0.85vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.dpsm-apply:hover {
  background: var(--maroon-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,24,24,0.35);
}

/* ── Hamburger ────────────────────────────────────────── */
.dpsm-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 10;
  flex-shrink: 0;
}
.dpsm-hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  width: 100%;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.dpsm-hamburger span:nth-child(2) { width: 75%; align-self: flex-end; }
.dpsm-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.dpsm-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.dpsm-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* ── Mobile slide-in menu ─────────────────────────────── */
.dpsm-mobile-menu {
  display: none;
  position: fixed;
  top: 96px; left: 0; right: 0; bottom: 0;
  background: #14110D;
  overflow-y: auto;
  z-index: 750;
  padding: 1rem 0 3rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  border-top: 1px solid rgba(184,137,58,0.20);
}
.dpsm-mobile-menu.open { transform: translateX(0); }
.dpsm-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dpsm-mobile-nav > li { border-bottom: 1px solid rgba(255,251,241,0.08); }
.dpsm-mobile-nav > li > a,
.dpsm-mobile-nav > li > .dpsm-mob-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,251,241,0.92);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  background: none;
  border: none;
  width: 100%;
}
.dpsm-mobile-nav > li > a:hover,
.dpsm-mobile-nav > li > .dpsm-mob-toggle:hover {
  color: var(--gold-bright);
  background: rgba(184,137,58,0.06);
}
.dpsm-mob-arrow {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.dpsm-mob-toggle.open .dpsm-mob-arrow { transform: rotate(180deg); }
.dpsm-mob-toggle.open { color: var(--gold-bright); }
.dpsm-mobile-sub {
  list-style: none;
  background: rgba(0,0,0,0.30);
  display: none;
  padding: 0.4rem 0;
  margin: 0;
}
.dpsm-mobile-sub.open { display: block; }
.dpsm-mobile-sub li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem 0.8rem 2.2rem;
  font-family: var(--body);
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,251,241,0.65);
  text-decoration: none;
  text-transform: none;
  transition: color 0.2s, padding-left 0.2s;
}
.dpsm-mobile-sub li a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold-bright);
  border-radius: 50%;
  flex-shrink: 0;
}
.dpsm-mobile-sub li a:hover {
  color: var(--gold-bright);
  padding-left: 2.4rem;
}
.dpsm-mobile-apply {
  margin: 1.5rem 1.5rem 0;
  display: block;
  text-align: center;
  padding: 1em 2em;
  background: var(--maroon);
  color: #ffffff;
  font-family: var(--body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  border: 1.5px solid var(--maroon);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.dpsm-mobile-apply:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--night);
}

@media (max-width: 1300px) {
  .dpsm-nav { display: none; }
  .dpsm-hamburger { display: flex; }
  .dpsm-mobile-menu { display: block; }
  .dpsm-apply { display: none; }
}
@media (max-width: 480px) {
  /* dpsm-* rules retained but unused after revert — header is now luxe again */
  .dpsm-header__bar { padding: 0 1rem; height: 76px; }
  .dpsm-logo__img { height: 56px; }
  .dpsm-mobile-menu { top: 76px; }
}

/* ─── HEADER (legacy luxe — kept for any old refs, hidden) ─── */
.luxe-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t) var(--ease), padding var(--t) var(--ease);
}
.luxe-header.is-scrolled {
  box-shadow: 0 6px 24px -10px rgba(20,17,13,0.12);
}
.luxe-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: stretch;            /* let children own their vertical sizing */
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);        /* horizontal only — vertical handled by logo */
}

/* Logo — owns the vertical padding; this defines bar height */
.luxe-logo {
  grid-column: 1; grid-row: 1;
  justify-self: start;
  align-self: stretch;
  display: flex; align-items: center;
  padding: 8px 0;
  z-index: 2;
  transition: padding var(--t) var(--ease);
}
.luxe-logo__img {
  height: 72px; width: auto;
  transition: height var(--t) var(--ease);
}
.luxe-header.is-scrolled .luxe-logo { padding: 6px 0; }
.luxe-header.is-scrolled .luxe-logo__img { height: 56px; }

/* Nav — stretches full bar height so dropdown can anchor to the bar's bottom edge */
.luxe-nav {
  min-width: 0;
  grid-column: 2; grid-row: 1;
  align-self: stretch;
  display: flex; align-items: center; justify-content: center;
}
.luxe-nav__list {
  display: flex;
  align-items: stretch;            /* LI fills full bar height */
  align-self: stretch;
  gap: 4px;
}
.luxe-nav__list > li {
  display: flex;
  align-items: center;             /* link text vertically centered inside li */
  position: relative;
}
.luxe-nav__list > li > a {
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease);
}
.luxe-nav__list > li > a::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px; bottom: 6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t) var(--ease);
}
.luxe-nav__list > li > a:hover { color: var(--maroon); }
.luxe-nav__list > li > a:hover::after,
.luxe-nav__list > li.is-active > a::after { transform: scaleX(1); }
.luxe-nav__list > li.is-active > a { color: var(--maroon); }

/* ── Dropdown sub-menu (Media) ──────────────────────────── */
.luxe-nav__has-children { position: relative; }
.luxe-nav__chev {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform var(--t-fast) var(--ease);
}
.luxe-nav__has-children:hover .luxe-nav__chev { transform: rotate(180deg); }
.luxe-nav__sub {
  position: absolute;
  top: 100%;                       /* sits flush with the header's bottom border */
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold); /* GOLDEN ACCENT — flows from the Media underline into the dropdown */
  box-shadow: 0 18px 48px -16px rgba(20,17,13,0.20);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s var(--ease),
    visibility 0.25s var(--ease);
  z-index: 100;
}
.luxe-nav__has-children:hover > .luxe-nav__sub {
  opacity: 1;
  visibility: visible;
}

/* Keep the parent's gold underline visible while the dropdown is open
   so it flows visually into the dropdown's gold top border */
.luxe-nav__has-children:hover > a::after {
  transform: scaleX(1);
}
.luxe-nav__sub li > a {
  display: block;
  padding: 12px 22px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: all var(--t-fast) var(--ease);
}
.luxe-nav__sub li > a:hover {
  background: var(--gold-soft);
  color: var(--maroon);
  padding-left: 28px;
}
@media (max-width: 1300px) {
  /* ── Mobile accordion dropdown ────────────────────────────
     Default: sub-list collapsed (max-height 0). Parent `<a>` flexed so
     chevron sits at the far right. Tapping the parent toggles the
     `.is-expanded` class on the `<li>` (handled in JS), which slides
     the sub-list open and rotates the chevron 180°. */
  .luxe-nav__has-children > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .luxe-nav__chev {
    display: inline-block;
    margin-left: 12px;
    width: 11px; height: 11px;
    transition: transform 0.35s var(--ease);
    color: var(--gold);
    flex-shrink: 0;
  }
  .luxe-nav__has-children.is-expanded > a .luxe-nav__chev {
    transform: rotate(180deg);
  }
  .luxe-nav__has-children.is-expanded > a {
    color: var(--maroon);
  }

  .luxe-nav__sub {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: var(--paper-2);
    border: none;
    box-shadow: none;
    min-width: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    transition:
      max-height 0.45s var(--ease),
      padding 0.35s var(--ease);
  }
  .luxe-nav__has-children.is-expanded > .luxe-nav__sub {
    max-height: 720px;
    padding: 6px 0 12px 0;
  }
  .luxe-nav__sub li > a {
    display: block;
    padding: 10px 24px 10px 44px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
    white-space: normal;
    text-transform: none;
  }
  .luxe-nav__sub li > a:hover {
    background: rgba(107,24,24,0.06);
    color: var(--maroon);
  }

  /* Donate Now button at the TOP of the slide-in cream menu */
  .luxe-nav__cta {
    display: block;
    margin: 16px 24px 8px;
    padding: 14px 24px;
    background: var(--maroon);
    color: #FFFFFF !important;
    text-align: center;
    text-decoration: none;
    font-family: var(--body);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1.5px solid var(--maroon);
    border-radius: 6px;
    transition: all 0.3s var(--ease);
  }
  .luxe-nav__cta:hover {
    background: var(--maroon-deep);
    border-color: var(--maroon-deep);
  }
}

/* CTA — rounded pill button, text centered */
/* Donate CTA inside the slide-in mobile menu — hidden on desktop */
.luxe-nav__cta { display: none; }

.luxe-cta {
  grid-column: 4; grid-row: 1;
  justify-self: end;
  align-self: center;              /* keep CTA vertically centered, not stretched */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: var(--maroon);
  color: var(--white) !important;
  border: 1.5px solid var(--maroon);
  border-radius: 999px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--t) var(--ease);
  z-index: 2;
}
.luxe-cta:hover {
  background: var(--maroon-deep);
  border-color: var(--maroon-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px -8px rgba(107,24,24,0.55);
  color: var(--white) !important;
}

/* Burger (mobile only) */
.luxe-burger {
  grid-column: 4; grid-row: 1;
  justify-self: end;
  align-self: center;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 2;
}
.luxe-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.luxe-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.luxe-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.luxe-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav shade */
.nav-shade {
  position: fixed; inset: 0;
  background: rgba(20,17,13,0.55);
  backdrop-filter: blur(4px);
  z-index: 700;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility var(--t) var(--ease);
}
.nav-shade.is-active { opacity: 1; visibility: visible; }

/* ─── HERO ══════════════════════════════════════════════════ */
.luxe-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--night);
  display: flex; align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  box-sizing: border-box;
}

/* Self-hosted video — covers entire hero, no third-party chrome */
.luxe-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--ink);
}
/* Mobile fallback: still-image slideshow (replaces YouTube on phones) */
.luxe-hero__fallback {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--ink);
}
.luxe-hero__fallback-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.luxe-hero__fallback-slide.is-active { opacity: 1; }
.luxe-hero__fallback-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Bias the crop slightly upward — subjects in our banners sit in the
     upper-third, so default-centered cover would chop their heads. */
  object-position: center 28%;
}
/* Per-image fine-tuning so each photo crops to its strongest moment */
.luxe-hero__fallback-slide:nth-child(1) img { object-position: center 35%; } /* anna sewa — server's hands centered */
.luxe-hero__fallback-slide:nth-child(2) img { object-position: center 40%; } /* classroom — desks fill mid-frame */
.luxe-hero__fallback-slide:nth-child(3) img { object-position: center 25%; } /* Shiva mural — keep deity in frame */
.luxe-hero__fallback-slide:nth-child(4) img { object-position: center 30%; } /* Murmu meeting */
.luxe-hero__fallback-slide:nth-child(5) img { object-position: center 35%; } /* Ram Katha */
.luxe-hero__video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Subjects in our footage tend to sit slightly above center — biasing
     the crop upward keeps faces in frame on tall portrait viewports. */
  object-position: center 38%;
  pointer-events: none;
  opacity: 0;
  animation: heroVideoFadeIn 0.7s 0.2s var(--ease-out) forwards;
}
@keyframes heroVideoFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Veil — directional gradient: video clear on left, dark on right */
.luxe-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(20,17,13,0.30) 0%,
      rgba(20,17,13,0.20) 25%,
      rgba(20,17,13,0.45) 55%,
      rgba(20,17,13,0.85) 88%,
      rgba(20,17,13,0.92) 100%
    ),
    linear-gradient(to bottom,
      rgba(20,17,13,0.40) 0%,
      transparent 25%,
      transparent 70%,
      rgba(20,17,13,0.55) 100%
    );
}
.luxe-hero__veil::after {
  /* film grain */
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.10;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Content layer — content card pushed to the actual right edge of viewport */
.luxe-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) 0 0;  /* gutter only on the right */
  padding-right: clamp(40px, 6vw, 96px);
  display: flex;
  justify-content: flex-end;     /* CARD HUGS THE RIGHT EDGE */
}

.luxe-hero__card {
  width: 560px;
  max-width: 100%;
  padding-top: 0;
  color: var(--cream);
  text-align: left;
  animation: heroRise 1.2s var(--ease-out) both;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.luxe-hero__om {
  display: block;
  font-family: var(--sanskrit);
  font-size: 64px;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(184,137,58,0.45);
  animation: omGlow 4s ease-in-out infinite alternate;
}
/* Sacred tagline (replaces the Om glyph in the hero — same glow, set as text) */
.luxe-hero__tagline {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1.2;
  margin-bottom: 26px;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 22px rgba(184,137,58,0.40);
  animation: omGlow 4s ease-in-out infinite alternate;
}
@keyframes omGlow {
  from { text-shadow: 0 4px 18px rgba(184,137,58,0.30); }
  to   { text-shadow: 0 6px 30px rgba(212,166,71,0.65); }
}

.luxe-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--body);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 24px;
}
.luxe-hero__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(184,137,58,0.20);
}

.luxe-hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(46px, 5.6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 28px;
}
.luxe-hero__title em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
.luxe-hero__brand {
  display: block;
  font-family: var(--body);
  font-size: clamp(11.5px, 0.85vw, 13px);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,251,241,0.55);
  margin-bottom: 14px;
  line-height: 1;
}

.luxe-hero__sub {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255,251,241,0.78);
  margin-bottom: 36px;
  max-width: 480px;
}

.luxe-hero__cta {
  display: flex; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero mini stats — gold thread separators */
.luxe-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(184,137,58,0.35);
  max-width: 520px;
}
.luxe-hero__stats > div {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 4px;
  border-right: 1px solid rgba(184,137,58,0.25);
}
.luxe-hero__stats > div:last-child { border-right: none; }
.luxe-hero__stats > div:first-child { padding-left: 0; }
.luxe-hero__stats strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 38px;
  color: var(--gold-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}
.luxe-hero__stats span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,251,241,0.65);
}

/* Scroll indicator */
.luxe-hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,251,241,0.7);
  cursor: pointer;
}
.luxe-hero__scroll:hover { color: var(--gold-bright); }
.luxe-hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold-bright), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { opacity: 0.2; transform: scaleY(0.2); transform-origin: top; }
  55%  { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
  100% { opacity: 0.2; transform: scaleY(0.2); transform-origin: top; }
}

/* ─── TRUST RIBBON ══════════════════════════════════════════ */
.luxe-trust {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.luxe-trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.luxe-trust__item {
  display: flex; flex-direction: column; gap: 2px;
  text-align: center;
  padding: 4px 12px;
}
.luxe-trust__big {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: var(--maroon);
  line-height: 1;
  letter-spacing: -0.01em;
}
.luxe-trust__sm {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.luxe-trust__sep {
  width: 1px; height: 36px;
  background: var(--line);
}

/* ─── ABOUT MISSION ═════════════════════════════════════════ */
.luxe-about {
  padding: var(--section-y) 0;
  background: var(--paper);
  position: relative;
}
.luxe-about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}
.luxe-about__visual { position: relative; }
.luxe-about__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--line);
}
.luxe-about__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.luxe-about__visual:hover .luxe-about__frame img { transform: scale(1.04); }
.luxe-about__frame::before {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(184,137,58,0.45);
  margin: 16px;
  pointer-events: none;
  z-index: 1;
}
.luxe-about__sticker {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--maroon);
  color: var(--cream);
  padding: 22px 28px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 24px 48px -16px rgba(107,24,24,0.45);
}
.luxe-about__sticker strong {
  display: block;
  font-family: var(--display);
  font-size: 44px; font-weight: 500;
  color: var(--gold-bright);
  line-height: 1;
}
.luxe-about__sticker span {
  display: block;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,251,241,0.85);
  margin-top: 6px;
}
.luxe-about__quote {
  position: absolute;
  top: -36px; left: -32px;
  background: var(--cream);
  border: 1px solid var(--gold);
  padding: 22px 30px;
  max-width: 340px;
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.35;
  color: var(--ink);
  z-index: 2;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}
.luxe-about__quote span {
  font-family: var(--display);
  font-size: 44px;
  color: var(--gold);
  vertical-align: middle;
  line-height: 0;
}

.luxe-about__text { padding-top: 8px; }
.luxe-about__text > p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* About pillars */
.luxe-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.luxe-pillars > li {
  display: flex; gap: 18px;
  padding: 26px 26px;
  background: var(--cream);
  border-left: 2px solid var(--gold);
  transition: all var(--t) var(--ease);
}
.luxe-pillars > li:hover {
  transform: translateX(4px);
  border-left-color: var(--maroon);
  box-shadow: 0 12px 28px -16px rgba(0,0,0,0.18);
}
.luxe-pillars > li i {
  font-size: 26px;
  color: var(--gold);
  width: 38px; flex-shrink: 0;
  margin-top: 4px;
}
.luxe-pillars h4 {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.25;
}
.luxe-pillars p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── PROGRAMS GRID ═════════════════════════════════════════ */
.luxe-programs {
  padding: var(--section-y) 0;
  background: var(--paper-2);
  position: relative;
}
.luxe-programs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.luxe-card {
  display: flex; flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all var(--t) var(--ease);
  color: var(--ink);
}
.luxe-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 28px 56px -22px rgba(20,17,13,0.25);
}
.luxe-card__img {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--line);
}
.luxe-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.luxe-card:hover .luxe-card__img img { transform: scale(1.06); }
.luxe-card__body {
  padding: 32px 30px 34px;
  position: relative;
}
.luxe-card__num {
  display: block;
  font-family: var(--display);
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1;
}
.luxe-card h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 12px;
}
.luxe-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 18px;
}
.luxe-card__arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--maroon);
  transition: gap var(--t) var(--ease);
}
.luxe-card:hover .luxe-card__arrow { gap: 14px; }

/* ─── STATS ═════════════════════════════════════════════════ */
.luxe-stats {
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(184,137,58,0.10), transparent 60%),
    var(--night);
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.luxe-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,137,58,0.55), transparent);
}
.luxe-stats::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,137,58,0.55), transparent);
}
.luxe-stats__om {
  position: absolute;
  font-family: var(--sanskrit);
  font-size: clamp(280px, 36vw, 520px);
  color: rgba(184,137,58,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.luxe-stats .luxe-section-head { position: relative; z-index: 1; }

/* 4 separate boxes in one line */
.luxe-stats__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 28px);
  margin-top: clamp(56px, 6vw, 88px);
}

.luxe-stat {
  position: relative;
  text-align: center;
  padding: clamp(40px, 4.5vw, 60px) clamp(20px, 2.5vw, 32px) clamp(36px, 4vw, 48px);
  /* min-width:0 lets grid items shrink below their content's intrinsic width
     so long unbreakable numbers like "20,00,000+" can't force the column wider. */
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(184,137,58,0.08), rgba(184,137,58,0.02) 65%, rgba(20,17,13,0)),
    rgba(20,17,13,0.55);
  border: 1px solid rgba(184,137,58,0.20);
  backdrop-filter: blur(2px);
  transition:
    transform 0.65s var(--ease-out),
    border-color 0.5s var(--ease),
    box-shadow 0.65s var(--ease-out);
}
.luxe-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 50% 0%, rgba(212,166,71,0.10), transparent 70%);
  pointer-events: none;
  opacity: 0.85;
}
.luxe-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(212,166,71,0.50);
  box-shadow:
    0 1px 0 rgba(212,166,71,0.18) inset,
    0 32px 60px -38px rgba(212,166,71,0.40);
}
.luxe-stat__corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold-bright);
  pointer-events: none;
  opacity: 0.85;
}
.luxe-stat__corner--tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.luxe-stat__corner--tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.luxe-stat__corner--bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.luxe-stat__corner--br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.luxe-stat__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 68px; height: 68px;
  margin: 0 auto clamp(26px, 2.6vw, 34px);
  border: 1px solid rgba(184,137,58,0.45);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, rgba(212,166,71,0.18), rgba(212,166,71,0.04) 70%);
  color: var(--gold-bright);
  transition: transform 0.6s var(--ease-out), border-color 0.4s var(--ease);
}
.luxe-stat__icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(184,137,58,0.18);
  pointer-events: none;
}
.luxe-stat__icon svg {
  width: 30px; height: 30px;
}
.luxe-stat:hover .luxe-stat__icon {
  transform: translateY(-3px);
  border-color: var(--gold-bright);
}

.luxe-stat__num {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 58px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.012em;
  /* If somehow content still exceeds the column, soften the break. */
  overflow-wrap: break-word;
}
.luxe-stat__plus {
  font-size: 0.55em;
  color: var(--gold-bright);
  margin-left: 0.06em;
  vertical-align: super;
  font-style: italic;
  font-weight: 400;
}
.luxe-stat__rule {
  position: relative;
  z-index: 1;
  display: block;
  width: 38px; height: 1px;
  background: var(--gold-bright);
  margin: clamp(20px, 2vw, 26px) auto;
  opacity: 0.7;
}
.luxe-stat__lbl {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,251,241,0.7);
}

/* ─── FOUNDER ═══════════════════════════════════════════════ */
.luxe-founder {
  padding: var(--section-y) 0;
  background: var(--night-2);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.luxe-founder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.luxe-founder__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(56px, 6vw, 96px);
  align-items: center;
}
.luxe-founder__visual { position: relative; }
.luxe-founder__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--night);
}
.luxe-founder__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}
.luxe-founder__photo::after {
  content: '';
  position: absolute; inset: 18px;
  border: 1px solid rgba(184,137,58,0.40);
  pointer-events: none;
}
.luxe-founder__caption {
  position: absolute;
  bottom: -36px; left: 24px;
  background: var(--gold);
  color: var(--night);
  padding: 22px 28px;
  text-align: left;
  box-shadow: 0 22px 44px -16px rgba(184,137,58,0.55);
  z-index: 2;
}
.luxe-founder__caption strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 34px);
  font-weight: 600;
  color: var(--night);
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.luxe-founder__caption span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon-deep);
  margin-top: 6px;
}
.luxe-founder__caption em {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--maroon-deep);
  margin-top: 8px;
  line-height: 1.2;
}

.luxe-founder__text > p {
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(255,251,241,0.78);
  margin-bottom: 20px;
}
.luxe-founder__text > p strong { color: var(--cream); font-weight: 600; }
.luxe-founder__text > p em { color: var(--gold-bright); font-style: italic; font-weight: 400; }

.luxe-founder__quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  color: var(--cream);
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--gold);
  margin: 28px 0;
}

/* ─── VANDEMATRAM ═══════════════════════════════════════════ */
.luxe-vande {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.luxe-vande__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.luxe-vande__card {
  display: flex; flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all var(--t) var(--ease);
  color: var(--ink);
}
.luxe-vande__card:hover {
  transform: translateY(-8px);
  border-color: var(--maroon);
  box-shadow: 0 28px 56px -22px rgba(20,17,13,0.25);
}
.luxe-vande__card img {
  aspect-ratio: 5/4;
  width: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.luxe-vande__card:hover img { transform: scale(1.06); }
.luxe-vande__body { padding: 30px 28px 34px; }
.luxe-vande__body h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 10px;
}
.luxe-vande__body p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── DONATE CTA ════════════════════════════════════════════ */
.luxe-donate {
  padding: var(--section-y) 0;
  background: var(--maroon-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.luxe-donate__pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(184,137,58,0.15) 0%, transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(184,137,58,0.10) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 20 L60 40 L40 60 L20 40 Z' fill='none' stroke='%23B8893A' stroke-width='0.5' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.luxe-donate__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.luxe-donate .luxe-display { color: var(--cream); margin-bottom: 22px; }
.luxe-donate .luxe-display em { color: var(--gold-bright); }
.luxe-donate__sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,251,241,0.78);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.luxe-donate__amounts {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.luxe-amount {
  padding: 14px 26px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  background: rgba(255,251,241,0.06);
  border: 1px solid rgba(255,251,241,0.20);
  cursor: pointer;
  transition: all var(--t) var(--ease);
  letter-spacing: 0.02em;
}
.luxe-amount:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}
.luxe-amount.is-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 28px -10px rgba(184,137,58,0.6);
}

.luxe-donate__cta {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.luxe-donate__note {
  font-size: 13px;
  color: rgba(255,251,241,0.55);
  letter-spacing: 0.04em;
}
.luxe-donate__note i { color: var(--gold-bright); margin-right: 8px; }

/* ─── EVENTS ════════════════════════════════════════════════ */
.luxe-events {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.luxe-arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: gap var(--t) var(--ease);
}
.luxe-arrow-link:hover { gap: 16px; color: var(--maroon-deep); }

.luxe-events__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: 540px;
}
.luxe-event {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.luxe-event--big {
  grid-row: 1 / 3;
}
.luxe-event:nth-child(2) { grid-column: 2; grid-row: 1; }
.luxe-event:nth-child(3) { grid-column: 3; grid-row: 1; }
.luxe-event:nth-child(4) { grid-column: 2; grid-row: 2; }
.luxe-event:nth-child(5) { grid-column: 3; grid-row: 2; }

.luxe-event img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.luxe-event:hover img { transform: scale(1.06); }
.luxe-event__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  color: var(--cream);
  background: linear-gradient(to top, rgba(20,17,13,0.92) 0%, rgba(20,17,13,0.50) 50%, transparent 100%);
}
.luxe-event__date {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(184,137,58,0.6);
}
.luxe-event__overlay h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 6px;
}
.luxe-event--big .luxe-event__overlay h3 { font-size: 32px; }
.luxe-event__overlay p {
  font-size: 14px;
  color: rgba(255,251,241,0.75);
  line-height: 1.5;
}

/* ─── FOOTER ════════════════════════════════════════════════ */
.luxe-footer {
  background: var(--night);
  color: rgba(255,251,241,0.65);
  padding: 80px 0 0;
  position: relative;
}
.luxe-footer__ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}
.luxe-footer__rule {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,137,58,0.45), transparent);
}
.luxe-footer__om {
  font-family: var(--sanskrit);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}
.luxe-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 56px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter) 64px;
  border-bottom: 1px solid rgba(255,251,241,0.08);
}
.luxe-footer__col h4 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.luxe-footer__col ul li { margin-bottom: 11px; }
.luxe-footer__col ul li a {
  font-size: 14.5px;
  color: rgba(255,251,241,0.62);
  transition: color var(--t-fast) var(--ease), padding var(--t-fast) var(--ease);
}
.luxe-footer__col ul li a:hover {
  color: var(--gold-bright);
  padding-left: 4px;
}
.luxe-footer__logo { height: 64px; width: auto; margin-bottom: 22px; }
.luxe-footer__about {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,251,241,0.62);
  margin-bottom: 22px;
}
.luxe-footer__creds {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.luxe-footer__creds span {
  font-family: var(--display);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  padding: 5px 12px;
  border: 1px solid rgba(184,137,58,0.40);
}
.luxe-footer__social { display: flex; gap: 10px; }
.luxe-footer__social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,251,241,0.15);
  color: rgba(255,251,241,0.62);
  font-size: 13px;
  transition: all var(--t) var(--ease);
}
.luxe-footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--night);
  transform: translateY(-3px);
}
.luxe-footer__contact li {
  display: flex; gap: 14px;
  margin-bottom: 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,251,241,0.62);
}
.luxe-footer__contact li i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 4px;
  width: 18px;
  flex-shrink: 0;
}
.luxe-footer__contact a:hover { color: var(--gold-bright); }

.luxe-footer__bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 24px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.luxe-footer__bottom p {
  font-size: 13px;
  color: rgba(255,251,241,0.45);
  margin: 0;
}
.luxe-footer__bottom a {
  color: var(--gold-bright);
  font-weight: 600;
}
.luxe-footer__bottom a:hover { color: var(--cream); }

/* Scroll-to-top */
.luxe-totop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--maroon);
  color: var(--cream);
  border: 1px solid var(--maroon);
  display: flex; align-items: center; justify-content: center;
  z-index: 700;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t) var(--ease);
}
.luxe-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.luxe-totop:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }

/* ─── REVEAL ANIMATIONS ═════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PAGE LAYOUT ═══════════════════════════════════════════ */
.page-hero {
  padding: 160px 0 60px;
  background: var(--paper-2);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--ink);
}
.page-body {
  padding: 60px 0 var(--section-y);
}

/* ─── INNER-PAGE HERO — Editorial Split Layout ══════════════ */
/* Photo on one side at full quality, text on cream on the other.
   No overlay fight, no cropping disasters, fully readable. */
.luxe-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: clamp(540px, 70vh, 760px);
  padding-top: 110px;            /* clear the fixed header */
  background: var(--paper);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
/* Left column — content on cream */
.luxe-page-hero__inner {
  grid-column: 1; grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 100px) clamp(40px, 5vw, 72px);
  /* Align left edge with site container */
  padding-left: max(clamp(40px, 5vw, 72px), calc((100vw - var(--container-max)) / 2));
  position: relative;
  z-index: 2;
}
/* Right column — full quality photo, no overlay */
.luxe-page-hero__bg {
  grid-column: 2; grid-row: 1;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.luxe-page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;                 /* photo at full quality */
}
/* Subtle vertical thread between columns */
.luxe-page-hero__bg::before {
  content: '';
  position: absolute;
  top: 18%; bottom: 18%;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 50%, transparent);
  opacity: 0.4;
  z-index: 1;
}
/* Decorative ornament on content side */
.luxe-page-hero__inner::before {
  content: '';
  position: absolute;
  top: clamp(48px, 5vw, 80px);
  left: clamp(40px, 5vw, 72px);
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.luxe-page-hero__eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 22px;
}
.luxe-page-hero__title {
  font-family: var(--display);
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 22px;
}
.luxe-page-hero__title em {
  color: var(--maroon);
  font-style: italic;
}
.luxe-page-hero__sub {
  font-size: clamp(16px, 1.3vw, 18.5px);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 0 32px;
  font-family: var(--body);
}
.luxe-page-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.luxe-page-hero__crumb a {
  color: var(--maroon);
  font-weight: 600;
  transition: color var(--t-fast) var(--ease);
}
.luxe-page-hero__crumb a:hover { color: var(--maroon-deep); }
.luxe-page-hero__crumb-sep {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}

/* Mobile: stack — photo on top, content below */
@media (max-width: 900px) {
  .luxe-page-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    padding-top: 84px;
  }
  .luxe-page-hero__bg {
    grid-column: 1; grid-row: 1;
    aspect-ratio: 16/10;
  }
  .luxe-page-hero__bg::before { display: none; }
  .luxe-page-hero__inner {
    grid-column: 1; grid-row: 2;
    padding: clamp(40px, 8vw, 64px) var(--gutter);
  }
  .luxe-page-hero__inner::before { display: none; }
}

/* ─── PROSE SECTION (long-form copy) ════════════════════════ */
.luxe-prose {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.luxe-prose__inner {
  max-width: 820px;
  margin: 0 auto;
}
.luxe-prose .luxe-eyebrow { display: block; }
.luxe-prose .luxe-display { margin-bottom: 30px; }
.luxe-prose p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.luxe-prose p strong { color: var(--ink); font-weight: 700; }
.luxe-prose p em { color: var(--maroon); font-style: italic; }
.luxe-prose blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  padding: 28px 0 28px 32px;
  border-left: 3px solid var(--gold);
  margin: 36px 0;
}
.luxe-prose__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}
/* Reverse-image variant for alternating visual rhythm */
.luxe-prose__split--reverse > div:first-child { order: 2; }
.luxe-prose__split--reverse > div:last-child  { order: 1; }
@media (max-width: 900px) {
  .luxe-prose__split--reverse > div:first-child,
  .luxe-prose__split--reverse > div:last-child { order: initial; }
}
.luxe-prose__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.luxe-prose__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.luxe-prose__visual::before {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(184,137,58,0.55);
  z-index: 1;
  pointer-events: none;
}

/* ─── INFO/CRED CARDS ══════════════════════════════════════ */
.luxe-creds {
  padding: var(--section-y) 0;
  background: var(--paper-2);
}
.luxe-creds__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.luxe-cred {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 36px 32px;
  text-align: left;
  transition: all var(--t) var(--ease);
}
.luxe-cred:hover { border-color: var(--gold); transform: translateY(-4px); }
.luxe-cred__num {
  display: inline-block;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 10px;
}
.luxe-cred__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 22px;
  margin-bottom: 18px;
}
.luxe-cred h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.luxe-cred p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ─── CTA BAND (used on most pages) ═════════════════════════ */
.luxe-ctaband {
  padding: clamp(72px, 9vw, 110px) 0;
  background: var(--maroon);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.luxe-ctaband::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(184,137,58,0.18) 0%, transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(184,137,58,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.luxe-ctaband__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.luxe-ctaband .luxe-display { color: var(--cream); margin-bottom: 18px; }
.luxe-ctaband .luxe-display em { color: var(--gold-bright); }
.luxe-ctaband__sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,251,241,0.78);
  margin-bottom: 32px;
}
.luxe-ctaband__btns {
  display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── DEFINITION LIST (mission/vision/values) ══════════════ */
.luxe-defs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0;
}
.luxe-def {
  padding: 32px 28px;
  background: var(--cream);
  border-top: 3px solid var(--gold);
  transition: all var(--t) var(--ease);
}
.luxe-def:hover { transform: translateY(-4px); border-top-color: var(--maroon); box-shadow: 0 16px 32px -16px rgba(0,0,0,0.18); }
.luxe-def__icon {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 18px;
}
.luxe-def h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}
.luxe-def p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── CONTACT GRID ═════════════════════════════════════════ */
.luxe-contact {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.luxe-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 88px);
}
.luxe-contact__list {
  display: flex; flex-direction: column;
  gap: 28px;
}
.luxe-contact__row {
  display: flex; gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.luxe-contact__row i {
  font-size: 22px;
  color: var(--gold);
  margin-top: 4px;
  width: 30px; flex-shrink: 0;
}
.luxe-contact__row h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.luxe-contact__row p, .luxe-contact__row a {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.luxe-contact__row a:hover { color: var(--maroon); }
.luxe-contact__form {
  background: var(--cream);
  padding: 40px;
  border: 1px solid var(--line);
}
.luxe-contact__form h3 {
  font-family: var(--display);
  font-size: 28px;
  margin-bottom: 8px;
}
.luxe-contact__form > p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 15px;
}
.luxe-contact__form input[type=text],
.luxe-contact__form input[type=email],
.luxe-contact__form input[type=tel],
.luxe-contact__form textarea,
.luxe-contact__form select {
  display: block; width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 16px;
  transition: border var(--t-fast) var(--ease);
}
.luxe-contact__form input:focus,
.luxe-contact__form textarea:focus,
.luxe-contact__form select:focus {
  outline: none;
  border-color: var(--gold);
}
.luxe-contact__form textarea { min-height: 140px; resize: vertical; }
.luxe-contact__form input[type=submit],
.luxe-contact__form button[type=submit] {
  background: var(--maroon);
  color: var(--cream);
  border: 1.5px solid var(--maroon);
  padding: 14px 36px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.luxe-contact__form input[type=submit]:hover,
.luxe-contact__form button[type=submit]:hover {
  background: var(--maroon-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px -10px rgba(107,24,24,0.55);
}

/* ─── MEMBERSHIP TIERS ═════════════════════════════════════ */
.luxe-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.luxe-tier {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all var(--t) var(--ease);
}
.luxe-tier--featured {
  border-color: var(--gold);
  background: var(--gold-soft);
  box-shadow: 0 24px 48px -20px rgba(184,137,58,0.35);
  transform: translateY(-12px);
}
.luxe-tier__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--maroon);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
}
.luxe-tier__name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.luxe-tier__price {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.luxe-tier__price small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  font-family: var(--body);
}
.luxe-tier__period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.luxe-tier__list {
  text-align: left;
  margin-bottom: 32px;
}
.luxe-tier__list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
  color: var(--ink-soft);
  display: flex; gap: 10px;
  align-items: flex-start;
}
.luxe-tier__list li:last-child { border-bottom: none; }
.luxe-tier__list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── VIDEO GALLERY ════════════════════════════════════════ */
.luxe-videos {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.luxe-videos--alt { background: var(--paper-2); }
.luxe-videos__feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.luxe-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.luxe-video-card {
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all var(--t) var(--ease);
}
.luxe-video-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(20,17,13,0.20);
}
.luxe-video-card__embed {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink);
}
.luxe-video-card__embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.luxe-video-card__body, .luxe-video-card > h3 {
  padding: 24px 26px 26px;
}
.luxe-video-card .luxe-eyebrow { display: block; margin-bottom: 10px; }
.luxe-video-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin: 24px 26px 8px;
}
.luxe-video-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 26px 24px;
}
.luxe-video-card--lg h3 { font-size: 26px; }
.luxe-video-card--lg p { font-size: 15.5px; }
@media (max-width: 900px) {
  .luxe-videos__feature, .luxe-videos__grid { grid-template-columns: 1fr; }
}

/* ─── SOCIAL MEDIA CARDS ═══════════════════════════════════ */
.luxe-social__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.luxe-social-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: all var(--t) var(--ease);
}
.luxe-social-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(20,17,13,0.20);
}
.luxe-social-card__icon {
  flex-shrink: 0;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
}
.luxe-social-card__body {
  padding: 24px 26px 24px 24px;
  flex: 1;
}
.luxe-social-card__body span {
  display: block;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 6px;
}
.luxe-social-card__body h3 {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  word-break: break-word;
}
.luxe-social-card__body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 14px;
}
.luxe-social-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--maroon);
  transition: gap var(--t) var(--ease);
}
.luxe-social-card:hover .luxe-social-card__cta { gap: 12px; }
@media (max-width: 1100px) { .luxe-social__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  {
  .luxe-social__grid { grid-template-columns: 1fr; }
  .luxe-social-card__icon { width: 70px; font-size: 26px; }
}

/* ─── GALLERY (filterable masonry) ═════════════════════════ */
.luxe-gallery {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.luxe-gallery__filters {
  position: relative;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  padding: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}
/* The liquid sliding indicator (Apple-style "magic ink") */
.luxe-gallery__indicator {
  position: absolute;
  top: 8px;
  left: 0;
  width: 0;
  height: calc(100% - 16px);
  background: var(--maroon);
  border-radius: 999px;
  z-index: 0;
  box-shadow: 0 8px 22px -10px rgba(107,24,24,0.55);
  transition:
    left  0.55s cubic-bezier(0.32, 0.72, 0, 1),
    width 0.55s cubic-bezier(0.32, 0.72, 0, 1);
  pointer-events: none;
}
.luxe-gallery__filter {
  position: relative;
  z-index: 1;
  padding: 12px 24px;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}
.luxe-gallery__filter:hover { color: var(--maroon); }
.luxe-gallery__filter.is-active {
  background: transparent;
  color: var(--cream);
  box-shadow: none;
}
/* Uniform grid layout — every photo same dimensions, perfectly aligned rows. */
.luxe-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.luxe-gallery__item {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
  cursor: zoom-in;
  border: 1px solid var(--line);
  opacity: 1;
  transition:
    opacity      0.45s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow   0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.luxe-gallery__item:hover {
  border-color: var(--gold);
  box-shadow: 0 24px 48px -20px rgba(20,17,13,0.30);
}
/* Filter transitions — clean opacity-only fade, no movement */
.luxe-gallery__item.is-entering { opacity: 0; }
.luxe-gallery__item.is-leaving  { opacity: 0; pointer-events: none; }
.luxe-gallery__item.is-hidden   { display: none; }
.luxe-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* uniform alignment — full photo visible in lightbox on click */
  display: block;
  transition: transform 1.0s var(--ease);
}
.luxe-gallery__item:hover img { transform: scale(1.04); }
.luxe-gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 22px 20px;
  background: linear-gradient(to top, rgba(20,17,13,0.92) 0%, rgba(20,17,13,0.55) 60%, transparent 100%);
  color: var(--cream);
  transform: translateY(40%);
  opacity: 0;
  transition: all var(--t) var(--ease);
  pointer-events: none;
}
.luxe-gallery__item:hover .luxe-gallery__caption {
  transform: translateY(0);
  opacity: 1;
}
.luxe-gallery__caption span {
  display: inline-block;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 6px;
}
.luxe-gallery__caption h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--cream);
}
@media (max-width: 1100px) { .luxe-gallery__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .luxe-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .luxe-gallery__filters { flex-direction: column; border-radius: 12px; align-items: stretch; }
  .luxe-gallery__filter { text-align: center; }
}
@media (max-width: 480px) { .luxe-gallery__grid { grid-template-columns: 1fr; } }
/* Stats: phones get a single column with tighter padding so big numbers
   (e.g. "20,00,000+") never push the card edge offscreen. */
@media (max-width: 640px) {
  .luxe-stats__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 36px;
  }
  .luxe-stat {
    padding: 32px 22px 28px;
  }
  .luxe-stat__icon {
    width: 56px; height: 56px;
    margin-bottom: 18px;
  }
  .luxe-stat__icon svg { width: 26px; height: 26px; }
  .luxe-stat__num {
    font-size: 38px;
  }
  .luxe-stat__rule {
    margin: 14px auto;
  }
  .luxe-stat__lbl {
    font-size: 11px;
    letter-spacing: 0.24em;
  }
}

/* ─── LIGHTBOX ═════════════════════════════════════════════ */
.luxe-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20,17,13,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 60px);
}
.luxe-lightbox.is-open { display: flex; }
.luxe-lightbox__inner {
  position: relative;
  max-width: 1280px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.luxe-lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6);
  animation: lbFadeIn 0.35s var(--ease-out);
}
@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.luxe-lightbox__caption {
  position: absolute;
  inset: auto 0 -56px 0;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
  opacity: 0.85;
}
.luxe-lightbox__caption strong {
  display: block;
  font-style: normal;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 6px;
  font-weight: 700;
}
.luxe-lightbox__btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(255,251,241,0.06);
  border: 1px solid rgba(255,251,241,0.25);
  color: var(--cream);
  cursor: pointer;
  z-index: 2;
  transition: all var(--t) var(--ease);
  font-size: 22px;
  line-height: 1;
}
.luxe-lightbox__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.luxe-lightbox__btn--close {
  top: 24px; right: 24px;
}
.luxe-lightbox__btn--prev {
  left: 24px; top: 50%; transform: translateY(-50%);
}
.luxe-lightbox__btn--next {
  right: 24px; top: 50%; transform: translateY(-50%);
}
.luxe-lightbox__counter {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
  z-index: 2;
}
@media (max-width: 600px) {
  .luxe-lightbox__btn { width: 44px; height: 44px; font-size: 18px; }
  .luxe-lightbox__btn--close { top: 16px; right: 16px; }
  .luxe-lightbox__btn--prev { left: 12px; }
  .luxe-lightbox__btn--next { right: 12px; }
}

/* ─── HOME GALLERY STRIP ═══════════════════════════════════ */
.luxe-strip {
  padding: clamp(72px, 8vw, 110px) 0;
  background: var(--paper-2);
  overflow: hidden;
}
.luxe-strip__track {
  display: flex;
  gap: 14px;
  margin-top: 48px;
  animation: stripScroll 60s linear infinite;
}
.luxe-strip:hover .luxe-strip__track { animation-play-state: paused; }
.luxe-strip__item {
  flex: 0 0 320px;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.luxe-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.luxe-strip__item:hover img { transform: scale(1.06); }
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .luxe-strip__item { flex: 0 0 240px; height: 180px; }
}

/* ─── CSR PARTNERS ════════════════════════════════════════ */
.luxe-partners {
  padding: clamp(80px, 9vw, 130px) 0;
  background:
    radial-gradient(ellipse at top, rgba(184,137,58,.08), transparent 60%),
    var(--paper);
  border-top: 1px solid rgba(26,20,16,.06);
  border-bottom: 1px solid rgba(26,20,16,.06);
}
.luxe-partners__lede {
  max-width: 640px;
  margin: 22px auto 0;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(17px, 1.35vw, 20px);
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.7;
}
.luxe-partners__plate {
  position: relative;
  max-width: 720px;
  margin: 64px auto 0;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 56px);
  background: var(--cream);
  border: 1px solid rgba(184,137,58,.22);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 30px 70px -40px rgba(26,20,16,.25);
}
.luxe-partners__plate img {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.luxe-partners__corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.luxe-partners__corner--tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.luxe-partners__corner--tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.luxe-partners__corner--bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.luxe-partners__corner--br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.luxe-partners__roll {
  margin-top: 36px;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 26px);
  letter-spacing: 0.02em;
  color: var(--maroon);
}
.luxe-partners__name { font-style: italic; }
.luxe-partners__sep {
  color: var(--gold);
  margin: 0 18px;
  font-style: normal;
  font-weight: 600;
}
.luxe-partners__cta-line {
  margin-top: 44px;
  text-align: center;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.luxe-partners__cta-line a {
  color: var(--maroon);
  border-bottom: 1px solid rgba(107,24,24,.3);
  padding-bottom: 1px;
  font-weight: 500;
}
.luxe-partners__cta-line a:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}
@media (max-width: 600px) {
  .luxe-partners__plate { padding: 28px 22px; }
  .luxe-partners__roll { font-size: 18px; }
  .luxe-partners__sep { margin: 0 10px; }
}

/* ─── SIDE CARDS (vertical stack — replaces image in prose__split) ── */
.luxe-side-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.luxe-side-cards > .luxe-eyebrow { margin-bottom: 6px; }
.luxe-side-card {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: all var(--t) var(--ease);
}
.luxe-side-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 16px 32px -16px rgba(20,17,13,0.20);
}
.luxe-side-card__num {
  font-family: var(--display);
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.luxe-side-card__body { min-width: 0; }
.luxe-side-card__body h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}
.luxe-side-card__body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.luxe-side-card__arrow {
  color: var(--maroon);
  font-size: 14px;
  transition: transform var(--t) var(--ease);
}
.luxe-side-card:hover .luxe-side-card__arrow { transform: translateX(4px); }
@media (max-width: 600px) {
  .luxe-side-card { grid-template-columns: auto 1fr; }
  .luxe-side-card__arrow { display: none; }
}

/* ─── LEGAL DOCUMENTS GRID ═════════════════════════════════ */
.luxe-docs {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.luxe-docs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(40px, 5vw, 56px);
}
.luxe-docs__group-title {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  color: var(--maroon);
  margin: 32px 0 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold);
}
.luxe-docs__group-title:first-child { margin-top: 0; }
.luxe-doc {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: var(--cream);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: all var(--t) var(--ease);
}
.luxe-doc:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -16px rgba(20,17,13,0.18);
}
.luxe-doc__icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--maroon-soft);
  color: var(--maroon);
  font-size: 22px;
  flex-shrink: 0;
}
.luxe-doc:hover .luxe-doc__icon {
  background: var(--maroon);
  color: var(--cream);
}
.luxe-doc__body { min-width: 0; }
.luxe-doc__name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}
.luxe-doc__meta {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.luxe-doc__action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
  transition: gap var(--t) var(--ease);
}
.luxe-doc:hover .luxe-doc__action { gap: 14px; color: var(--maroon); }
@media (max-width: 1100px) { .luxe-docs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  {
  .luxe-docs__grid { grid-template-columns: 1fr; }
  .luxe-doc { grid-template-columns: auto 1fr; }
  .luxe-doc__action { display: none; }
}

/* ─── MISSION & VISION (premium 3-pillar section) ══════════ */
.luxe-mv {
  position: relative;
  padding: var(--section-y) 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(184,137,58,0.03) 0%, transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  overflow: hidden;
}
.luxe-mv__ornament {
  position: absolute;
  font-family: var(--sanskrit);
  font-size: clamp(280px, 34vw, 520px);
  color: rgba(184,137,58,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}
.luxe-mv .luxe-container { position: relative; z-index: 1; }
.luxe-mv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(40px, 5vw, 60px);
  background: var(--cream);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  position: relative;
}
.luxe-mv__grid::before,
.luxe-mv__grid::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
}
.luxe-mv__grid::before { top: -8px;    left: -8px; }
.luxe-mv__grid::after  { bottom: -8px; right: -8px; }
.luxe-mv__pillar {
  position: relative;
  padding: clamp(48px, 5vw, 72px) clamp(28px, 3vw, 44px);
  text-align: center;
  border-right: 1px solid rgba(184,137,58,0.28);
  transition: background var(--t) var(--ease);
}
.luxe-mv__pillar:last-child { border-right: none; }
.luxe-mv__pillar:hover { background: rgba(184,137,58,0.04); }
.luxe-mv__sanskrit {
  display: block;
  font-family: var(--sanskrit);
  font-size: clamp(28px, 2.4vw, 36px);
  color: var(--maroon);
  margin-bottom: 14px;
  line-height: 1;
}
.luxe-mv__num {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  line-height: 1;
  position: relative;
}
.luxe-mv__num::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto 0;
  opacity: 0.6;
}
.luxe-mv__pillar h3 {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.luxe-mv__pillar p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 380px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .luxe-mv__grid {
    grid-template-columns: 1fr;
  }
  .luxe-mv__pillar {
    border-right: none;
    border-bottom: 1px solid rgba(184,137,58,0.28);
    padding: 48px 28px;
  }
  .luxe-mv__pillar:last-child { border-bottom: none; }
}

/* ─── EXPLORE MORE / RELATED PAGES ═════════════════════════ */
.luxe-related {
  padding: clamp(72px, 8vw, 110px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.luxe-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.luxe-related__card {
  display: flex; flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 36px 32px;
  transition: all var(--t) var(--ease);
  color: var(--ink);
  position: relative;
}
.luxe-related__card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -16px rgba(20,17,13,0.2);
}
.luxe-related__num {
  font-family: var(--display);
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.luxe-related__card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.luxe-related__card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 22px;
  flex-grow: 1;
}
.luxe-related__arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--maroon);
  transition: gap var(--t) var(--ease);
}
.luxe-related__card:hover .luxe-related__arrow { gap: 14px; }

@media (max-width: 900px) {
  .luxe-related__grid { grid-template-columns: 1fr; }
}

/* ─── PRESS / AWARDS GRID ══════════════════════════════════ */
.luxe-press {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.luxe-press__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 28px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  transition: all var(--t) var(--ease);
}
.luxe-press__item:hover { background: var(--gold-soft); transform: translateX(4px); }
.luxe-press__year {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  color: var(--maroon);
  line-height: 1;
}
.luxe-press__body h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.luxe-press__body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ─── PAGE RESPONSIVE ══════════════════════════════════════ */
@media (max-width: 1100px) {
  .luxe-creds__grid, .luxe-tiers, .luxe-defs { grid-template-columns: repeat(2, 1fr); }
  .luxe-press { grid-template-columns: 1fr; }
  .luxe-prose__split { grid-template-columns: 1fr; }
  .luxe-contact__grid { grid-template-columns: 1fr; }
  .luxe-tier--featured { transform: none; }
}
@media (max-width: 700px) {
  .luxe-creds__grid, .luxe-tiers, .luxe-defs { grid-template-columns: 1fr; }
  .luxe-press__item { grid-template-columns: 1fr; }
}

/* ─── RESPONSIVE ════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .luxe-programs__grid { grid-template-columns: repeat(2, 1fr); }
  .luxe-vande__grid    { grid-template-columns: repeat(2, 1fr); }
  .luxe-stats__grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2vw, 22px); }

  .luxe-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .luxe-events__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .luxe-event--big { grid-row: auto; grid-column: 1 / 3; aspect-ratio: 16/9; }
  .luxe-event:nth-child(n) { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }
  .luxe-event--big { aspect-ratio: 16/9; }
}

@media (max-width: 900px) {
  .luxe-about__grid { grid-template-columns: 1fr; gap: 56px; }
  .luxe-about__visual { max-width: 480px; margin: 0 auto; }
  .luxe-founder__grid { grid-template-columns: 1fr; gap: 56px; }
  .luxe-founder__visual { max-width: 380px; margin: 0 auto; }
  .luxe-section-head--row { flex-direction: column; align-items: flex-start; }

  .luxe-trust__sep { display: none; }
  .luxe-trust__inner { justify-content: space-around; gap: 24px; }
}

@media (max-width: 1300px) {
  .luxe-burger { display: flex; }

  /* Mobile header: logo left, Donate pill + burger on the right */
  .luxe-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    gap: 8px;
  }
  .luxe-logo { padding: 6px 0; flex: 0 0 auto; }
  .luxe-logo__img { height: 64px; }
  .luxe-header.is-scrolled .luxe-logo__img { height: 56px; }

  /* Donate pill stays in the header on mobile, compact, next to the burger */
  .luxe-cta {
    display: inline-flex !important;
    margin-left: auto;
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.10em;
    grid-column: auto;
    flex: 0 0 auto;
  }
  .luxe-burger {
    grid-column: auto;
    flex: 0 0 auto;
    margin-left: 6px;
  }

  /* ── Mobile slide-in nav — CREAM panel with MAROON text, opens just
        below the cream header bar (top: 67px on phones, 97px on tablets
        — values match the header's rendered height). ─── */
  .luxe-nav {
    position: fixed;
    top: 67px; right: -100%;
    width: 100%;
    max-width: none;
    height: calc(100vh - 67px);
    height: calc(100dvh - 67px);
    background: var(--paper);
    color: var(--maroon);
    box-shadow: -10px 0 30px -10px rgba(20,17,13,0.15);
    padding: 0;
    display: block;
    transition: right 0.4s var(--ease);
    z-index: 750;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid var(--line);
  }
  .luxe-nav.is-open { right: 0; }
  .luxe-nav__list {
    display: block;
    width: 100%;
  }
  .luxe-nav__list > li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(107,24,24,0.10);
    position: relative;
  }
  .luxe-nav__list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--maroon);
    width: 100%;
  }
  .luxe-nav__list > li > a::after { display: none; }
  .luxe-nav__list > li > a:hover { color: var(--maroon-deep); background: rgba(107,24,24,0.04); }
  .luxe-nav__list > li.is-active > a { color: var(--gold-deep); }
  .luxe-nav__has-children.is-expanded > a { color: var(--gold-deep); background: rgba(107,24,24,0.04); }

  /* Chevron — visible on mobile, rotates 180° when parent is expanded */
  .luxe-nav__chev {
    width: 12px; height: 12px;
    display: inline-block;
    color: var(--gold);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
  }
  .luxe-nav__has-children.is-expanded > a .luxe-nav__chev {
    transform: rotate(180deg);
  }

  /* Accordion sub-list — collapsed by default, slides open when parent has .is-expanded */
  .luxe-nav__sub {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(0,0,0,0.30);
    border: none;
    box-shadow: none;
    min-width: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 18px;
    margin: 0;
    transition: max-height 0.4s var(--ease), padding 0.3s var(--ease), margin 0.3s var(--ease);
  }
  .luxe-nav__has-children.is-expanded > .luxe-nav__sub {
    max-height: 760px;
    padding: 6px 0 12px 18px;
    margin: 4px -24px 4px -24px;     /* extend bg full-width */
    padding-left: 42px;
  }
  .luxe-nav__sub li > a {
    display: block;
    padding: 11px 0 11px 18px;       /* 18px space between vertical line and label */
    font-family: var(--body);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255,251,241,0.70);
    text-transform: none;
    white-space: normal;
  }
  .luxe-nav__sub li > a:hover {
    background: transparent;
    color: var(--gold-bright);
    padding-left: 22px;
  }

  /* Donate Now button styling for the slide-in panel handled in base rule;
     just enforce the flex order so it's first */
  .luxe-nav__cta { flex: 0 0 auto; order: -1; }

  /* ── HOME HERO ─ image full-bleed under the cream header (no black
     strip). Original behaviour: image at top:0, header sits over it. ─ */
  .luxe-hero {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 100svh;
    height: 100svh;
    background: var(--night);
    overflow: hidden;
    padding-top: 0;
  }
  .luxe-hero__video,
  .luxe-hero__fallback,
  .luxe-hero__veil {
    position: absolute;
    inset: 0;
    height: auto;
  }
  .luxe-hero__veil {
    background: linear-gradient(to bottom,
      rgba(20,17,13,0.55) 0%,
      rgba(20,17,13,0.45) 30%,
      rgba(20,17,13,0.78) 65%,
      rgba(20,17,13,0.94) 100%);
  }
  .luxe-hero__veil::after { display: none; }
  .luxe-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 var(--gutter);
    display: flex;
    justify-content: flex-start;
  }
  .luxe-hero__card {
    width: 100%;
    max-width: 100%;
    padding-top: 120px;             /* clear the cream fixed header (96px + breathing) */
    padding-bottom: 24px;
  }
  .luxe-hero__om { font-size: 44px; margin-bottom: 14px; }
  .luxe-hero__tagline { font-size: clamp(15px, 4vw, 20px); margin-bottom: 14px; letter-spacing: 0.06em; }
  .luxe-hero__eyebrow { margin-bottom: 16px; font-size: 11px; }
  .luxe-hero__brand { margin-bottom: 10px; }
  .luxe-hero__title { font-size: clamp(36px, 8.5vw, 52px); line-height: 1.02; margin-bottom: 18px; }
  .luxe-hero__sub { font-size: 14.5px; line-height: 1.65; margin-bottom: 24px; }
  .luxe-hero__cta { margin-bottom: 28px; }
  .luxe-hero__scroll { display: none; }
  .luxe-hero__stats { grid-template-columns: repeat(3, 1fr); max-width: 100%; padding-top: 22px; }
  .luxe-hero__stats strong { font-size: 24px; }
  .luxe-hero__stats span { font-size: 10px; }

  .luxe-programs__grid { grid-template-columns: 1fr; }
  .luxe-vande__grid    { grid-template-columns: 1fr; }
  .luxe-pillars        { grid-template-columns: 1fr; }
  .luxe-events__grid   { grid-template-columns: 1fr; }
  .luxe-event--big, .luxe-event:nth-child(n) { grid-column: auto; aspect-ratio: 16/10; }

  .luxe-about__sticker { right: 12px; bottom: -20px; padding: 16px 20px; }
  .luxe-about__sticker strong { font-size: 32px; }
  .luxe-about__quote { left: 12px; top: -20px; max-width: 200px; padding: 12px 16px; font-size: 14px; }

  .luxe-footer__grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .luxe-footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .luxe-hero__title { font-size: 40px; }
  .luxe-hero__cta { flex-direction: column; }
  .luxe-hero__cta .luxe-btn { width: 100%; }
  .luxe-donate__cta { flex-direction: column; align-items: stretch; }
  .luxe-amount { padding: 12px 18px; font-size: 17px; }
}

/* ═══════════════════════════════════════════════════════════════════
   HINDI / DEVANAGARI TYPOGRAPHY
   Applied automatically when Polylang sets <html lang="hi-IN">
   Mukta for body (modern, highly readable), Tiro Devanagari Hindi for
   display/serif. Slightly larger sizing because Devanagari glyphs
   carry more detail per character than Latin.
   ═══════════════════════════════════════════════════════════════════ */

html[lang^="hi"] body,
html[lang^="hi"] p,
html[lang^="hi"] li,
html[lang^="hi"] a,
html[lang^="hi"] span,
html[lang^="hi"] div,
html[lang^="hi"] .luxe-nav__list > li > a,
html[lang^="hi"] .luxe-cta,
html[lang^="hi"] .luxe-btn {
  font-family: "Mukta", "Tiro Devanagari Hindi", "Manrope", system-ui, sans-serif;
  font-size: 1.06em;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0;
}

html[lang^="hi"] h1,
html[lang^="hi"] h2,
html[lang^="hi"] h3,
html[lang^="hi"] h4,
html[lang^="hi"] .luxe-hero__title,
html[lang^="hi"] .luxe-display,
html[lang^="hi"] .luxe-section__title {
  font-family: "Tiro Devanagari Hindi", "Mukta", "Cormorant Garamond", serif;
  letter-spacing: 0;
  line-height: 1.4;
  font-weight: 400;
}

html[lang^="hi"] .luxe-hero__title { font-size: clamp(46px, 5.6vw, 78px); line-height: 1.18; }
html[lang^="hi"] .luxe-hero__sub { font-size: 1.1em; line-height: 1.75; }
html[lang^="hi"] .luxe-hero__tagline { font-size: 1.1em; letter-spacing: 0.05em; }
html[lang^="hi"] .luxe-hero__eyebrow { font-size: 0.95em; letter-spacing: 0.08em; }
html[lang^="hi"] .luxe-nav__list > li > a { font-size: 14.5px; letter-spacing: 0.02em; }
html[lang^="hi"] .luxe-btn { font-size: 14px; letter-spacing: 0.05em; }
html[lang^="hi"] .luxe-trust__big { font-size: 0.95em; }
html[lang^="hi"] .luxe-trust__sm { font-size: 1.05em; }

/* Footer in Hindi: same font sizes as English (Devanagari at footer sizes reads fine), tighter line-height for column layout */
html[lang^="hi"] .luxe-footer,
html[lang^="hi"] .luxe-footer p,
html[lang^="hi"] .luxe-footer a,
html[lang^="hi"] .luxe-footer li,
html[lang^="hi"] .luxe-footer span {
  font-family: "Mukta", system-ui, sans-serif;
  font-size: 14.5px !important;
  line-height: 1.55 !important;
  letter-spacing: 0;
}
html[lang^="hi"] .luxe-footer__col h4 { font-size: 14px !important; letter-spacing: 0.1em; line-height: 1.4; }
html[lang^="hi"] .luxe-footer__about { font-size: 14.5px !important; line-height: 1.65 !important; }
html[lang^="hi"] .luxe-footer__bottom p { font-size: 13px !important; }
html[lang^="hi"] .luxe-footer__col ul li { margin-bottom: 9px; }

/* ═══════════════════════════════════════════════════════════════
   HINDI EYEBROW & SECTION-HEAD SIZING (BOOSTED)
   The red "सेवा कुंज" type eyebrows were rendering too small
   because Mukta at 1em looks visually smaller than Cormorant.
   ═══════════════════════════════════════════════════════════════ */
html[lang^="hi"] .luxe-eyebrow,
html[lang^="hi"] .luxe-page-hero__eyebrow,
html[lang^="hi"] .luxe-section-head .luxe-eyebrow {
  font-size: 1.18rem !important;
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1.5;
}

html[lang^="hi"] .luxe-page-hero__title { font-size: clamp(38px, 4.6vw, 68px); line-height: 1.2; letter-spacing: 0; }
html[lang^="hi"] .luxe-display { font-size: clamp(36px, 5.2vw, 72px); line-height: 1.22; letter-spacing: 0;
}

html[lang^="hi"] .luxe-section-sub,
html[lang^="hi"] .luxe-lead {
  font-size: 1.1rem;
  line-height: 1.85;
}

html[lang^="hi"] .luxe-mv__sanskrit { font-family: "Tiro Devanagari Hindi", serif; font-size: 1.4em; }
html[lang^="hi"] .luxe-doc__name { font-size: 1.02em; font-weight: 500; }
html[lang^="hi"] .luxe-doc__meta { font-size: 0.92em; }
html[lang^="hi"] .luxe-card__num,
html[lang^="hi"] .luxe-related__num,
html[lang^="hi"] .luxe-mv__num,
html[lang^="hi"] .luxe-cred__num { font-family: "Cormorant Garamond", serif; }

/* ── REINFORCE NAV NOWRAP (prevent Sewa Kunj / College Campus from wrapping) ── */
.luxe-nav__list > li > a,
.luxe-nav__sub > li > a {
  white-space: nowrap !important;
}

/* ═══════════════════════════════════════════════════════════════
   LANGUAGE SWITCHER (EN | हिं)
   Pill-style toggle that lives in the header between nav and CTA
   ═══════════════════════════════════════════════════════════════ */
.luxe-lang {
  grid-column: 3; grid-row: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 12px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  align-self: center;
  justify-self: end;
}
.luxe-lang__opt {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.luxe-lang__opt:hover {
  color: var(--maroon);
  border-color: rgba(122, 33, 33, 0.25);
}
.luxe-lang__opt.is-current {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
  cursor: default;
  pointer-events: none;
}
.luxe-lang__sep {
  width: 1px;
  height: 14px;
  background: rgba(26,20,16,0.18);
  display: inline-block;
}

@media (max-width: 1300px) {
  .luxe-lang {
    grid-column: auto;
    margin-right: 4px;
    margin-left: auto;
    font-size: 12px;
  }
  .luxe-lang__opt { padding: 5px 8px; }
}

/* ═══════════════════════════════════════════════════════════════
   HEADER AUTO-ADJUST FOR TIGHT DESKTOP (1300–1500px)
   At this range the burger is hidden but the 10-item nav is tight.
   Reduce padding/font incrementally so everything fits without
   collisions before snapping to burger below 1300px.
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1301px) and (max-width: 1500px) {
  .luxe-nav__list > li > a {
    padding: 10px 9px;
    font-size: 14px;
    letter-spacing: 0.03em;
  }
  .luxe-header__bar { gap: 16px; }
  .luxe-logo__img { height: 64px; }
  .luxe-lang { margin-right: 6px; font-size: 12.5px; }
  .luxe-lang__opt { padding: 6px 9px; }
  .luxe-cta { font-size: 13px; padding: 10px 18px; }
}

@media (min-width: 1501px) and (max-width: 1700px) {
  .luxe-nav__list > li > a { padding: 10px 11px; font-size: 14.5px; }
  .luxe-header__bar { gap: 20px; }
}

/* Show language switcher prominently on mobile-style header */
@media (max-width: 1300px) {
  .luxe-lang {
    display: inline-flex !important;
    grid-column: auto;
    margin-left: auto;
    margin-right: 8px;
    font-size: 12px;
  }
  .luxe-lang__opt { padding: 5px 8px; }
}

/* ═══════════════════════════════════════════════════════════════
   HINDI MODE: NUMERIC ELEMENTS KEEP DISPLAY FONT
   Stats counters, hero stat numbers, donate amounts, ribbon
   numerals are digits — they should render in Cormorant Garamond
   at the same size as English, not the body Mukta font.
   ═══════════════════════════════════════════════════════════════ */
html[lang^="hi"] .luxe-stat__num,
html[lang^="hi"] .luxe-hero__stats strong,
html[lang^="hi"] .luxe-trust__big,
html[lang^="hi"] .luxe-tier__price,
html[lang^="hi"] .luxe-amount,
html[lang^="hi"] .luxe-press__year,
html[lang^="hi"] .luxe-cred__num,
html[lang^="hi"] .luxe-card__num,
html[lang^="hi"] .luxe-related__num,
html[lang^="hi"] .luxe-mv__num,
html[lang^="hi"] .luxe-event__date,
html[lang^="hi"] .luxe-about__sticker strong,
html[lang^="hi"] .luxe-stat__plus {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: revert !important;
  letter-spacing: -0.012em;
}

/* Specific size restore for stats (the most prominent numbers) */
html[lang^="hi"] .luxe-stat__num { font-size: clamp(32px, 4.4vw, 58px) !important; }
html[lang^="hi"] .luxe-hero__stats strong { font-size: clamp(28px, 3.4vw, 44px) !important; }
html[lang^="hi"] .luxe-trust__big { font-size: clamp(22px, 2vw, 28px) !important; }
html[lang^="hi"] .luxe-tier__price { font-size: clamp(34px, 3.8vw, 48px) !important; }


/* ═══════════════════════════════════════════════════════════════
   SCROLL PERFORMANCE OPTIMIZATIONS
   Pauses GPU/CPU-expensive animations when their owning section
   is scrolled out of view. Paired with IntersectionObserver in
   main.js — see "PERFORMANCE: pause expensive animations" block.
   ═══════════════════════════════════════════════════════════════ */

.luxe-hero.is-offscreen .luxe-hero__tagline,
.luxe-hero.is-offscreen .luxe-hero__om {
  animation-play-state: paused !important;
}

.luxe-hero__video-el,
.luxe-hero__tagline,
.luxe-strip__track {
  will-change: transform;
  transform: translateZ(0);
}

.luxe-header.is-scrolled {
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

@media (prefers-reduced-motion: reduce) {
  .luxe-strip__track,
  .luxe-hero__tagline,
  .luxe-hero__om,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
