/* Eco Ganesh Art — Professional Design System */
:root {
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  --color-bg: #F8F7F4;
  --color-surface: #FFFFFF;
  --color-surface-elevated: #FFFFFF;
  --color-border: #E7E5E4;
  --color-border-strong: #D6D3D1;
  --color-text: #1C1917;
  --color-text-secondary: #44403C;
  --color-text-muted: #78716C;
  --color-brand: #9A3412;
  --color-brand-light: #C2410C;
  --color-accent: #166534;
  --color-accent-light: #22C55E;
  --color-gold: #A16207;

  --gradient-brand: linear-gradient(135deg, #9A3412 0%, #C2410C 100%);
  --gradient-subtle: linear-gradient(180deg, #F8F7F4 0%, #FFFFFF 100%);
  --gradient-hero-overlay: linear-gradient(105deg, rgba(28, 25, 23, 0.92) 0%, rgba(28, 25, 23, 0.55) 45%, rgba(28, 25, 23, 0.35) 100%);

  --header-h: 72px;
  --announce-h: 36px;
  --site-top: calc(var(--announce-h) + var(--header-h));
  --container: min(1200px, 100% - 3rem);
  --container-narrow: min(720px, 100% - 3rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --section-y: clamp(2rem, 4vw, 5rem);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(28, 25, 23, 0.04);
  --shadow-sm: 0 2px 8px rgba(28, 25, 23, 0.06);
  --shadow-md: 0 8px 24px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 16px 48px rgba(28, 25, 23, 0.1);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.25s var(--ease);
}


[data-theme="dark"] {
  --color-bg: #0C0A09;
  --color-surface: #1C1917;
  --color-surface-elevated: #292524;
  --color-border: #292524;
  --color-border-strong: #44403C;
  --color-text: #FAFAF9;
  --color-text-secondary: #E7E5E4;
  --color-text-muted: #A8A29E;
  --gradient-subtle: linear-gradient(180deg, #0C0A09 0%, #1C1917 100%);
  --gradient-hero-overlay: linear-gradient(105deg, rgba(12, 10, 9, 0.95) 0%, rgba(12, 10, 9, 0.7) 50%, rgba(12, 10, 9, 0.5) 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { width: var(--container); margin-inline: auto; }
.container--narrow { width: var(--container-narrow); margin-inline: auto; }

.skip-link {
  position: absolute; top: -100%; left: var(--space-4); z-index: 10001;
  padding: var(--space-2) var(--space-4);
  background: var(--color-brand); color: #fff; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.875rem;
}
.skip-link:focus { top: var(--space-4); }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--gradient-brand); z-index: 10002;
}

/* Announcement */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  height: var(--announce-h);
  display: flex; align-items: center; justify-content: center;
  background: var(--color-brand);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0 var(--space-4);
  text-align: center;
}
.announce-bar a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Header */
.site-header {
  position: fixed;
  top: var(--announce-h);
  left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), transform 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--color-surface) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}
.site-header.is-hidden { transform: translateY(calc(-100% - var(--announce-h))); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; width: var(--container); margin-inline: auto;
}

.logo {
  display: flex; align-items: center; gap: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand);
  border-radius: var(--radius-md);
  color: #fff;
}
.logo-icon svg { width: 20px; height: 20px; }
.logo span { color: var(--color-brand-light); }

.nav-list { display: flex; gap: var(--space-8); }
.nav-list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition);
  position: relative;
}
.nav-list a:hover,
.nav-list a.is-active { color: var(--color-text); }
.nav-list a.is-active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--color-brand-light);
  border-radius: var(--radius-full);
}



.header-actions { display: flex; align-items: center; gap: var(--space-2); }
.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  transition: background var(--transition), color var(--transition);
}
.icon-btn:hover { background: var(--color-border); color: var(--color-text); }
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

.menu-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
}
.menu-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--color-text);
  margin-inline: auto;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed; inset: 0; z-index: 999;
  background: var(--color-bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.mobile-drawer.is-open { opacity: 1; visibility: visible; }
.mobile-drawer a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  padding: var(--space-4) 0;
  color: var(--color-text);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem; font-weight: 600;
  border-radius: var(--radius-full);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
}
.btn--secondary:hover { border-color: var(--color-brand-light); color: var(--color-brand-light); }
.btn--ghost {
  color: var(--color-text);
  border: 1px solid color-mix(in srgb, #fff 30%, transparent);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--whatsapp { background: #128C7E; color: #fff; }
.btn--whatsapp:hover { background: #0F7A6E; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn--lg { padding: 0.875rem 1.75rem; font-size: 1rem; }

/* Typography blocks */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-brand-light);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--color-brand-light);
}
.section-head { margin-bottom: var(--space-10); max-width: 640px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .section-desc { margin-inline: auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.link-arrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-weight: 600; font-size: 0.9375rem;
  color: var(--color-brand-light);
  margin-top: var(--space-6);
  transition: gap var(--transition);
}
.link-arrow:hover { gap: var(--space-3); }
.link-arrow::after { content: '→'; }

.section { padding-block: var(--section-y); }
.section--alt { background: var(--color-surface); border-block: 1px solid var(--color-border); }
.section-foot { text-align: center; margin-top: var(--space-10); }

/* Hero — upgraded */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: var(--site-top);
  padding-bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.logo--brand img { height: 60px; width: auto; max-width: 300px; object-fit: contain; }
.page-home .site-header:not(.is-scrolled) .logo--brand img { filter: brightness(0) invert(1); }
.footer-brand .logo--img img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(12, 10, 9, 0.94) 0%, rgba(12, 10, 9, 0.75) 42%, rgba(12, 10, 9, 0.45) 68%, rgba(12, 10, 9, 0.55) 100%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 { width: 420px; height: 420px; background: rgba(194, 65, 12, 0.35); top: 10%; left: -8%; }
.hero__orb--2 { width: 360px; height: 360px; background: rgba(22, 101, 52, 0.25); bottom: 15%; right: 20%; }

.hero__grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-10);
  align-items: center;
  padding-block: var(--space-10) var(--space-8);
}
.hero__copy { color: #fff; max-width: 580px; }
.hero__pills { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-5); }
.pill {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
.pill--outline { background: transparent; border-color: rgba(252, 211, 77, 0.5); color: #FCD34D; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: var(--space-5);
}
.hero__title-accent {
  background: linear-gradient(135deg, #FCD34D 0%, #FB923C 50%, #F472B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--space-8);
  max-width: 520px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-8); }
.hero .btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.hero .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}
.hero__meta { padding-top: var(--space-5); border-top: 1px solid rgba(255, 255, 255, 0.12); }
.hero__rating {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: 0.9375rem; color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2);
}
.hero__stars { color: #FCD34D; letter-spacing: 2px; }
.hero__locations { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.55); }


.hero__frame-glow {
  position: absolute; inset: -20%;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.35) 0%, transparent 65%);
  z-index: 0;
  animation: heroGlow 4s ease-in-out infinite alternate;
}
@keyframes heroGlow { from { opacity: 0.6; transform: scale(0.95); } to { opacity: 1; transform: scale(1.05); } }
.hero__canvas {
  position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; pointer-events: none;
}
.hero__frame-img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: soft-light;
}
[data-theme="light"] .hero__frame-img { opacity: 0.25; }

.hero__float-card {
  position: absolute;
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 5;
  animation: floatCard 5s ease-in-out infinite;
}
[data-theme="dark"] .hero__float-card {
  background: rgba(28, 25, 23, 0.92);
  color: #fff;
  border: 1px solid var(--color-border);
}
.hero__float-card { bottom: 8%; left: -4%; }
.hero__float-card--price {
  flex-direction: column; align-items: flex-start; gap: 0;
  top: 12%; right: -6%; left: auto; bottom: auto;
  animation-delay: 1.2s;
  padding: var(--space-4) var(--space-5);
}
.hero__float-card--price span { font-size: 0.75rem; color: var(--color-text-muted); }
.hero__float-card--price strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-brand-light); line-height: 1.2; }
.hero__float-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--color-accent) 12%, transparent);
  color: var(--color-accent);
  border-radius: var(--radius-md);
}
.hero__float-card strong { display: block; font-size: 0.9375rem; }
.hero__float-card span { font-size: 0.75rem; color: var(--color-text-muted); }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__stats-bar {
  position: relative; z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 10, 9, 0.6);
  backdrop-filter: blur(16px);
}
.hero__stats-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-block: var(--space-5);
}
.hero__stat-item { text-align: center; flex: 1; min-width: 120px; }
.hero__stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}
.hero__stat-item span { font-size: 0.75rem; color: rgba(255, 255, 255, 0.55); text-transform: uppercase; letter-spacing: 0.06em; }
.hero__stat-divider { width: 1px; height: 36px; background: rgba(255, 255, 255, 0.15); }

.hero__scroll {
  position: absolute; bottom: calc(72px + var(--space-4)); right: var(--space-8);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}
.hero__scroll:hover { color: rgba(255, 255, 255, 0.85); }
.hero__scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  display: flex; justify-content: center;
  padding-top: 6px;
}
.hero__scroll-wheel {
  width: 3px; height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--color-brand);
  color: #fff;
  padding-block: var(--space-3);
  border-block: 1px solid rgba(0, 0, 0, 0.08);
}
.marquee__track {
  display: flex; align-items: center; gap: var(--space-8);
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track span:nth-child(even) { opacity: 0.5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Section utilities */
.section-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-border-strong);
  line-height: 1;
  margin-bottom: var(--space-2);
  opacity: 0.5;
}
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  max-width: none;
}
.section-head--row .section-desc { margin-bottom: 0; }
.section--gradient {
  background: linear-gradient(180deg, var(--color-bg) 0%, color-mix(in srgb, var(--color-brand-light) 6%, var(--color-bg)) 50%, var(--color-bg) 100%);
}

.check-list { margin: var(--space-6) 0; }
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: var(--space-3);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.45em;
  width: 8px; height: 8px;
  background: var(--color-brand-light);
  border-radius: 50%;
}
.feature-card__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.split__media--stacked { position: relative; }
.split__img-main { width: 100%; aspect-ratio: 4/6; object-fit: cover; border-radius: var(--radius-xl); }
.split__img-sub {
  position: absolute;
  bottom: -var(--space-6);
  left: -var(--space-6);
  width: 42%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--color-surface);
  box-shadow: var(--shadow-md);
}

/* Process timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-brand-light), var(--color-accent));
  opacity: 0.25;
}
.process-timeline__step {
  position: relative;
  text-align: center;
  padding: var(--space-6) var(--space-4) 0;
}
.process-timeline__dot {
  width: 56px; height: 56px;
  margin: 0 auto var(--space-5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background: var(--gradient-brand);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
.process-timeline__step h3 { font-size: 1rem; font-weight: 600; margin-bottom: var(--space-2); }
.process-timeline__step p { font-size: 0.8125rem; color: var(--color-text-muted); line-height: 1.55; }

/* Gallery showcase */
.gallery-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-4);
  align-items: stretch;
}
.gallery-showcase__main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0;
}
.gallery-showcase__main img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-showcase__main:hover img { transform: scale(1.03); }
.gallery-showcase__main figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-5);
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}
.gallery-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.gallery-showcase__grid figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; }
.gallery-showcase__grid img { width: 100%; height: 100%; min-height: 140px; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-showcase__grid figure:hover img { transform: scale(1.05); }

/* CTA banner */
.cta-banner {
  padding-block: 0;
  margin-bottom: var(--section-y);
}
.cta-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding: var(--space-12) var(--space-10);
  background: linear-gradient(135deg, #9A3412 0%, #C2410C 40%, #166534 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* FAQ split */
.faq-split {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: var(--space-12);
  align-items: start;
}
.faq-split__intro .section-desc { margin-bottom: var(--space-6); }
.faq-split__cta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-5); }
.accordion--premium .accordion__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
}
.accordion--premium .accordion__trigger { padding: var(--space-5) var(--space-6); font-weight: 600; }
.accordion--premium .accordion__panel { padding: 0 var(--space-6) var(--space-5); }
.accordion--premium .accordion__item.is-open .accordion__panel { max-height: 320px; }

/* Contact premium */
.contact-section { background: linear-gradient(180deg, transparent, rgba(154, 52, 18, 0.04)); }
.contact-split--premium { align-items: start; }
.contact-chips { list-style: none; margin: 0 0 var(--space-8); padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.contact-chips a {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-chips a:hover { border-color: var(--color-brand-light); box-shadow: var(--shadow-sm); }
.contact-chips__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--color-brand-light);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 1.125rem;
}
.contact-chips__text strong { display: block; font-size: 0.9375rem; color: var(--color-text); }
.contact-chips__text > span { font-size: 0.8125rem; color: var(--color-text-muted); }
.form-card--elevated {
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

/* Footer trust bar */
.footer-trust {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-4) 0;
  margin-bottom: var(--space-10);
}
.footer-trust__inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-4) var(--space-6);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
}
.footer-contact-line {
  display: flex; flex-direction: column; gap: var(--space-2);
  margin: var(--space-5) 0;
  font-size: 0.9375rem;
}
.footer-contact-line a { opacity: 0.85; transition: opacity var(--transition); }
.footer-contact-line a:hover { opacity: 1; color: #FCD34D; }
.footer-col__note { font-size: 0.875rem; opacity: 0.7; margin-bottom: 0.5rem; }
.footer-bottom__links a { opacity: 0.6; transition: opacity var(--transition); }
.footer-bottom__links a:hover { opacity: 1; }

.marquee:hover .marquee__track { animation-play-state: paused; }

.countdown-panel--premium {
  background: linear-gradient(135deg, var(--color-surface) 0%, color-mix(in srgb, var(--color-brand-light) 5%, var(--color-surface)) 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.countdown-panel--premium .countdown-panel__value { color: var(--color-brand-light); }

.masonry-preview { columns: 4; }
.masonry__item--tall img { aspect-ratio: 3/4; object-fit: cover; }
.masonry__item--wide { column-span: all; }
.masonry__item--wide img { aspect-ratio: 21/9; object-fit: cover; }

.magnetic { transition: transform 0.2s var(--ease); }

/* Page hero */
.page-hero {
  padding-top: calc(var(--site-top) + var(--space-10));
  padding-bottom: var(--space-10);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.page-hero__inner { width: var(--container); margin-inline: auto; }
.breadcrumb {
  font-size: 0.8125rem; color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.breadcrumb a:hover { color: var(--color-brand-light); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.page-hero p { color: var(--color-text-muted); font-size: 1.0625rem; max-width: 560px; }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.split__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  font-size: 1rem;
}
.split__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__badge {
  position: absolute; bottom: var(--space-6); right: var(--space-6);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.split__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-brand-light);
  line-height: 1;
}
.split__badge span { font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* Product card */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.card-product {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-product__img {
    position: relative;
    overflow: hidden;
    background: #fff;
    /* adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-product__img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Shows full Ganpati */
    object-position: center center;
}
.card-product:hover .card-product__img img { transform: scale(1.05); }
.card-product__overlay {
  position: absolute; inset: 0;
  background: rgba(28, 25, 23, 0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.card-product:hover .card-product__overlay { opacity: 1; }
.tag {
  position: absolute; top: var(--space-3); left: var(--space-3);
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius-full);
  background: var(--color-brand-light); color: #fff;
}
.tag--gold { background: var(--color-gold); }
.tag--eco { background: var(--color-accent); }
.card-product__body { padding: var(--space-5); }
.card-product__body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-1);
}
.card-product__meta { font-size: 0.8125rem; color: var(--color-text-muted); margin-bottom: var(--space-3); }
.card-product__price { font-size: 1.125rem; font-weight: 700; color: var(--color-brand-light); }


.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* Tablet */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile - 2 cards per row */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .card-product__body {
    padding: 12px;
  }

  .card-product__body h3 {
    font-size: 0.95rem;
  }

  .card-product__price {
    font-size: 1rem;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
/* Feature grid */
.feature-grid {
  display: grid;

  gap: var(--space-6);
}
.feature-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-sm);
}
.feature-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--color-brand-light) 8%, transparent);
  color: var(--color-brand-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.feature-card p { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.6; }

/* Category bento */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: var(--space-4);
}
.bento__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  grid-column: span 4;
}
.bento__item--large { grid-column: span 8; grid-row: span 2; }
.bento__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.bento__item:hover img { transform: scale(1.04); }
.bento__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.8) 0%, transparent 55%);
}
.bento__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-6);
  z-index: 1;
  color: #fff;
}
.bento__label h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.bento__label span { font-size: 0.875rem; opacity: 0.8; }

/* Stats band */
.stats-band {
  background: var(--color-text);
  color: #fff;
  padding-block: var(--space-12);
}
[data-theme="dark"] .stats-band { background: var(--color-surface-elevated); border-block: 1px solid var(--color-border); }
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}
.stats-band__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stats-band__label { font-size: 0.875rem; opacity: 0.7; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}
.process-step {
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
}
.process-step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-border-strong);
  margin-bottom: var(--space-4);
  line-height: 1;
}
.process-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: var(--space-2); }
.process-step p { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.55; }

/* Masonry */
.masonry { columns: 3; column-gap: var(--space-4); }
.masonry__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  break-inside: avoid;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.masonry__item img { width: 100%; transition: transform 0.4s var(--ease); }
.masonry__item:hover img { transform: scale(1.03); }

/* Testimonials */
.testimonial-wrap { position: relative; }
.testimonial-slider { padding-bottom: var(--space-10) !important; }
.testimonial-nav {
  display: flex; justify-content: center; gap: var(--space-3);
  margin-top: var(--space-4);
}
.testimonial-nav__btn {
  width: 48px; height: 48px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 1.25rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: background var(--transition), border-color var(--transition);
}
.testimonial-nav__btn:hover {
  background: var(--color-brand-light);
  border-color: var(--color-brand-light);
  color: #fff;
}
.testimonial-card {
  max-width: 680px;
  margin-inline: auto;
  padding: var(--space-10);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  text-align: center;
}
.testimonial-card__stars { color: var(--color-gold); margin-bottom: var(--space-5); letter-spacing: 2px; }
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: var(--space-6);
  color: var(--color-text-secondary);
}
.testimonial-card__author {
  display: flex; align-items: center; justify-content: center; gap: var(--space-4);
}
.testimonial-card__author img {
  width: 48px; height: 48px; border-radius: var(--radius-full); object-fit: cover;
}
.testimonial-card__author strong { display: block; font-size: 0.9375rem; }
.testimonial-card__author span { font-size: 0.8125rem; color: var(--color-text-muted); }
.swiper-pagination-bullet { background: var(--color-border-strong) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--color-brand-light) !important; }

/* Countdown */
.countdown-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding: var(--space-10);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.countdown-panel__timer {
  display: flex; align-items: center; gap: var(--space-2);
}
.countdown-panel__unit { text-align: center; min-width: 64px; }
.countdown-panel__value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
}
.countdown-panel__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}
.countdown-panel__sep { font-size: 1.5rem; color: var(--color-border-strong); padding-bottom: 1rem; }

/* FAQ */
.accordion { border-top: 1px solid var(--color-border); }
.accordion__item { border-bottom: 1px solid var(--color-border); }
.accordion__trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
}
.accordion__trigger:hover { color: var(--color-brand-light); }
.accordion__icon {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform 0.3s var(--ease);
}
.accordion__item.is-open .accordion__icon { transform: rotate(180deg); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.accordion__panel p {
  padding-bottom: var(--space-5);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.accordion__item.is-open .accordion__panel { max-height: 220px; }

/* Contact */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-10);
  align-items: center;
}
.form-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-field { margin-bottom: var(--space-5); }
.form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--color-brand-light);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-brand-light) 15%, transparent);
}
.info-list { display: flex; flex-direction: column; gap: var(--space-4); }
.info-item {
  display: flex; gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.info-item svg { width: 22px; height: 22px; color: var(--color-brand-light); flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; font-size: 0.875rem; margin-bottom: 2px; }
.info-item p, .info-item a { font-size: 0.9375rem; color: var(--color-text-muted); }
.info-item a:hover { color: var(--color-brand-light); }

/* Footer */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding-block: var(--space-16) var(--space-8);
}
[data-theme="dark"] .site-footer { background: #0C0A09; border-top: 1px solid var(--color-border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer-grid .logo { color: #fff; margin-bottom: var(--space-4); }
.footer-grid .logo span { color: #FCD34D; }
.footer-brand p { font-size: 0.9375rem; opacity: 0.7; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; margin-bottom: var(--space-5);
}
.footer-col li { margin-bottom: var(--space-3); }
.footer-col a { font-size: 0.9375rem; opacity: 0.7; transition: opacity var(--transition); }
.footer-col a:hover { opacity: 1; }
.footer-newsletter { display: flex; gap: var(--space-2); margin-top: var(--space-4); }
.footer-newsletter input {
  flex: 1; padding: 0.625rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  color: #fff; font-size: 0.875rem; outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.social-row { display: flex; gap: var(--space-3); margin-top: var(--space-6); }
.social-row a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.social-row a:hover { background: var(--color-brand-light); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8125rem; opacity: 0.6;
}

/* Modal & lightbox */
.modal {
  position: fixed; inset: 0; z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-6);
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(28, 25, 23, 0.7);
  backdrop-filter: blur(4px);
}
.modal__dialog {
  position: relative;
  width: min(880px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.modal__close {
  position: absolute; top: var(--space-4); right: var(--space-4);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-bg);
  font-size: 1.5rem;
  color: var(--color-text-muted);
  z-index: 1;
}
.modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  padding: var(--space-8);
}
.modal__body img { border-radius: var(--radius-lg); aspect-ratio: 0; object-fit: cover; width: 100%; }
.modal__body h2 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: var(--space-4); }
.modal__body p { color: var(--color-text-muted); margin-bottom: var(--space-4); }
.modal__price { font-size: 1.5rem; font-weight: 700; color: var(--color-brand-light); margin-bottom: var(--space-6) !important; }

.lightbox {
  position: fixed; inset: 0; z-index: 6000;
  background: rgba(12, 10, 9, 0.95);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-8);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox button {
  position: absolute;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.75rem;
  border-radius: var(--radius-full);
  transition: background var(--transition);
}
.lightbox button:hover { background: rgba(255,255,255,0.1); }
.lightbox__close { top: var(--space-6); right: var(--space-6); }
.lightbox__prev { left: var(--space-6); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: var(--space-6); top: 50%; transform: translateY(-50%); }

.back-top {
  position: fixed; bottom: var(--space-6); right: var(--space-6);
  z-index: 901;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand);
  color: #fff; border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
}
.back-top.is-visible { opacity: 1; pointer-events: auto;  }

.search-panel {
  position: fixed; inset: 0; z-index: 4000;
  background: rgba(28, 25, 23, 0.9);
  backdrop-filter: blur(8px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 12vh;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.search-panel.is-open { opacity: 1; visibility: visible; }
.search-panel__inner { width: min(560px, 92%); }
.search-panel input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.25rem;
  font-size: 1.125rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  color: var(--color-text);
  outline: none;
}
.search-panel__close {
  position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; color: var(--color-text-muted);
}
.search-results { margin-top: var(--space-4); }
.search-results a {
  display: block; padding: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2);
}
.search-results a:hover { background: var(--color-surface-elevated); }

.toast {
  position: fixed; bottom: var(--space-6); left: 50%;
  transform: translateX(-50%) translateY(80px);
  padding: var(--space-4) var(--space-6);
  background: var(--color-text);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.9375rem; font-weight: 500;
  z-index: 7000; opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Products page toolbar */
.toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.filter-pills { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.filter-pill {
  padding: 0.5rem 1rem;
  font-size: 0.875rem; font-weight: 500;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.filter-pill:hover,
.filter-pill.is-active {
  background: var(--color-brand-light);
  border-color: var(--color-brand-light);
  color: #fff;
}
.toolbar__count { font-size: 0.875rem; color: var(--color-text-muted); }

/* Team & values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.team-card {
  text-align: center;
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
}
.team-card h4 { font-weight: 600; margin-bottom: var(--space-1); }
.team-card span { font-size: 0.875rem; color: var(--color-text-muted); }

.impact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.impact-card {
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-6);
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.impact-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
}
.timeline { border-left: 2px solid var(--color-border); padding-left: var(--space-8); }
.timeline__item { position: relative; padding-bottom: var(--space-8); }
.timeline__item::before {
  content: '';
  position: absolute; left: calc(-1 * var(--space-8) - 5px);
  top: 6px; width: 10px; height: 10px;
  background: var(--color-brand-light);
  border-radius: var(--radius-full);
}
.timeline__item h4 { font-weight: 600; margin-bottom: var(--space-2); }
.timeline__item p { font-size: 0.9375rem; color: var(--color-text-muted); }

.map-embed {
  margin-top: var(--space-10);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--color-border);
}
.map-embed img { width: 100%; height: 100%; object-fit: cover; }

.cta-band {
  text-align: center;
  padding: var(--space-12);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}
.cta-band .section-title { margin-bottom: var(--space-4); }
.cta-band .section-desc { margin-bottom: var(--space-8); }
.cta-band__actions { display: flex; justify-content: center; gap: var(--space-3); flex-wrap: wrap; }

@media (max-width: 1024px) {
  .nav-list { display: none; }
  .menu-toggle { display: flex; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { margin-inline: auto; }
  .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__meta { text-align: center; }
  .hero__rating { justify-content: center; }
  .hero__pills { justify-content: center; }
  .hero__frame { width: min(320px, 85vw); height: min(320px, 85vw); }
  .hero__visual { min-height: 340px; }
  .hero__scroll { display: none; }
  .gallery-showcase { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .process-timeline::before { display: none; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .bento__item, .bento__item--large { grid-column: span 6; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-split, .faq-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .modal__body { grid-template-columns: 1fr; }
  .values-grid, .impact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --container: min(1200px, 100% - 1.5rem); --section-y: 3rem; }
  .hero__stats-inner { flex-direction: column; }
  .hero__stat-divider { width: 60%; height: 1px; }
  .hero__float-card, .hero__float-card--price { position: relative; left: auto; right: auto; top: auto; bottom: auto; margin-top: var(--space-3); animation: none; }
  .hero__visual { flex-direction: column; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
  .process-timeline { grid-template-columns: 1fr; }
  .gallery-showcase__grid { grid-template-columns: 1fr; }
  .cta-banner__inner { padding: var(--space-8); }

  .bento { grid-template-columns: 1fr; grid-auto-rows: 160px; }
  .bento__item, .bento__item--large { grid-column: span 1; grid-row: span 1; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-4); text-align: center; }
  .countdown-panel { flex-direction: column; text-align: center; }
  .hero__actions .btn { width: 100%; }
}

/* —— Final polish —— */
.page-home .site-header:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
.page-home .site-header:not(.is-scrolled) .nav-list a {
  color: rgba(255, 255, 255, 0.82);
}
.page-home .site-header:not(.is-scrolled) .nav-list a:hover,
.page-home .site-header:not(.is-scrolled) .nav-list a.is-active {
  color: #fff;
}
.page-home .site-header:not(.is-scrolled) .logo { color: #fff; }
.page-home .site-header:not(.is-scrolled) .icon-btn { color: rgba(255, 255, 255, 0.85); }
.page-home .site-header:not(.is-scrolled) .icon-btn:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.page-home .site-header:not(.is-scrolled) .menu-toggle span { background: #fff; }

.page-hero--rich {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.page-hero--rich::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, color-mix(in srgb, var(--color-brand-light) 12%, transparent), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 100%, color-mix(in srgb, var(--color-accent) 10%, transparent), transparent 50%),
    var(--gradient-subtle);
  pointer-events: none;
}
.page-hero--rich .page-hero__inner { position: relative; z-index: 1; }

.section-head--center .section-num,
.section-head--center .eyebrow { margin-inline: auto; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--row .link-arrow { margin-top: 0; align-self: flex-end; flex-shrink: 0; }

#about-preview .split__media--stacked { padding-bottom: var(--space-8); }

.testimonial-wrap { max-width: 720px; margin-inline: auto; }
.testimonial-slider .swiper-pagination-bullet-active { background: var(--color-brand-light); }

.btn--block { width: 100%; }
.cta-banner__eyebrow { color: rgba(255, 255, 255, 0.85); margin-bottom: var(--space-3); }
.cta-banner__title { color: #fff; margin-bottom: var(--space-3); }
.cta-banner__text { color: rgba(255, 255, 255, 0.78); max-width: 480px; line-height: 1.65; }
.cta-banner .btn--ghost { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.cta-banner .btn--ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

.whatsapp-fab {
  position: fixed;
  right: var(--space-5);
  bottom: calc(var(--space-6) + 52px);
  z-index: 900;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.06); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5); }

.mobile-drawer { padding-top: var(--site-top); }

.search-results {
  margin-top: var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-2);
  max-height: 280px; overflow-y: auto;
}
.search-results a {
  display: block;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}
.search-results a:hover { border-color: var(--color-brand-light); }
.search-results small { color: var(--color-text-muted); }

.map-embed { margin-top: var(--space-10); border-radius: var(--radius-xl); }

.contact-page .contact-split--premium { margin-bottom: 0; }

.stats-band__grid > div {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  transition: background var(--transition);
}
.stats-band__grid > div:hover { background: color-mix(in srgb, var(--color-brand-light) 6%, transparent); }

.feature-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--color-brand-light) 25%, var(--color-border));
}

@media (max-width: 640px) {
  .whatsapp-fab { right: var(--space-4); bottom: calc(var(--space-4) + 52px); width: 52px; height: 52px; }
  .split__img-sub { position: relative; bottom: auto; left: auto; width: 55%; margin-top: calc(-1 * var(--space-10)); margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .marquee__track { animation: none; }
}

.hero{
    padding:80px 5%;
    background:#f8f8f8;
    overflow:hidden;
}

.hero__container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}



.hero__visual{
    position:relative;
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero__circle{
    position:absolute;
    width:550px;
    height:550px;
    border-radius:50%;
    background:
        radial-gradient(circle,
        rgba(140,180,100,.25) 0%,
        rgba(140,180,100,.15) 50%,
        transparent 75%);
    animation:rotateCircle 20s linear infinite;
}

.hero__circle::before{
    content:"";
    position:absolute;
    inset:-20px;
    border-radius:50%;
    border:10px dashed rgba(122,170,50,.15);
}

.hero__idol{
    position:relative;
    z-index:2;
    max-width:520px;
    width:100%;
    animation:floatIdol 4s ease-in-out infinite;
    filter:drop-shadow(0 30px 50px rgba(0,0,0,.15));
}

.hero__content{
    flex:1;
    max-width:550px;
}

.hero__tag{
    color:#7baa17;
    font-size:18px;
    font-weight:600;
}

.hero__content h1{
    font-size:60px;
    line-height:1.1;
    margin:15px 0 25px;
    color:#0f172a;
}

.hero__content p{
    color:#555;
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
}

.hero__btn{
    display:inline-block;
    padding:16px 38px;
    background:#7baa17;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.hero__btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(122,170,23,.3);
}

@keyframes floatIdol{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-18px);
    }
}

@keyframes rotateCircle{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@media(max-width:991px){

    .hero__container{
        flex-direction:column;
        text-align:center;
    }

    .hero__content h1{
        font-size:42px;
    }

    .hero__circle{
        width:380px;
        height:380px;
    }

    .hero__idol{
        max-width:350px;
    }
}

.hero__visual{
    position:relative;
    width:600px;
    height:600px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.ganesh-bg{
    position:absolute;
    width:100%;
    height:100%;
}

.ganesh-bg span{
    position:absolute;
    border-radius:50%;
}

.ganesh-bg span:nth-child(1){
    width:450px;
    height:450px;
    background:radial-gradient(circle,
    rgba(120,180,50,.35),
    transparent 70%);
    animation:rotate1 20s linear infinite;
}

.ganesh-bg span:nth-child(2){
    width:550px;
    height:550px;
    border:12px dashed rgba(120,180,50,.15);
    animation:rotate2 25s linear infinite reverse;
}

.ganesh-bg span:nth-child(3){
    width:650px;
    height:650px;
    border:3px solid rgba(120,180,50,.08);
    animation:pulse 4s ease-in-out infinite;
}

.hero__idol{
    position:relative;
    z-index:10;
    width:520px;
    animation:float 5s ease-in-out infinite;
    filter:drop-shadow(0 30px 40px rgba(0,0,0,.15));
}

@keyframes float{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-20px);
    }
}

@keyframes rotate1{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes rotate2{
    from{
        transform:rotate(360deg);
    }
    to{
        transform:rotate(0deg);
    }
}

@keyframes pulse{
    0%,100%{
        transform:scale(1);
        opacity:.5;
    }
    50%{
        transform:scale(1.08);
        opacity:1;
    }
}

.hero__visual{
    position:relative;
    width:700px;
    height:700px;
    display:flex;
    justify-content:center;
    align-items:center;
    perspective:1000px;
}

/* Divine Aura */

.divine-aura{
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:
    radial-gradient(circle,
    rgba(133,191,39,.45),
    rgba(133,191,39,.1),
    transparent 70%);
    animation:auraPulse 4s ease-in-out infinite;
}

/* Sacred Rings */

.sacred-ring{
    position:absolute;
    border-radius:50%;
}

.ring1{
    width:520px;
    height:520px;
    border:4px dashed rgba(133,191,39,.2);
    animation:spin 25s linear infinite;
}

.ring2{
    width:620px;
    height:620px;
    border:2px solid rgba(133,191,39,.1);
    animation:spinReverse 35s linear infinite;
}

/* Light Rays */

.light-rays{
    position:absolute;
    width:650px;
    height:650px;
    border-radius:50%;
    background:
    conic-gradient(
        transparent,
        rgba(255,215,0,.15),
        transparent,
        rgba(255,255,255,.12),
        transparent
    );
    animation:spin 15s linear infinite;
    filter:blur(15px);
}

/* Floating Particles */

.particles span{
    position:absolute;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#d4af37;
    box-shadow:0 0 20px #d4af37;
}

.particles span:nth-child(1){
    top:20%;
    left:20%;
    animation:floatParticle 6s infinite;
}

.particles span:nth-child(2){
    top:15%;
    right:25%;
    animation:floatParticle 8s infinite;
}

.particles span:nth-child(3){
    bottom:20%;
    left:15%;
    animation:floatParticle 7s infinite;
}

.particles span:nth-child(4){
    bottom:10%;
    right:20%;
    animation:floatParticle 9s infinite;
}

.particles span:nth-child(5){
    top:45%;
    left:5%;
    animation:floatParticle 5s infinite;
}

.particles span:nth-child(6){
    top:50%;
    right:5%;
    animation:floatParticle 6s infinite;
}

/* Ganesh */

.hero__idol{
    width:550px;
    position:relative;
    z-index:10;
    animation:ganeshFloat 5s ease-in-out infinite;
    filter:
    drop-shadow(0 20px 30px rgba(0,0,0,.15))
    drop-shadow(0 0 40px rgba(255,215,0,.15));
}

/* Animations */

@keyframes ganeshFloat{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-25px);
    }
}

@keyframes auraPulse{
    0%,100%{
        transform:scale(1);
        opacity:.7;
    }
    50%{
        transform:scale(1.15);
        opacity:1;
    }
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes spinReverse{
    from{
        transform:rotate(360deg);
    }
    to{
        transform:rotate(0deg);
    }
}

@keyframes floatParticle{
    0%,100%{
        transform:translateY(0px);
        opacity:.4;
    }
    50%{
        transform:translateY(-50px);
        opacity:1;
    }
}


/* ==========================================
   MOBILE RESPONSIVE FIX - ECO GANESH ARTS
   ========================================== */

html,
body {
    width: 100%;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 991px) {

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-actions .btn {
        display: none;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero__copy {
        max-width: 100%;
        margin: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .split {
        grid-template-columns: 1fr;
    }

   

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width:768px){
  .gallery-showcase__grid{
    grid-template-columns: repeat(2,1fr) !important;
  }
}

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        display: none;
    }

    .stats-band__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .bento__item,
    .bento__item--large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* =======================
   MOBILE
======================= */

@media screen and (max-width:768px) {

    :root {
        --container: calc(100% - 24px);
    }

    .container {
        width: calc(100% - 24px);
    }

    .header-inner {
        width: calc(100% - 24px);
    }

    .logo--brand img {
        max-width: 80px;
        height: auto;
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 50px;
    }

    .hero__grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }

    .hero__copy {
        width: 100%;
        padding: 0;
        order: 2;
    }

    .hero__visual {
      
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
       
        position: relative;
    }

    .hero__idol {
        width: 100%;
        max-width: 380px;
        height: auto;
        object-fit: contain;
        margin: auto;
    }

    .hero__title {
        font-size: 2rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .hero__lead {
        font-size: 15px;
        max-width: 100%;
        margin-inline: auto;
    }

    .hero__pills {
        justify-content: center;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__meta {
        text-align: center;
    }

    .hero__rating {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__scroll {
        display: none;
    }

    .hero__orb--1,
    .hero__orb--2,
    .divine-aura,
    .light-rays,
    .particles,
    .sacred-ring {
        max-width: 100%;
        overflow: hidden;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-head {
        margin-bottom: 2rem;
    }

 

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stats-band__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-showcase__grid {
        grid-template-columns: 1fr;
    }

    .gallery-showcase__main img {
        min-height: auto;
    }

    .split__img-sub {
        display: none;
    }

    .split__badge {
        right: 10px;
        bottom: 10px;
        padding: 12px;
    }

    .cta-banner__inner {
        padding: 2rem 1rem;
        text-align: center;
    }

    .cta-banner__actions {
        justify-content: center;
    }

    .faq-split {
        grid-template-columns: 1fr;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .masonry {
        columns: 1;
    }
}

/* =======================
   SMALL DEVICES
======================= */

@media screen and (max-width:480px) {

    .announce-bar {
        font-size: 12px;
        padding: 0 10px;
    }

    .logo--brand img {
        max-width: 180px;
    }

    .hero__title {
        font-size: 1.7rem;
    }

    .hero__lead {
        font-size: 14px;
    }

    .btn {
        width: 100%;
    }

    .pill {
        font-size: 11px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero__idol {
        max-width: 400px;
    }

    .bento {
        grid-template-columns: 1fr;
    }

    .bento__item {
        min-height: 220px;
    }

    .stats-band__num {
        font-size: 2rem;
    }
}

.footer-maps {
  min-width: 280px;
}

.footer-map-box {
  margin-bottom: 1rem;
}

.footer-map-box h5 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.footer-map-box iframe {
  width: 100%;
  height: 140px;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}

