/* ===== TOKENS ===== */
:root {
 --saffron: #D4782A;
 --saffron-light: #F09040;
 --gold: #B8832A;
 --gold-light: #E8B860;
 --maroon: #6B1020;
 --cream: #F5EED8;
 --cream-dark: #EDE0C0;
 /* Warm dark palette — amber-roasted, not cold black */
 --charcoal: #110A03;       /* Deepest warm dark — replaces cold #0D0C0A */
 --dark-bg: #1C1005;        /* Rich warm base — replaces cold #111008 */
 --dark-mid: #251508;       /* Warm mid-dark — replaces cold #1A1812 */
 --dark-card: #2E1A0A;      /* Warm card surface — replaces cold #201E16 */
 --brown: #3A2208;
 --white: #FFFFFF;
 --text: #1A1208;
 --text-light: #5A4020;
 --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
 --font-body: 'Cormorant Garamond', Georgia, serif;
 --font-sans: 'Jost', sans-serif;
 --font-display: 'Cinzel', serif;
 --font-quote: 'IM Fell English', Georgia, serif;
 --transition: all 0.4s ease;
 --shadow: 0 8px 40px rgba(0,0,0,0.4);
 --radius: 16px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; width: 100%; position: relative; }
body {
 font-family: var(--font-sans);
 background: var(--cream);
 color: var(--text);
 line-height: 1.7;
 overflow-x: hidden;
 width: 100%;
 position: relative;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
 font-family: var(--font-sans);
 font-size: 0.75rem;
 font-weight: 600;
 letter-spacing: 0.25em;
 text-transform: uppercase;
 color: var(--saffron);
 margin-bottom: 12px;
}
.section-title {
 font-family: var(--font-serif);
 font-size: clamp(2rem, 4vw, 3rem);
 font-weight: 600;
 line-height: 1.2;
 color: var(--charcoal);
 margin-bottom: 20px;
}
.section-sub {
 font-size: 1.05rem;
 color: var(--text-light);
 max-width: 520px;
 margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 60px; }

/* ===== BUTTONS ===== */
.btn {
 display: inline-flex;
 align-items: center;
 padding: 14px 32px;
 border-radius: 50px;
 font-family: var(--font-sans);
 font-size: 0.9rem;
 font-weight: 500;
 letter-spacing: 0.05em;
 transition: var(--transition);
 cursor: pointer;
 border: none;
}
.btn-primary {
 background: linear-gradient(135deg, var(--saffron), var(--gold));
 color: var(--white);
 box-shadow: 0 4px 20px rgba(232,114,42,0.35);
}
.btn-primary:hover {
 transform: translateY(-2px);
 box-shadow: 0 8px 32px rgba(232,114,42,0.5);
}
.btn-ghost {
 background: transparent;
 color: var(--white);
 border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
 position: fixed;
 top: 0;
 left: 0; right: 0;
 z-index: 10000;
 padding: 0;
 transition: background 0.5s ease, box-shadow 0.5s ease,
             border-color 0.5s ease, backdrop-filter 0.5s ease;
}
.nav-container {
 max-width: 100%;
 margin: 0;
 padding: 18px 32px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 12px;
 position: relative;
 /* Fully transparent at top — desktop only */
 background: transparent;
 backdrop-filter: none;
 -webkit-backdrop-filter: none;
 border-bottom: 1px solid transparent;
 border-radius: 0;
 box-shadow: none;
 transition: background 0.5s ease, box-shadow 0.5s ease,
             border-color 0.5s ease, backdrop-filter 0.5s ease,
             padding 0.5s ease;
}
/* On scroll — dark glass bar appears gently (desktop) */
.navbar.scrolled .nav-container {
 background: rgba(14,9,4,0.88);
 backdrop-filter: blur(16px);
 -webkit-backdrop-filter: blur(16px);
 border-bottom: 1px solid rgba(255,255,255,0.07);
 box-shadow: 0 4px 30px rgba(0,0,0,0.4);
 padding: 12px 32px;
}

.nav-logo {
 display: flex;
 align-items: center;
 gap: 10px;
 flex-shrink: 0;
}
.nav-custom-logo {
 height: 52px;
 width: auto;
 object-fit: contain;
 filter: invert(1) sepia(1) saturate(0.5) brightness(2.4)
  drop-shadow(0 2px 12px rgba(0,0,0,0.7))
  drop-shadow(0 0 28px rgba(212,160,60,0.5));
 transition: filter 0.5s ease, opacity 0.3s ease, transform 0.3s ease;
}
.nav-custom-logo:hover { opacity: 0.9; transform: scale(1.03); }
.custom-logo {
 height: 48px;
 width: auto;
 object-fit: contain;
 filter: invert(1) sepia(1) saturate(0.4) brightness(2.2)
 drop-shadow(0 1px 8px rgba(0,0,0,0.6))
 drop-shadow(0 0 20px rgba(212,160,60,0.3));
 transition: filter 0.5s ease, opacity 0.3s ease;
}
.footer-custom-logo { height: 60px; margin-bottom: 8px; }
.logo-text {
 font-family: var(--font-display);
 font-size: 1.4rem;
 color: var(--white);
 letter-spacing: 0.05em;
}

/* ---- Certification Logo: Navbar Center ---- */
.nav-cert-logo {
 position: absolute;
 left: 50%;
 transform: translateX(-50%);
 display: flex;
 align-items: center;
 pointer-events: none;
}
.cert-logo-img {
 height: 40px;
 width: auto;
 object-fit: contain;
 filter: invert(1) sepia(1) saturate(0.5) brightness(2.4)
  drop-shadow(0 2px 12px rgba(0,0,0,0.7))
  drop-shadow(0 0 28px rgba(212,160,60,0.5));
 transition: filter 0.5s ease, opacity 0.3s ease;
}

/* ---- Certification Logo: Footer ---- */
.footer-cert-logo {
 margin-top: 18px;
 padding-top: 16px;
 border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-cert-img {
 height: 55px;
 width: auto;
 object-fit: contain;
 filter: invert(1) sepia(1) saturate(0.4) brightness(2.2);
 transition: filter 0.5s ease, opacity 0.3s ease;
}
.footer-cert-img:hover { opacity: 0.9; }

/* ---- Nav links: desktop dropdown (hidden by default, shown on open) ---- */
.nav-links {
 display: none;
 position: absolute;
 top: calc(100% + 10px);
 right: 0;
 min-width: 220px;
 background: rgba(14,9,4,0.97);
 backdrop-filter: blur(20px);
 -webkit-backdrop-filter: blur(20px);
 border: 1px solid rgba(255,255,255,0.1);
 border-radius: 16px;
 box-shadow: 0 16px 48px rgba(0,0,0,0.6);
 flex-direction: column;
 align-items: stretch;
 gap: 0;
 padding: 8px 0;
 z-index: 9999;
 animation: dropIn 0.18s ease;
 margin: 0;
}
@keyframes dropIn {
 from { opacity: 0; transform: translateY(-6px); }
 to   { opacity: 1; transform: translateY(0); }
}
.nav-links.open { display: flex; }
.nav-links li { list-style: none; }
.nav-links a {
 display: block;
 padding: 12px 24px;
 color: rgba(255,255,255,0.82);
 font-size: 0.9rem;
 font-weight: 400;
 letter-spacing: 0.04em;
 transition: color 0.15s, background 0.15s;
 white-space: nowrap;
}
.nav-links a:hover {
 color: var(--saffron-light);
 background: rgba(255,255,255,0.05);
}
.nav-links li:first-child a { border-radius: 8px 8px 0 0; }
.nav-links li:last-child { padding: 6px 10px 8px; }
.nav-links li:last-child a {
 background: linear-gradient(135deg, var(--saffron), var(--gold));
 color: var(--white) !important;
 border-radius: 50px;
 text-align: center;
 font-weight: 500;
 padding: 10px 20px;
}
.nav-links li:last-child a:hover { opacity: 0.88; }

/* ---- Hamburger button ---- */
.hamburger {
 display: flex;
 flex-direction: column;
 gap: 6px;
 background: none;
 border: none;
 cursor: pointer;
 padding: 4px;
 flex-shrink: 0;
 z-index: 10002;
 position: relative;
}
.hamburger:hover {
 opacity: 0.8;
}
.hamburger span {
 display: block;
 width: 20px; height: 2px;
 background: var(--white);
 border-radius: 2px;
 transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ===== HERO ===== */
.hero {
 position: relative;
 height: 100vh;
 min-height: 680px;
 display: flex;
 align-items: center;
 justify-content: center;
 overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
 width: 100%; height: 100%;
 object-fit: cover;
 object-position: center;
}
.hero-overlay {
 position: absolute; inset: 0;
 background: linear-gradient(
  to bottom,
  rgba(26,18,9,0.30) 0%,
  rgba(26,18,9,0.15) 45%,
  rgba(26,18,9,0.65) 100%
 );
}
.hero-top-bar {
 position: absolute;
 top: 0; left: 0; right: 0;
 height: 4px;
 background: linear-gradient(90deg, var(--maroon), var(--saffron), var(--gold), var(--saffron), var(--maroon));
 z-index: 10;
}
.hero-symbol-wrap {
 margin-bottom: 24px;
}
.hero-symbol {
 width: 80px;
 height: 80px;
 object-fit: contain;
 filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, 0.9)) drop-shadow(0px 0px 12px rgba(255, 255, 255, 0.5));
 filter: drop-shadow(0 0 20px rgba(212,120,42,0.6));
 animation: floatSymbol 4s ease-in-out infinite;
}
@keyframes floatSymbol {
 0%,100%{transform:translateY(0);}
 50%{transform:translateY(-10px);}
}
.hero-content {
 position: relative;
 z-index: 2;
 text-align: center;
 color: var(--white);
 padding: 0 24px;
}
.hero-subtitle {
 font-family: var(--font-sans);
 font-size: 0.8rem;
 letter-spacing: 0.3em;
 text-transform: uppercase;
 color: var(--saffron-light);
 margin-bottom: 16px;
}
.hero-title {
 margin-bottom: 16px;
 line-height: 1;
}
/* Hero Yogartha logo image — large, prominent, with glow */
.hero-logo-img {
 display: block;
 width: clamp(200px, 45vw, 420px);
 height: auto;
 margin: 0 auto 40px;
 transform: translateY(-30px);
 /* Convert dark text to cream/white so it shows on dark hero bg */
 filter: invert(1) sepia(1) saturate(0.3) brightness(2.0)
 drop-shadow(0 4px 24px rgba(0,0,0,0.7));
 animation: fadeSlideUpLogo 1.2s ease both;
}
@keyframes fadeSlideUpLogo {
 from { opacity:0; transform: translateY(0); }
 to { opacity:1; transform: translateY(-30px); }
}
@keyframes fadeSlideUp {
 from { opacity:0; transform: translateY(30px); }
 to { opacity:1; transform: translateY(0); }
}
/* Elegant brand name replacing the centre logo image */
.hero-brand-text {
 display: block;
 font-family: 'Cormorant Garamond', serif;
 font-style: italic;
 font-weight: 300;
 font-size: clamp(4rem, 12vw, 9rem);
 color: rgba(255,255,255,0.97);
 letter-spacing: 0.15em;
 line-height: 1;
 margin-bottom: 8px;
 text-shadow:
  0 2px 40px rgba(212,160,60,0.4),
  0 0 80px rgba(212,160,60,0.15),
  0 4px 24px rgba(0,0,0,0.5);
 animation: fadeSlideUp 1.2s ease both;
}
.hero-tagline {
 font-family: var(--font-sans);
 font-size: clamp(0.8rem, 1.8vw, 1rem);
 font-weight: 500;
 color: var(--gold-light);
 letter-spacing: 0.28em;
 text-transform: uppercase;
 margin-bottom: 20px;
 text-shadow: 0 0 20px rgba(232,184,96,0.45), 0 0 40px rgba(232,184,96,0.2);
}
.hero-desc {
 font-size: 1rem;
 color: rgba(255,255,255,0.8);
 margin-bottom: 40px;
 line-height: 1.8;
}
.hero-desc-main {
 font-size: 1rem;
 color: rgba(255,255,255,0.85);
 letter-spacing: 0.03em;
 font-weight: 400;
}
.hero-desc-sub {
 font-size: 0.78rem;
 color: rgba(255,255,255,0.5);
 letter-spacing: 0.12em;
 text-transform: uppercase;
 font-weight: 300;
}
.hero-btns { 
 display: flex; 
 gap: 16px; 
 justify-content: center; 
 flex-wrap: wrap; 
}
.hero-scroll-hint {
 position: absolute;
 bottom: 40px; left: 50%;
 transform: translateX(-50%);
 z-index: 2;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 10px;
 color: rgba(255,255,255,0.5);
 font-size: 0.7rem;
 letter-spacing: 0.15em;
 text-transform: uppercase;
}
.scroll-line {
 width: 1px; height: 50px;
 background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
 animation: scrollPulse 2s infinite;
}
@media (max-height: 750px) {
 .hero-scroll-hint { display: none; } /* Hide on short screens to prevent overlap with buttons */
}

/* ===== ELEGANT MARQUEE ===== */
.marquee-elegant {
 background: var(--charcoal); /* Deep anchoring color */
 padding: 10px 0;
 overflow: hidden;
 border-top: 1px solid rgba(255,255,255,0.05);
 border-bottom: 2px solid var(--saffron);
}
.marquee-track-elegant {
 display: flex;
 gap: 48px;
 white-space: nowrap;
 animation: marquee-slow 40s linear infinite;
 align-items: center;
}
.marquee-track-elegant span {
 font-family: var(--font-sans);
 font-size: 0.85rem;
 font-weight: 500;
 text-transform: uppercase;
 letter-spacing: 0.25em;
 color: var(--cream);
 display: flex;
 align-items: center;
}
.marquee-track-elegant.icon {
 font-size: 1.05rem;
 color: var(--saffron);
 margin-right: 14px;
}
.marquee-track-elegant.sep {
 display: none;
}
@keyframes marquee-slow {
 0% { transform: translateX(0); }
 100% { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-img-wrap { position: relative; }
.about-img {
 width: 100%;
 border-radius: var(--radius);
 box-shadow: var(--shadow);
 aspect-ratio: 4/5;
 object-fit: cover;
 object-position: center center;
}
.about-badge {
 position: absolute;
 bottom: -20px; right: -20px;
 background: linear-gradient(135deg, var(--saffron), var(--gold));
 color: var(--white);
 padding: 20px 28px;
 border-radius: var(--radius);
 text-align: center;
 box-shadow: var(--shadow);
}
.badge-num { display: block; font-family: 'IM Fell English', serif; font-style: italic; font-size: 2.4rem; font-weight: normal; letter-spacing: 0.05em; line-height: 1; }
.badge-lbl { display: block; font-size: 0.75rem; letter-spacing: 0.1em; opacity: 0.9; }
.about-text p { color: var(--text-light); margin-bottom: 20px; font-size: 1rem; }
.about-mission {
 background: linear-gradient(135deg, rgba(212,120,42,0.06), rgba(184,130,42,0.04));
 border-left: 3px solid var(--saffron);
 padding: 16px 20px;
 border-radius: 0 10px 10px 0;
 font-size: 0.97rem !important;
}
.mission-label {
 font-family: var(--font-display);
 font-size: 0.75rem;
 font-weight: 700;
 letter-spacing: 0.2em;
 text-transform: uppercase;
 color: var(--saffron);
}
.about-stats {
 display: flex;
 gap: 32px;
 margin: 32px 0;
 padding: 28px;
 background: linear-gradient(135deg, var(--cream-dark), var(--cream));
 border-radius: var(--radius);
 border: 1px solid rgba(201,150,58,0.2);
}
.stat { text-align: center; flex: 1; }
.stat-num {
 display: block;
 font-family: 'IM Fell English', serif;
 font-style: italic;
 font-size: 2.4rem;
 color: var(--saffron);
 font-weight: normal;
 letter-spacing: 0.05em;
 line-height: 1;
}
.stat-lbl { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.05em; }

/* ===== PHILOSOPHY BANNER ===== */
.philosophy-banner {
 position: relative;
 background: url('../images/yoga_master_meditation.png') center 30%/cover no-repeat;
 padding: 120px 24px;
 text-align: center;
}
.philosophy-overlay {
 position: absolute; inset: 0;
 background: linear-gradient(135deg, rgba(123,31,50,0.82), rgba(26,18,9,0.85));
}
.philosophy-content { position: relative; z-index: 2; }
.philosophy-quote {
 font-family: var(--font-serif);
 font-size: clamp(1.4rem, 3vw, 2.2rem);
 font-style: italic;
 color: var(--white);
 max-width: 800px;
 margin: 0 auto 20px;
 line-height: 1.5;
}
.philosophy-attr {
 font-size: 0.85rem;
 color: var(--saffron-light);
 letter-spacing: 0.1em;
}

/* ===== OFFERINGS ===== */
.offerings { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.offerings-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
}
.offering-card {
 background: var(--white);
 border-radius: var(--radius);
 padding: 40px 32px;
 border: 1px solid rgba(201,150,58,0.15);
 box-shadow: 0 4px 24px rgba(74,44,10,0.06);
 transition: var(--transition);
 position: relative;
 overflow: hidden;
}
.offering-card::before {
 content: '';
 position: absolute;
 top: 0; left: 0; right: 0;
 height: 3px;
 background: linear-gradient(90deg, var(--saffron), var(--gold));
 transform: scaleX(0);
 transition: transform 0.4s ease;
}
.offering-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.offering-card:hover::before { transform: scaleX(1); }
.card-icon {
 width: 48px;
 height: 48px;
 margin-bottom: 22px;
 color: var(--saffron);
 transition: color 0.4s ease, transform 0.4s ease, filter 0.4s ease;
 display: flex;
 align-items: center;
 justify-content: flex-start;
}
.card-icon svg {
 width: 44px;
 height: 44px;
 display: block;
}
.offering-card:hover.card-icon {
 color: var(--saffron-light);
 filter: drop-shadow(0 0 8px rgba(240,144,64,0.5));
 transform: translateY(-2px);
}
.offering-card h3 {
 font-family: var(--font-serif);
 font-size: 1.4rem;
 color: var(--charcoal);
 margin-bottom: 12px;
}
.offering-card p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 16px; }
.offering-card ul { margin-bottom: 24px; }
.offering-card li {
 font-size: 0.82rem;
 color: var(--text-light);
 padding: 4px 0;
 padding-left: 16px;
 position: relative;
}
.offering-card li::before {
 content: 'â€”';
 position: absolute; left: 0;
 color: var(--saffron);
}
.card-link {
 font-size: 0.85rem;
 font-weight: 600;
 color: var(--saffron);
 letter-spacing: 0.05em;
 transition: gap 0.3s;
}
.card-link:hover { color: var(--maroon); }

/* ===== VISUAL OFFERING CARDS (photo on top) ===== */
.offering-card--visual {
 padding: 0;
 display: flex;
 flex-direction: column;
 overflow: visible; /* allow clip shape to breathe */
}
.offering-card--visual::before {
 border-radius: var(--radius) var(--radius) 0 0;
 z-index: 2;
}

/* ---- Image wrapper: diagonal slice at bottom ---- */
.card-img-wrap {
 position: relative;
 width: 100%;
 height: 215px;
 overflow: hidden;
 flex-shrink: 0;
 border-radius: var(--radius) var(--radius) 0 0;
 /* Diagonal cut: left stays flush, right side slants down ~28px */
 clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%);
 transition: clip-path 0.55s ease;
}
.offering-card--visual:hover .card-img-wrap {
 clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 28px));
}

.card-img-wrap img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
 transition: transform 0.55s ease;
 display: block;
}
.offering-card--visual:hover .card-img-wrap img { transform: scale(1.07); }

/* ---- Overlay: richer two-stop gradient ---- */
.card-img-overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(
   160deg,
   rgba(26,18,9,0.04) 0%,
   rgba(107,46,10,0.18) 45%,
   rgba(26,18,9,0.72) 100%
 );
}

/* ---- Badge: title + icon over the image ---- */
.card-img-badge {
 position: absolute;
 bottom: 22px;
 left: 18px;
 display: flex;
 align-items: center;
 gap: 9px;
 z-index: 2;
}
.card-icon-mini {
 width: 26px; height: 26px;
 color: var(--saffron-light);
 flex-shrink: 0;
 filter: drop-shadow(0 0 5px rgba(240,144,64,0.6));
}
.card-icon-mini svg { width: 26px; height: 26px; display: block; }
.card-img-badge h3 {
 font-family: var(--font-serif);
 font-size: 1.15rem;
 color: var(--white);
 margin: 0;
 text-shadow: 0 2px 10px rgba(0,0,0,0.65);
 letter-spacing: 0.01em;
}

/* ---- Card body: pulls up slightly to overlap the diagonal ---- */
.card-body {
 padding: 14px 22px 22px;
 display: flex;
 flex-direction: column;
 flex: 1;
 margin-top: -4px; /* subtle overlap with the diagonal */
 position: relative;
 z-index: 1;
}
.card-quote {
 font-size: 0.875rem;
 color: var(--text-light);
 line-height: 1.75;
 margin-bottom: 18px;
 font-style: italic;
 flex: 1;
}


/* ===== GURU ===== */
.guru-section { background: var(--cream); }
.guru-grid { align-items: flex-start; }
.guru-img-wrap { position: relative; }
.guru-frame {
 border-radius: var(--radius);
 overflow: hidden;
 box-shadow: var(--shadow);
 position: relative;
 z-index: 2;
}
.guru-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.guru-doodle {
 position: absolute;
 bottom: -40px; right: -40px;
 width: 200px; height: 200px;
 opacity: 0.12;
 z-index: 1;
}
.mandala-deco { width: 100%; animation: rotateSlow 30s linear infinite; }
.guru-title-text {
 font-size: 0.9rem;
 color: var(--saffron);
 font-weight: 500;
 margin-bottom: 20px;
 letter-spacing: 0.05em;
}
.guru-text p { color: var(--text-light); margin-bottom: 16px; }
.reeta-personal-note {
 position: relative;
 background: linear-gradient(135deg, rgba(212,120,42,0.05), rgba(184,130,42,0.03));
 border: 1px solid rgba(212,120,42,0.18);
 border-radius: var(--radius);
 padding: 20px 20px 20px 52px;
 margin: 20px 0;
}
.reeta-personal-note p {
 margin-bottom: 0 !important;
 font-size: 0.93rem !important;
 font-style: italic;
 color: var(--text-light);
}
.personal-note-icon {
 position: absolute;
 top: 18px;
 left: 16px;
 font-size: 1.4rem;
 line-height: 1;
}
.guru-credentials {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 12px;
 margin-top: 28px;
}
.cred {
 display: flex;
 align-items: center;
 gap: 10px;
 background: var(--cream-dark);
 padding: 12px 16px;
 border-radius: 10px;
 font-size: 0.85rem;
 color: var(--text);
}
.cred-icon {
 width: 22px;
 height: 22px;
 flex-shrink: 0;
 color: var(--saffron);
 display: flex;
 align-items: center;
}
.cred-icon svg { width: 20px; height: 20px; }

/* ===== EXPERIENCE ===== */
.experience-section { background: var(--cream-dark); }
.experience-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.experience-img { width: 100%; height: 500px; object-fit: cover; }
.experience-features {
 position: absolute;
 bottom: 0; left: 0; right: 0;
 background: linear-gradient(to top, rgba(26,18,9,0.9), transparent);
 padding: 48px 40px 32px;
 display: flex;
 gap: 32px;
 flex-wrap: wrap;
}
.feat {
 display: flex;
 align-items: center;
 gap: 10px;
 color: var(--white);
 font-size: 0.9rem;
}
.feat-icon {
 width: 28px;
 height: 28px;
 flex-shrink: 0;
 color: var(--saffron-light);
 display: flex;
 align-items: center;
 justify-content: center;
}
.feat-icon svg { width: 24px; height: 24px; }

/* ===== UPCOMING BATCHES ===== */
.schedule-section { background: var(--charcoal); }

/* Sub-heading colour overrides inside dark section */
.schedule-section .section-eyebrow { color: var(--saffron-light); }
.schedule-section .section-title   { color: var(--white); }
.schedule-section .section-sub     { color: rgba(255,255,255,0.45); }

/* Grid of batch cards */
.batches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Individual card */
.batch-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: batchFadeIn 0.4s ease both;
}
.batch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.18);
}
@keyframes batchFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Top row: program pill + date range */
.batch-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Program name pill */
.batch-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.batch-pill.saffron { background: rgba(232,114,42,0.22); color: var(--saffron-light); }
.batch-pill.gold    { background: rgba(240,201,110,0.22); color: var(--gold-light); }
.batch-pill.rose    { background: rgba(196,50,80,0.22);  color: #F4A0B0; }
.batch-pill.blue    { background: rgba(74,144,226,0.22); color: #A8CFFF; }
.batch-pill.green   { background: rgba(60,160,100,0.22); color: #8EDDB0; }

/* Date range chip */
.batch-dates {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 4px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Program name headline */
.batch-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

/* Meta row: time + duration */
.batch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.batch-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.batch-meta-item svg { flex-shrink: 0; opacity: 0.7; }

/* Seats note */
.batch-seats {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* CTA button */
.batch-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(232,114,42,0.45);
  border-radius: 100px;
  color: var(--saffron-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  align-self: flex-start;
}
.batch-cta:hover {
  background: rgba(232,114,42,0.18);
  border-color: var(--saffron-light);
  color: #fff;
}

/* Empty state */
.batches-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px 20px 60px;
}

/* ── LOTUS BREATH INTERACTIVE ── */
.lotus-breath-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  cursor: default;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Tree view container */
.tree-side-container {
  position: relative;
  width: 260px;
  height: 320px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tree SVG */
.tree-side-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  /* Ensure stroke scales nicely */
  vector-effect: non-scaling-stroke;
}

/* Chalk stroke utility applied dynamically via JS */
.chalk-stroke {
  fill: none;
  stroke: rgba(232,114,42,0.85); /* Saffron ink */
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#chalkFilter);
  will-change: stroke-dashoffset;
}

.chalk-leaf {
  fill: rgba(232,114,42,0.15); /* Light saffron wash */
  stroke: rgba(232,114,42,0.85);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#chalkFilter);
  will-change: transform, opacity;
}

/* Breath text block */
.breath-ui {
  text-align: center;
  min-height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.breath-phase-txt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin: 0;
  transition: color 0.4s;
}
.breath-count-txt {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(232,114,42,0.75);
  line-height: 1;
  min-height: 1.1em;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Tagline below everything */
.lotus-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  margin: 0;
  letter-spacing: 0.04em;
}

/* Enquire CTA */
.meditate-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border: 1px solid rgba(232,114,42,0.4);
  border-radius: 100px;
  color: var(--saffron-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.meditate-cta:hover {
  background: rgba(232,114,42,0.14);
  border-color: var(--saffron-light);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .tree-side-container { width: 220px; height: 280px; }
  .breath-count-txt    { font-size: 2.2rem; }
}
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .lotus-breath-wrap   { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 16px; }
  .tree-side-container { width: 160px; height: 200px; }
  .breath-count-txt    { font-size: 1.8rem; }
}


/* ---- RESPONSIVE ---- */

/* Tablet */
@media (max-width: 900px) {
  .batches-grid { gap: 18px; }
  .batch-card   { padding: 22px 20px 18px; }
  .batch-name   { font-size: 1.1rem; }
}

/* Phone portrait & small tablet */
@media (max-width: 640px) {
  .batches-grid  { grid-template-columns: 1fr; gap: 14px; }
  .batch-card    { padding: 20px 18px 16px; border-radius: 12px; }
  .batch-name    { font-size: 1.05rem; }
  .batch-dates   { font-size: 0.72rem; }
  .batch-cta     { width: 100%; justify-content: center; }
}

/* Phone landscape */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .batches-grid { grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 28px; }
  .batch-card   { padding: 16px 16px 14px; gap: 10px; }
  .batch-name   { font-size: 1rem; }
}



/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.testi-card {
 background: var(--white);
 border-radius: var(--radius);
 padding: 36px;
 box-shadow: 0 4px 24px rgba(74,44,10,0.07);
 border: 1px solid rgba(201,150,58,0.12);
 transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: var(--text-light); font-style: italic; font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
 width: 46px; height: 46px;
 background: linear-gradient(135deg, var(--saffron), var(--gold));
 border-radius: 50%;
 display: flex; align-items: center; justify-content: center;
 color: var(--white);
 font-weight: 700;
 font-size: 1.1rem;
 flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--charcoal); font-size: 0.95rem; }
.testi-author small { color: var(--text-light); font-size: 0.8rem; }
.review-source-badge {
 display: inline-flex;
 align-items: center;
 gap: 5px;
 font-size: 0.72rem;
 font-family: var(--font-sans);
 font-weight: 600;
 color: #5f6368;
 background: #f1f3f4;
 border: 1px solid rgba(0,0,0,0.08);
 border-radius: 20px;
 padding: 3px 10px 3px 7px;
 margin-bottom: 10px;
 width: fit-content;
 letter-spacing: 0.02em;
}

/* ===== DOODLE DIVIDER ===== */
.doodle-divider { background: var(--cream-dark); padding: 20px 0; overflow: hidden; }
.doodle-divider img { width: 100%; height: 120px; object-fit: cover; opacity: 0.5; }

/* ===== CONTACT ===== */
.contact { background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%); }
.contact-info p { color: var(--text-light); margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: var(--text-light); }
.contact-icon {
 width: 22px;
 height: 22px;
 flex-shrink: 0;
 margin-top: 1px;
 color: var(--saffron);
 display: flex;
 align-items: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
 padding: 10px 22px;
 border: 1.5px solid rgba(201,150,58,0.4);
 border-radius: 50px;
 font-size: 0.82rem;
 font-weight: 500;
 color: var(--brown);
 transition: var(--transition);
}
.social-btn:hover { background: var(--saffron); color: var(--white); border-color: var(--saffron); }

/* FORM */
.contact-form-wrap {
 background: var(--white);
 border-radius: var(--radius);
 padding: 48px;
 box-shadow: var(--shadow);
}
.contact-form h3 {
 font-family: var(--font-serif);
 font-size: 1.8rem;
 color: var(--charcoal);
 margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
 display: block;
 font-size: 0.82rem;
 font-weight: 500;
 color: var(--text);
 margin-bottom: 8px;
 letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
 width: 100%;
 padding: 14px 18px;
 border: 1.5px solid rgba(74,44,10,0.15);
 border-radius: 10px;
 font-family: var(--font-sans);
 font-size: 0.92rem;
 color: var(--text);
 background: var(--cream);
 transition: border-color 0.3s;
 outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--saffron); background: var(--white); }
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-light); margin-top: 14px; }

/* ===== WHATSAPP CONTACT BUTTON ===== */
.wa-divider {
 display: flex;
 align-items: center;
 gap: 12px;
 margin: 18px 0 14px;
 color: var(--text-light);
 font-size: 0.78rem;
 letter-spacing: 0.08em;
 text-transform: uppercase;
}
.wa-divider::before,
.wa-divider::after {
 content: '';
 flex: 1;
 height: 1px;
 background: rgba(0,0,0,0.1);
}
.btn-wa {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 width: 100%;
 padding: 13px 20px;
 border-radius: 50px;
 border: 1.5px solid var(--saffron);
 color: var(--saffron);
 background: transparent;
 font-family: var(--font-sans);
 font-size: 0.9rem;
 font-weight: 500;
 letter-spacing: 0.04em;
 text-decoration: none;
 transition: background 0.25s, color 0.25s, transform 0.2s;
 cursor: pointer;
}
.btn-wa:hover {
 background: linear-gradient(135deg, var(--saffron), var(--gold));
 color: #fff;
 border-color: transparent;
 transform: translateY(-2px);
}
.btn-wa svg {
 flex-shrink: 0;
 transition: transform 0.2s;
}
.btn-wa:hover svg {
 transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer {
 background: var(--charcoal);
 position: relative;
 overflow: hidden;
 padding-top: 80px;
}
.footer-mandala {
 position: absolute;
 top: -80px; right: -80px;
 width: 400px; height: 400px;
 opacity: 0.04;
}
.footer-mandala img { width: 100%; animation: rotateSlow 60s linear infinite; }
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 48px;
 padding-bottom: 60px;
 border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand.logo-om { font-size: 2rem; }
.footer-brand.logo-text { font-size: 1.5rem; color: var(--white); margin-bottom: 16px; display: inline-block; margin-left: 10px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.8; margin-top: 10px; }
.footer-links h4,.footer-contact h4 {
 font-family: var(--font-sans);
 font-size: 0.78rem;
 font-weight: 600;
 letter-spacing: 0.2em;
 text-transform: uppercase;
 color: var(--saffron);
 margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--saffron-light); }
.footer-contact p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 10px; }
.footer-bottom {
 padding: 28px 24px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 max-width: 1200px;
 margin: 0 auto;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ===== CLASSICAL HATHA YOGA FEATURE SECTION ===== */
.hatha-intro-section {
  background: linear-gradient(160deg, rgba(17,10,3,1) 0%, rgba(28,16,5,1) 50%, rgba(17,10,3,1) 100%);
  border-top: none;
  border-bottom: 1px solid rgba(212,120,42,0.12);
  position: relative;
  overflow: hidden;
  padding-top: 30px;
}
.hatha-intro-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(212,120,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hatha-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
/* Left: Text block */
.hatha-intro-text { padding-right: 8px; }
.hatha-intro-title { color: var(--cream); margin-bottom: 0; }
.hatha-intro-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--saffron), transparent);
  margin: 20px 0 24px;
  border-radius: 2px;
}
.hatha-intro-body {
  color: rgba(255,255,255,0.65);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 18px;
}
.hatha-intro-quote {
  border-left: 3px solid var(--saffron);
  padding: 16px 20px;
  margin: 28px 0;
  background: rgba(212,120,42,0.06);
  border-radius: 0 8px 8px 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.hatha-intro-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--saffron-light);
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
}
.hatha-intro-btn { margin-top: 8px; }

/* Right: Video block */
.hatha-intro-video { display: flex; flex-direction: column; gap: 16px; }
.hatha-video-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}
.hv-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
}
.hv-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
}
.hatha-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #1C1005;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(212,120,42,0.15);
}
/* YouTube facade (desktop) */
.hatha-yt-facade {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.hatha-yt-facade img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.8);
}
.hatha-yt-facade:hover img {
  transform: scale(1.03);
  filter: brightness(0.7);
}
.hatha-yt-facade .yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.92;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}
.hatha-yt-facade:hover .yt-play-btn {
  transform: translate(-50%,-50%) scale(1.12);
  opacity: 1;
}
.hatha-yt-facade .yt-watch-label {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 20px;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
/* Mobile iframe */
.hatha-video-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}
/* Avatar meta row */
.hatha-video-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,120,42,0.1);
  border-radius: 10px;
}
.hv-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212,120,42,0.35);
  flex-shrink: 0;
}
.hatha-video-meta div {
  display: flex; flex-direction: column; gap: 2px;
}
.hatha-video-meta strong {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cream);
}
.hatha-video-meta span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
/* Visibility helpers (matching lineage page pattern) */
.yt-desktop-only { display: block; }
.yt-mobile-only  { display: none; }


/* ╔══════════════════════════════════════════════════════════╗
   ║  RESPONSIVE ZONES — SCOPING RULES                       ║
   ║  Only put rules inside the correct media query below.   ║
   ║  DESKTOP  : @media (min-width: 1025px)                  ║
   ║  TABLET   : @media (min-width: 769px) and               ║
   ║             (max-width: 1024px)                          ║
   ║  MOBILE   : @media (max-width: 768px)                   ║
   ║  ALL VIEWS: base styles above this block                ║
   ╚══════════════════════════════════════════════════════════╝ */

/* Active nav link — permanent rule (removes runtime style injection from main.js) */
.nav-links a.active-link { color: var(--saffron-light) !important; }

/* ===== TABLET (769px–1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
 .offerings-grid { grid-template-columns: repeat(2,1fr); }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .nav-container { padding: 0 24px !important; }
 /* Hatha intro: single column on tablet */
 .hatha-intro-inner { grid-template-columns: 1fr; gap: 40px; }
 .hatha-intro-text { padding-right: 0; }
}
/* ===== PHONE & TABLET NAVBAR (<=1024px) ===== */
@media (max-width: 768px) {
 /* Hatha intro: single column, iframe on mobile */
 .hatha-intro-inner { grid-template-columns: 1fr; gap: 32px; }
 .hatha-intro-text { padding-right: 0; }
 .yt-desktop-only { display: none !important; }
 .yt-mobile-only  { display: block !important; }
 /* REWRITTEN MOBILE NAVBAR SPECIFICALLY MATCHING PHONE VIEW DIMENSIONS */
 nav#navbar {
  width: 100% !important;
  top: 0 !important;
  padding: 14px 0 0 0 !important; /* Total unscrolled height becomes 46px (14px + 32px logo) */
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid transparent !important;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease !important;
 }
 nav#navbar.scrolled {
  background: rgba(17,16,8,0.97) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(212,120,42,0.12) !important;
  padding: 10px 0 !important;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5) !important;
 }
 .nav-container {
  padding: 0 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
 }
 /* Logo - exactly 32px to match offering pages */
 .nav-custom-logo { 
  height: 32px !important; 
  width: auto !important; 
 }
 /* Elegant right-aligned floating menu */
 .nav-links {
  display: none;
  position: fixed !important;
  top: 78px !important;
  right: 3px !important; /* Pushed 5px closer to the right, leaving an ultra-tight 3px gap */
  left: auto !important;
  bottom: auto !important;
  width: 240px !important;
  max-height: calc(100vh - 100px) !important;
  overflow-y: auto !important;
  background: rgba(14,9,4,0.98) !important;
  border: 1px solid rgba(212,160,60,0.15) !important;
  border-radius: 16px !important; /* Restored all 4 beautifully rounded corners */
  padding: 20px 16px !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8) !important;
  z-index: 10001 !important;
  flex-direction: column;
  justify-content: flex-start !important;
  align-items: center;
  gap: 8px;
  animation: none;
 }
 .nav-links.open { display: flex; }
 .nav-links li { width: 100%; max-width: 280px; list-style: none; }
 .nav-links a {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 14px 20px;
  border-radius: 10px;
  white-space: nowrap;
 }
 .nav-links a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--saffron-light);
 }
 /* Last item = CTA button */
 .nav-links li:last-child { padding: 8px 0 0; }
 .nav-links li:last-child a {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white) !important;
  border-radius: 50px;
  padding: 13px 24px;
  font-weight: 500;
  font-size: 1rem;
 }
 /* Hamburger stays above overlay */
 .hamburger { z-index: 10002; position: relative; }
 /* Close (X) icon when open */
 .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
 .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
 .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

 /* Other page layout adjustments */
 .nav-cert-logo { display: none; }
 .footer-cert-img { width: 150px; }
 .grid-2 { grid-template-columns: 1fr; gap: 40px; }
 .guru-grid { align-items: stretch; }
 .offerings-grid { grid-template-columns: 1fr; }
 .testimonials-grid { grid-template-columns: 1fr; }
 .guru-credentials { grid-template-columns: 1fr; }
 .about-stats { flex-direction: column; gap: 20px; }
 .experience-features { gap: 16px; }
 .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
 .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
 .contact-form-wrap { padding: 28px; }
 .about-badge { bottom: -10px; right: -10px; }
 .guru-doodle { display: none; }
}
@media (max-width: 480px) {
 .section-pad { padding: 64px 0; }
 .hero-title { font-size: 3.5rem; }
 .footer-grid { grid-template-columns: 1fr; }
 .philosophy-banner { padding: 80px 24px; }
}


/* ===== SADHGURU SECTION ===== */
.sadhguru-section {
 position: relative;
 background: linear-gradient(160deg, #110A03 0%, #1C1005 40%, #251508 70%, #1C1005 100%);
 overflow: hidden;
 padding: 60px 0 20px 0;
}
.sadhguru-section::before {
 content: '';
 position: absolute;
 inset: 0;
 background:
  radial-gradient(ellipse 60% 70% at 15% 55%, rgba(212,120,42,0.09) 0%, transparent 60%),
  radial-gradient(ellipse 50% 50% at 85% 30%, rgba(107,16,32,0.10) 0%, transparent 55%),
  radial-gradient(ellipse 40% 40% at 50% 100%, rgba(212,120,42,0.05) 0%, transparent 60%);
 pointer-events: none;
}
.sadhguru-inner {
 position: relative;
 z-index: 2;
 display: grid;
 grid-template-columns: 260px 1fr;
 gap: 80px;
 align-items: center;
}

/* ---- Portrait: no frame, dissolves into dark background ---- */
.sadhguru-photo-wrap {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 18px;
 position: relative;
}
.sg-portrait-frame {
 position: relative;
 width: 260px;
}
/* Warm aura glow behind the figure */
.sg-portrait-frame::before {
 content: '';
 position: absolute;
 inset: -20px;
 border-radius: 50%;
 background: radial-gradient(ellipse at 50% 60%,
 rgba(212,120,42,0.18) 0%,
 rgba(107,16,32,0.08) 40%,
 transparent 70%);
 z-index: 0;
 pointer-events: none;
}
.sadhguru-photo {
 width: 100%;
 height: 360px;
 object-fit: cover;
 object-position: top center;
 display: block;
 position: relative;
 z-index: 1;
 /* Dissolve edges into the dark background */
 mask-image: radial-gradient(
 ellipse 85% 90% at 50% 40%,
 black 35%,
 rgba(0,0,0,0.8) 55%,
 transparent 80%
 );
 -webkit-mask-image: radial-gradient(
 ellipse 85% 90% at 50% 40%,
 black 35%,
 rgba(0,0,0,0.8) 55%,
 transparent 80%
 );
}
.sg-portrait-glow { display: none; }

/* ---- Name & sub below portrait ---- */
.sadhguru-name-tag {
 font-family: 'Cormorant Garamond', Georgia, serif;
 font-size: 1.15rem;
 font-weight: 600;
 color: var(--saffron-light);
 letter-spacing: 0.12em;
 text-transform: uppercase;
 text-align: center;
}
.sadhguru-sub {
 font-family: 'Jost', sans-serif;
 font-size: 0.75rem;
 color: rgba(255,255,255,0.38);
 letter-spacing: 0.1em;
 text-align: center;
}

/* ---- Quote Column ---- */
.sg-eyebrow {
 font-family: 'Jost', sans-serif;
 font-size: 0.72rem;
 font-weight: 500;
 letter-spacing: 0.25em;
 text-transform: uppercase;
 color: var(--saffron);
 opacity: 0.7;
 margin-bottom: 20px;
}
.sadhguru-quote {
 font-family: 'Cormorant Garamond', Georgia, serif;
 font-size: clamp(1.4rem, 2.4vw, 2rem);
 font-style: italic;
 font-weight: 300;
 color: var(--cream);
 line-height: 1.75;
 margin-bottom: 24px;
 /* Opening quotation mark as a subtle pseudo-element */
 position: relative;
 padding-left: 20px;
}
.sadhguru-quote::before {
 content: '\201C';
 position: absolute;
 left: -4px;
 top: -12px;
 font-size: 4.5rem;
 line-height: 1;
 color: var(--saffron);
 opacity: 0.2;
 font-style: normal;
}
.sadhguru-attr {
 font-family: 'Cormorant Garamond', Georgia, serif;
 font-size: 1rem;
 font-style: normal;
 color: var(--saffron-light);
 letter-spacing: 0.05em;
 display: block;
 margin-bottom: 0;
}
.sadhguru-attr strong { font-weight: 600; }


/* ===== ISHA TAG ===== */
.isha-tag {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 background: linear-gradient(135deg, var(--dark-mid), var(--dark-card));
 border: 1px solid rgba(212,120,42,0.3);
 border-radius: 50px;
 padding: 10px 20px;
 margin: 20px 0 28px;
}
.isha-tag-img {
 width: 28px; height: 28px;
 object-fit: contain;
 filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, 0.9)) drop-shadow(0px 0px 12px rgba(255, 255, 255, 0.5));
}
.isha-tag span {
 font-size: 0.82rem;
 color: var(--saffron-light);
 font-weight: 500;
 letter-spacing: 0.05em;
}

/* ===== SECTION SYMBOL ===== */
.section-symbol {
 display: flex;
 justify-content: center;
 margin-bottom: 20px;
}
.section-symbol img {
 width: 60px; height: 60px;
 object-fit: contain;
 filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, 0.9)) drop-shadow(0px 0px 12px rgba(255, 255, 255, 0.5));
 opacity: 0.7;
 animation: rotateSlow 20s linear infinite;
}

/* ===== CARD SYMBOL ===== */
.card-icon-wrap {
 margin-bottom: 20px;
}
.card-symbol {
 width: 48px; height: 48px;
 object-fit: contain;
 filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, 0.9)) drop-shadow(0px 0px 12px rgba(255, 255, 255, 0.5));
 opacity: 0.75;
}

/* ===== QUOTE BANNER ===== */
.quote-banner {
 position: relative;
 background: linear-gradient(135deg, var(--maroon), var(--dark-bg) 60%, var(--dark-mid));
 padding: 70px 24px;
 text-align: center;
 overflow: hidden;
}
.quote-banner::before {
 content: '"';
 position: absolute;
 font-family: var(--font-serif);
 font-size: 30rem;
 color: rgba(255,255,255,0.02);
 top: -60px; left: 50%;
 transform: translateX(-50%);
 pointer-events: none;
 line-height: 1;
}
.quote-banner-inner { position: relative; z-index: 2; }
.qb-text {
 font-family: var(--font-serif);
 font-size: clamp(1.2rem, 2.5vw, 1.7rem);
 font-style: italic;
 color: var(--cream);
 max-width: 760px;
 margin: 0 auto 16px;
 line-height: 1.6;
 font-weight: 300;
}
.qb-attr {
 font-size: 0.85rem;
 color: var(--saffron-light);
 letter-spacing: 0.15em;
 text-transform: uppercase;
}

/* ===== FOOTER LOGO UPDATE ===== */
.footer-logo {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-bottom: 16px;
}
.footer-symbol {
 width: 40px; height: 40px;
 object-fit: contain;
 filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, 0.9)) drop-shadow(0px 0px 12px rgba(255, 255, 255, 0.5));
 opacity: 0.85;
}
.footer-tagline {
 font-family: var(--font-sans);
 font-size: 0.72rem;
 font-weight: 500;
 letter-spacing: 0.2em;
 text-transform: uppercase;
 color: var(--saffron-light);
 opacity: 0.7;
 margin-top: 12px;
}
.angam { background: rgba(160,100,200,0.2); color: #D4AAFF; }

/* ===== RESPONSIVE: SADHGURU ===== */
@media (max-width: 768px) {
 .sadhguru-inner {
 grid-template-columns: 1fr;
 gap: 10px;
 text-align: center;
 }
 .sadhguru-photo-wrap { align-items: center; }
 .sg-portrait-frame { width: 200px; }
 .sadhguru-photo { height: 260px; }
 .sadhguru-quote { font-size: clamp(1.25rem, 5vw, 1.6rem); padding-left: 0; }
 .sadhguru-quote::before { display: none; }
 .sadhguru-text { text-align: center; }
 .sadhguru-divider { justify-content: center; }
}

/* ===== ADIYOGI HERO PORTRAIT ===== */
.hero-adiyogi-wrap {
 position: relative;
 margin: 0 auto 28px;
 width: 180px;
 height: 180px;
}
.hero-adiyogi {
 width: 180px;
 height: 180px;
 object-fit: cover;
 object-position: top;
 border-radius: 50%;
 border: 3px solid rgba(212,120,42,0.6);
 box-shadow:
 0 0 0 8px rgba(212,120,42,0.08),
 0 0 40px rgba(212,120,42,0.35),
 0 20px 60px rgba(0,0,0,0.6);
 position: relative;
 z-index: 2;
}
.hero-adiyogi-glow {
 position: absolute;
 inset: -20px;
 border-radius: 50%;
 background: radial-gradient(circle, rgba(212,120,42,0.25) 0%, transparent 70%);
 animation: pulseGlow 3s ease-in-out infinite;
 z-index: 1;
}
@keyframes pulseGlow {
 0%,100%{ opacity:0.5; transform:scale(1); }
 50%{ opacity:1; transform:scale(1.08); }
}

/* ===== GURU IMAGE BADGE ===== */
.guru-img-badge {
 display: inline-block;
 background: linear-gradient(135deg, var(--saffron), var(--gold));
 color: var(--white);
 font-size: 0.78rem;
 font-weight: 600;
 letter-spacing: 0.05em;
 padding: 10px 20px;
 border-radius: 50px;
 margin-top: 16px;
 box-shadow: 0 4px 20px rgba(212,120,42,0.35);
 text-align: center;
}

/* ===== SADHGURU SECTION EXTRAS ===== */
/* (legacy name-tag/quote styles removed — now handled above) */
.sadhguru-divider {
 display: flex;
 align-items: center;
 gap: 16px;
 margin-top: 28px;
 opacity: 0.55;
}
.sadhguru-divider::before,
.sadhguru-divider::after {
 content: '';
 flex: 1;
 height: 1px;
 background: linear-gradient(to right, transparent, rgba(212,120,42,0.6), transparent);
}
.sdiv-symbol {
 width: 36px; height: 36px;
 object-fit: contain;
 opacity: 0.7;
}

/* ===== UPDATED QUOTE FONT ===== */
cite.sadhguru-attr { font-style: normal; }

/* ===== SECTION-TITLE FONT UPDATE ===== */
.section-title {
 font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
}
.hero-title {
 font-family: 'Cinzel', serif;
 background: linear-gradient(135deg, #fff 30%, var(--gold-light) 70%, #fff 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}


/* ===== GALLERY SECTION ===== */
.gallery-section { background: var(--cream-dark); overflow: hidden; }
.gallery-masonry {
 width: 100%;
 overflow-x: auto;
 overflow-y: hidden;
 white-space: nowrap;
 padding: 20px 0;
 position: relative;
 cursor: grab;
 /* Fades on the edges to make it look elegant */
 mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
 -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
 /* Hide scrollbar visually */
 scrollbar-width: none;
 -ms-overflow-style: none;
}
.gallery-masonry::-webkit-scrollbar { display: none; }
.gallery-masonry.dragging { cursor: grabbing; user-select: none; }
.gallery-track {
 display: inline-flex;
 gap: 16px;
 padding-left: 16px;
 /* Animation removed — controlled by JS for drag/swipe support */
}

.gallery-masonry-item {
 position: relative;
 flex: 0 0 auto;
 height: 300px; /* Fixed height for uniform slider */
 border-radius: 12px;
 overflow: hidden;
 cursor: pointer;
}
.gallery-masonry-item img {
 height: 100%;
 width: auto;
 min-width: 200px;
 object-fit: cover;
 display: block;
 transition: transform 0.5s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.04); }
.gallery-caption {
 position: absolute;
 bottom: 0; left: 0; right: 0;
 background: linear-gradient(to top, rgba(10,8,4,0.8), transparent);
 color: rgba(255,255,255,0.9);
 font-size: 0.78rem;
 padding: 18px 12px 10px;
 opacity: 0;
 transition: opacity 0.3s;
}
.gallery-masonry-item:hover.gallery-caption { opacity: 1; }

@media (max-width: 768px) {
 .gallery-masonry-item { height: 240px; }
}

/* ===== TESTIMONIAL PHOTO ===== */
.author-avatar-img {
 width: 40px; height: 40px;
 border-radius: 50%;
 object-fit: cover;
 border: 2px solid var(--saffron);
 flex-shrink: 0;
}

/* Tablet & Landscape Optimizations */
@media (max-width: 1024px) {
 .hero { min-height: 80vh; }
 .section-pad { padding: 60px 0; }
}
@media (max-height: 500px) and (orientation: landscape) {
 .hero { min-height: auto; padding-top: 100px; padding-bottom: 40px; }
 .hero-title { font-size: 3rem; margin-bottom: 10px; }
 .hero-subtitle { font-size: 1.1rem; margin-bottom: 20px; }
 .section-pad { padding: 50px 0; }
 .guru-section { padding-top: 50px; }
 .philosophy-banner { padding: 50px 24px; }
}
/* ===== LOADER ===== */
#loader {
 position: fixed;
 inset: 0;
 background: radial-gradient(ellipse at center, #1C1005 0%, #110A03 100%);
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 z-index: 99999;
 transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
/* Logo image in loader */
.loader-logo-img {
 width: clamp(180px, 50vw, 360px);
 height: auto;
 margin-bottom: 36px;
 filter: invert(1) sepia(1) saturate(0.5) brightness(1.8)
 drop-shadow(0 0 30px rgba(212,120,42,0.6))
 drop-shadow(0 0 60px rgba(184,130,42,0.3));
 animation: logoFadeIn 0.8s ease both;
}
@keyframes logoFadeIn {
 from { opacity: 0; transform: scale(0.92); }
 to { opacity: 1; transform: scale(1); }
}
.loader-text {
 font-family: var(--font-display);
 color: var(--saffron-light);
 letter-spacing: 0.2em;
 animation: fadeUp 0.8s ease forwards;
}
.loader-bar {
 width: 140px; height: 2px;
 background: rgba(255,255,255,0.1);
 border-radius: 2px;
 overflow: hidden;
 margin-top: 0;
}
.loader-bar-fill {
 height: 100%;
 background: linear-gradient(90deg, var(--saffron), var(--gold));
 animation: loadBar 1.4s ease forwards;
}
@keyframes loadBar { from{ width:0; } to{ width:100%; } }

/* ===== PHONE & TABLET HERO OVERRIDES (≤1024px) ===== */
@media (max-width: 1024px) {
  /* Description hidden on phone/tablet — user decision */
  p.hero-desc {
    display: none;
  }
  .hero-btns { 
    margin-top: 150px;
  }
}

/* ===== DESKTOP HERO LAYOUT (≥1025px) ===== */
@media (min-width: 1025px) {
  /* Title: centered, scaled down, shifted up */
  h1.hero-title {
    display: flex;
    justify-content: center;
    text-align: center;
    transform: translateY(-60px) scale(0.5);
    transform-origin: center center;
    margin-bottom: 16px;
  }

  /* Logo: natural proportions, no forced sizing */
  h1.hero-title img.hero-logo-img {
    width: initial;
    height: initial;
    max-width: none;
    max-height: none;
    object-fit: initial;
  }

  /* Description: pushed down with margin, fine-tuned with transform */
  p.hero-desc {
    margin-top: 125px;
    transform: translateY(-40px);
    text-align: center;
  }

  /* Buttons: centered and shifted up slightly */
  .hero-btns {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    transform: translateY(-45px);
  }
}

