/* ==========================================================================
   CSS Variables & Tokens - MODERNIZED
   ========================================================================== */
:root {
    --bg-color: #F4F3EA; /* Milky Cream */
    --dark-color: #062210; /* Very Dark Logo Green */
    --text-main: #062210;
    --text-muted: rgba(6, 34, 16, 0.65);
    --accent-gold: #285032; /* Rich Logo Green */
    --sec-gold: #BEC8B4; /* Light Sage from Logo */
    
    /* Modern Glassmorphism */
    --card-bg: rgba(255, 255, 255, 0.35);
    --glass-border: rgba(255, 255, 255, 0.7);
    --glass-shadow: 0 24px 48px rgba(0, 0, 0, 0.04), inset 0 1px 1px rgba(255, 255, 255, 1);
    
    --dark-glass-bg: rgba(10, 10, 10, 0.75);
    --dark-glass-border: rgba(255, 255, 255, 0.15);
    
    --divider: rgba(28, 29, 31, 0.08);
    
    /* Spacing & Sizes */
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    
    /* Typography */
    /* Manrope for body, Playfair Display for headings, Forum for creative accents */
    --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-accent: 'Forum', serif;
    
    /* Fluid Typography Clamps - Refined for mobile fitment */
    --h1-size: clamp(1.65rem, 8vw + 0.2rem, 5.5rem);
    --h2-size: clamp(1.4rem, 6vw + 0.2rem, 4.2rem);
    --h3-size: clamp(1.2rem, 3vw + 0.2rem, 2.2rem);
    --p-size: clamp(0.9rem, 1vw + 0.7rem, 1.15rem);
    
    /* Animation Timings */
    --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* We use custom cursor */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.7; /* More breathing room */
    letter-spacing: -0.01em; /* Slight tightening for premium feel */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input, textarea, button, select, label {
    font-family: var(--font-main); /* Force custom font */
}

a, button, [role="button"] {
    text-decoration: none;
    color: inherit;
    background: transparent;
    border: none;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--dark-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(10, 10, 10, 0.3);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(10, 10, 10, 0.05);
    border-color: rgba(10, 10, 10, 0.1);
}

/* Hide custom cursor on mobile */
@media (max-width: 768px), (pointer: coarse) {
    * { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none; }
}

/* ==========================================================================
   Ambient Background - Mesh Gradient Style
   ========================================================================== */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, var(--bg-color) 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.7;
    animation: float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: multiply;
}

.shape-1 {
    width: 50vw;
    height: 50vw;
    background: rgba(190, 200, 180, 0.3); /* Sage */
    top: -10vh;
    left: -10vw;
    animation-duration: 25s;
}

.shape-2 {
    width: 40vw;
    height: 40vw;
    background: #FAF0E6; /* Milky Cream */
    bottom: -10vh;
    right: -10vw;
    animation-delay: -5s;
    animation-duration: 22s;
}

.shape-3 {
    width: 45vw;
    height: 45vw;
    background: rgba(40, 80, 50, 0.1); /* Logo green tint */
    top: 30vh;
    left: 30vw;
    animation-delay: -10s;
    animation-duration: 28s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(8%, 10%) scale(1.05) rotate(45deg); }
    100% { transform: translate(-5%, 8%) scale(0.95) rotate(-30deg); }
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-padding {
    padding: 160px 0;
}

.section-header {
    max-width: 700px;
    margin-bottom: 80px;
}

.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--h2-size);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--dark-color) 0%, rgba(10, 10, 10, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-lead {
    font-family: var(--font-accent);
    font-size: clamp(1.3rem, 4vw + 0.5rem, 2rem);
    font-weight: 400;
    color: var(--dark-color);
    margin-bottom: 32px;
    line-height: 1.3;
    letter-spacing: 0;
}

.section-text {
    font-size: var(--p-size);
    color: var(--text-muted);
}

.gold-text {
    color: var(--accent-gold);
}

.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(40px) saturate(140%);
    -webkit-backdrop-filter: blur(40px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255,255,255,1); /* Extra top highlight */
    border-left: 1px solid rgba(255,255,255,0.8);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-xl);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Liquid Glass (iOS 26 Grab-style) Effect */
.glass-panel.liquid {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
}

.glass-panel.liquid:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.02);
}

/* Dynamic Glow on cards managed by JS */
.glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.4), transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.glass-panel:hover::before {
    opacity: 1;
}

/* No glow/lift in footer */
.footer-glass::before,
.footer-glass:hover::before {
    display: none !important;
    opacity: 0 !important;
}
.footer-glass.glass-panel.liquid:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #062210 0%, #285032 50%, #062210 100%);
    background-size: 200% auto;
    color: #F4F3EA;
    box-shadow: 0 10px 20px rgba(6, 34, 16, 0.3), 
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(6, 34, 16, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 30px rgba(6, 34, 16, 0.4),
                inset 0 1px 1px rgba(255, 255, 255, 0.25);
    border-color: rgba(6, 34, 16, 0.5);
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-main);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
    padding: 14px 28px;
}

.btn-block {
    width: 100%;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f5d062 50%, #b8962e 100%);
    background-size: 200% auto;
    color: #062210;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4), 
                inset 0 1px 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.btn-gold:hover {
    background-position: right center;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6),
                inset 0 1px 1px rgba(255, 255, 255, 0.6);
    color: #062210;
}

.footer-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

/* Magnetic Button Wrapper */
.magnetic-btn {
    display: inline-flex; /* Ensures it matches the logic of btn */
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    top: 10px;
    width: 95%;
    background: rgba(248, 247, 243, 0.85);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--accent-gold);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--dark-color);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    image-rendering: -webkit-optimize-contrast;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-main);
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--accent-gold);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.6rem;
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: 95%;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.3);
    }
    .nav-links, .nav-btn {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .logo-img {
        height: 38px;
    }
    .logo-text {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity 1s ease;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(248, 247, 243, 0.2) 0%, rgba(248, 247, 243, 0.8) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    width: 100%;
    max-width: 1100px;
    padding: 0 32px;
    text-align: center;
    z-index: 1;
}

.glass-hero {
    padding: 80px 48px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--h1-size);
    font-weight: 700; 
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #0A0A0A 0%, rgba(10, 10, 10, 0.4) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(0.95rem, 3vw + 0.4rem, 1.7rem);
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--dark-color);
    line-height: 1.3;
}

.hero-desc {
    font-size: var(--p-size);
    color: var(--text-muted);
    margin-bottom: 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ==========================================================================
   About Section - Premium Redesign
   ========================================================================== */
.about {
    position: relative;
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.1);
    transition: all var(--transition-smooth);
    background: #fff;
}

.about-img-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 70px 120px rgba(0,0,0,0.15);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 1.5s ease;
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-glass-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 32px;
    z-index: 3;
    min-width: 220px;
}

.stats-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.about-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(192, 155, 82, 0.1);
    color: var(--accent-gold);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: var(--h2-size);
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--dark-color);
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.highlight-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.highlight-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-glass-card {
        bottom: -20px;
        right: 20px;
        min-width: 180px;
        padding: 24px;
    }
}

/* ==========================================================================
   Format Section
   ========================================================================== */
.format-wrapper {
    padding: 80px;
}

.format-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
    margin-top: 64px;
}

.format-point {
    display: flex;
    gap: 32px;
}

.point-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.point-text h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.point-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* ==========================================================================
   Programs Section
   ========================================================================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.program-card {
    padding: 48px;
}

.subscription-card {
    grid-column: 1 / -1; /* Make it full width */
    background: rgba(255, 255, 255, 0.5);
    background-image: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(200, 169, 106, 0.1) 100%);
}

.program-card:hover {
    transform: translateY(-8px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-direction: column;
    gap: 16px;
}

.program-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.program-time {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(10, 10, 10, 0.05);
    padding: 8px 20px;
    border-radius: 100px;
}

.program-time.gold-badge {
    background: var(--dark-color);
    color: #fff;
}

.program-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

.subs-benefits {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.subs-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--dark-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.subs-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

/* ==========================================================================
   Trial & Bring Sections
   ========================================================================== */
.trial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.trial-card, .bring-card {
    padding: 56px;
}

.trial-card:hover, .bring-card:hover {
    transform: translateY(-8px);
}

.trial-lists {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 40px;
}

.trial-list-col h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.trial-list-col ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.trial-list-col li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.trial-list-col li i {
    color: var(--dark-color);
    font-size: 1.5rem;
}

.bring-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bring-list li {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--divider);
}

.bring-icon {
    width: 64px;
    height: 64px;
    background: rgba(10, 10, 10, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-color);
}

.bring-list span {
    font-size: 1.15rem;
    font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 0 32px 64px;
}

.footer-glass.glass-panel {
    background: rgba(6, 34, 16, 0.98) !important; /* Forces logo dark green on all pages */
    border-color: rgba(190, 200, 180, 0.2);
    backdrop-filter: blur(100px) saturate(200%);
    -webkit-backdrop-filter: blur(100px) saturate(200%);
    color: #F4F3EA;
    padding: 80px;
    border-radius: var(--radius-xl);
}

.footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-smooth);
}

.footer-logo-img:hover {
    transform: scale(1.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr 1fr; /* Optimized distribution */
    gap: 64px;
    margin-bottom: 80px;
    align-items: start;
}

.footer-brand h2 {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-brand h2 i {
    color: var(--accent-gold);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-nav a {
    font-family: var(--font-accent);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.footer-nav a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: all var(--transition-smooth);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(15px); /* Minimal displacement for snappier feel */
    filter: blur(4px);
    will-change: transform, opacity; /* GPU Acceleration */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger transition delays for child elements if needed via inline styles or classes */
/* Shortened delays for faster sequences */
.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.1s; }
.delay-3 { transition-delay: 0.15s; }

/* ==========================================================================
   Mobile Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .programs-grid, .trial-grid {
        grid-template-columns: 1fr;
    }
    
    .subs-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 100px 0;
    }
    
    .nav-links, .nav-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .glass-hero {
        padding: 48px 24px;
        border-radius: var(--radius-lg);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .format-wrapper {
        padding: 48px 24px;
    }
    
    .format-points {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .program-card, .trial-card, .bring-card {
        padding: 32px 24px;
    }
    
    .trial-list-col ul {
        grid-template-columns: 1fr;
    }
    
    .footer-glass {
        padding: 48px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .subs-benefits {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   New Sections: Horses, Gallery, Reviews
   ========================================================================== */

/* Horses Grid */
.horses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.horse-card {
    padding: 0; /* Reset for full image */
    display: flex;
    flex-direction: column;
}

.horse-img-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.horse-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.horse-card:hover .horse-img {
    transform: scale(1.08);
}

.horse-info {
    padding: 32px;
}

.horse-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark-color);
}

.horse-breed {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em; /* More spaced for tags */
}

.horse-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gallery-wide {
    grid-column: 1 / -1;
}

.gallery-item {
    padding: 0;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.gallery-item.gallery-wide {
    height: 500px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item, .gallery-item.gallery-wide {
        height: 300px;
    }
}

/* Reviews Track */
.reviews-track-wrapper {
    overflow-x: auto;
    padding: 40px;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.reviews-track-wrapper::-webkit-scrollbar {
    display: none;
}

.reviews-track {
    display: flex;
    gap: 32px;
    width: max-content;
}

.review-card {
    width: 380px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
    font-weight: 400;
}

.review-author {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .review-card {
        width: 300px;
        padding: 24px;
    }
    .reviews-track-wrapper {
        padding: 24px;
    }
}

/* ==========================================================================
   Mobile Sticky CTA (iOS 26 Liquid Glass Style)
   ========================================================================== */
.mobile-sticky-cta {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 24px;
        left: 24px;
        right: 24px;
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        color: #fff;
        padding: 16px 24px;
        border-radius: 100px;
        z-index: 1000;
        font-weight: 500;
        font-size: 1.1rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255,255,255,0.2);
        animation: slideUpCTA 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        animation-delay: 1s;
        opacity: 0;
        transform: translateY(100px);
        border: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-sticky-cta i {
        background: rgba(255,255,255,0.1);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Animate background blob faster on mobile for dynamic feel */
    .blob {
        animation-duration: 15s;
    }

    /* Padding bottom to main content to account for sticky CTA */
    .footer {
        padding-bottom: 120px;
    }
}

/* ==========================================================================
   Mobile Menu Overlay (App Style)
   ========================================================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 247, 243, 0.9);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--dark-color);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.mobile-link {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--dark-color);
    transition: transform 0.3s;
}

.mobile-link:active {
    transform: scale(0.9);
    color: var(--accent-gold);
}
/* ==========================================================================
   Liquid Navigation & More - REMOVED / UPDATED
   ========================================================================== */
@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 30px;
        left: 20px;
        right: 20px;
        background: var(--dark-color);
        color: #fff;
        padding: 18px 28px;
        border-radius: 100px;
        z-index: 1000;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-glass-box {
        padding: 40px 20px;
    }
}
/* ==========================================================================
   Page Headers & Screens
   ========================================================================== */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 20px 40px;
    }
    .page-title {
        font-size: 2.2rem;
    }
}

.page-title {
    font-family: var(--font-heading);
    font-size: var(--h2-size);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Review Form & Cards - Mobile Refinement */
.review-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
}

@media (max-width: 768px) {
    .review-form-container {
        padding: 30px 20px;
        margin: 0 10px;
    }
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-color);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--divider);
    background: rgba(255, 255, 255, 0.4);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(192, 155, 82, 0.1);
}

.form-textarea {
    height: 140px;
}

.rating-group {
    display: flex;
    gap: 12px;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.rating-star {
    cursor: pointer;
    color: var(--divider);
}

.rating-star.active {
    color: var(--accent-gold);
}

/* Gallery & Review Card Mobile App Feel */
@media (max-width: 768px) {
    .review-card, .horse-card, .gallery-item {
        margin-bottom: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   Booking Page Specific Styles
   ========================================================================== */
.page-booking {
    background: var(--bg-color);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-card {
    padding: 60px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.booking-form .btn-block {
    justify-content: center;
    padding: 20px;
    font-size: 1.1rem;
}

/* Success State Styles */
.booking-success {
    text-align: center;
    padding: 80px 40px;
}

.success-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 24px;
    animation: successScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successScale {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.success-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .booking-card {
        padding: 32px 16px;
    }
    
    .booking-container {
        max-width: 100%;
        margin: 0;
    }
    
    .booking-section {
        padding: 60px 0;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .success-icon {
        font-size: 4rem;
    }
    
    .success-title {
        font-size: 2rem;
    }
}

/* Map iframe mobile responsiveness */
@media (max-width: 600px) {
    iframe[title*="маршрут"], iframe[title*="ипподром"] {
        height: 300px !important;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 100px;
}

.value-card {
    padding: 60px 40px;
    position: relative;
    text-align: center;
    transition: all var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.4);
}

.value-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-weight: 900;
    opacity: 0.03;
    pointer-events: none;
    color: var(--dark-color);
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.value-desc {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .values-grid {
        margin-top: 60px;
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-smooth);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: background 0.3s ease;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.4;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-color);
    transition: all var(--transition-smooth);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* Open State */
.faq-item.active {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--dark-color);
    color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-top: 8px;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
    }
    
    .faq-answer {
        padding: 0 24px;
    }
}

/* ==========================================================================
   Gift Certificates Section
   ========================================================================== */
.gift-card {
    padding: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: center;
    text-align: center;
}

.gift-content {
    max-width: 650px;
}

.gift-content .section-title {
    margin-top: 20px;
    margin-bottom: 24px;
}

.gift-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.gift-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    align-items: center;
}

.gift-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--dark-color);
    font-weight: 500;
}

.gift-option i {
    color: #D4AF37;
    font-size: 1.2rem;
}

.gold-badge {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .gift-card {
        padding: 60px 24px;
    }
    
    .gift-content p {
        font-size: 1.05rem;
    }
}

/* ==========================================================================
   Trekking & Pricing Sections
   ========================================================================== */
.trek-card {
    padding: 60px;
}
.trek-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}
.trek-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.trek-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--dark-color);
}
.trek-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    width: 32px;
    text-align: center;
}
.trek-price-box {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.trek-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 8px;
    line-height: 1;
}
.per-person {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-family: var(--font-main);
}
.trek-booking-info {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.price-list-card {
    padding: 48px;
}
.price-list-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--divider);
}
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.price-item:last-child {
    border-bottom: none;
}
.price-name {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark-color);
}
.price-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-gold);
    white-space: nowrap;
    margin-left: 20px;
}

.interactive-price {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}
.interactive-price:hover {
    background: rgba(255,255,255,0.4);
    transform: translateX(8px);
    border-radius: 8px;
    padding-left: 16px;
    padding-right: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.list-arrow {
    font-size: 1.1rem;
    margin-left: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}
.interactive-price:hover .list-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .trek-content { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .trek-card, .price-list-card { padding: 32px; }
}
