/* ================================================================
   GROW ON TRIP — AWARD-WINNING REDESIGN (Pure CSS Edition)
   Inspired by Awwwards SOTD winners & luxury retreat sites
   ================================================================ */

/* ── Fonts ───────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
    /* Palette */
    --bg-light: #FAF8F5;
    --bg-dark: #0C0C0C;
    --bg-dark-card: #161616;
    --bg-cream: #F3EDE4;
    --surface: #FFFFFF;

    --text-primary: #0C0C0C;
    --text-secondary: #5A5A5A;
    --text-light: #FFFFFF;
    --text-light-muted: rgba(255, 255, 255, 0.78);

    --gold: #C8A55C;
    --gold-light: #E4CA8A;
    --gold-dark: #A88B3E;
    --gold-glow: rgba(200, 165, 92, 0.25);

    /* Orange Accent */
    --orange: #E8722A;
    --orange-light: #F5923D;
    --orange-glow: rgba(232, 114, 42, 0.25);
    --gradient-gold-orange: linear-gradient(135deg, var(--gold), var(--orange));

    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-light: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-display: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 12vw, 160px);
    --container-max: 1320px;
    --gap: clamp(16px, 3vw, 40px);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 30px rgba(200, 165, 92, 0.2);

    /* Header */
    --header-height: 80px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
}

/* ── Reset & Base ────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--bg-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Selection color */
::selection {
    background: rgba(200, 165, 92, 0.3);
    color: var(--text-primary);
}



body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
}

/* ── Typography — Oversized Editorial ────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    letter-spacing: -0.02em;
}

h4 {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 60ch;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.section-header {
    margin-bottom: 64px;
}

.section-header p {
    margin-top: 16px;
}

/* Gold gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Layout ──────────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    width: 100%;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Dark sections */
.dark-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.dark-section h2,
.dark-section h3,
.dark-section h4 {
    color: var(--text-light);
}

.dark-section p {
    color: var(--text-light-muted);
}

.dark-section .section-tag {
    color: var(--gold-light);
}

.dark-section .section-tag::before {
    background: var(--gold-light);
}

/* ── Header — Transparent → Solid on Scroll ──────────────────── */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: transparent;
    transition: background var(--duration-normal) ease,
        box-shadow var(--duration-normal) ease,
        transform var(--duration-normal) var(--ease-out-expo);
}

#header.scrolled {
    background: rgba(12, 12, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(200, 165, 92, 0.1);
}

#header.hidden {
    transform: translateY(-100%);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Nav Brand */
.nav-brand img,
.nav-brand .logo img,
.logo img {
    height: 72px;
    width: auto;
    transition: opacity var(--duration-fast);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-light);
    transition: color var(--duration-fast);
    position: relative;
}

#header.scrolled .nav-links a {
    color: var(--text-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--duration-normal) var(--ease-out-expo);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1100;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out-expo);
    transform-origin: center;
}

#header.scrolled .mobile-menu-toggle span {
    background: var(--text-light);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Buttons — Refined Gold ──────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--bg-dark);
    background: var(--gold);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-pill);
    transition: all var(--duration-normal) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--orange-glow), var(--shadow-gold);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--text-light);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    transition: all var(--duration-normal) var(--ease-out-expo);
    cursor: pointer;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* ── Hero — Cinematic Full-Viewport ──────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: var(--text-light);
    text-align: left;
    overflow: hidden;
    background: var(--bg-dark);
    padding-bottom: 80px;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg,
            rgba(12, 12, 12, 0.4) 0%,
            rgba(12, 12, 12, 0.2) 40%,
            rgba(12, 12, 12, 0.6) 80%,
            rgba(12, 12, 12, 0.9) 100%);
}

/* Film grain overlay */
.film-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    animation: grainShift 0.5s steps(4) infinite;
}

@keyframes grainShift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-2%, -2%);
    }

    50% {
        transform: translate(2%, 1%);
    }

    75% {
        transform: translate(-1%, 2%);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 960px;
    padding: 0 20px;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero eyebrow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
    padding: 8px 20px;
    background: rgba(200, 165, 92, 0.1);
    border: 1px solid rgba(200, 165, 92, 0.2);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(10px);
}

/* Hero headline — split lines for dramatic effect */
.hero-headline {
    color: var(--text-light);
    font-size: clamp(3.2rem, 9vw, 7rem);
    margin-bottom: 28px;
    line-height: 1.0;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hero-headline .hero-line-1,
.hero-headline .hero-line-2,
.hero-headline .hero-line-3 {
    display: block;
}

.hero-headline .hero-line-2 {
    margin-left: clamp(20px, 5vw, 80px);
}

.hero-headline .hero-line-3 {
    margin-left: clamp(40px, 10vw, 160px);
}

.hero-content .gradient-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero sub paragraph */
.hero-sub {
    color: var(--text-light-muted);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    max-width: 560px;
    margin: 0 0 40px;
    line-height: 1.7;
    text-align: left;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ── Marquee Ticker Strip ──────────────────────────────────────── */
.marquee-strip {
    background: linear-gradient(90deg, var(--gold), var(--orange-light), var(--gold));
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 0;
    position: relative;
}

.marquee-track {
    display: inline-flex;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bg-dark);
    padding: 0 32px;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── Stats Counter Section ─────────────────────────────────────── */
.stats-section {
    background: var(--bg-dark);
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(200, 165, 92, 0.3), transparent);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-plus {
    color: var(--orange);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light-muted);
}

/* ── Scroll Reveal Animation (Pure CSS + IntersectionObserver) ── */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
        transform var(--duration-slow) var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s var(--ease-out-expo),
        transform 0.6s var(--ease-out-expo);
}

.reveal-stagger.visible>*:nth-child(1) {
    transition-delay: 0s;
}

.reveal-stagger.visible>*:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal-stagger.visible>*:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal-stagger.visible>*:nth-child(4) {
    transition-delay: 0.3s;
}

.reveal-stagger.visible>*:nth-child(5) {
    transition-delay: 0.4s;
}

.reveal-stagger.visible>*:nth-child(6) {
    transition-delay: 0.5s;
}

.reveal-stagger.visible>* {
    opacity: 1;
    transform: translateY(0);
}

/* ── Dramatic Visual Effects ─────────────────────────────────── */

/* Animated gradient mesh background for sections */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(200, 165, 92, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 60%, rgba(168, 139, 62, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(200, 165, 92, 0.2) 0%, transparent 40%);
    animation: meshFloat 20s ease-in-out infinite alternate;
}

@keyframes meshFloat {
    0% {
        transform: scale(1) translate(0, 0);
    }

    33% {
        transform: scale(1.05) translate(-2%, 1%);
    }

    66% {
        transform: scale(0.98) translate(1%, -1%);
    }

    100% {
        transform: scale(1.03) translate(-1%, 2%);
    }
}

/* Floating luminous orbs */
.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 165, 92, 0.2) 0%, transparent 70%);
    top: 20%;
    right: 10%;
    z-index: 1;
    filter: blur(60px);
    animation: orbFloat 12s ease-in-out infinite alternate;
}

@keyframes orbFloat {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-30px, 20px) scale(1.2);
    }
}

/* Section glow decorator */
.featured-retreat::before,
.past-retreat-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    filter: blur(80px);
    pointer-events: none;
}

/* Cinematic section divider */
.dark-section::after,
.past-retreat-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

/* ── Grids — Fixed 3-Column Card Layout ──────────────────────── */
.retreats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-top: 48px;
}

.niches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-top: 48px;
}

.benefit-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap);
    margin-top: 48px;
}

/* ── Cards — Premium Glassmorphic with Glow ──────────────────── */
.retreat-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--duration-normal) var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    position: relative;
}

.retreat-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark), transparent 60%);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.retreat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(200, 165, 92, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.retreat-card:hover::after {
    opacity: 1;
}

.retreat-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.retreat-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
    pointer-events: none;
}

.retreat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.retreat-card:hover .retreat-image img {
    transform: scale(1.06);
}

.retreat-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-dark);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    z-index: 5;
}

.retreat-card-content,
.retreat-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.retreat-card-location,
.retreat-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.retreat-card-title,
.retreat-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.retreat-card-info,
.retreat-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.retreat-card-info span,
.retreat-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.retreat-card-desc,
.retreat-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.retreat-card-footer,
.retreat-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.retreat-card-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.retreat-card-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* ── Niche Cards — Clean Editorial ───────────────────────────── */
.niche-card {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.niche-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.niche-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-cream);
    color: var(--gold-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
    transition: background var(--duration-normal);
}

.niche-card:hover .niche-icon {
    background: var(--gold);
    color: var(--bg-dark);
}

.niche-card h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.niche-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.niche-features {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.niche-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}

.niche-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Mentors Section ─────────────────────────────────────────── */
.mentors-section {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--gap);
    margin-top: 48px;
}

.mentor-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--duration-normal) var(--ease-out-expo);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
}

.mentor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.mentor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    border: 3px solid var(--bg-cream);
    box-shadow: var(--shadow-sm);
}

.mentor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mentor-content {
    text-align: center;
}

.mentor-content h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.mentor-role {
    font-size: 0.85rem !important;
    color: var(--gold) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.mentor-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.mentor-content .btn-secondary {
    color: var(--text-primary);
    border-color: var(--border-subtle);
    font-size: 0.8rem;
    padding: 8px 16px;
    margin: 4px;
}

.mentor-content .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}

/* ── About Section — Split Layout ────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.value-card:hover {
    transform: translateX(8px);
    border-color: var(--gold);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.about-values h4 {
    margin-bottom: 4px;
}

.about-values p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ── Past Retreat — Horizontal Scroll Filmstrip ──────────────── */
.past-retreat-section {
    background: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
}

.past-retreat-section h2 {
    color: var(--text-light);
}

.past-retreat-section p {
    color: var(--text-light-muted);
}

.past-retreat-section .section-tag {
    color: var(--gold-light);
}

.past-retreat-section .section-tag::before {
    background: var(--gold-light);
}

.past-retreat-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.past-retreat-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    background: var(--bg-dark-card);
    padding: 24px;
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--gold);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--gold);
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.highlight-card:hover {
    transform: translateX(8px);
}

.highlight-card h4 {
    color: var(--text-light);
    margin-bottom: 8px;
}

.highlight-card p {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 8px;
}

.highlight-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.highlight-author {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
}

/* Image Grid with Hover Zoom */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.image-box {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.image-box:hover img {
    transform: scale(1.1);
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.past-retreat-note {
    background: var(--bg-dark-card);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light-muted);
}

/* ── Testimonials — Cinematic Dark with Giant Quotes ─────────── */
.testimonials-section {
    background: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 165, 92, 0.06) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
    filter: blur(100px);
    pointer-events: none;
}

.testimonials-section h2 {
    color: var(--text-light);
}

.testimonials-section p {
    color: var(--text-light-muted);
}

.testimonials-section .section-tag {
    color: var(--gold-light);
}

.testimonials-section .section-tag::before {
    background: var(--gold-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 32px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--duration-normal) var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Giant quote mark */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 8rem;
    line-height: 1;
    color: rgba(200, 165, 92, 0.12);
    pointer-events: none;
    z-index: 0;
}

/* Gold glow bar at top */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 165, 92, 0.2);
    box-shadow: 0 20px 60px rgba(232, 114, 42, 0.1), 0 10px 30px rgba(200, 165, 92, 0.08);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.testimonial-card>p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 165, 92, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    border: 2px solid rgba(200, 165, 92, 0.3);
}

.testimonial-author h5 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-light);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gold-light);
}

/* ── Parallax Image Divider ──────────────────────────────────── */
.parallax-divider {
    height: 50vh;
    min-height: 300px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.parallax-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            var(--bg-dark) 0%,
            rgba(12, 12, 12, 0.3) 30%,
            rgba(12, 12, 12, 0.3) 70%,
            var(--bg-light) 100%);
}

.parallax-divider .divider-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

/* ── FAQ — Split Layout ──────────────────────────────────────── */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 165, 92, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    filter: blur(80px);
    pointer-events: none;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.faq-header {
    position: sticky;
    top: 100px;
}

.faq-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    color: var(--text-light);
}

.faq-header p {
    color: var(--text-light-muted);
}

.faq-header .section-tag {
    color: var(--gold-light);
}

.faq-header .section-tag::before {
    background: var(--gold-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all var(--duration-normal) ease;
}

.faq-item:hover {
    border-color: rgba(200, 165, 92, 0.3);
    box-shadow: 0 8px 30px rgba(200, 165, 92, 0.06);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
    width: 100%;
    border: none;
    background: none;
    text-align: left;
    gap: 16px;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(200, 165, 92, 0.15);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
    opacity: 0;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-light-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: white;
}

/* ── Booking — Split Dark/Light ──────────────────────────────── */
.booking-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-dark-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 1100px;
    margin: 0 auto;
}

.booking-image {
    background: url('images/rishikesh-river.png') center/cover no-repeat;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.booking-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.8);
}

.booking-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
}

.booking-content h2 {
    color: var(--text-light);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.booking-content p {
    color: var(--text-light-muted);
}

.booking-form-container {
    padding: 48px;
    display: flex;
    align-items: center;
}

.booking-form {
    width: 100%;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light) !important;
    transition: all var(--duration-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-input::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

/* ── Footer — Mega Premium ───────────────────────────────────── */
.site-footer,
footer.footer {
    background: var(--bg-dark);
    color: var(--text-light-muted);
    padding: 100px 0 40px;
    position: relative;
}

.footer-top,
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h2,
.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.footer-brand h3 span {
    color: var(--gold);
}

.footer-brand p {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-socials,
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icon,
.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.social-icon:hover,
.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-column h4 {
    font-family: var(--font-display);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-column a {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    transition: color var(--duration-fast);
}

.footer-links a:hover,
.footer-column a:hover {
    color: var(--gold);
}

.newsletter-form {
    margin-top: 8px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: border-color var(--duration-fast);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form input::placeholder {
    color: var(--text-light-muted);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* ── Membership & Corporate Heroes ───────────────────────────── */
.membership-hero,
.corporate-hero {
    padding: 200px 0 120px;
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.membership-hero::before,
.corporate-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, var(--gold-glow) 0%, transparent 50%);
    animation: floatGlow 15s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(5%, 5%);
    }
}

.membership-hero h1,
.corporate-hero h1 {
    color: var(--text-light) !important;
    -webkit-text-fill-color: var(--text-light);
    background: none;
    position: relative;
    z-index: 1;
}

.membership-hero p,
.corporate-hero p {
    color: var(--text-light-muted) !important;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

/* Pricing Card */
.pricing-card {
    background: var(--bg-dark-card);
    color: var(--text-light);
    padding: 56px;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
    color: var(--text-light);
}

.price-annual {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* ── Retreats Page ───────────────────────────────────────────── */
.retreats-header {
    margin-top: var(--header-height);
    padding: 100px 0 60px;
    background: var(--bg-dark);
    text-align: center;
}

.retreats-header h2 {
    color: var(--text-light);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 12px 0;
}

.retreats-header p {
    color: var(--text-light-muted);
    max-width: 500px;
    margin: 0 auto;
}

.retreats-header .section-tag {
    color: var(--gold-light);
}

.retreats-header .section-tag::before {
    background: var(--gold-light);
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
}

/* Service Cards (Corporate) */
.service-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--duration-normal) var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.service-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ── Modal ───────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 12, 12, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: var(--surface);
    width: 90%;
    max-width: 480px;
    padding: 40px;
    border-radius: var(--radius-xl);
    transform: translateY(24px) scale(0.96);
    transition: all var(--duration-normal) var(--ease-out-back);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background var(--duration-fast);
    margin-top: 12px;
}

.submit-btn:hover {
    background: var(--gold-light);
}

/* ── Utility: Gray Section ───────────────────────────────────── */
.gray-section {
    background: var(--bg-cream);
}

.featured-retreat {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    position: relative;
    overflow: hidden;
}

/* Niches dark cinematic section */
.niches-section {
    background: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.niches-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 165, 92, 0.08) 0%, transparent 70%);
    top: -250px;
    right: -100px;
    filter: blur(80px);
    pointer-events: none;
}

.niches-section h2,
.niches-section h3 {
    color: var(--text-light);
}

.niches-section p {
    color: var(--text-light-muted);
}

.niches-section .section-tag {
    color: var(--gold-light);
}

.niches-section .section-tag::before {
    background: var(--gold-light);
}

/* Glassmorphic Niche Cards */
.niche-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--duration-normal) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.niche-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(200, 165, 92, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.niche-card:hover {
    border-color: rgba(200, 165, 92, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(200, 165, 92, 0.1);
}

.niche-card:hover::before {
    opacity: 1;
}

.niche-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(200, 165, 92, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.niche-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.niche-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light-muted);
    margin-bottom: 16px;
}

.niche-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.niche-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.niche-features li svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .retreats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .niches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .past-retreat-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-header {
        position: static;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-image {
        min-height: 300px;
    }

    .footer-top,
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform var(--duration-normal) var(--ease-out-expo);
        z-index: 1050;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.3rem;
        color: var(--text-light) !important;
    }

    /* Stats responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-number {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* Hero responsive */
    .hero {
        padding-bottom: 60px;
    }

    .hero-headline {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
    }

    .hero-headline .hero-line-2,
    .hero-headline .hero-line-3 {
        margin-left: 0;
    }

    /* Grids → Single Column */
    .retreats-grid,
    .niches-grid,
    .testimonials-grid,
    .benefit-grid,
    .services-grid,
    .mentors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Typography */
    h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Footer */
    .footer-top,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Form */
    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Past Retreat */
    .past-retreat-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Booking */
    .booking-wrapper {
        border-radius: var(--radius-lg);
    }

    .booking-form-container {
        padding: 28px;
    }

    /* About */
    .about-grid {
        gap: 40px;
    }

    /* Section padding */
    section {
        padding: clamp(60px, 10vw, 100px) 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .retreat-image {
        height: 200px;
    }

    .retreat-card-content,
    .retreat-content {
        padding: 20px;
    }

    .niche-card {
        padding: 24px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
}

/* ── Sub-Page Specific Styles ────────────────────────────────── */

/* Header Container (Membership / Corporate variant) */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Text Center utility */
.text-center {
    text-align: center;
}

.text-center .section-tag::before {
    display: none;
}

.text-center .section-tag {
    padding-left: 0;
}

/* Benefit Cards (Membership) */
.membership-benefits {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--gap);
    margin-top: 48px;
}

.benefit-card {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service Image (Corporate) */
.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* CTA Box (Corporate) */
.cta-box {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}

.cta-box h2 {
    color: var(--text-light);
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-light-muted);
    margin: 0 auto;
}

.cta-box form input,
.cta-box form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--duration-fast);
}

.cta-box form input:focus,
.cta-box form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.cta-box form input::placeholder,
.cta-box form textarea::placeholder {
    color: var(--text-light-muted);
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

/* Form message */
.form-message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.2);
    display: block;
}

.form-message.error {
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
    display: block;
}

/* ================================================================
   DRAMATIC SECTION UPGRADES — Premium Visual Treatment
   ================================================================ */

/* ── Section Transition Dividers ─────────────────────────────── */
/* Gold gradient wave between sections */
.section-divider,
.niches-section::after,
.featured-retreat::before,
.featured-retreat::after,
.mentors-section::before,
.mentors-section::after,
.about-section::before,
.past-retreat-section::before,
.past-retreat-section::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--gold-dark) 15%,
            var(--gold) 35%,
            var(--gold-light) 50%,
            var(--gold) 65%,
            var(--gold-dark) 85%,
            transparent 100%);
    position: absolute;
    left: 0;
    opacity: 0.6;
    animation: shimmer-line 4s linear infinite;
}

@keyframes shimmer-line {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.niches-section::after {
    bottom: 0;
}

.featured-retreat::before {
    top: 0;
}

.featured-retreat::after {
    bottom: 0;
}

.mentors-section::before {
    top: 0;
}

.mentors-section::after {
    bottom: 0;
}

.about-section::before {
    top: 0;
}

.past-retreat-section::before {
    top: 0;
}

.past-retreat-section::after {
    bottom: 0;
}

.niches-section,
.featured-retreat,
.mentors-section,
.about-section,
.past-retreat-section {
    position: relative;
}

/* ── Animated Section Headers ─────────────────────────────────── */
.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold, linear-gradient(135deg, var(--gold), var(--gold-light)));
    border-radius: 2px;
    transition: width 0.6s var(--ease-out-expo);
}

.section-header h2:hover::after,
.section-header.visible h2::after {
    width: 120px;
}

.section-header .section-tag {
    animation: fade-in-tag 0.6s ease-out both;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
}

@keyframes fade-in-tag {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Featured Retreats Section — Cinematic Dark ───────────────── */
.featured-retreat {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.featured-retreat::before {
    background-size: 200%;
}

.featured-retreat .section-header h2 {
    color: var(--text-light);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -1px;
}

.featured-retreat .section-header p {
    color: var(--text-light-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 24px auto 0;
}

.featured-retreat .section-header .section-tag {
    background: rgba(200, 165, 92, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(200, 165, 92, 0.3);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(10px);
}

/* Retreat Cards — Premium Dark Glass */
.featured-retreat .retreat-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
}

.featured-retreat .retreat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.featured-retreat .retreat-card:hover {
    transform: translateY(-12px);
    border-color: rgba(200, 165, 92, 0.3);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(200, 165, 92, 0.08);
}

.featured-retreat .retreat-card:hover::before {
    opacity: 1;
}

.featured-retreat .retreat-card-content {
    padding: 24px;
}

.featured-retreat .retreat-card-title {
    color: var(--text-light);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.featured-retreat .retreat-card-location {
    color: var(--gold-light);
    font-weight: 600;
}

.featured-retreat .retreat-card-desc {
    color: var(--text-light-muted);
    line-height: 1.7;
}

.featured-retreat .retreat-card-info {
    color: var(--text-light-muted);
}

.featured-retreat .retreat-card-price {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 800;
}

.featured-retreat .retreat-card-price span {
    color: var(--text-light-muted);
}

.featured-retreat .retreat-card-footer {
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

/* Retreat badge — premium gold */
.featured-retreat .retreat-badge {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #0C0C0C;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
}

/* ── Mentors Section — Dark Cinematic ────────────────────────── */
.mentors-section {
    background: var(--bg-dark) !important;
    color: var(--text-light);
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.mentors-section .section-header h2 {
    color: var(--text-light);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

.mentors-section .section-header p {
    color: var(--text-light-muted);
}

.mentors-section .section-header .section-tag {
    background: rgba(200, 165, 92, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(200, 165, 92, 0.3);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
}

/* Mentor Cards — Glassmorphic Dark */
.mentors-section .mentor-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
}

.mentors-section .mentor-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out-expo);
}

.mentors-section .mentor-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(200, 165, 92, 0.1);
    border-color: rgba(200, 165, 92, 0.25);
}

.mentors-section .mentor-card:hover::after {
    transform: scaleX(1);
}

.mentors-section .mentor-content h3 {
    color: var(--text-light);
}

.mentors-section .mentor-role {
    color: var(--gold-light) !important;
    font-weight: 600;
}

.mentors-section .mentor-desc {
    color: var(--text-light-muted) !important;
}

.mentors-section .mentor-image img {
    transition: transform 0.6s var(--ease-out-expo), filter 0.4s ease;
}

.mentors-section .mentor-card:hover .mentor-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.mentors-section .btn-secondary {
    color: var(--gold-light);
    border-color: rgba(200, 165, 92, 0.4);
}

.mentors-section .btn-secondary:hover {
    background: rgba(200, 165, 92, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

/* ── About Section — Editorial Split with Accent ─────────────── */
.about-section {
    background: var(--bg-cream);
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.about-section .about-text .section-tag {
    background: rgba(200, 165, 92, 0.15);
    color: var(--gold-dark);
    border: 1px solid rgba(200, 165, 92, 0.3);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
}

.about-section .about-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    position: relative;
    padding-left: 24px;
}

.about-section .about-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    border-radius: 2px;
}

.about-section .about-text .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-section .about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Value Cards — Premium Treatment */
.about-section .value-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 165, 92, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.about-section .value-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.4s var(--ease-out-expo);
    transform-origin: bottom;
}

.about-section .value-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(200, 165, 92, 0.12);
    border-color: rgba(200, 165, 92, 0.3);
}

.about-section .value-card:hover::before {
    transform: scaleY(1);
}

.about-section .value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 165, 92, 0.15), rgba(200, 165, 92, 0.05));
    border-radius: 12px;
    color: var(--gold-dark);
}

/* ── Past Retreat Section — Cinematic Filmstrip ──────────────── */
.past-retreat-section {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.past-retreat-section .section-header h2 {
    color: var(--text-light);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

.past-retreat-section .section-header p {
    color: var(--text-light-muted);
    max-width: 700px;
    margin: 20px auto 0;
}

.past-retreat-section .section-header .section-tag {
    background: rgba(200, 165, 92, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(200, 165, 92, 0.3);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
}

/* Highlight Cards — Gold Accent */
.past-retreat-section .highlight-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.past-retreat-section .highlight-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    transform: scaleY(0);
    transition: transform 0.4s var(--ease-out-expo);
    transform-origin: top;
}

.past-retreat-section .highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 165, 92, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.past-retreat-section .highlight-card:hover::before {
    transform: scaleY(1);
}

.past-retreat-section .highlight-card h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 12px;
}

.past-retreat-section .highlight-card p {
    color: rgba(255, 255, 255, 0.88);
    font-style: italic;
    line-height: 1.7;
}

.past-retreat-section .highlight-author {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.past-retreat-section .highlight-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(200, 165, 92, 0.3));
}

/* Image Grid — Cinematic Hover */
.past-retreat-section .image-box {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.past-retreat-section .image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 12, 12, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.past-retreat-section .image-box:hover::after {
    opacity: 1;
}

.past-retreat-section .image-box img {
    transition: transform 0.6s var(--ease-out-expo);
}

.past-retreat-section .image-box:hover img {
    transform: scale(1.08);
}

.past-retreat-section .image-label {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    font-weight: 600;
}

/* ── Floating Particle Background (Sections) ─────────────────── */
.featured-retreat::after,
.past-retreat-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 165, 92, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.featured-retreat::after {
    bottom: -150px;
    right: -150px;
}

.past-retreat-section::after {
    top: -150px;
    left: -150px;
}

.featured-retreat>.container,
.past-retreat-section>.container {
    position: relative;
    z-index: 1;
}

/* ── Niches Section Enhancement ──────────────────────────────── */
.niches-section .section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -1px;
}

/* ── Section Entrance Animations (Stagger) ───────────────────── */
.retreat-card.reveal,
.mentor-card.reveal,
.value-card.reveal,
.highlight-card.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out-expo),
        transform 0.7s var(--ease-out-expo);
}

.retreat-card.reveal.visible,
.mentor-card.reveal.visible,
.value-card.reveal.visible,
.highlight-card.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid children */
.retreats-grid .retreat-card:nth-child(1) {
    transition-delay: 0.1s;
}

.retreats-grid .retreat-card:nth-child(2) {
    transition-delay: 0.2s;
}

.retreats-grid .retreat-card:nth-child(3) {
    transition-delay: 0.3s;
}

.mentors-grid .mentor-card:nth-child(1) {
    transition-delay: 0.1s;
}

.mentors-grid .mentor-card:nth-child(2) {
    transition-delay: 0.2s;
}

.mentors-grid .mentor-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* ── Mobile Responsive for Section Upgrades ──────────────────── */
@media (max-width: 768px) {

    .featured-retreat .section-header h2,
    .mentors-section .section-header h2,
    .past-retreat-section .section-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .about-section .about-text h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        padding-left: 16px;
    }

    .featured-retreat .retreat-card:hover,
    .mentors-section .mentor-card:hover {
        transform: translateY(-6px);
    }

    .featured-retreat::after,
    .past-retreat-section::after {
        width: 200px;
        height: 200px;
    }
}

/* ── Policy Pages (Refund, Privacy, Terms) ───────────────────── */
.policy-page {
    background: var(--bg-light);
}

.policy-page #header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.policy-page #header .nav-links a {
    color: var(--text-primary);
}

.policy-page .section-header,
.policy-page section {
    background: var(--bg-light);
    color: var(--text-primary);
}

.policy-page .section-header h2 {
    color: var(--text-primary) !important;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.policy-page .section-header h2::after {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.policy-page .section-header p,
.policy-page .section-header .section-tag {
    color: var(--text-secondary);
}

.policy-page .section-tag {
    background: rgba(200, 165, 92, 0.12);
    color: var(--gold-dark) !important;
    border: 1px solid rgba(200, 165, 92, 0.25);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
}

/* Policy content card */
.policy-page section>.container>div[style*="background: white"] {
    color: var(--text-primary);
}

.policy-page section>.container>div[style*="background: white"] p,
.policy-page section>.container>div[style*="background: white"] li {
    color: var(--text-primary);
    line-height: 1.8;
}

.policy-page section>.container>div[style*="background: white"] h3 {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
}

.policy-page .niche-features li {
    color: var(--text-primary) !important;
}

/* ── About Page Hero ─────────────────────────────────────────── */
.about-hero {
    background: var(--bg-dark);
    padding: calc(var(--section-padding) + 80px) 0 var(--section-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(200, 165, 92, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(200, 165, 92, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero .section-tag {
    background: rgba(200, 165, 92, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(200, 165, 92, 0.3);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-hero h1 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    color: var(--text-light-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Mission & Story */
.about-mission {
    background: var(--bg-cream);
    padding: var(--section-padding) 0;
}

.about-mission .mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-mission h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--text-primary);
    position: relative;
    padding-left: 24px;
    margin-bottom: 24px;
}

.about-mission h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    border-radius: 2px;
}

.about-mission p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-mission .mission-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-mission .mission-value {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 165, 92, 0.15);
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
}

.about-mission .mission-value:hover {
    transform: translateX(8px);
    border-color: rgba(200, 165, 92, 0.3);
    box-shadow: 0 8px 30px rgba(200, 165, 92, 0.1);
}

.about-mission .mission-value .value-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.about-mission .mission-value h4 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.about-mission .mission-value p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* About Timeline */
.about-timeline {
    background: var(--bg-dark);
    padding: var(--section-padding) 0;
    color: var(--text-light);
}

.about-timeline h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
}

.about-timeline .timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.about-timeline .timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light), transparent);
}

.about-timeline .timeline-item {
    position: relative;
    margin-bottom: 48px;
    padding-left: 24px;
}

.about-timeline .timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(200, 165, 92, 0.4);
}

.about-timeline .timeline-date {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.about-timeline .timeline-item h3 {
    color: var(--text-light);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.about-timeline .timeline-item p {
    color: var(--text-light-muted);
    line-height: 1.7;
}

/* About Team */
.about-team {
    background: var(--bg-cream);
    padding: var(--section-padding) 0;
    text-align: center;
}

.about-team h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 48px;
}

.about-team .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.about-team .team-card {
    background: white;
    border: 1px solid rgba(200, 165, 92, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.about-team .team-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.about-team .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(200, 165, 92, 0.3);
}

.about-team .team-card:hover::before {
    transform: scaleX(1);
}

.about-team .team-emoji {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.about-team .team-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.about-team .team-card .team-role {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.about-team .team-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-mission .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-team .team-grid {
        grid-template-columns: 1fr;
    }

    .about-timeline .timeline {
        padding-left: 30px;
    }

    .about-timeline .timeline-item::before {
        left: -23px;
    }
}

/* ================================================================
   PREMIUM MICRO-INTERACTIONS — Refined Luxury Effects
   ================================================================ */

/* ── 1. Atmospheric Orbs — Subtle & Slow ───────────────────── */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
    will-change: transform;
}

.hero-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 165, 92, 0.18), transparent 70%);
    top: 5%;
    right: -8%;
    animation: orbDrift1 20s ease-in-out infinite;
}

.hero-orb--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(232, 114, 42, 0.12), transparent 70%);
    bottom: 15%;
    left: -8%;
    animation: orbDrift2 25s ease-in-out infinite;
}

.hero-orb--3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(200, 165, 92, 0.1), transparent 70%);
    top: 45%;
    left: 35%;
    animation: orbDrift3 30s ease-in-out infinite;
}

@keyframes orbDrift1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(-30px, 20px);
    }

    66% {
        transform: translate(15px, -25px);
    }
}

@keyframes orbDrift2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(25px, -20px);
    }
}

@keyframes orbDrift3 {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.15;
    }

    50% {
        transform: translate(-20px, 30px);
        opacity: 0.25;
    }
}

/* ── 2. Scroll Progress Bar — Top of Page ──────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
    transition: none;
    will-change: transform;
}

/* ── 3. Glass Light Sweep — Card Hover ─────────────────────── */
.niche-card,
.retreat-card,
.testimonial-card,
.team-card,
.mentor-card {
    position: relative;
    overflow: hidden;
}

.niche-card::after,
.retreat-card::after,
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 20%,
            rgba(255, 255, 255, 0.03) 40%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.03) 60%,
            transparent 80%);
    transition: left 0.8s var(--ease-out-expo);
    pointer-events: none;
    z-index: 1;
}

.niche-card:hover::after,
.retreat-card:hover::after,
.testimonial-card:hover::after {
    left: 120%;
}

/* ── 4. Refined Cursor Glow — Minimal & Elegant ────────────── */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(200, 165, 92, 0.04) 0%,
            rgba(232, 114, 42, 0.02) 40%,
            transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    filter: blur(60px);
    transition: opacity 0.6s ease, left 0.15s ease, top 0.15s ease;
    will-change: left, top, opacity;
}

.cursor-glow.active {
    opacity: 1;
}

/* ── 5. Premium Back-to-Top — Sleek Pill ───────────────────── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(22, 22, 22, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--gold);
    border: 1px solid rgba(200, 165, 92, 0.2);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out-expo);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    border-color: var(--gold);
    background: rgba(200, 165, 92, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 165, 92, 0.12);
}

.back-to-top svg {
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-1px);
}

/* ── 6. Smooth Scroll Reveal ───────────────────────────────── */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up.delay-1 {
    transition-delay: 0.1s;
}

.fade-in-up.delay-2 {
    transition-delay: 0.2s;
}

.fade-in-up.delay-3 {
    transition-delay: 0.3s;
}

.fade-in-up.delay-4 {
    transition-delay: 0.4s;
}

.fade-in-up.delay-5 {
    transition-delay: 0.5s;
}

/* ── 7. Golden Line Accent — Section Divider ───────────────── */
.glow-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 5%,
            rgba(200, 165, 92, 0.3) 30%,
            rgba(232, 114, 42, 0.4) 50%,
            rgba(200, 165, 92, 0.3) 70%,
            transparent 95%);
}

/* ── 8. Typing Cursor — Hero Eyebrow ───────────────────────── */
.typing-cursor::after {
    content: '|';
    color: var(--gold);
    animation: cursorBlink 1.2s ease-in-out infinite;
    margin-left: 4px;
    font-weight: 300;
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ── 9. Stat Number Glow — Subtle Warmth ───────────────────── */
.stat-number {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.06);
}

/* ── 10. Section Tag — No Bounce, Clean ────────────────────── */
/* Removed tagFloat — tags should sit still and feel anchored */

/* ── 11. Button — Refined Glow on Hover Only ───────────────── */
/* Removed the constant pulsing — premium buttons don't beg for attention */
.btn-primary {
    animation: none;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-primary:hover {
    animation: none;
    box-shadow: 0 8px 30px var(--orange-glow), 0 4px 12px rgba(200, 165, 92, 0.15);
}

/* ── 12. Image Container Reveal ────────────────────────────── */
.img-reveal {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.2s var(--ease-out-expo);
}

.img-reveal.visible {
    clip-path: inset(0 0 0 0);
}

/* ── 13. Smooth Border Glow — Cards on Hover ───────────────── */
.niche-card:hover,
.retreat-card:hover {
    border-color: rgba(200, 165, 92, 0.15);
    box-shadow:
        0 0 0 1px rgba(200, 165, 92, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 4px 20px rgba(200, 165, 92, 0.06);
}

/* ── 14. Parallax Depth — Scroll-Based ─────────────────────── */
.parallax-layer {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ── Reduced Motion Accessibility ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .cursor-glow,
    .scroll-progress {
        display: none;
    }
}

/* ── Print Styles ────────────────────────────────────────────── */
@media print {

    #header,
    .hero-slideshow,
    .hero-overlay,
    .mobile-menu-toggle {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    section {
        padding: 40px 0;
    }
}