:root {
  --maroon: #6b1410;
  --maroon-deep: #3a0a08;
  --saffron: #e88925;
  --gold: #f0c14b;
  --gold-soft: #ffe7a0;
  --leaf: #1f5c45;
  --ink: #1a1410;
  --muted: #7a6a5c;
  --night: #120806;
  --panel: rgba(255, 248, 235, 0.92);
  --white: #fffdf8;
  --line: rgba(240, 193, 75, 0.28);
  --shadow: 0 24px 60px rgba(40, 10, 6, 0.28);
  --radius: 22px;
  --font-display: "Cormorant Garamond", "Arya", serif;
  --font-body: "Mukta", "Arya", sans-serif;
  --font-dev: "Arya", "Cormorant Garamond", serif;
  --page-bg:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(232, 137, 37, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(107, 20, 16, 0.35), transparent 50%),
    linear-gradient(180deg, #1a0c08 0%, #2a1210 18%, #f7efe2 42%, #f4ebdb 100%);
  --section-panel-bg: linear-gradient(180deg, rgba(255,253,248,0.72), rgba(247,239,226,0.95));
  --card-bg: linear-gradient(160deg, #fffdf8 0%, #fff4dc 100%);
}

html.theme-dark {
  --ink: #f3e7d5;
  --muted: #b9a894;
  --panel: rgba(28, 16, 12, 0.92);
  --white: #fff8ec;
  --line: rgba(240, 193, 75, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --page-bg:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(232, 137, 37, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(107, 20, 16, 0.45), transparent 50%),
    linear-gradient(180deg, #0a0605 0%, #140a08 35%, #1a0e0a 100%);
  --section-panel-bg: linear-gradient(180deg, rgba(22, 12, 10, 0.9), rgba(18, 10, 8, 0.96));
  --card-bg: linear-gradient(160deg, #241611 0%, #1a100c 100%);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  background: var(--page-bg);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.25s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.ambient-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 193, 75, 0.08), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(232, 137, 37, 0.1), transparent 30%);
  z-index: 0;
}

.floating-orbs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.45;
  animation: floatOrb 14s ease-in-out infinite;
}
.orb-1 { width: 180px; height: 180px; left: 8%; top: 30%; background: radial-gradient(circle, rgba(240,193,75,.35), transparent 70%); }
.orb-2 { width: 120px; height: 120px; right: 12%; top: 55%; background: radial-gradient(circle, rgba(232,137,37,.3), transparent 70%); animation-delay: -4s; }
.orb-3 { width: 90px; height: 90px; left: 45%; bottom: 10%; background: radial-gradient(circle, rgba(107,20,16,.25), transparent 70%); animation-delay: -8s; }

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -30px, 40px) scale(1.08); }
}

.site-header, main, .footer { position: relative; z-index: 1; }

.topbar {
  background: linear-gradient(90deg, var(--maroon-deep), var(--maroon));
  color: var(--gold-soft);
  font-size: 0.92rem;
}
.topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(16px);
  background: rgba(18, 8, 6, 0.72);
  border-bottom: 1px solid rgba(240, 193, 75, 0.18);
}
.navbar {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}
.theme-toggle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 236, 170, 0.65);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 42%),
    linear-gradient(145deg, #ffe9ad 0%, #f0c14b 48%, #e88925 100%);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(180, 90, 20, 0.28);
  font-size: 1.15rem;
  line-height: 1;
  padding: 0;
}
.theme-toggle__sun { display: none; }
html.theme-dark .theme-toggle__moon { display: none; }
html.theme-dark .theme-toggle__sun { display: inline; }
@media (min-width: 981px) {
  .navbar__actions {
    order: 3;
    margin-left: 0.5rem;
  }
  .menu {
    order: 2;
    flex: 1;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
}
.brand__logo {
  display: block;
  height: 58px;
  width: auto;
  max-width: min(240px, 48vw);
  object-fit: contain;
  filter: none;
  transition: transform 0.3s ease;
}
.brand:hover .brand__logo {
  transform: scale(1.03);
}
.brand__logo--footer {
  height: 72px;
  max-width: 280px;
  filter: none;
  margin-bottom: 0.6rem;
}
.brand__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-dev);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--maroon-deep);
  background: linear-gradient(145deg, var(--gold), #fff1b8 45%, var(--saffron));
  box-shadow:
    0 10px 24px rgba(240, 193, 75, 0.35),
    inset 0 2px 8px rgba(255, 255, 255, 0.55);
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}
.brand:hover .brand__mark { transform: rotateY(18deg) rotateX(8deg) scale(1.05); }
.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.brand small { display: block; opacity: 0.75; font-size: 0.82rem; }

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}
.menu > li {
  display: flex;
}
.menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  color: #3a0a08;
  text-decoration: none;
  white-space: nowrap;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 42%),
    linear-gradient(145deg, #ffe9ad 0%, #f0c14b 48%, #e88925 100%);
  border: 1px solid rgba(255, 236, 170, 0.7);
  box-shadow:
    0 6px 14px rgba(180, 90, 20, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.menu a:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #2a0806;
  box-shadow:
    0 10px 20px rgba(180, 90, 20, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.menu a.is-active {
  color: #fffdf8;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(145deg, #c45d12 0%, #8a1f12 55%, #3a0a08 100%);
  border-color: rgba(240, 193, 75, 0.55);
  box-shadow:
    0 0 0 2px rgba(240, 193, 75, 0.35),
    0 8px 18px rgba(90, 20, 10, 0.4),
    inset 0 1px 0 rgba(255, 231, 160, 0.25);
}
.cart-link {
  color: #3a0a08 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 40%),
    linear-gradient(135deg, #ffd27a, #f0c14b 40%, #e88925 100%) !important;
}
.cart-link:hover {
  color: #2a0806 !important;
}
.cart-link.is-active {
  color: #fffdf8 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(145deg, #c45d12 0%, #8a1f12 55%, #3a0a08 100%) !important;
}
.cart-link.is-active em {
  background: rgba(255, 231, 160, 0.2);
  color: #ffe7a0;
}
.cart-link em {
  min-width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(58, 10, 8, 0.88);
  color: #ffe7a0;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
}
.menu-live {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
}
.menu-live .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff2d2d;
  box-shadow: 0 0 0 0 rgba(255, 45, 45, 0.7);
  animation: livePulse 1.4s infinite;
  flex-shrink: 0;
}
.menu-live.is-active .live-dot {
  background: #ff6b5a;
  box-shadow: 0 0 0 0 rgba(255, 107, 90, 0.7);
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.65); }
  70% { box-shadow: 0 0 0 8px rgba(255, 59, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

.live-tv {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
.live-tv--page {
  max-width: 980px;
  margin: 0 auto;
}
.live-tv__chrome {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, #1a0c08, #2c1210 50%, #140806);
  border: 1px solid rgba(240, 193, 75, 0.35);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  transform: perspective(1200px) rotateY(-4deg);
  transition: transform 0.35s ease;
}
.live-tv:hover .live-tv__chrome {
  transform: perspective(1200px) rotateY(0deg) translateY(-4px);
}
.live-tv__top,
.live-tv__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #ffe7a0;
  font-size: 0.92rem;
}
.live-tv__top strong {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff8e7;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 40, 40, 0.18);
  border: 1px solid rgba(255, 80, 80, 0.45);
  color: #ffb4b0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3b30;
  animation: livePulse 1.4s infinite;
}
.live-tv__unmute {
  border: 1px solid rgba(240,193,75,0.35);
  background: rgba(240,193,75,0.12);
  color: #ffe7a0;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
}
.live-tv__screen {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #000;
}
.live-tv__screen--large {
  aspect-ratio: 16 / 9;
}
.live-tv__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.live-tv__video {
  object-fit: contain;
  background: #000;
}
.live-tv__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.35rem;
  background:
    radial-gradient(circle at 50% 40%, rgba(240,193,75,0.2), transparent 55%),
    linear-gradient(145deg, #3a0a08, #120806);
  color: #fff8e7;
}
.live-tv__om {
  font-family: var(--font-dev);
  font-size: 3rem;
  color: #f0c14b;
}
.live-tv__placeholder p { margin: 0; font-weight: 600; }
.live-tv__placeholder small { color: rgba(255,248,235,0.65); }
.live-tv__bottom {
  border-top: 1px solid rgba(240,193,75,0.15);
  color: rgba(255,248,235,0.75);
}
.live-tv__bottom a { color: #f0c14b; font-weight: 600; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 236, 170, 0.65);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 42%),
    linear-gradient(145deg, #ffe9ad 0%, #f0c14b 48%, #e88925 100%);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 11px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(180, 90, 20, 0.28);
}
.menu-toggle span {
  display: block;
  height: 2.5px;
  background: #3a0a08;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero--banner {
  align-items: center;
}
.hero__layout--solo {
  grid-template-columns: minmax(280px, 520px) 1fr;
  align-items: center;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #120806;
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none !important;
}
.hero__photo,
.hero__file-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  border: 0;
  pointer-events: none !important;
  z-index: 0;
  transform: scale(1.05);
}
.hero__photo {
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  animation: heroKen 18s ease-in-out infinite alternate;
}
.hero__yt,
.hero__video iframe {
  position: absolute;
  top: 50%;
  left: 58%;
  width: 100vw;
  height: 56.25vw;
  min-height: 115%;
  min-width: 177.78vh;
  transform: translate(-42%, -50%) scale(1.35);
  border: 0;
  filter: brightness(1.1) contrast(1.06) saturate(1.08);
  pointer-events: none !important;
  z-index: 0;
}
.hero__video iframe {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero__video.is-playing iframe {
  opacity: 1;
}
@keyframes heroKen {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(90, 8, 6, 0.9) 0%, rgba(120, 18, 12, 0.78) 22%, rgba(140, 28, 18, 0.48) 42%, rgba(160, 40, 25, 0.22) 65%, rgba(90, 8, 6, 0.18) 100%),
    linear-gradient(180deg, rgba(90, 8, 6, 0.38) 0%, transparent 42%, rgba(70, 6, 4, 0.52) 100%);
}
.hero__red-bar {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none !important;
  height: 18%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(140, 18, 12, 0.35) 40%, rgba(90, 8, 6, 0.72) 100%);
}
.hero__tap {
  position: absolute;
  inset: 0;
  z-index: 4;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(18, 8, 6, 0.04);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: auto !important;
}
.hero__tap-hint {
  margin: 0 0.85rem 0.85rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(18, 8, 6, 0.72);
  color: #ffe7a0;
  font-size: 0.82rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.hero__tap.is-unmuted .hero__tap-hint {
  opacity: 0;
}
.hero__layout {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.75rem;
  align-items: center;
  padding: 6.5rem 0 4.5rem;
  pointer-events: none;
}
.hero__content,
.hero__card {
  position: relative;
  z-index: 6;
  max-width: 460px;
  padding: 1.5rem 1.5rem 1.55rem;
  border-radius: 28px;
  background: linear-gradient(160deg, #fffdf8 0%, #fff4dc 100%);
  border: 1px solid rgba(240, 193, 75, 0.35);
  box-shadow: 0 22px 50px rgba(120, 18, 12, 0.42), 0 8px 24px rgba(90, 8, 6, 0.28);
  backdrop-filter: none;
  pointer-events: auto;
}
.hero__eyebrow {
  margin: 0 0 0.65rem;
  color: var(--saffron);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.hero__logo {
  display: block;
  width: min(100%, 340px);
  height: auto;
  margin: 0 auto 0.85rem;
  filter: none;
  background: transparent;
}
.hero__tagline {
  margin: 0 0 1.2rem;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.55;
  text-shadow: none;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero__live {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.05s ease 0.25s both;
}
.eyebrow {
  display: inline-block;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease both;
}
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  line-height: 0.95;
  font-weight: 700;
  color: #fff8e7;
  text-shadow: 0 4px 18px rgba(0,0,0,0.45), 0 12px 40px rgba(0,0,0,0.3);
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  animation: fadeUp 1.1s ease 0.3s both;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #3a0a08;
  box-shadow: 0 14px 30px rgba(232, 137, 37, 0.35);
}
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(240,193,75,0.35);
}
.btn--dark {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--gold-soft);
}
.btn--light {
  background: var(--white);
  color: var(--maroon);
}

.section {
  padding: 5rem 0;
}
.section--panel {
  background: var(--section-panel-bg);
}
.section-kicker {
  color: var(--saffron);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 0.5rem;
}
.section-heading {
  margin-bottom: 2.2rem;
}
.section-heading h2,
.intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--maroon-deep);
}

.page-hero {
  position: relative;
  padding: 4.8rem 0 2.6rem;
  color: #fff8e7;
  overflow: hidden;
  isolation: isolate;
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(58, 10, 8, 0.88) 0%, rgba(107, 20, 16, 0.72) 42%, rgba(58, 10, 8, 0.62) 100%),
    linear-gradient(180deg, rgba(26, 8, 6, 0.35) 0%, rgba(26, 8, 6, 0.15) 55%, rgba(26, 8, 6, 0.55) 100%),
    var(--page-hero-image, none) center / cover no-repeat;
  transform: scale(1.02);
}
.page-hero__content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: #ffe7a0;
  text-shadow: 0 8px 28px rgba(58, 10, 8, 0.55);
}
.page-hero .eyebrow {
  color: #f0c14b;
}
.page-hero p {
  color: rgba(255, 248, 235, 0.92);
  max-width: 40rem;
  font-size: 1.05rem;
}

/* Home section title banners with AI backgrounds */
.section-banner {
  position: relative;
  margin: 0 0 1.75rem;
  padding: 2.1rem 1.4rem 1.85rem;
  border-radius: 22px;
  overflow: hidden;
  color: #fff8e7;
  isolation: isolate;
}
.section-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(58, 10, 8, 0.86) 0%, rgba(107, 20, 16, 0.7) 50%, rgba(58, 10, 8, 0.58) 100%),
    var(--section-banner-image, none) center / cover no-repeat;
}
.section-banner .section-heading {
  position: relative;
  z-index: 1;
  margin: 0;
}
.section-banner .section-kicker {
  color: #f0c14b;
}
.section-banner h2 {
  color: #ffe7a0 !important;
  text-shadow: 0 6px 22px rgba(58, 10, 8, 0.5);
}
.section-banner--center,
.section-banner--center .section-heading {
  text-align: center;
}
.section-banner--center p {
  margin-inline: auto;
}

/* Astrology premium hero */
.astro-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0 3rem;
  color: #fff8e7;
}
.astro-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 45%, rgba(240,193,75,0.22), transparent 35%),
    radial-gradient(circle at 20% 20%, rgba(232,137,37,0.18), transparent 40%),
    linear-gradient(135deg, #1a0a08 0%, #3a120c 45%, #1f0d08 100%);
}
.astro-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.astro-hero__copy h1 {
  margin: 0.35rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.98;
  color: #ffe7a0;
  text-shadow: 0 12px 36px rgba(0,0,0,0.4);
}
.astro-hero__copy p {
  margin: 0 0 1.5rem;
  color: rgba(255,248,235,0.9);
  font-size: 1.12rem;
  max-width: 34rem;
}
.astro-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.astro-wheels {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.astro-wheel {
  position: absolute;
  border-radius: 50%;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.45));
  will-change: transform;
}
.astro-wheel--single {
  position: relative;
  width: min(400px, 78vw);
  height: min(400px, 78vw);
  animation: spinWheel 32s linear infinite;
  z-index: 2;
}
.astro-wheel--back {
  width: min(420px, 78vw);
  height: min(420px, 78vw);
  opacity: 0.55;
  animation: spinWheel 48s linear infinite reverse;
}
.astro-wheel--front {
  width: min(340px, 64vw);
  height: min(340px, 64vw);
  animation: spinWheel 28s linear infinite;
  z-index: 2;
}
.astro-wheel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}
.astro-wheel-glow {
  position: absolute;
  width: min(280px, 55vw);
  height: min(280px, 55vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,193,75,0.35), transparent 68%);
  filter: blur(8px);
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes spinWheel {
  to { transform: rotate(360deg); }
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .astro-wheel--back,
  .astro-wheel--front,
  .astro-wheel--single,
  .astro-wheel-glow,
  .home-astro-section__bg img,
  .hero__media img {
    animation: none !important;
  }
}

.home-astro-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #2a100c 0%, #4a1810 40%, #f4ebdb 100%);
  padding: 5rem 0;
}
.home-astro-section .section-kicker { color: #f0c14b; }
.home-astro-section .section-heading h2 { color: #ffe7a0; }
.home-astro-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: grid;
  place-items: center;
  opacity: 0.22;
}
.home-astro-section__bg img {
  width: min(720px, 90vw);
  height: auto;
  animation: spinWheel 60s linear infinite;
  filter: drop-shadow(0 0 40px rgba(240,193,75,0.25));
}

.astro-section-title h2 {
  color: var(--maroon-deep);
}
.rashi-card {
  background: linear-gradient(160deg, #8b1e16 0%, #6b1410 55%, #4a0e0a 100%) !important;
  border: 1px solid rgba(240, 193, 75, 0.28) !important;
  color: #fff8e7 !important;
  box-shadow: 0 16px 36px rgba(74, 14, 10, 0.28) !important;
}
.rashi-card .sign {
  color: #f0c14b !important;
}
.rashi-card h3 {
  color: #ffffff !important;
}
.rashi-card p,
.rashi-card small {
  color: rgba(255, 248, 235, 0.92) !important;
}
.card-body h3 {
  color: var(--maroon-deep);
}
.card-body p {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid,
.product-grid,
.service-grid,
.program-grid,
.video-grid,
.rashi-grid {
  display: grid;
  gap: 1.25rem;
}
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.product-grid, .service-grid { grid-template-columns: repeat(4, 1fr); }
.program-grid, .video-grid { grid-template-columns: repeat(3, 1fr); }
.rashi-grid { grid-template-columns: repeat(4, 1fr); }

.card-3d {
  perspective: 1200px;
}
.card-3d__inner {
  position: relative;
  height: 100%;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,253,248,0.95), rgba(255,244,220,0.88));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease;
  overflow: hidden;
}
.card-3d:hover .card-3d__inner {
  transform: rotateY(-8deg) rotateX(6deg) translateY(-8px);
  box-shadow: 0 30px 70px rgba(58, 10, 8, 0.28);
}
.card-media {
  aspect-ratio: 1.15 / 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.55), transparent 40%),
    linear-gradient(145deg, #6b1410, #e88925 55%, #f0c14b);
  color: #fff8e7;
  font-family: var(--font-dev);
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.card-3d:hover .card-media img {
  transform: scale(1.08);
}
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18,8,6,0.28));
  pointer-events: none;
}
.card-media:has(img)::after {
  background: linear-gradient(180deg, transparent 40%, rgba(18,8,6,0.35));
}
.card-body { padding: 1.15rem 1.2rem 1.35rem; }
.card-body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--maroon-deep);
}
.card-body p { margin: 0 0 1rem; color: var(--muted); font-size: 0.95rem; }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.price {
  font-weight: 700;
  color: var(--maroon);
  font-size: 1.15rem;
}
.price s {
  color: var(--muted);
  font-weight: 500;
  margin-left: 0.35rem;
  font-size: 0.9rem;
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(18,8,6,0.75);
  color: var(--gold);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.about-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(240,193,75,0.12), transparent 40%),
    linear-gradient(180deg, rgba(255,253,248,0.92), rgba(247,239,226,0.98));
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 1.8rem;
}
.about-visual {
  position: sticky;
  top: 110px;
  display: grid;
  place-items: center;
}
.about-visual__frame {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 1.4rem;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255,253,248,0.95), rgba(255,244,220,0.88));
  border: 1px solid rgba(240,193,75,0.35);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(6deg);
  transition: transform 0.4s ease;
}
.about-visual:hover .about-visual__frame {
  transform: perspective(1000px) rotateY(0deg) translateY(-6px);
}
.about-visual__frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: none;
  background: transparent;
}
.about-visual__glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,137,37,0.35), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}
.about-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  color: var(--maroon-deep);
  line-height: 1.2;
}
.about-lead {
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 0.9rem;
}
.about-copy > p {
  color: var(--muted);
  margin: 0 0 0.85rem;
  line-height: 1.7;
}
.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 1.6rem;
}
.about-points div {
  padding: 1.05rem 1.1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(107,20,16,0.95), rgba(58,10,8,0.95));
  color: #fff8e7;
  box-shadow: 0 12px 28px rgba(58,10,8,0.18);
  min-height: 100%;
}
.about-points strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #f0c14b;
  margin-bottom: 0.25rem;
}
.about-points span {
  opacity: 0.85;
  font-size: 0.92rem;
  line-height: 1.45;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.stats {
  display: grid;
  gap: 0.9rem;
}
.stats div {
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(107,20,16,0.95), rgba(58,10,8,0.95));
  color: var(--gold-soft);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform 0.3s ease;
}
.stats div:hover { transform: translateX(8px) scale(1.02); }
.stats strong { display: block; font-family: var(--font-display); font-size: 1.4rem; }
.stats span { opacity: 0.8; font-size: 0.92rem; }

.program-card, .video-card, .rashi-card {
  padding: 1.3rem;
  border-radius: var(--radius);
  background: rgba(255,253,248,0.9);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(58,10,8,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.program-card:hover, .video-card:hover, .rashi-card:hover {
  transform: translateY(-8px) rotateX(4deg);
  box-shadow: var(--shadow);
}
.program-card time, .rashi-card .sign {
  color: var(--saffron);
  font-weight: 700;
}
.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  overflow: hidden;
  background: linear-gradient(145deg, #3a0a08, #e88925);
  color: #fff;
  font-size: 2rem;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-thumb:hover img { transform: scale(1.06); }
.play-btn {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(200, 16, 16, 0.92);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  font-size: 1.1rem;
  pointer-events: none;
}

.video-modal[hidden] { display: none !important; }
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 6, 4, 0.82);
  backdrop-filter: blur(4px);
}
.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: linear-gradient(160deg, #2a1410, #160a08);
  border: 1px solid rgba(240, 193, 75, 0.28);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.video-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(240, 193, 75, 0.16);
}
.video-modal__top h3 {
  margin: 0;
  color: #ffe7a0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.35;
}
.video-modal__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.video-modal__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
body.video-modal-open {
  overflow: hidden;
}

.section-heading--center { text-align: center; }
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.event-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(107,20,16,0.08);
  box-shadow: 0 18px 44px rgba(58,10,8,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.event-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #3a0a08;
}
.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.event-card:hover .event-card__media img { transform: scale(1.07); }
.event-card__body {
  padding: 1.15rem 1.2rem 1.4rem;
  text-align: center;
}
.event-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 0.7rem;
  color: var(--saffron);
  font-size: 0.9rem;
  font-weight: 600;
}
.event-card__body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: var(--maroon-deep);
  font-size: 1.45rem;
}
.event-card__body p {
  color: var(--muted);
  margin: 0 0 1rem;
}
.event-card__body .btn { margin-inline: auto; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.photo-card {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform 0.35s ease;
}
.photo-card:hover { transform: translateY(-8px) scale(1.01); }
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(18,8,6,0.85));
  color: #fff8e7;
  display: grid;
  gap: 0.15rem;
}
.photo-card strong { font-family: var(--font-display); font-size: 1.15rem; }
.photo-card span { opacity: 0.85; font-size: 0.88rem; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.chip {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(107,20,16,0.18);
  background: rgba(255,255,255,0.7);
  color: var(--maroon);
}
.chip.is-active, .chip:hover {
  background: var(--maroon);
  color: var(--gold);
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.search-form {
  display: flex;
  gap: 0.5rem;
}
.search-form input,
.form-control {
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(107,20,16,0.16);
  background: rgba(255,255,255,0.85);
  padding: 0.65rem 0.9rem;
  outline: none;
}
.search-form input:focus, .form-control:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(232,137,37,0.15);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.product-showcase {
  border-radius: 28px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-size: 6rem;
  font-family: var(--font-dev);
  color: #fff8e7;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.35), transparent 40%),
    linear-gradient(145deg, #3a0a08, #e88925 50%, #f0c14b);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-8deg);
  animation: showcaseTilt 7s ease-in-out infinite alternate;
}
.product-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-showcase:has(img) {
  font-size: 0;
}
@keyframes showcaseTilt {
  from { transform: perspective(1000px) rotateY(-10deg) rotateX(4deg); }
  to { transform: perspective(1000px) rotateY(8deg) rotateX(-2deg); }
}

.qty-row { display: flex; gap: 0.75rem; align-items: center; margin: 1.2rem 0; }
.qty-row input { width: 90px; }

.cart-table, .admin-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,253,248,0.92);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cart-table th, .cart-table td,
.admin-table th, .admin-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(107,20,16,0.08);
}
.checkout-grid, .contact-grid, .astro-detail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}
.panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  gap: 0.9rem;
}
.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--maroon-deep);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.flash {
  margin: 1rem auto;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  font-weight: 600;
}
.flash--success { background: #e8f6ee; color: #1f5c45; }
.flash--error { background: #fde8e6; color: #6b1410; }

.footer {
  position: relative;
  margin-top: 3rem;
  padding: 3rem 0 0;
  color: rgba(255,248,235,0.85);
  overflow: hidden;
  isolation: isolate;
  background: #120806;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(42, 18, 16, 0.88), rgba(18, 8, 6, 0.92)),
    url("/images/banners/bg-section-common.png") center / cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
}
.footer > * {
  position: relative;
  z-index: 1;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer a { display: block; margin: 0.35rem 0; color: var(--gold-soft); }
.footer h4 { color: var(--gold); margin: 0 0 0.8rem; font-family: var(--font-display); font-size: 1.3rem; }
.footer__bottom {
  border-top: 1px solid rgba(240, 193, 75, 0.18);
  padding: 1rem 0 1.25rem;
  text-align: center;
}
.footer__copy {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: rgba(255, 248, 235, 0.72);
}
.muted { opacity: 0.7; }
.brand--footer { margin-bottom: 0.8rem; }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 248, 235, 0.08);
  border: 1px solid rgba(240, 193, 75, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}
.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(240, 193, 75, 0.16);
}
.footer-social svg {
  width: 22px;
  height: 22px;
  display: block;
}
.footer-social a.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}
.footer__about {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 248, 235, 0.82);
}

.pagination {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 2rem;
}
.pagination a, .pagination span {
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(107,20,16,0.12);
}

@media (max-width: 980px) {
  .feature-grid, .product-grid, .service-grid, .rashi-grid, .photo-grid, .event-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid, .product-detail, .checkout-grid, .contact-grid, .astro-detail, .footer__grid, .astro-hero__grid, .hero__layout, .about-grid { grid-template-columns: 1fr; }
  .program-grid, .video-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .about-visual { position: relative; top: auto; }
  .home-astro-section .service-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .astro-wheels { min-height: 360px; order: -1; }
  .live-tv { max-width: 100%; margin: 0; }
  .live-tv__chrome { transform: none; }

  /* Mobile hero: bottom red shadow + compact card (logo → Shop → Live) */
  .hero.hero--banner {
    min-height: 78vh;
    min-height: 78svh;
    align-items: end;
  }
  .hero__shade {
    background:
      linear-gradient(180deg, rgba(90, 8, 6, 0.18) 0%, transparent 42%, transparent 100%),
      linear-gradient(90deg, rgba(90, 8, 6, 0.2) 0%, transparent 60%);
  }
  .hero__tap-hint {
    margin: 0.75rem 0.75rem auto auto;
    align-self: flex-start;
    font-size: 0.72rem;
  }
  .hero__tap {
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 0.5rem;
  }
  .hero__layout {
    position: relative;
    z-index: 3;
    padding: 0 0 1rem;
    width: 100%;
  }
  .hero__layout--solo {
    grid-template-columns: 1fr;
    justify-items: stretch;
    align-items: end;
  }
  .hero__content,
  .hero__card {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.45rem;
    max-width: min(100%, calc(100vw - 1.5rem));
    width: auto;
    margin: 0;
    padding: 0.45rem 0.5rem;
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(120, 18, 12, 0.45);
  }
  .hero__eyebrow,
  .hero__tagline {
    display: none;
  }
  .hero__logo {
    order: 1;
    width: 52px;
    min-width: 52px;
    height: auto;
    margin: 0;
    flex-shrink: 0;
  }
  .hero__actions {
    order: 2;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    flex: 1;
  }
  .hero__actions .btn {
    width: auto;
    flex: 1;
    min-height: 34px;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    white-space: nowrap;
    border-radius: 999px;
  }
  .hero__actions .btn--primary { order: 1; }
  .hero__actions .btn--dark {
    order: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
  }
  .hero__actions .live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff2d2d;
    box-shadow: 0 0 0 0 rgba(255, 45, 45, 0.7);
    animation: livePulse 1.4s ease infinite;
    flex-shrink: 0;
  }
  .hero__yt,
  .hero__video iframe {
    left: 50%;
    top: 38%;
    transform: translate(-50%, -50%) scale(1.08);
    min-height: 100%;
    min-width: 177.78vh;
    filter: brightness(1.12) contrast(1.05) saturate(1.05);
  }

  .section-banner { padding: 1.6rem 1.1rem 1.4rem; border-radius: 18px; }
  .page-hero { padding: 3.6rem 0 2rem; }
  .navbar { min-height: 68px; gap: 0.75rem; }
  .brand__logo { height: 48px; }
  .menu-toggle { display: flex; }
  .menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0.75rem;
    right: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.55rem;
    padding: 0.9rem;
    background:
      linear-gradient(180deg, rgba(42, 18, 14, 0.98), rgba(18, 8, 6, 0.98));
    border: 1px solid rgba(240, 193, 75, 0.28);
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
    max-height: min(78vh, 640px);
    overflow: auto;
    z-index: 90;
  }
  .menu.is-open { display: flex; }
  .menu > li { width: 100%; }
  .menu a {
    width: 100%;
    min-height: 46px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    justify-content: center;
    border-radius: 14px;
  }
  .topbar__inner { font-size: 0.82rem; justify-content: center; }
}

@media (max-width: 640px) {
  .feature-grid, .product-grid, .service-grid, .rashi-grid, .form-row, .photo-grid, .event-grid,
  .home-astro-section .service-grid { grid-template-columns: 1fr !important; }
  .topbar__inner span { display: none; }
  .hero.hero--banner {
    min-height: 72vh;
    min-height: 72svh;
  }
  .hero__content,
  .hero__card {
    max-width: min(100%, calc(100vw - 1.1rem));
    padding: 0.4rem 0.45rem;
    gap: 0.35rem;
  }
  .hero__logo { width: 44px; min-width: 44px; margin: 0; }
  .hero__red-bar { height: 48%; }
  .hero__actions .btn { min-height: 32px; font-size: 0.72rem; padding: 0.3rem 0.55rem; }
  .hero__yt,
  .hero__video iframe {
    left: 54%;
    top: 40%;
    transform: translate(-50%, -50%) scale(1.15);
  }
  .about-actions { flex-direction: column; }
  .about-actions .btn { width: 100%; }
  .container { width: min(1180px, calc(100% - 1.25rem)); }
  .section { padding-block: 2.4rem; }
  .cart-link em { min-width: 1.4rem; }
  .footer p { font-size: 0.95rem; line-height: 1.7; }
}

/* Legal pages */
.legal-content h2 {
  font-family: var(--font-display);
  color: var(--maroon-deep);
  font-size: 1.45rem;
  margin: 1.6rem 0 0.55rem;
}
.legal-content ul { padding-left: 1.2rem; }
.legal-content li { margin: 0.35rem 0; }
.legal-content a { color: var(--saffron); text-decoration: underline; }

/* Dark mode — readable text + surfaces */
html.theme-dark .site-header {
  background: rgba(8, 4, 3, 0.92);
}
html.theme-dark .about-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(240, 193, 75, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(22, 12, 10, 0.96), rgba(14, 8, 6, 0.98));
  color: #f3e7d5;
}
html.theme-dark .section,
html.theme-dark .section--panel {
  color: #f3e7d5;
}
html.theme-dark .section-kicker,
html.theme-dark .eyebrow {
  color: #f0c14b;
}
html.theme-dark .section-heading h2,
html.theme-dark .intro h2,
html.theme-dark .about-copy h2,
html.theme-dark .legal-content h2,
html.theme-dark .event-card__body h3,
html.theme-dark .video-card h3,
html.theme-dark .program-card h3,
html.theme-dark .card-body h3,
html.theme-dark .astro-section-title h2,
html.theme-dark .astro-hero__copy h1,
html.theme-dark .astro-hero__copy h2,
html.theme-dark .footer h3,
html.theme-dark .footer h4,
html.theme-dark .panel h2,
html.theme-dark .panel h3 {
  color: #ffe7a0 !important;
}
html.theme-dark .about-lead,
html.theme-dark .about-copy > p,
html.theme-dark .card-body p,
html.theme-dark .event-card__body p,
html.theme-dark .video-card p,
html.theme-dark .legal-content p,
html.theme-dark .legal-content li,
html.theme-dark .section-heading p,
html.theme-dark .intro p,
html.theme-dark .muted,
html.theme-dark .footer p,
html.theme-dark .footer a {
  color: #d4c4b0 !important;
}
html.theme-dark .price {
  color: #ffb347 !important;
}
html.theme-dark .price s {
  color: #9a8a7a !important;
}
html.theme-dark .event-meta {
  color: #f0c14b !important;
}

html.theme-dark .card-3d__inner,
html.theme-dark .event-card,
html.theme-dark .video-card,
html.theme-dark .program-card,
html.theme-dark .panel,
html.theme-dark .form-control,
html.theme-dark input:not([type="radio"]):not([type="checkbox"]),
html.theme-dark textarea,
html.theme-dark select {
  background: #241611 !important;
  color: #f3e7d5 !important;
  border-color: rgba(240, 193, 75, 0.28) !important;
}
/* About logo card stays cream like light mode */
html.theme-dark .about-visual__frame {
  background: linear-gradient(160deg, rgba(255, 253, 248, 0.98), rgba(255, 244, 220, 0.95)) !important;
  border-color: rgba(240, 193, 75, 0.35) !important;
}
html.theme-dark .rashi-card {
  color: #fff8e7;
}
html.theme-dark .flash--success { background: #163226; color: #8dffc5; }
html.theme-dark .flash--error { background: #3a1410; color: #ffb4a8; }

html.theme-dark .chip {
  background: rgba(36, 22, 17, 0.9);
  border-color: rgba(240, 193, 75, 0.28);
  color: #ffe7a0;
}
html.theme-dark .chip.is-active,
html.theme-dark .chip:hover {
  background: var(--maroon);
  color: var(--gold);
}

/* Hero banner — always same as light mode */
html.theme-dark .hero.hero--banner .hero__content,
html.theme-dark .hero.hero--banner .hero__card {
  background: linear-gradient(160deg, #fffdf8 0%, #fff4dc 100%) !important;
  color: #1a1410 !important;
  border: 1px solid rgba(240, 193, 75, 0.35) !important;
  box-shadow: 0 22px 50px rgba(120, 18, 12, 0.42), 0 8px 24px rgba(90, 8, 6, 0.28) !important;
}
html.theme-dark .hero.hero--banner .hero__eyebrow {
  color: #e88925 !important;
}
html.theme-dark .hero.hero--banner .hero__tagline {
  color: #7a6a5c !important;
}
html.theme-dark .hero.hero--banner .hero__tap-hint {
  background: rgba(18, 8, 6, 0.72) !important;
  color: #ffe7a0 !important;
}
