:root {
    --primary-font: 'Inter', sans-serif;
    --heading-font: 'Outfit', sans-serif;
    
    /* New Modern Wellness Palette */
    --color-bg: #F9F8F6; /* Warm off-white */
    --color-text: #2C3531; /* Very dark slate green */
    --color-text-light: #6B7A72;
    
    --color-sage: #E2EFE7;
    --color-sage-dark: #C6D8CE;
    --color-forest: #1A3C34;
    --color-forest-light: #2A5A4F;
    --color-night: #0A1814; /* Extremely deep forest charcoal */
    --color-sand: #F4F1DE;
    --color-white: #FFFFFF;
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 40px;
    --radius-standard: 40px;
    
    --shadow-sm: 0 8px 16px rgba(26, 60, 52, 0.04);
    --shadow-md: 0 16px 32px rgba(26, 60, 52, 0.08);
    --shadow-lg: 0 24px 48px rgba(26, 60, 52, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 140px 0;
}

.text-center {
    text-align: center;
}

/* Typography Improvements */
h1, h2, h3, h4, .logo {
    font-family: var(--heading-font);
    color: var(--color-text);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-header {
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.2rem;
    font-weight: 300;
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-forest);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(26, 60, 52, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-forest-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 60, 52, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--color-forest);
    color: var(--color-forest);
}

.btn-outline:hover {
    background-color: var(--color-forest);
    color: var(--color-white);
}

.btn-light {
    background-color: var(--color-white);
    color: var(--color-forest);
}

.btn-light:hover {
    background-color: var(--color-sand);
}

/* Sticky Glassmorphism Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(26, 60, 52, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-icon {
    stroke: var(--color-white);
    stroke-width: 2.5;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--color-white);
    z-index: 1001;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--color-white);
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.95rem;
}

/* Scrolled Navbar State */
.navbar.scrolled {
    background: rgba(42, 90, 79, 0.8); /* Forest-light with glass transparency */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .hamburger {
    color: var(--color-white);
}

.navbar.scrolled .logo-icon {
    stroke: var(--color-white);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--color-sage);
}


/* Hero Section */
.hero {
    position: relative;
    height: 95vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider .slide.active {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}

.slider-controls .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.slider-controls .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-controls .dot.active {
    background: var(--color-white);
    transform: scale(1.3);
}

/* Better overlay for readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 60, 52, 0.6) 0%, rgba(26, 60, 52, 0.2) 50%, rgba(26, 60, 52, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-white) !important;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0.9;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Page Hero (Inner Pages) */
.page-hero h1 {
    color: var(--color-white) !important;
    font-size: 4rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.page-hero p {
    color: var(--color-white);
    font-size: 1.25rem;
    opacity: 0.9;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Features / About Section */
.features {
    padding: 140px 0;
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-forest-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.features-text h2 {
    font-size: 2.75rem;
    font-weight: 500;
    margin-bottom: 56px;
}

.stats {
    display: flex;
    gap: 56px;
}

.stat-item h3 {
    font-size: 2.25rem;
    margin-bottom: 8px;
    color: var(--color-forest);
}

.stat-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.features-images {
    position: relative;
    height: 480px;
}

.img-wrap {
    position: absolute;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-wrap-1 {
    width: 65%;
    height: 85%;
    top: 0;
    left: 0;
    z-index: 2;
}

.img-wrap-2 {
    width: 55%;
    height: 75%;
    bottom: 0;
    right: 0;
    z-index: 1;
    border: 8px solid var(--color-bg);
}

/* Sessions Section */
.sessions {
    padding: 120px 0;
    background-color: var(--color-white);
}

.premium-session-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.premium-card {
    position: relative;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.premium-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.8s ease;
}

.premium-card:hover .premium-card-bg {
    transform: scale(1.05);
}

.premium-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-night) 0%, rgba(10, 24, 20, 0.6) 40%, rgba(10, 24, 20, 0) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.premium-card:hover .premium-card-overlay {
    background: linear-gradient(to top, var(--color-night) 0%, rgba(10, 24, 20, 0.8) 60%, rgba(10, 24, 20, 0.2) 100%);
}

.premium-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
    color: var(--color-white);
}

.premium-card-content h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--color-white);
}

.premium-card-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.premium-card-content .card-link {
    display: inline-block;
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    position: relative;
}

.premium-card-content .card-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-sage);
    transition: width 0.3s ease;
}

.premium-card:hover .premium-card-content .card-link::after {
    width: 100%;
}

/* Community Banner */
/* Community Section Refined */
.community {
    padding: 140px 0;
}

.community-bg {
    width: 80%;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    min-height: 750px;
    background: url('images/bg-med.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.community-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 24, 20, 0.4), rgba(10, 24, 20, 0.6));
    z-index: 1;
}

.community-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 60px 80px;
    border-radius: 40px;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    color: var(--color-white);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.community-text h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 500;
    color: #FFFFFF;
}

.community-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.community-stats {
    display: flex;
    gap: 80px;
}

.community-stats .stat h3 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--color-white);
    font-weight: 600;
}

.community-stats .stat p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .community-content {
        flex-direction: column;
        padding: 60px 40px;
        text-align: center;
    }
    
    .community-text h2, 
    .community-stats .stat h3 {
        font-size: 3.5rem;
    }
    
    .community-stats {
        justify-content: center;
        gap: 40px;
    }
}

/* Teachers Section */
.teachers {
    padding: 120px 0;
    background-color: var(--color-white);
}

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

.teacher-card {
    text-align: center;
    padding: 24px;
    border-radius: var(--radius-md);
    background-color: var(--color-bg);
    transition: all 0.4s ease;
    border: none;
}

.teacher-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.teacher-card h3 {
    font-size: 1.5rem;
    color: var(--color-forest);
    margin-bottom: 8px;
    font-weight: 600;
}

.teacher-card p {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Benefits Section */
.benefits {
    padding: 140px 0;
    background-color: var(--color-bg);
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 3rem;
    margin-bottom: 56px;
    font-weight: 500;
}

.benefits-list li {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.benefits-list .icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-sage);
    color: var(--color-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.benefits-list h4 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.benefits-list p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.benefits-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Pricing Section */
.experience {
    padding: 0;
    background-color: var(--color-white);
}

.experience-bg {
    width: 100%;
    margin: 0;
    border-radius: 0;
    min-height: 850px;
    background: url('images/meditate.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 100px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.experience-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 60, 52, 0.8) 0%, rgba(26, 60, 52, 0) 100%);
    z-index: 1;
}

.experience-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 100px 80px;
    border-radius: 40px;
    max-width: 680px;
    position: relative;
    z-index: 2;
    color: var(--color-white);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255,255,255,0.05);
}

.experience-content h2 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 32px;
    font-weight: 500;
}

.experience-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.9);
}

.experience-badge {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-sage);
    margin-bottom: 24px;
    display: block;
    font-weight: 600;
}

.experience-content h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--color-white);
    line-height: 1.1;
}

.experience-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial {
    padding: 100px 0 140px;
    background-color: var(--color-bg);
}

.testimonial-content {
    max-width: 850px;
    margin: 56px auto 0;
}

.testimonial-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 32px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    border: 4px solid var(--color-white);
}

.testimonial blockquote {
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: var(--heading-font);
    color: var(--color-forest);
}

.testimonial .author {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.testimonial .author strong {
    color: var(--color-text);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--color-forest);
    color: var(--color-white);
    padding: 100px 0 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.footer-brand {
    max-width: 380px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 24px;
    text-shadow: none;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 1rem;
}

.newsletter label {
    display: block;
    font-weight: 500;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--color-sage);
}

.input-group {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    overflow: hidden;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-group input {
    border: none;
    padding: 12px 24px;
    outline: none;
    flex-grow: 1;
    font-family: inherit;
    background: transparent;
    color: white;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-group button {
    background-color: var(--color-sage);
    color: var(--color-forest);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.input-group button:hover {
    background-color: var(--color-white);
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    gap: 100px;
}

.link-column h4 {
    margin-bottom: 32px;
    font-size: 1.1rem;
    color: var(--color-white);
}

.link-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 1rem;
    transition: color 0.3s;
}

.link-column a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--color-white);
}

/* Responsive Utilities */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 60, 52, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 32px;
    }

    .nav-menu.active {
        right: 0;
    }

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

    .nav-links a {
        font-size: 1.5rem;
    }

    .nav-cta {
        margin-top: 16px;
    }

    .features-container,
    .community-banner,
    .benefits-container {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 64px;
    }

    .community-banner {
        padding: 56px;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .price-card {
        width: 100%;
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .premium-session-cards,
    .teacher-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 64px;
    }

    .footer-links {
        flex-direction: column;
        gap: 48px;
    }

    .experience {
        padding: 60px 0;
    }

    .experience-bg {
        padding: 40px 24px;
        height: auto;
        min-height: 500px;
    }

    .experience-content {
        padding: 40px 32px;
    }

    .experience-content h2 {
        font-size: 3rem;
    }
}

.btn-outline-glass {
    padding: 18px 40px;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-solid-glass {
    padding: 18px 40px;
    border-radius: 100px;
    background: #0A1814;
    color: var(--color-white);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-solid-glass:hover {
    background: #1A3C34;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- Inner Page Common Styles --- */
.page-hero {
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    background-size: cover;
    background-position: center;
}

/* --- Pricing Page Styles --- */
.pricing-section {
    padding: 140px 0;
    background: var(--color-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.pricing-card {
    background: var(--color-bg);
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid rgba(26, 60, 52, 0.05);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-sage-dark);
}

.pricing-card.featured {
    background: var(--color-forest);
    color: var(--color-white);
    border-color: var(--color-forest);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.pricing-card h3 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.pricing-card.featured h3 {
    color: var(--color-white);
}

.price {
    font-size: 4.5rem;
    font-family: var(--heading-font);
    font-weight: 700;
    margin: 32px 0;
    line-height: 1;
}

.price span {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.7;
}

.pricing-features {
    text-align: left;
    margin-bottom: 48px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.pricing-features li::before {
    content: '?';
    color: var(--color-forest-light);
    font-weight: 700;
}

.featured .pricing-features li::before {
    color: var(--color-sage);
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-sage);
    color: var(--color-forest);
    padding: 8px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.faq-section {
    padding: 140px 0;
    background: var(--color-bg);
}

.faq-grid {
    max-width: 900px;
    margin: 80px auto 0;
}

.faq-item {
    background: var(--color-white);
    padding: 48px;
    border-radius: 40px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 60, 52, 0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-sage-dark);
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--color-forest);
}

/* --- Philosophy Page Styles --- */
.philosophy-detailed {
    padding: 140px 0;
    background: var(--color-white);
}

.aura-focus {
    max-width: 850px;
    margin: 0 auto 100px;
    text-align: center;
}

.aura-focus h2 {
    font-size: 3rem;
    margin-bottom: 32px;
}

.aura-focus p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.editorial-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 140px;
    align-items: center;
}

.editorial-section:nth-child(even) {
    direction: rtl;
}

.editorial-section:nth-child(even) .editorial-img,
.editorial-section:nth-child(even) .editorial-content {
    direction: ltr;
}

.editorial-img {
    border-radius: 40px;
    overflow: hidden;
    height: 600px;
    box-shadow: var(--shadow-lg);
}

.editorial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.editorial-section:hover .editorial-img img {
    transform: scale(1.05);
}

.editorial-content h3 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: var(--color-forest);
}

.editorial-content p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.foundational-truths {
    padding: 140px 0;
    background: var(--color-bg);
    border-radius: 40px 40px 0 0;
}

.truth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 80px;
}

.truth-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 60px 48px;
    border-radius: 40px;
    border: 1px solid rgba(26, 60, 52, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.truth-card::before {
    content: attr(data-number);
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-family: var(--heading-font);
    font-weight: 800;
    color: rgba(26, 60, 52, 0.05);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.truth-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg);
}

.truth-icon {
    width: 48px;
    height: 48px;
    color: var(--color-forest);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.truth-card h4 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--color-forest);
    position: relative;
    z-index: 1;
}

.truth-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    position: relative;
    z-index: 1;
}

/* --- Contact Page Styles --- */
.contact-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.centric-glass-card {
    width: 90%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 80px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
    text-align: center;
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

.centric-glass-card h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    color: var(--color-white) !important;
}

.centric-glass-card p {
    font-size: 1.15rem;
    opacity: 0.8;
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.minimalist-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.minimal-group {
    position: relative;
    margin-bottom: 40px;
}

.minimal-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    opacity: 0.6;
    font-weight: 700;
}

.minimal-group input, 
.minimal-group textarea,
.minimal-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    color: var(--color-white);
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border-radius: 0;
    font-family: var(--primary-font);
}

.minimal-group input:focus, 
.minimal-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-white);
}

.minimal-group select option {
    background: var(--color-night);
    color: var(--color-white);
}

.btn-glass-submit {
    width: 100%;
    padding: 24px;
    background: var(--color-white);
    color: var(--color-forest);
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-glass-submit:hover {
    transform: translateY(-5px);
    background: var(--color-sage);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.footer-connection-ribbon {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 80px;
    z-index: 5;
    flex-wrap: wrap;
}

.ribbon-item {
    text-align: center;
    color: var(--color-white);
}

.ribbon-item h4 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    opacity: 0.5;
    color: var(--color-white);
}

.ribbon-item p {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

/* --- Teachers Page Styles --- */
.teacher-grid-detailed {
    padding: 140px 0;
    background: var(--color-white);
}

.instructor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 100px;
    margin-top: 80px;
}

.instructor-card {
    background: var(--color-bg);
    border-radius: 40px;
    overflow: hidden;
    padding: 60px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
    transition: all 0.5s ease;
}

.instructor-card:nth-child(even) {
    direction: rtl;
}
.instructor-card:nth-child(even) .instructor-left,
.instructor-card:nth-child(even) .instructor-right {
    direction: ltr;
}

.instructor-card:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-lg);
}

.instructor-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.instructor-left img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
}

.instructor-right h3 {
    font-size: 2.25rem;
    margin-bottom: 12px;
    color: var(--color-forest);
}

.instructor-right .role {
    color: var(--color-forest-light);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
}

.instructor-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.tag {
    background: rgba(26, 60, 52, 0.05);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-forest);
}

.instructor-quote {
    font-style: italic;
    color: var(--color-text-light);
    font-size: 1.05rem;
    border-top: 1px solid rgba(26, 60, 52, 0.1);
    padding-top: 32px;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .instructor-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .instructor-card { grid-template-columns: 1fr; }
}

/* --- Classes Page Styles --- */
.class-showcase {
    padding: 140px 0;
    background: var(--color-white);
}

.class-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 80px;
}

.class-item-premium {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--color-bg);
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-md);
    align-items: center;
}

.class-item-premium:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-lg);
}

.class-item-premium:nth-child(even) {
    direction: rtl;
}
.class-item-premium:nth-child(even) .class-visual,
.class-item-premium:nth-child(even) .class-info {
    direction: ltr;
}

.class-visual {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.class-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.class-item-premium:hover .class-visual img {
    transform: scale(1.1);
}

.class-badges {
    position: absolute;
    top: 32px;
    left: 32px;
    display: flex;
    gap: 12px;
    z-index: 5;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.class-info {
    padding: 60px;
}

.class-info h3 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: var(--color-forest);
}

.class-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.class-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(26, 60, 52, 0.1);
    padding-top: 32px;
}

.detail-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-forest);
    margin-bottom: 8px;
    font-weight: 700;
}

.detail-item p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.benefits-detailed {
    padding: 140px 0;
    background: var(--color-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.benefits-list li {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
}

.benefits-list .icon {
    width: 48px;
    height: 48px;
    background: var(--color-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--color-forest);
}

/* --- About Page Styles --- */
.about-features {
    padding: 140px 0;
    background: var(--color-bg);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.features-text h2 {
    font-size: 3.5rem;
    margin-bottom: 56px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--color-forest);
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.about-images {
    position: relative;
    height: 600px;
}

.img-stack-1 {
    width: 70%;
    height: 80%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-stack-2 {
    width: 70%;
    height: 80%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    border-radius: 40px;
    overflow: hidden;
    border: 12px solid var(--color-bg);
    box-shadow: var(--shadow-lg);
}

.img-stack-1 img, .img-stack-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.sacred-journey {
    padding: 140px 0;
    background: var(--color-white);
}

.zen-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.zen-header h2 {
    font-size: 3rem;
    margin-bottom: 32px;
}

.zen-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.organic-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: flex-start;
}

.organic-img-wrapper {
    border-radius: 40px;
    overflow: hidden;
    height: 600px;
    box-shadow: var(--shadow-lg);
}

.organic-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organic-content {
    margin-top: 48px;
}

.organic-content h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.organic-content p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.aura-manifesto-section {
    padding-bottom: 140px;
}

.sanctuary-promise {
    padding: 140px 0;
    background: var(--color-bg);
    overflow: hidden;
}

.promise-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.promise-text h2 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 40px;
}

.promise-text p {
    font-size: 1.4rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 56px;
}

.aura-composition {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.aura-card-layered {
    width: 100%;
    padding: 40px;
    border-radius: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-1 { 
    background: rgba(219, 230, 225, 0.4); 
    border: 1px solid rgba(26, 60, 52, 0.1);
}
.card-2 { 
    background: rgba(255, 255, 255, 0.8); 
    border: 1px solid rgba(26, 60, 52, 0.05);
}
.card-3 { 
    background: rgba(143, 161, 153, 0.15); 
    border: 1px solid rgba(26, 60, 52, 0.1);
}

/* --- Case Study Styles --- */
.cs-container { max-width: 1400px; margin: 0 auto; padding: 0 60px; }
.branding-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
.logo-display { background: #fff; padding: 80px; border-radius: 40px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.05); }
.icon-set { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
.icon-box { padding: 30px; background: rgba(10, 24, 20, 0.03); border-radius: 20px; text-align: center; transition: all 0.3s; }
.icon-box:hover { background: #1A3C34; color: white; transform: translateY(-10px); }
.photo-style { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 40px; }
.photo-item { aspect-ratio: 1; border-radius: 20px; overflow: hidden; background: #eee; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; }
.chapter-header { font-size: 0.8rem; letter-spacing: 0.3em; color: var(--cs-text-light); margin-bottom: 12px; font-weight: 700; }
.text-sage { color: #E2EFE7; }
.bg-night { background-color: #0A1814; }

.aura-card-layered h4 {
    color: var(--color-forest);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    font-weight: 700;
    opacity: 0.8;
}

.aura-card-layered p {
    font-size: 1.15rem;
    margin-bottom: 0;
    line-height: 1.6;
    color: var(--color-text-light);
}

.aura-card-layered:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-lg);
}

/* --- Behance Case Study Specific Styles --- */
.bh-page {
    background-color: var(--color-white);
    color: var(--color-forest);
}

.bh-section {
    padding: 160px 0;
    overflow: hidden;
}

.bh-hero {
    height: 100vh;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bh-title-large {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
}

.bh-subtitle {
    font-size: 1.5rem;
    color: var(--color-forest-light);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 24px;
    display: block;
}

.bh-grid-display {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    height: 400px;
    margin-top: 80px;
    opacity: 0.3;
}

.bh-grid-col {
    background: var(--color-sage);
    height: 100%;
    border-radius: 4px;
}

.bh-analysis-card {
    background: var(--color-bg);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(26, 60, 52, 0.05);
    margin-bottom: 32px;
}

.bh-number {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-sage);
    opacity: 0.5;
    margin-bottom: 24px;
}

.bh-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-top: 80px;
    position: relative;
}

.bh-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-sage);
    z-index: 0;
}

.bh-timeline-item {
    position: relative;
    z-index: 1;
}

.bh-dot {
    width: 20px;
    height: 20px;
    background: var(--color-forest);
    border: 4px solid var(--color-white);
    border-radius: 50%;
    margin-bottom: 40px;
}

.bh-full-image {
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 100px;
}

.bh-stat-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.bh-stat-item h3 {
    font-size: 3rem;
    color: var(--color-forest);
    margin-bottom: 12px;
}

.bh-cap-section {
    background: var(--color-forest);
    color: var(--color-white);
    padding: 160px 0;
    text-align: center;
}

.bh-cap-section h2 {
    font-size: 4rem;
    margin-bottom: 40px;
}

.bh-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
}
.bh-analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

/* --- Behance Brand Guide Styles --- */
.bh-color-card {
    height: 300px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--color-white);
    transition: transform 0.4s ease;
}

.bh-color-card:hover {
    transform: scale(1.05);
}

.bh-color-card span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
}

.bh-color-card h4 {
    font-size: 1.5rem;
    margin-top: 8px;
}

.bh-typo-item {
    padding: 60px 0;
    border-bottom: 1px solid rgba(26, 60, 52, 0.1);
}

.bh-typo-item h5 {
    color: var(--color-sage);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.bh-spacing-row {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-top: 60px;
}

.bh-spacing-box {
    background: var(--color-sage);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
    color: var(--color-forest);
    font-size: 0.7rem;
    font-weight: 700;
}

.bh-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.bh-icon-box {
    aspect-ratio: 1;
    background: var(--color-bg);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
    font-size: 2rem;
    border: 1px solid rgba(26, 60, 52, 0.05);
}

.bh-mission-quote {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 300;
    font-style: italic;
    color: var(--color-forest);
    margin-bottom: 60px;
}
.bh-list strong {
    color: var(--color-forest);
    font-size: 1.2rem;
}
.bh-list li {
    color: var(--color-text-light);
}

/* --- Advanced Behance Showcase Styles --- */
.adv-hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 60, 52, 0.4), rgba(26, 60, 52, 0.4)), url('https://images.unsplash.com/photo-1518199266791-5375a83190b7?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
}

.adv-section-dark {
    background: var(--color-forest);
    color: var(--color-white);
    padding: 200px 0;
}

.adv-img-overlap {
    position: relative;
    margin-top: -100px;
    z-index: 10;
}

.adv-img-overlap img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.adv-number-bg {
    position: absolute;
    top: -100px;
    right: -50px;
    font-size: 25rem;
    font-weight: 800;
    color: rgba(143, 161, 153, 0.1);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.adv-feature-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

.adv-feature-grid.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.adv-card-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 40px;
}

.adv-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 120px;
}

.adv-gallery-item {
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
}

.adv-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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