/* ===== Self-hosted fonts (local WOFF2, variable - no external Google Fonts request) ===== */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('fonts/cormorant.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter.woff2') format('woff2');
}

:root {
  /* ================= 1. PRIMITIVES (raw values, no direct component use) ================= */
  /* Brand ramps - sampled from Guruji's photos */
  --p-saffron-600: #C85A1B;  --p-saffron-700: #A5450F;
  --p-saffron-50:  #FFF0E4;  --p-saffron-100: #F6C9AE;  --p-saffron-150: #E7B98F;
  --p-red-600: #A62912;      --p-red-700: #86200D;
  --p-gold-500: #E3A12C;     --p-gold-600: #C0851C;     --p-gold-ink: #4A1D02;  --p-star: #F2A900;
  --p-maroon-800: #521C11;   --p-maroon-700: #7A2A16;   --p-maroon-900: #43140C; --p-maroon-950: #3A1109;
  --p-cream-50: #FCF3E3;     --p-cream-100: #F6E7D0;    --p-cream-0: #FFFDF9;
  --p-white: #FFFFFF;        --p-field: #FFFDFA;
  /* Warm neutrals */
  --p-ink-800: #3A241A;      --p-ink-500: #736051;      --p-line: #EAD9C2;       --p-placeholder: #B7A594;
  /* Text-on-dark (peach/cream over maroon) */
  --p-peach-100: #FFE9D6;    --p-peach-150: #FFE7D8;    --p-peach-200: #F3D9C8;  --p-peach-300: #E9CFC2;
  /* Footer text ramp */
  --p-footer-100: #E9D3C6;   --p-footer-200: #D8BEB0;   --p-footer-300: #C6A99A; --p-footer-400: #B89A8B;
  /* Status */
  --p-green-500: #1FB055;    --p-green-600: #2E9E5B;    --p-red-alert: #D64545;
  /* Scales */
  --radius-sm: 9px; --radius: 16px; --radius-lg: 22px; --radius-pill: 50px;
  --shadow: 0 12px 34px rgba(90, 30, 20, 0.10);
  --shadow-lg: 0 24px 60px rgba(90, 30, 20, 0.16);
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --maxw: 1140px;

  /* ================= 2. SEMANTIC (purpose aliases) ================= */
  --color-primary: var(--p-saffron-600);       --color-primary-strong: var(--p-saffron-700);
  --color-secondary: var(--p-red-600);          --color-secondary-strong: var(--p-red-700);
  --color-accent: var(--p-gold-500);            --color-accent-strong: var(--p-gold-600);
  --color-danger: var(--p-red-alert);           --color-success: var(--p-green-600);
  --bg-page: var(--p-cream-50);                 --bg-alt: var(--p-cream-100);
  --bg-dark: var(--p-maroon-800);               --bg-footer: var(--p-maroon-950);
  --surface: var(--p-white);                    --surface-field: var(--p-field);
  --text: var(--p-ink-800);                     --text-muted: var(--p-ink-500);
  --text-placeholder: var(--p-placeholder);     --heading: var(--p-maroon-800);
  --border: var(--p-line);
  --tint-primary: var(--p-saffron-50);          --tint-primary-border: var(--p-saffron-100);
  --tint-primary-border-strong: var(--p-saffron-150);
  --on-primary: var(--p-white);                 --on-primary-dim: var(--p-peach-150);
  --on-gold: var(--p-gold-ink);
  --on-maroon: var(--p-peach-100);              --on-maroon-dim: var(--p-peach-200);  --on-maroon-mute: var(--p-peach-300);
  --footer-text: var(--p-footer-100);           --footer-link: var(--p-footer-200);
  --footer-text-dim: var(--p-footer-300);       --footer-text-mute: var(--p-footer-400);

  /* Back-compat aliases (existing rules reference these short names) */
  --saffron: var(--color-primary);   --saffron-dk: var(--color-primary-strong);
  --red: var(--color-secondary);     --red-dk: var(--color-secondary-strong);
  --gold: var(--color-accent);       --gold-dk: var(--color-accent-strong);
  --maroon: var(--heading);          --maroon-2: var(--p-maroon-700);
  --cream: var(--bg-page);           --cream-2: var(--bg-alt);
  --card: var(--surface);            --ink: var(--text);
  --muted: var(--text-muted);        --line: var(--border);
  --wa: var(--p-green-500);          --star: var(--p-star);

  /* ================= 3. COMPONENT ================= */
  --btn-primary-bg: var(--color-primary-strong);       --btn-primary-bg-end: var(--color-secondary);
  --btn-primary-fg: var(--on-primary);
  --btn-gold-bg: var(--color-accent);           --btn-gold-bg-end: var(--color-accent-strong); --btn-gold-fg: var(--on-gold);
  --input-bg: var(--surface-field);             --input-border: var(--border);  --input-focus: var(--color-primary);
  --card-bg: var(--surface);                    --card-border: var(--border);
  --icon-tile-bg: var(--tint-primary);          --icon-tile-fg: var(--color-primary);
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-synthesis: none;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 800px; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.14; font-weight: 700; letter-spacing: 0.2px; color: var(--maroon); }

a { text-decoration: none; color: inherit; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link { position: absolute; left: 12px; top: -70px; z-index: 300; background: var(--color-primary); color: var(--on-primary); padding: 11px 20px; border-radius: 0 0 10px 10px; font-weight: 700; font-size: 14px; transition: top 0.2s ease; }
.skip-link:focus { top: 0; }

/* ---- Icons ---- */
.ico { width: 22px; height: 22px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.ico-sm { width: 15px; height: 15px; }
.ico-lg { width: 38px; height: 38px; }
.ico-gold { color: var(--gold-dk); }
.ico-saffron { color: var(--saffron); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: linear-gradient(135deg, var(--btn-primary-bg), var(--btn-primary-bg-end));
  color: var(--btn-primary-fg);
  box-shadow: 0 10px 22px rgba(166, 41, 18, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(166, 41, 18, 0.45); }

.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dk)); color: var(--on-gold); box-shadow: 0 10px 22px rgba(242, 169, 0, 0.3); }
.btn-gold:hover { transform: translateY(-2px); }

.btn-wa { background: var(--wa); color: var(--surface); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(31, 176, 85, 0.4); }

.btn-ghost { background: var(--surface); color: var(--maroon); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--saffron); color: var(--saffron); }
.btn-ghost.light { background: rgba(255,255,255,0.14); color: var(--surface); border-color: rgba(255,255,255,0.55); }
.btn-ghost.light:hover { background: var(--surface); color: var(--saffron); }

.btn-header { background: linear-gradient(135deg, var(--saffron), var(--saffron-dk)); color: var(--surface); padding: 11px 22px; font-size: 15px; box-shadow: 0 8px 18px rgba(232,98,30,0.3); }

.header-call { display: flex; align-items: center; gap: 11px; }
.hc-ico { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--saffron), var(--saffron-dk)); color: var(--surface); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px rgba(200,90,27,0.3); }
.hc-text { display: flex; flex-direction: column; line-height: 1.15; }
.hc-text small { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.3px; }
.hc-text strong { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--maroon); }

.btn-block { width: 100%; margin-top: 4px; }

.btn-spinner { display: none; width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,0.4); border-top-color: var(--surface); border-radius: 50%; animation: spin 0.7s linear infinite; }
.btn.is-loading { pointer-events: none; opacity: 0.9; }
.btn.is-loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Topbar ---- */
.topbar {
  background: linear-gradient(90deg, var(--maroon), var(--red-dk));
  color: var(--on-maroon);
  font-size: 13px;
  text-align: center;
  padding: 8px 12px;
  display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar .ico { color: var(--gold); }
.topbar-sep { opacity: 0.5; }

/* ---- Header ---- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 247, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; padding: 12px 0; }
.header-inner .brand { justify-self: start; }
.header-inner .header-call { justify-self: end; }
.header-mantra { justify-self: center; display: flex; align-items: center; justify-content: center; text-align: center; line-height: 1.1; max-width: 100%; }
.hm-line { font-size: clamp(9.5px, 2.7vw, 15px); font-weight: 700; color: var(--maroon); font-family: var(--font-body), "Noto Sans Devanagari", "Tiro Devanagari Sanskrit", serif; white-space: nowrap; letter-spacing: 0.2px; }
.hm-w { color: var(--saffron-dk); font-family: "Noto Sans Devanagari", "Tiro Devanagari Sanskrit", serif; font-weight: 700; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--surface); font-size: 24px; line-height: 1;
  box-shadow: 0 6px 16px rgba(232,98,30,0.3);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--maroon); }
.brand-text small { font-size: 10px; color: var(--saffron); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-body); }
.brand-logo { height: 64px; width: auto; display: block; }
@media (max-width: 720px) {
  .header { position: static; }
  .topbar { padding: 4px 12px; font-size: 11.5px; gap: 6px; }
  .header-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 2px; padding: 5px 0; }
  .header-inner .brand { justify-self: center; order: 1; width: 100%; }
  .brand-logo { width: 100%; max-width: 270px; height: auto; margin: 0 auto; }
  .header-mantra { grid-column: auto; order: 2; margin-top: 0; }
  .header-inner .header-call { justify-self: center; order: 3; gap: 8px; padding: 5px 8px; min-height: 44px; }
  .hc-ico { width: 36px; height: 36px; }
  .hc-ico .ico { width: 18px; height: 18px; }
  .hc-text small { font-size: 10px; }
  .hc-text strong { font-size: 16px; }
  .hm-line { letter-spacing: 0; }
}
@media (max-width: 520px) { .brand-logo { max-width: 250px; } }

/* ---- Hero ---- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(242, 169, 0, 0.22), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(232, 98, 30, 0.10), transparent 55%),
    linear-gradient(180deg, var(--p-cream-0), var(--cream));
  padding: 48px 0 60px;
  overflow: hidden;
}
.hero-rays {
  position: absolute; top: -180px; right: -120px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(242,169,0,0.18), transparent 60%);
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; column-gap: 46px; row-gap: 0; align-items: start; }
.hero-head { grid-column: 1; grid-row: 1; }
.hero-body { grid-column: 1; grid-row: 2; margin-top: 20px; }
.hero-visual { grid-column: 2; grid-row: 1 / span 2; align-self: center; position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 460px; }
.zodiac-ring { position: absolute; top: 47%; left: 50%; transform: translate(-50%, -50%); width: min(128%, 560px); aspect-ratio: 1 / 1; color: var(--saffron); opacity: 0.5; z-index: 0; pointer-events: none; }
.zodiac-ring svg { width: 100%; height: 100%; }
.hero-guruji { position: relative; z-index: 1; width: min(100%, 450px); height: auto; pointer-events: none; user-select: none; filter: drop-shadow(0 18px 34px rgba(90,30,20,0.3)); -webkit-mask-image: linear-gradient(to bottom, #000 88%, transparent 100%); mask-image: linear-gradient(to bottom, #000 88%, transparent 100%); }
.hero-badge { position: absolute; z-index: 2; display: flex; align-items: center; gap: 8px; background: var(--card-bg); border: 1px solid var(--gold); border-radius: 12px; padding: 9px 13px; box-shadow: var(--shadow-lg); font-size: 12.5px; font-weight: 600; color: var(--maroon); white-space: nowrap; }
.hero-badge b { font-family: var(--font-head); font-size: 16px; color: var(--saffron-dk); margin-right: 1px; }
.hero-badge .ico { width: 18px; height: 18px; color: var(--saffron); flex-shrink: 0; }
.hb-1 { bottom: 78px; left: -12px; }
.hb-2 { top: 44px; right: -16px; }
.hb-3 { bottom: 20px; right: -4px; }
/* Book appointment band */
.book-band { background: var(--cream-2); }
.book-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.book-copy h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 12px; }
.book-copy .section-sub { text-align: left; margin: 0 0 18px; }
.book-points { list-style: none; display: grid; gap: 10px; }
.book-points li { display: flex; align-items: flex-start; gap: 9px; color: var(--text); font-size: 15px; line-height: 1.4; }
.book-points .ico { width: 18px; height: 18px; color: var(--saffron); flex-shrink: 0; margin-top: 2px; }
.book-inner .lead-card { align-self: center; }
.btn-wa-soft { background: transparent; color: var(--wa); border: 1.6px solid var(--wa); }
.btn-wa-soft:hover { background: var(--wa); color: #fff; }
/* Hero one-time entrance - ease-out, reduced-motion safe */
@media (prefers-reduced-motion: no-preference) {
  .hero-head { animation: heroFadeUp 0.7s ease-out both; }
  .hero-body { animation: heroFadeUp 0.7s ease-out 0.12s both; }
  .zodiac-ring { animation: heroRingIn 0.9s ease-out 0.15s both; }
  .hero-guruji { animation: heroPopIn 0.8s ease-out 0.22s both; }
  .hero-badge { opacity: 0; animation: badgePop 0.5s ease-out both; }
  .hb-1 { animation-delay: 0.55s; }
  .hb-2 { animation-delay: 0.68s; }
  .hb-3 { animation-delay: 0.81s; }
}
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes heroRingIn { from { opacity: 0; } to { opacity: 0.5; } }
@keyframes heroPopIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: none; } }
@keyframes badgePop { from { opacity: 0; transform: scale(0.82); } to { opacity: 1; transform: none; } }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--saffron-dk); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 12.5px; margin-bottom: 14px; }
.eyebrow.center { justify-content: center; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--saffron); display: inline-block; }
.eyebrow.center::after { content: ""; width: 26px; height: 2px; background: var(--saffron); display: inline-block; }
.hero h1 { font-size: clamp(38px, 5.4vw, 60px); line-height: 1.12; margin-bottom: 16px; }
.grad { color: var(--saffron); }
.lead { font-size: 17.5px; color: var(--ink); margin-bottom: 20px; max-width: 540px; }
.lead strong { color: var(--maroon); }
.hero-points { list-style: none; margin-bottom: 22px; display: grid; gap: 9px; }
.hero-points li { color: var(--ink); font-size: 15px; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.hero-points .ico { color: var(--color-success); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta.center { justify-content: center; }
.hero-call { margin-top: 14px; font-size: 15px; color: var(--text); }
.hero-call a { display: inline-flex; align-items: center; gap: 6px; color: var(--saffron-dk); font-weight: 700; margin-left: 4px; }
.hero-call a:hover { text-decoration: underline; }
.hero-note { margin-top: 8px; font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }

.scarcity { display: inline-flex; align-items: center; gap: 8px; background: var(--tint-primary); border: 1px solid var(--tint-primary-border); color: var(--saffron-dk); font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 50px; margin-bottom: 18px; }
.scarcity .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--saffron); box-shadow: 0 0 0 0 rgba(232,98,30,0.5); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(232,98,30,0.5); } 70% { box-shadow: 0 0 0 8px rgba(232,98,30,0); } 100% { box-shadow: 0 0 0 0 rgba(232,98,30,0); } }

/* ---- Lead form card ---- */
.lead-card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow-lg); }
.lead-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.lead-avatar { width: 62px; height: 62px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: linear-gradient(160deg, var(--cream-2), var(--surface)); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--saffron); }
.lead-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.lead-card-top .lc-title { font-family: var(--font-head); font-weight: 700; color: var(--maroon); font-size: 18px; line-height: 1.2; }
.lead-card-top .lc-sub { font-size: 12.5px; color: var(--muted); }
.lead-card h2 { font-size: 22px; margin-bottom: 3px; }
.lead-sub { color: var(--muted); font-size: 13.5px; margin-bottom: 16px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--maroon); margin-bottom: 5px; }
.field input, .field select {
  width: 100%; padding: 13px 15px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--input-bg); color: var(--ink);
  font-family: var(--font-body); font-size: 16px; outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder { color: var(--text-placeholder); }
.field input:focus, .field select:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(232,98,30,0.13); }
.field.err input, .field.err select { border-color: var(--color-danger); }
.field .fmsg { font-size: 12px; color: var(--color-danger); margin-top: 4px; display: none; }
.field.err .fmsg { display: block; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238A7566' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 40px; }
.form-trust { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: var(--muted); margin-top: 11px; }
.form-recaptcha { text-align: center; font-size: 10.5px; color: var(--muted); margin-top: 6px; opacity: 0.8; }
.form-recaptcha a { color: var(--muted); text-decoration: underline; }
/* Hide the floating reCAPTCHA v3 badge (the disclosure line above satisfies Google's terms) */
.grecaptcha-badge { visibility: hidden; }
.form-friction { text-align: center; font-size: 12.5px; color: var(--saffron-dk); font-weight: 600; margin-top: 8px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; overflow: hidden; }

/* Consultation-type radio cards */
.mode-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mode-opt { position: relative; cursor: pointer; }
.mode-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.mode-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; text-align: center; height: 100%; padding: 12px 6px; border: 1.5px solid var(--input-border); border-radius: 10px; background: var(--surface-field); font-size: 12.5px; font-weight: 600; color: var(--text); line-height: 1.2; transition: border-color 0.15s, background 0.15s, color 0.15s; }
.mode-card .ico { width: 20px; height: 20px; color: var(--text-muted); transition: color 0.15s; }
.mode-opt:hover .mode-card { border-color: var(--tint-primary-border); }
.mode-opt input:checked + .mode-card { border-color: var(--color-primary); background: var(--tint-primary); color: var(--color-primary-strong); box-shadow: 0 0 0 3px rgba(200,90,27,0.12); }
.mode-opt input:checked + .mode-card .ico { color: var(--color-primary); }
.mode-opt input:focus-visible + .mode-card { outline: 3px solid var(--color-primary); outline-offset: 2px; }

/* ---- Stats strip ---- */
.stats { background: var(--maroon); color: var(--surface); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; padding: 26px 20px; gap: 20px; }
.stat strong { display: inline-flex; align-items: center; gap: 4px; justify-content: center; font-family: var(--font-head); font-size: 30px; color: var(--gold); }
.stat-star .ico { width: 22px; height: 22px; color: var(--gold); }
.stat span { display: block; font-size: 12.5px; color: var(--on-maroon-dim); margin-top: 2px; letter-spacing: 0.3px; }

/* ---- Sections ---- */
.section { padding: 66px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 42px; }
.section-head h2 { font-size: clamp(27px, 3.8vw, 40px); margin-bottom: 12px; }
.section-sub { color: var(--muted); font-size: 16px; }
.alt { background: var(--cream-2); }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ---- Image slots ---- */
.img-slot { position: relative; overflow: hidden; border-radius: var(--radius); background: linear-gradient(160deg, var(--cream-2), var(--surface)); border: 1px dashed var(--tint-primary-border-strong); display: flex; align-items: center; justify-content: center; margin: 0; }
.img-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.img-slot .slot-mark { color: var(--saffron); opacity: 0.5; }
.img-slot::after { content: attr(data-label); position: absolute; bottom: 9px; left: 8px; right: 8px; text-align: center; font-size: 10px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--muted); opacity: 0.8; }
.img-slot:has(img) { border: none; }
.img-slot:has(img)::after, .img-slot:has(img) .slot-mark { display: none; }

/* ---- Services menu (complete list) ---- */
.svc-group { margin-bottom: 30px; }
.svc-group:last-child { margin-bottom: 0; }
.svc-group-title { text-align: center; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; color: var(--saffron-dk); font-family: var(--font-body); font-weight: 700; margin-bottom: 16px; }
.svc-menu { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; max-width: 960px; margin: 0 auto; }
.svc-item { display: flex; align-items: center; gap: 12px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 13px 15px; box-shadow: var(--shadow); color: var(--maroon); font-weight: 600; font-size: 15px; transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s; }
.svc-item:hover { transform: translateY(-2px); border-color: var(--color-primary); box-shadow: var(--shadow-lg); }
.svc-i { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; background: var(--tint-primary); color: var(--color-primary); display: flex; align-items: center; justify-content: center; }
.svc-i .ico { width: 21px; height: 21px; }

/* ---- Services (legacy image cards, unused) ---- */
.card.svc { overflow: hidden; display: flex; flex-direction: column; }
.svc .card-img { aspect-ratio: 16 / 10; border-radius: 0; }
.svc-body { padding: 22px; }
.svc-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--tint-primary); color: var(--saffron); margin-bottom: 11px; }
.svc-icon .ico { width: 23px; height: 23px; }
.svc h3 { font-size: 20px; margin-bottom: 7px; }
.svc p { color: var(--muted); font-size: 14.5px; }
.svc-link { display: inline-flex; align-items: center; gap: 5px; color: var(--saffron); font-weight: 600; font-size: 13.5px; margin-top: 12px; }

/* ---- CTA band ---- */
.cta-band { background: linear-gradient(135deg, var(--saffron), var(--red)); color: var(--surface); text-align: center; padding: 40px 0; }
.cta-band h2 { color: var(--surface); font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 8px; }
.cta-band p { color: var(--on-primary-dim); margin-bottom: 20px; font-size: 16px; }
.cta-band .hero-cta { justify-content: center; }

/* ---- Problem agitation ---- */
.problem { text-align: center; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px; }
.pain { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 16px; text-align: center; box-shadow: var(--shadow); }
.pain .ico { color: var(--saffron); width: 30px; height: 30px; margin-bottom: 10px; }
.pain h3 { font-size: 16.5px; margin-bottom: 5px; }
.pain p { font-size: 13.5px; color: var(--muted); }
.problem-bridge { margin-top: 30px; font-size: 18px; color: var(--maroon); font-weight: 600; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---- About / Guiding Lives ---- */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.about-media { position: relative; display: flex; flex-direction: column; gap: 14px; }
.img-slot.portrait { position: relative; z-index: 1; aspect-ratio: 4 / 5; border: 1px solid var(--card-border); box-shadow: var(--shadow-lg), 16px 16px 0 -2px rgba(242,169,0,0.34); }
.about-badge { position: absolute; z-index: 3; bottom: -16px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; background: var(--card-bg); border: 1px solid var(--gold); border-radius: 999px; padding: 9px 18px; box-shadow: var(--shadow-lg); font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--maroon); }
.about-badge .ico { width: 17px; height: 17px; color: var(--saffron); flex-shrink: 0; }
.img-slot.portrait .slot-mark .ico { width: 46px; height: 46px; }
.awards-eyebrow { display: flex; align-items: center; gap: 7px; margin: 4px 0 2px; font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--saffron-dk); }
.awards-eyebrow .ico { width: 15px; height: 15px; color: var(--gold); }
.about-awards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.award-card { margin: 0; display: flex; flex-direction: column; gap: 8px; }
.award-card .img-slot.award { aspect-ratio: 4 / 3; border-radius: 10px; border: 2px solid var(--gold); background: var(--cream-2); box-shadow: var(--shadow); }
.award-card figcaption { display: flex; align-items: center; justify-content: center; gap: 5px; text-align: center; font-family: var(--font-body); font-size: 11px; font-weight: 700; line-height: 1.25; letter-spacing: 0.2px; color: var(--maroon); }
.award-card figcaption .ico { width: 13px; height: 13px; color: var(--saffron); flex-shrink: 0; }

/* Full-width Honoured & Awarded showcase */
.awards-band .section-head { margin-bottom: 30px; }
.awards-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1080px; margin: 0 auto; }
.awards-showcase .award-card { gap: 12px; }
.awards-showcase .award-card figcaption { font-size: 15px; gap: 6px; }
.awards-showcase .award-card figcaption .ico { width: 15px; height: 15px; }
.awards-hint { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 22px; font-size: 13px; color: var(--muted); }
.awards-hint .ico { width: 15px; height: 15px; color: var(--saffron); }
@media (max-width: 760px) { .awards-showcase { grid-template-columns: 1fr; max-width: 480px; gap: 22px; } }

/* Zoom affordance + image lightbox (enlarge important assets) */
.award-card .img-slot.award, .featured-badge, .honors-grid .img-slot:has(img) { cursor: zoom-in; }
.award-card .img-slot.award::after, .featured-badge::after {
  content: ""; position: absolute; top: 7px; right: 7px; width: 27px; height: 27px; border-radius: 50%;
  background-color: rgba(200,90,27,0.94);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2.2" stroke-linecap="round"><circle cx="11" cy="11" r="7"/><line x1="20.5" y1="20.5" x2="16.65" y2="16.65"/><line x1="11" y1="8.5" x2="11" y2="13.5"/><line x1="8.5" y1="11" x2="13.5" y2="11"/></svg>');
  background-repeat: no-repeat; background-position: center; background-size: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25); z-index: 3; pointer-events: none;
  bottom: auto; left: auto; opacity: 1; display: block;
}
.featured-badge::after { top: 9px; right: 9px; }
.lightbox { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(20,6,3,0.9); backdrop-filter: blur(4px); }
.lightbox[hidden] { display: none; }
.lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 94vw; }
.lb-figure img { max-width: 94vw; max-height: 80vh; width: auto; height: auto; object-fit: contain; border-radius: 10px; background: #fff; box-shadow: 0 24px 70px rgba(0,0,0,0.55); }
.lb-figure figcaption { color: #fff; font-family: var(--font-body); font-size: 14.5px; font-weight: 600; text-align: center; letter-spacing: 0.2px; }
.lb-close { position: fixed; top: 16px; right: 18px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: rgba(255,255,255,0.16); color: #fff; font-size: 30px; line-height: 1; cursor: pointer; transition: background 0.2s ease; }
.lb-close:hover { background: rgba(255,255,255,0.3); }
body.lb-open { overflow: hidden; }
@media (max-width: 560px) {
  .featured-band .featured-badge { flex-direction: column; align-items: stretch; padding: 14px; gap: 14px; max-width: 440px; }
  .featured-band .featured-thumb { width: 100%; height: auto; aspect-ratio: 16 / 9; }
  .featured-band .featured-badge-text { text-align: center; align-items: center; }
  .featured-band .featured-badge-text strong { font-size: 22px; }
  .featured-band .featured-badge::after { top: 22px; right: 22px; }
}
.about-copy h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 6px; }
.about-tag { color: var(--saffron); font-weight: 700; margin-bottom: 15px; }
.about-copy p { color: var(--ink); margin-bottom: 13px; }
.about-copy p strong { color: var(--maroon); }
.principles { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 16px 0 22px; }
.principles li { color: var(--ink); font-size: 15px; display: flex; align-items: center; gap: 9px; font-weight: 500; }
.principles .ico { color: var(--saffron); }

/* ---- Media / featured strip ---- */
.media-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: center; }
.media-logo { aspect-ratio: 3 / 2; }

/* ---- Gurus / lineage ---- */
.gurus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 780px; margin: 0 auto; }
.guru-card { text-align: center; margin: 0; }
.guru-img { aspect-ratio: 9 / 16; margin-bottom: 14px; box-shadow: var(--shadow-lg); }
.guru-card h3 { font-size: 22px; margin-bottom: 6px; }
.guru-card p { color: var(--muted); font-size: 14.5px; }

/* ---- Steps ---- */
.steps .step { text-align: center; padding: 8px; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), var(--gold)); color: var(--surface); font-family: var(--font-head); font-size: 24px; font-weight: 700; margin-bottom: 15px; box-shadow: 0 8px 18px rgba(232,98,30,0.28); }
.step h3 { font-size: 20px; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---- Stories (photo testimonials) ---- */
.stories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.story { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.story .img-slot { aspect-ratio: 1 / 1; border-radius: 0; }
.story-body { padding: 16px; }
.story-body .stars { color: var(--gold-dk); display: flex; gap: 2px; margin-bottom: 8px; }
.story-body .stars .ico { width: 15px; height: 15px; }
.story-body p { font-size: 13.5px; color: var(--ink); margin-bottom: 8px; }
.story-body footer { font-size: 12.5px; color: var(--muted); font-weight: 600; }

/* ---- Why choose ---- */
.why-item { text-align: center; padding: 22px 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.why-item .why-ico { width: 58px; height: 58px; border-radius: 50%; background: var(--tint-primary); color: var(--saffron); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.why-item h3 { font-size: 19px; margin-bottom: 7px; }
.why-item p { color: var(--muted); font-size: 14.5px; }

/* ---- Honors ---- */
.honors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.honors-grid .img-slot { aspect-ratio: 4 / 3; }

/* ---- Testimonials ---- */
.review { padding: 24px; }
.review .stars { color: var(--gold-dk); display: flex; gap: 3px; margin-bottom: 12px; }
.review .stars .ico { width: 18px; height: 18px; }
.review p { color: var(--ink); margin-bottom: 14px; font-size: 15px; }
.review footer { color: var(--muted); font-size: 14px; font-weight: 600; }
.review .rev-src { display: inline-flex; align-items: center; gap: 5px; margin-top: 8px; font-size: 12px; color: var(--text-muted); font-weight: 500; }
.review .rev-src .ico { width: 14px; height: 14px; }

/* ---- Google reviews + map ---- */
.greviews-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 22px; align-items: stretch; }
.grev-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.grev-card .glogo { width: 40px; height: 40px; margin-bottom: 10px; }
.grev-score { font-family: var(--font-head); font-size: 52px; font-weight: 700; color: var(--heading); line-height: 1; }
.grev-stars { display: flex; gap: 3px; color: var(--color-accent); margin: 8px 0 6px; }
.grev-stars .ico { width: 20px; height: 20px; }
.grev-count { color: var(--text-muted); font-size: 14px; margin-bottom: 18px; }
.grev-card .btn { margin-top: auto; }
.grev-write { margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--color-primary); }
.grev-map { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-border); box-shadow: var(--shadow); min-height: 320px; background: var(--bg-alt); }
/* Designed location card - fills the box whether or not the live map iframe loads */
.grev-map-fallback { position: absolute; inset: 0; z-index: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 34px 28px;
  background:
    linear-gradient(rgba(255,247,235,0.82), rgba(255,247,235,0.82)),
    repeating-linear-gradient(0deg, transparent 0 33px, rgba(140,20,30,0.06) 33px 34px),
    repeating-linear-gradient(90deg, transparent 0 33px, rgba(140,20,30,0.06) 33px 34px); }
.grev-map-fallback .gm-pin { flex: none; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--color-primary); box-shadow: 0 8px 22px rgba(140,20,30,0.28); }
.grev-map-fallback .gm-pin .ico { width: 28px; height: 28px; color: #fff; }
.grev-map-fallback .gm-title { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--heading); line-height: 1.2; max-width: 300px; }
.grev-map-fallback .gm-addr { color: var(--text); font-weight: 500; font-size: 14px; line-height: 1.55; max-width: 320px; }
.grev-map-fallback .gm-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; padding: 11px 22px; border-radius: 999px; background: var(--color-primary); color: #fff; font-weight: 700; font-size: 14.5px; box-shadow: 0 6px 16px rgba(140,20,30,0.22); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.grev-map-fallback .gm-btn .ico { width: 17px; height: 17px; color: #fff; }
.grev-map-fallback .gm-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(140,20,30,0.3); }
.grev-map-fallback .gm-note { color: var(--text-muted); font-weight: 600; font-size: 12.5px; letter-spacing: 0.2px; }
.grev-map iframe { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.tbadge { display: inline-flex; align-items: center; gap: 8px; background: var(--card-bg); border: 1px solid var(--card-border); color: var(--heading); font-size: 13.5px; font-weight: 600; padding: 10px 18px; border-radius: var(--radius-pill); box-shadow: var(--shadow); transition: border-color 0.15s, transform 0.15s; }
a.tbadge:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.tbadge .ico { width: 17px; height: 17px; color: var(--color-primary); }

/* ---- Centres across Bangalore ---- */
.centre-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 860px; margin: 0 auto; }
.centre-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--card-bg); border: 1px solid var(--card-border); color: var(--heading); font-size: 14.5px; font-weight: 600; padding: 12px 20px; border-radius: var(--radius-pill); box-shadow: var(--shadow); transition: border-color 0.15s, transform 0.15s, background 0.15s, color 0.15s; }
.centre-chip .ico { width: 16px; height: 16px; color: var(--color-primary); transition: color 0.15s; }
.centre-chip:hover { border-color: var(--color-primary); background: var(--color-primary); color: var(--on-primary); transform: translateY(-2px); }
.centre-chip:hover .ico { color: var(--on-primary); }

/* ---- Guarantee ---- */
.guarantee { text-align: center; }
.guarantee-card { max-width: 720px; margin: 0 auto; background: var(--card); border: 2px solid var(--gold); border-radius: var(--radius-lg); padding: 40px 30px; box-shadow: var(--shadow-lg); }
.guarantee-card .seal { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--saffron)); color: var(--surface); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.guarantee-card .seal .ico { width: 34px; height: 34px; }
.guarantee-card h2 { margin-bottom: 12px; }
.guarantee-card p { color: var(--ink); font-size: 16px; }

/* ---- FAQ ---- */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; box-shadow: var(--shadow); }
.faq-item summary { list-style: none; cursor: pointer; font-weight: 600; font-size: 16px; color: var(--maroon); padding: 16px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev { color: var(--saffron); transition: transform 0.25s ease; }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-item p { color: var(--muted); font-size: 15px; padding: 0 0 18px; }

/* ---- SEO text block ---- */
.seo-block { background: var(--cream-2); }
.seo-block h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; text-align: center; }
.seo-block .seo-copy { color: var(--muted); font-size: 14.5px; max-width: 900px; margin: 0 auto; }
.seo-block .seo-copy p { margin-bottom: 12px; }
.seo-block .seo-copy h3 { font-size: 20px; color: var(--maroon); margin: 22px 0 8px; }
.seo-block strong { color: var(--maroon); }

/* ---- Final CTA ---- */
.finalcta { background: linear-gradient(135deg, var(--maroon), var(--red-dk)); color: var(--surface); text-align: center; padding: 66px 0; }
.finalcta h2 { color: var(--surface); font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.finalcta p { color: var(--on-maroon-dim); font-size: 17px; max-width: 580px; margin: 0 auto 26px; }

/* ---- Footer ---- */
.footer { background: var(--bg-footer); color: var(--footer-text); padding-top: 44px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 30px 26px; padding-bottom: 28px; }
.footer h3 { color: var(--surface); font-family: var(--font-head); font-size: 17px; margin-bottom: 14px; }
.foot-social { display: flex; gap: 10px; margin: 16px 0 4px; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(242,169,0,0.12); border: 1px solid rgba(242,169,0,0.32); color: var(--gold); display: grid; place-items: center; transition: background 0.15s, color 0.15s, transform 0.15s; }
.foot-social a:hover { background: var(--gold); color: var(--maroon); transform: translateY(-2px); }
.foot-social .ico { width: 18px; height: 18px; }
.foot-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; margin-bottom: 18px; }
.foot-brand strong { font-family: var(--font-head); color: var(--surface); font-size: 16px; }
.foot-logo { height: 46px; width: auto; display: block; opacity: 0.97;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4)); }
.foot-brand::after { content: ""; display: block; width: 120px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(242,169,0,0)); }
.foot-note { color: var(--footer-text-dim); font-size: 13.5px; max-width: 320px; }
.foot-links { display: flex; flex-direction: column; gap: 4px; }
.foot-links a { color: var(--footer-link); font-size: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 6px 0; min-height: 32px; transition: color 0.15s; }
.foot-links a:hover { color: var(--gold); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0 30px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.foot-bottom p { font-size: 12px; color: var(--footer-text-mute); }
.foot-bottom a { color: var(--footer-link); text-decoration: underline; }

/* ---- Sticky mobile bar ---- */
.sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; box-shadow: 0 -6px 20px rgba(0,0,0,0.2); }
.sticky-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; font-weight: 700; font-size: 15px; }
.sticky-call { background: linear-gradient(135deg, var(--saffron), var(--saffron-dk)); color: var(--surface); }
.sticky-wa { background: var(--wa); color: var(--surface); }

/* ---- Trust ticker (under header) ---- */
.ticker { background: var(--maroon); overflow: hidden; border-bottom: 2px solid var(--gold); }
.ticker-track { display: inline-flex; white-space: nowrap; animation: ticker 30s linear infinite; will-change: transform; }
.ticker-track span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 22px; font-size: 13px; font-weight: 600; color: var(--on-maroon); }
.ticker-track .ico { color: var(--gold); width: 15px; height: 15px; }
.ticker-track .sep { color: var(--gold); opacity: 0.6; padding: 9px 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ---- Hero inline stats ---- */
.hero-stats { display: flex; gap: 26px; margin: 2px 0 16px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 26px; color: var(--saffron); line-height: 1.1; }
.hero-stat span { font-size: 12px; color: var(--muted); font-weight: 500; }

/* ---- Featured / media-wall band ---- */
.featured-band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.featured-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.featured-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.featured-badge { position: relative; display: flex; align-items: center; gap: 22px; width: 100%; max-width: 580px; margin: 0 auto; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 18px; padding: 16px 30px 16px 16px; box-shadow: var(--shadow-lg); }
.featured-thumb { width: 240px; height: 135px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
.featured-badge-text { display: flex; flex-direction: column; gap: 3px; font-size: 15.5px; color: var(--muted); line-height: 1.4; text-align: left; }
.featured-badge-text strong { font-family: var(--font-head); font-size: 24px; color: var(--maroon); font-weight: 700; }

/* Image crop refinements */
.img-slot img.cert { object-fit: contain; background: var(--cream-2); padding: 6px; }
.img-slot.portrait img { object-position: center 18%; }
.story .img-slot img { object-position: center 22%; }
.honors-grid .img-slot img { object-position: center top; }

/* Background-video sections */
.has-bgvideo { position: relative; overflow: hidden; isolation: isolate; }
.has-bgvideo > .container { position: relative; z-index: 2; }
.bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; border: 0; pointer-events: none; }
.bg-video-overlay { position: absolute; inset: 0; z-index: 1; }
.gurus.has-bgvideo { background: var(--maroon); }
.gurus.has-bgvideo .bg-video-overlay { background: linear-gradient(180deg, rgba(46,15,10,0.82), rgba(46,15,10,0.88)); }
.gurus.has-bgvideo .eyebrow, .gurus.has-bgvideo h2 { color: #fff; }
.gurus.has-bgvideo .section-sub { color: rgba(255,247,236,0.88); }
.gurus.has-bgvideo .guru-card figcaption h3 { color: #fff; }
.gurus.has-bgvideo .guru-card figcaption p { color: rgba(255,247,236,0.86); }
.finalcta.has-bgvideo .bg-video-overlay { background: linear-gradient(135deg, rgba(90,30,20,0.82), rgba(122,30,20,0.86)); }
@media (prefers-reduced-motion: reduce) { .bg-video { display: none; } }
/* Never load the heavy decorative bg-videos on phones - sections keep their solid maroon fallback */
@media (max-width: 760px) { .bg-video { display: none; } }

/* Watch Guruji - YouTube click-to-play */
.videos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.yt { margin: 0; }
.yt-facade { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; padding: 0; border: 0; border-radius: var(--radius); overflow: hidden; cursor: pointer; background: #000; box-shadow: var(--shadow-lg); }
.yt-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease, filter 0.3s ease; }
.yt-facade:hover img, .yt-facade:focus-visible img { transform: scale(1.05); filter: brightness(0.82); }
.yt-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 68px; height: 48px; }
.yt-play svg { width: 100%; height: 100%; display: block; }
.yt-play-bg { fill: var(--saffron); opacity: 0.94; transition: fill 0.2s ease, opacity 0.2s ease; }
.yt-facade:hover .yt-play-bg, .yt-facade:focus-visible .yt-play-bg { fill: var(--red); opacity: 1; }
.yt-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
.yt-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt figcaption { margin-top: 12px; text-align: center; font-size: 14.5px; color: var(--muted); }
.yt figcaption strong { color: var(--maroon); font-family: var(--font-head); font-weight: 700; }
.videos-grid.three { grid-template-columns: repeat(3, 1fr); max-width: 1080px; }
.shorts-head { display: flex; align-items: center; justify-content: center; gap: 14px; max-width: 620px; margin: 40px auto 22px; }
.shorts-head::before, .shorts-head::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(140, 20, 30, 0.22), transparent); }
.shorts-label { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--maroon); letter-spacing: 0.3px; white-space: nowrap; }
.shorts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 820px; margin: 0 auto; }
@media (max-width: 680px) { .shorts-grid { grid-template-columns: repeat(2, 1fr); max-width: 420px; } }
.yt.short .yt-facade, .yt.short .yt-embed { aspect-ratio: 9 / 16; }
.yt.short .yt-play { width: 50px; height: 35px; }
.yt.short figcaption { font-size: 13px; margin-top: 10px; }
@media (max-width: 480px) { .shorts-grid { gap: 10px; } .shorts-label { font-size: 16px; } .yt.short figcaption { font-size: 11.5px; } }
@media (max-width: 640px) { .videos-grid { grid-template-columns: 1fr; max-width: 440px; } }
@media (max-width: 900px) { .videos-grid.three { grid-template-columns: 1fr 1fr; max-width: 720px; } }
@media (max-width: 640px) { .videos-grid.three { grid-template-columns: 1fr; max-width: 440px; } }

/* Follow on Instagram */
.insta-profile { display: flex; align-items: center; gap: 14px; max-width: 470px; margin: 0 auto 26px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow); text-decoration: none; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.insta-profile:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.insta-ava { width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); }
.insta-ava .ico { width: 28px; height: 28px; }
.insta-meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.insta-meta strong { font-family: var(--font-head); font-size: 17px; color: var(--maroon); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.insta-meta span { font-size: 13px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.insta-follow { flex-shrink: 0; background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); color: #fff; font-weight: 700; font-size: 14px; padding: 9px 22px; border-radius: 999px; }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 760px; margin: 0 auto; }
.insta-tile { position: relative; aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); display: block; transition: transform 0.22s ease, box-shadow 0.22s ease; }
.insta-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.insta-ig { position: absolute; top: 9px; right: 9px; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; background: rgba(0,0,0,0.32); backdrop-filter: blur(2px); }
.insta-ig .ico { width: 17px; height: 17px; }
.insta-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 55%, rgba(188,24,136,0.28)); opacity: 0; transition: opacity 0.22s ease; }
.insta-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.insta-tile:hover::after { opacity: 1; }
.insta-hint { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 22px; font-size: 13px; color: var(--muted); }
.insta-hint .ico { width: 15px; height: 15px; color: #dc2743; }
/* Guruji spotlight gallery (masonry, tap-to-enlarge) */
.gallery-grid { columns: 3; column-gap: 16px; max-width: 1000px; margin: 0 auto 30px; }
.gallery-tile { break-inside: avoid; display: block; width: 100%; margin: 0 0 16px; padding: 0; border: 1px solid var(--card-border); background: none; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); cursor: zoom-in; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.gallery-tile img { width: 100%; height: auto; display: block; }
.gallery-tile:hover, .gallery-tile:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 2; column-gap: 12px; } .gallery-tile { margin-bottom: 12px; } }
/* Promo bands - designed banners distributed across the page */
.promo-band { padding: 26px 0; }
.promo-band.tint { background: var(--cream-2); }
.promo-band .container { display: flex; justify-content: center; }
.promo-tile { display: block; width: 100%; max-width: 430px; margin: 0 auto; padding: 0; border: 0; background: none; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); cursor: zoom-in; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.promo-tile.wide { max-width: 940px; }
.promo-tile img { width: 100%; height: auto; display: block; }
.promo-tile:hover, .promo-tile:focus-visible { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(90,30,20,0.24); }
@media (max-width: 560px) { .promo-band { padding: 16px 0; } .promo-tile { max-width: 340px; } .promo-tile.wide { max-width: 100%; } }
@media (max-width: 560px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); max-width: 400px; }
  .insta-profile { flex-wrap: wrap; max-width: 340px; }
  .insta-meta { flex: 1 1 auto; }
  .insta-follow { order: 3; width: 100%; text-align: center; }
}

/* Image presentation - elevation, hover lift/zoom, caption clarity (ui-ux-pro-max) */
.about-media .img-slot, .about-awards .img-slot, .honors-grid .img-slot, .story .img-slot { transition: box-shadow 0.3s ease; }
.img-slot:has(img) img:not(.cert) { transition: transform 0.5s ease; }
@media (hover: hover) {
  .honors-grid .img-slot:has(img):hover,
  .about-awards .img-slot:has(img):hover,
  .story .img-slot:has(img):hover,
  .about-media .img-slot.portrait:hover { box-shadow: var(--shadow-lg); }
  .honors-grid .img-slot:has(img):hover img:not(.cert),
  .story .img-slot:has(img):hover img:not(.cert),
  .about-media .img-slot.portrait:hover img:not(.cert) { transform: scale(1.05); }
}
/* Caption bar over Honours broadcast stills for legibility */
.honors-grid .img-slot:has(img)::after {
  display: block; content: attr(data-label);
  position: absolute; left: 0; right: 0; bottom: 0; top: auto;
  padding: 24px 14px 9px; text-align: left;
  background: linear-gradient(transparent, rgba(38,10,4,0.86));
  color: #fff; font-family: var(--font-body); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.3px; text-transform: none; opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .img-slot:has(img) img:not(.cert) { transition: none; }
  .honors-grid .img-slot:has(img):hover img:not(.cert),
  .story .img-slot:has(img):hover img:not(.cert),
  .about-media .img-slot.portrait:hover img:not(.cert) { transform: none; }
}

/* ---- Service per-card CTAs ---- */
.svc-cta { display: flex; gap: 8px; margin-top: 14px; }
.svc-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 9px; border-radius: 9px; font-size: 13px; font-weight: 700; transition: background 0.15s, color 0.15s; }
.svc-cta .c-wa { background: var(--wa); color: var(--surface); }
.svc-cta .c-wa:hover { filter: brightness(1.06); }
.svc-cta .c-call { background: var(--tint-primary); color: var(--saffron); border: 1px solid var(--tint-primary-border); }
.svc-cta .c-call:hover { background: var(--saffron); color: var(--surface); border-color: var(--saffron); }
.svc-cta .ico { width: 16px; height: 16px; }

/* ---- Why choose: dark maroon + gold-bordered cards ---- */
.why-dark { background: linear-gradient(180deg, var(--maroon), var(--p-maroon-900)); }
.why-dark .section-head h2 { color: var(--surface); }
.why-dark .eyebrow { color: var(--gold); }
.why-dark .eyebrow::before, .why-dark .eyebrow::after { background: var(--gold); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(242,169,0,0.4); border-radius: var(--radius); padding: 26px 20px; text-align: center; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.why-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 16px 34px rgba(0,0,0,0.3); }
.why-card .why-ico { width: 56px; height: 56px; border-radius: 50%; background: rgba(242,169,0,0.14); color: var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.why-card strong { display: block; font-family: var(--font-head); font-size: 30px; color: var(--gold); line-height: 1.1; }
.why-card h3 { color: var(--surface); font-size: 18px; margin: 4px 0 6px; }
.why-card p { color: var(--on-maroon-mute); font-size: 13.5px; }

/* ---- SEO tag cloud ---- */
.tagcloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 900px; margin: 0 auto; }
.tagcloud a { background: var(--surface); border: 1px solid var(--line); color: var(--maroon); font-size: 13px; font-weight: 500; padding: 8px 16px; border-radius: 50px; transition: background 0.15s, color 0.15s, border-color 0.15s; }
.tagcloud a:hover { background: var(--saffron); color: var(--surface); border-color: var(--saffron); }

/* ---- Footer extras ---- */
.foot-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.foot-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(242,169,0,0.12); border: 1px solid rgba(242,169,0,0.35); color: var(--gold); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 50px; }
.foot-badge .ico { width: 14px; height: 14px; }
.foot-contact-rows { display: flex; flex-direction: column; gap: 14px; }
.foot-crow { display: flex; align-items: flex-start; gap: 11px; }
.foot-crow .fc-ico { width: 36px; height: 36px; border-radius: 9px; background: rgba(242,169,0,0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.foot-crow .fc-ico .ico { width: 17px; height: 17px; }
.foot-crow .fc-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--footer-text-mute); }
.foot-crow .fc-val { color: var(--surface); font-size: 14px; font-weight: 600; }
.foot-crow a.fc-val:hover { color: var(--gold); }

/* ---- Floating contact buttons (desktop) ---- */
.float-btns { position: fixed; right: 18px; bottom: 22px; z-index: 55; display: flex; flex-direction: column; gap: 12px; }
.float-btns a { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--surface); box-shadow: 0 8px 22px rgba(0,0,0,0.28); transition: transform 0.18s; }
.float-btns a:hover { transform: scale(1.08); }
.float-btns .f-wa { background: var(--wa); }
.float-btns .f-call { background: linear-gradient(135deg, var(--saffron), var(--saffron-dk)); }
.float-btns .ico { width: 26px; height: 26px; }
.float-btns .f-wa { animation: floatpulse 2.4s ease-in-out infinite; }
@keyframes floatpulse { 0%,100% { box-shadow: 0 8px 22px rgba(0,0,0,0.28); } 50% { box-shadow: 0 8px 22px rgba(31,176,85,0.55); } }

/* ---- Micro-polish (make-interfaces-feel-better) ---- */
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.hero-stat strong, .stat strong, .why-card strong, .grev-score, #slotCount, #zrText { font-variant-numeric: tabular-nums; }

/* Premium shimmer sweep on the main submit CTA (one per view) */
#submitBtn { position: relative; overflow: hidden; }
#submitBtn::after { content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent); transform: skewX(-20deg); animation: btnshine 4.2s ease-in-out infinite; pointer-events: none; }
@keyframes btnshine { 0%, 55% { left: -70%; } 100% { left: 130%; } }

/* ---- Scroll reveal (enabled only when JS runs) ---- */
.js-reveal [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s cubic-bezier(0.2,0,0,1), transform 0.6s cubic-bezier(0.2,0,0,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---- Zodiac quick insight ---- */
.zodiac-wheel { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; max-width: 900px; margin: 0 auto; }
.z-sign { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 16px 8px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; cursor: pointer; box-shadow: var(--shadow); font-family: var(--font-body); transition: transform 0.18s, border-color 0.18s, background 0.18s; }
.z-sign:hover { transform: translateY(-3px); border-color: var(--color-primary); }
.z-sign.active { background: var(--color-primary); border-color: var(--color-primary); }
.z-glyph { font-size: 30px; color: var(--color-primary); line-height: 1; transition: color 0.18s; }
.z-name { font-weight: 700; font-size: 14px; color: var(--heading); }
.z-date { font-size: 11px; color: var(--text-muted); }
.z-sign.active .z-glyph, .z-sign.active .z-name, .z-sign.active .z-date { color: var(--on-primary); }
.zodiac-result { max-width: 640px; margin: 28px auto 0; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-lg); text-align: center; }
.zr-head { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 14px; }
.zr-glyph { font-size: 46px; color: var(--color-primary); line-height: 1; }
.zr-head h3 { font-size: 24px; }
.zr-date { font-size: 12.5px; color: var(--text-muted); }
#zrText { color: var(--text); font-size: 16px; margin-bottom: 18px; }
.zr-note { font-size: 12.5px; color: var(--text-muted); margin-top: 12px; }

/* ---- Exit-intent modal ---- */
.exit-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(58,17,9,0.55); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease; }
.exit-overlay.open { opacity: 1; visibility: visible; }
.exit-modal { position: relative; background: var(--surface); border-radius: var(--radius-lg); max-width: 440px; width: 100%; padding: 34px 28px 28px; text-align: center; box-shadow: var(--shadow-lg); transform: translateY(12px) scale(0.98); transition: transform 0.28s cubic-bezier(0.2,0,0,1); }
.exit-overlay.open .exit-modal { transform: none; }
.exit-close { position: absolute; top: 8px; right: 10px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: none; border: none; font-size: 26px; line-height: 1; color: var(--text-muted); cursor: pointer; }
.exit-modal .em-glyph { width: 60px; height: 60px; border-radius: 50%; background: var(--tint-primary); color: var(--color-primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.exit-modal .em-glyph .ico { width: 30px; height: 30px; }
.exit-modal h3 { font-size: 26px; margin-bottom: 8px; }
.exit-modal p { color: var(--text-muted); margin-bottom: 18px; }
.exit-modal .btn { width: 100%; }
.exit-modal .em-note { font-size: 12.5px; margin-top: 12px; }

/* ---- Live booking toast (social proof) ---- */
.live-toast { position: fixed; left: 18px; bottom: 22px; z-index: 58; width: 322px; max-width: calc(100% - 36px); background: var(--surface); border: 1px solid var(--card-border); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 13px 30px 13px 13px; display: flex; gap: 12px; align-items: flex-start; transform: translateY(16px); opacity: 0; visibility: hidden; transition: transform 0.35s cubic-bezier(0.2,0,0,1), opacity 0.35s ease, visibility 0.35s; }
.live-toast.show { transform: none; opacity: 1; visibility: visible; }
.lt-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); color: var(--on-primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head); font-size: 18px; }
.lt-body { flex: 1; min-width: 0; }
.lt-line { font-size: 13.5px; color: var(--text); line-height: 1.35; }
.lt-line strong { color: var(--heading); }
.lt-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.lt-phone { font-size: 11.5px; color: var(--color-success); font-weight: 600; margin-top: 4px; display: inline-flex; align-items: center; gap: 5px; }
.lt-phone .ico { width: 13px; height: 13px; }
.lt-close { position: absolute; top: 2px; right: 2px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: none; border: none; color: var(--text-muted); font-size: 18px; line-height: 1; cursor: pointer; }
@media (max-width: 620px) {
  .live-toast { left: 10px; right: 10px; width: auto; max-width: none; bottom: 66px; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal] { opacity: 1 !important; transform: none !important; }
  #submitBtn::after { display: none; }
  * { animation: none !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-head, .hero-body, .hero-visual { grid-column: 1; grid-row: auto; }
  .hero-visual { order: 1; margin: 4px 0 6px; align-self: center; min-height: 0; }
  .hero-head { order: 2; margin-top: 8px; }
  .hero-body { order: 3; margin-top: 20px; }
  .hero-guruji { width: min(74%, 290px); }
  .zodiac-ring { width: min(88%, 300px); top: 57%; }
  .hero-badge { font-size: 11px; padding: 6px 10px; gap: 6px; }
  .hero-badge b { font-size: 14px; }
  .hero-badge .ico { width: 15px; height: 15px; }
  .hb-1 { left: 0; bottom: 44px; top: auto; }
  .hb-2 { right: 0; top: 2px; }
  .hb-3 { right: 0; bottom: 0; }
  .book-inner { grid-template-columns: 1fr; gap: 24px; }
  .book-copy { text-align: center; }
  .book-copy .section-sub { text-align: center; }
  .book-points { max-width: 360px; margin: 0 auto; text-align: left; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-media { max-width: 380px; margin: 0 auto; width: 100%; }
  .img-slot.portrait { width: 100%; }
  .about-awards { max-width: 440px; margin: 0 auto; width: 100%; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .honors-grid { grid-template-columns: 1fr 1fr; }
  .media-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .greviews-grid { grid-template-columns: 1fr; }
  .zodiac-wheel { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 620px) {
  .grid-3 { grid-template-columns: 1fr; }
  .btn-header { display: none; }
  .hero { padding: 32px 0 74px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 64px; }
  .topbar { font-size: 11px; gap: 8px; }
  .topbar-sep { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .honors-grid { grid-template-columns: 1fr 1fr; }
  .media-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .zodiac-wheel { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .z-glyph { font-size: 26px; }
  .gurus-grid { grid-template-columns: 1fr; max-width: 340px; }
  .float-btns { display: none; }
  .featured-inner { flex-direction: column; gap: 12px; }
  .hero-stats { gap: 18px; }
}

/* Cookie / Consent Mode banner */
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  background: var(--maroon); color: #fff; padding: 12px 20px; font-size: 14px;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.2); }
.cookie-bar[hidden] { display: none; }
.cookie-bar p { margin: 0; max-width: 620px; line-height: 1.45; }
.cookie-bar a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; flex: none; }
.ck-btn { border: 0; border-radius: 9px; padding: 10px 20px; font-weight: 700; font-size: 13px;
  cursor: pointer; background: var(--gold); color: #3a2600; transition: background .2s; }
.ck-btn:hover { background: #ffd24d; }
.ck-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.ck-ghost:hover { background: rgba(255,255,255,0.12); }
@media (max-width: 620px) { .cookie-bar { bottom: 54px; padding: 11px 16px; gap: 10px; } }
