
        /* --- WARM & FRIENDLY DESIGN SYSTEM --- */
        :root {
            --primary: #4A7C59;
            --primary-light: #7FB685;
            --accent: #E8956C;
            --accent-light: #F4B183;
            --sunshine: #F2C94C;
            --earth: #8B6F47;
            --cream: #FBF8F3;
            --soft-beige: #F5F0E8;
            --text-main: #3D3D3D;
            --text-muted: #6B6B6B;

            /* Prana-specific */
            --prana-dark: #1a1612;
            --prana-warm: #2a2118;
            --gold: #d4a853;
            --gold-light: #e8c97a;
            --saffron: #e8956c;
            --turmeric: #d4a853;

            /* Design tokens */
            --radius: 16px;
            --radius-sm: 8px;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --container-width: 1200px;
            --bg-body: #FFFFFF;
            --bg-soft: #F5F0E8;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;

        }




        h1,
        h2,
        h3,
        h4 {
            line-height: 1.3;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--primary);
        }

        h1 {
            font-size: 3.5rem;
            letter-spacing: -1.5px;
        }

        h2 {
            font-size: 2.5rem;
            letter-spacing: -0.5px;
        }

        h3 {
            font-size: 1.6rem;
        }

        h4 {
            font-size: 1.2rem;
        }

        p {
            margin-bottom: 1.2rem;
            color: var(--text-muted);
            font-size: 1.05rem;
        }

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

        ul {
            list-style: none;
        }

        /* --- UTILITIES --- */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 32px;
        }

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

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

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 1.05rem;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(74, 124, 89, 0.4);
        }

        .btn-secondary {
            background: var(--accent);
            color: white;
            box-shadow: 0 4px 15px rgba(232, 149, 108, 0.3);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            background: #d67f58;
        }

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

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

        .btn-garden {
            background: linear-gradient(135deg, #5C9A6E 0%, #7FB685 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(92, 154, 110, 0.3);
        }

        .btn-garden:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(92, 154, 110, 0.4);
        }

        .btn-earthship {
            background: linear-gradient(135deg, #8B6F47 0%, #A5865C 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
        }

        .btn-earthship:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(139, 111, 71, 0.4);
        }

        /* --- HERO SECTION --- */
        .hero {
            background: linear-gradient(135deg, #F5F0E8 0%, #FBF8F3 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(74, 124, 89, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            margin-bottom: 24px;
            color: var(--primary);
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            font-weight: 400;
        }

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

        /* --- GARDEN SHOWCASE --- */
        .garden-showcase {
            background: white;
            padding: 100px 0;
        }

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

        .garden-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }

        .garden-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: var(--transition);
        }

        .garden-image:hover img {
            transform: scale(1.05);
        }

        .garden-content h2 {
            margin-bottom: 20px;
        }

        .highlight-box {
            background: var(--bg-soft);
            padding: 24px;
            border-radius: var(--radius-sm);
            margin: 24px 0;
            border-left: 4px solid var(--primary-light);
        }

        .highlight-box h4 {
            color: var(--primary);
            margin-bottom: 12px;
        }



        /* --- ABOUT ALEX SECTION --- */
        .about-section {
            background: linear-gradient(135deg, #F5F0E8 0%, white 100%);
            padding: 100px 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 80px;
            align-items: start;
        }

        .about-image {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
        }

        .experience-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: var(--primary);
            color: white;
            padding: 20px 30px;
            border-radius: var(--radius-sm);
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .badge-number {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 8px;
        }

        .badge-text {
            font-size: 0.9rem;
            font-weight: 600;
            line-height: 1.3;
        }

        .lead-text {
            font-size: 1.2rem;
            color: var(--text-main);
            margin-bottom: 40px;
            font-weight: 500;
        }

        .journey-highlights {
            margin: 40px 0;
        }

        .journey-item {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 2px solid var(--bg-soft);
        }

        .journey-item:last-child {
            border-bottom: none;
        }

        .journey-year {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
        }

        .journey-detail h4 {
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 1.3rem;
        }

        .journey-detail p {
            margin: 0;
            color: var(--text-muted);
        }

        .expertise-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 40px 0;
        }

        .expertise-tag {
            background: var(--bg-soft);
            color: var(--primary);
            padding: 10px 18px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            border: 2px solid var(--primary-light);
        }

        .author-callout {
            display: flex;
            gap: 20px;
            background: linear-gradient(135deg, #FFF9E6 0%, #FFF4D6 100%);
            padding: 30px;
            border-radius: var(--radius-sm);
            border-left: 4px solid var(--sunshine);
            margin: 30px 0;
        }

        .callout-icon {
            font-size: 3rem;
            line-height: 1;
        }

        .callout-content h4 {
            color: var(--earth);
            margin-bottom: 10px;
        }

        .callout-content p {
            margin: 0;
            color: var(--text-main);
        }

        .closing-thought {
            font-size: 1.15rem;
            color: var(--primary);
            font-style: italic;
            margin-top: 30px;
            padding: 20px;
            background: var(--bg-soft);
            border-radius: var(--radius-sm);
            border-left: 4px solid var(--primary);
        }

        /* Collapsible Bio Section */
        .bio-intro {
            margin-bottom: 24px;
        }

        .bio-expandable {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .bio-expandable.expanded {
            max-height: 3000px;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            margin: 20px 0;
        }

        .read-more-btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
        }

        .read-more-btn .arrow {
            transition: transform 0.3s ease;
        }

        .read-more-btn.active .arrow {
            transform: rotate(180deg);
        }

        /* --- EARTHSHIPS SECTION --- */
        .earthships-section {
            background: white;
            padding: 100px 0;
        }

        .earthship-hero-visual {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            margin: 60px 0;
            box-shadow: var(--shadow-hover);
        }

        .earthship-hero-visual img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .earthship-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(74, 124, 89, 0.95), transparent);
            padding: 40px;
            display: flex;
            justify-content: space-around;
            gap: 20px;
        }

        .overlay-stat {
            text-align: center;
            color: white;
        }

        .stat-number {
            display: block;
            font-size: 3rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .earthship-intro {
            max-width: 900px;
            margin: 80px auto;
            text-align: center;
        }

        .earthship-intro h3 {
            font-size: 2.2rem;
            margin-bottom: 24px;
        }

        .earthship-intro>p {
            font-size: 1.2rem;
            margin-bottom: 50px;
        }

        .self-sufficiency-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .sufficiency-item {
            background: var(--bg-soft);
            padding: 30px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }

        .sufficiency-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .sufficiency-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .sufficiency-item h4 {
            margin-bottom: 12px;
        }

        .sufficiency-item p {
            font-size: 0.95rem;
            margin: 0;
        }

        .breakthrough-section {
            background: var(--bg-soft);
            padding: 80px 60px;
            border-radius: var(--radius);
            margin: 80px 0;
        }

        .breakthrough-section h3 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 50px;
        }

        .breakthrough-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .breakthrough-intro {
            font-size: 1.15rem;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .innovation-box {
            background: white;
            padding: 30px;
            border-radius: var(--radius-sm);
            margin: 30px 0;
            border-left: 4px solid var(--primary-light);
            box-shadow: var(--shadow);
        }

        .innovation-box h4 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .innovation-list {
            list-style: none;
            margin: 0;
        }

        .innovation-list li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            color: var(--text-main);
            line-height: 1.7;
        }

        .innovation-list li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--primary-light);
            font-weight: bold;
            font-size: 1.4rem;
        }

        .proof-box {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            padding: 25px;
            border-radius: var(--radius-sm);
            border: 2px solid var(--primary-light);
        }

        .proof-box h4 {
            color: var(--primary);
            margin-bottom: 12px;
        }

        .proof-box p {
            margin: 0;
            color: var(--text-main);
        }

        .breakthrough-visual {
            position: sticky;
            top: 100px;
        }

        .breakthrough-visual img {
            width: 100%;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
        }

        .visual-caption {
            margin-top: 15px;
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-muted);
            font-style: italic;
        }

        .why-earthships {
            margin: 80px 0;
        }

        .why-earthships h3 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 50px;
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .reason-card {
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--accent);
        }

        .reason-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .reason-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .reason-card h4 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .reason-card p {
            margin: 0;
        }

        .kpg-earthship-vision {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            background: linear-gradient(135deg, #F5F0E8 0%, #FBF8F3 100%);
            padding: 60px;
            border-radius: var(--radius);
            margin: 80px 0;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .kpg-earthship-vision::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(139, 111, 71, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .vision-content,
        .vision-visual {
            position: relative;
            z-index: 1;
        }

        .vision-content h3 {
            font-size: 2.2rem;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--earth) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .vision-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .project-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 32px 0;
        }

        .stat-card {
            background: white;
            padding: 24px;
            border-radius: var(--radius-sm);
            text-align: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .stat-card .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 8px;
        }

        .stat-card .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        .vision-list {
            list-style: none;
            margin: 30px 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .vision-list li {
            padding: 16px 20px;
            padding-left: 50px;
            position: relative;
            color: var(--text-main);
            font-size: 1.05rem;
            background: white;
            border-radius: var(--radius-sm);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: var(--transition);
        }

        .vision-list li:hover {
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .vision-list li::before {
            content: "";
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vision-list li::after {
            content: "✓";
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-weight: bold;
            font-size: 0.9rem;
            width: 24px;
            text-align: center;
        }

        .vision-cta {
            font-size: 1.15rem;
            color: var(--primary);
            font-weight: 600;
            margin-top: 30px;
        }

        .visual-box {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .visual-box:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .visual-box img {
            width: 100%;
            border-radius: var(--radius);
            transition: var(--transition);
        }

        .visual-box:hover img {
            transform: scale(1.05);
        }

        .visual-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .consultation-cta {
            background: linear-gradient(135deg, var(--primary) 0%, #3d6548 100%);
            color: white;
            padding: 60px;
            border-radius: var(--radius);
            text-align: center;
            margin-top: 80px;
        }

        .consultation-cta h3 {
            color: white;
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .consultation-cta>p {
            color: white;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .consultation-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 800px;
            margin: 40px auto;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .consultation-cta .btn {
            margin-top: 20px;
            background: white;
            color: var(--primary);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .consultation-cta .btn:hover {
            background: var(--sunshine);
            color: var(--earth);
        }

        /* ============================================
           AMAZING PHILOSOPHY SECTION
           ============================================ */

        .philosophy-section {
            position: relative;
            padding: 120px 0 140px;
            background: linear-gradient(180deg,
                    #FFFFFF 0%,
                    #F9F6F1 30%,
                    #F5F0E8 70%,
                    #EDE7DC 100%);
            overflow: hidden;
        }

        /* Organic background pattern */
        .philosophy-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(ellipse 800px 600px at 10% 20%, rgba(127, 182, 133, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse 600px 800px at 90% 80%, rgba(232, 149, 108, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse 400px 400px at 50% 50%, rgba(242, 201, 76, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Decorative botanical elements */
        .deco-leaf {
            position: absolute;
            pointer-events: none;
            opacity: 0.06;
            z-index: 1;
        }

        .deco-leaf-1 {
            top: 5%;
            left: 3%;
            width: 180px;
            height: 180px;
            background: var(--primary);
            border-radius: 0 70% 70% 70%;
            transform: rotate(-30deg);
            animation: gentleSway 8s ease-in-out infinite;
        }

        .deco-leaf-2 {
            top: 15%;
            right: 5%;
            width: 120px;
            height: 120px;
            background: var(--primary-light);
            border-radius: 70% 0 70% 70%;
            transform: rotate(20deg);
            animation: gentleSway 10s ease-in-out infinite reverse;
        }

        .deco-leaf-3 {
            bottom: 10%;
            left: 8%;
            width: 100px;
            height: 100px;
            background: var(--accent);
            border-radius: 70% 70% 0 70%;
            transform: rotate(45deg);
            animation: gentleSway 12s ease-in-out infinite;
        }

        .deco-leaf-4 {
            bottom: 20%;
            right: 3%;
            width: 150px;
            height: 150px;
            background: var(--primary);
            border-radius: 70% 70% 70% 0;
            transform: rotate(-15deg);
            animation: gentleSway 9s ease-in-out infinite reverse;
        }

        @keyframes gentleSway {

            0%,
            100% {
                transform: rotate(-30deg) translateY(0);
            }

            50% {
                transform: rotate(-25deg) translateY(-10px);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
            position: relative;
            z-index: 2;
        }

        /* Header */
        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 80px;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 20px;
            position: relative;
        }

        .tag::before,
        .tag::after {
            content: '';
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-light));
        }

        .tag::after {
            background: linear-gradient(90deg, var(--accent-light), transparent);
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* Philosophy Grid */
        .philosophy-container {
            position: relative;
        }

        /* Central connecting circle */
        .connection-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(127, 182, 133, 0.15) 0%, transparent 70%);
            z-index: 1;
            animation: pulse 4s ease-in-out infinite;
            pointer-events: none;
            transition: opacity 0.5s ease;
        }

        .connection-circle::before {
            content: '∞';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            color: var(--primary-light);
            opacity: 0.4;
        }

        .philosophy-container.has-expanded .connection-circle {
            opacity: 0;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.7;
            }
        }

        .philosophy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        /* Philosophy Cards */
        .philosophy-card {
            position: relative;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 50px 40px 45px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid rgba(127, 182, 133, 0.15);
            overflow: hidden;
            cursor: pointer;
        }

        .philosophy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .philosophy-card[data-theme="earthship"]::before {
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
        }

        .philosophy-card[data-theme="permaculture"]::before {
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
        }

        .philosophy-card[data-theme="biodynamic"]::before {
            background: linear-gradient(90deg, var(--earth), #a8916a);
        }

        .philosophy-card:hover {
            transform: translateY(-12px);
            box-shadow:
                0 30px 60px rgba(74, 124, 89, 0.12),
                0 10px 20px rgba(74, 124, 89, 0.08);
        }

        .philosophy-card:hover::before,
        .philosophy-card.expanded::before {
            opacity: 1;
        }

        /* Expanded state */
        .philosophy-card.expanded {
            grid-column: 1 / -1;
            cursor: default;
            transform: none;
            box-shadow:
                0 30px 60px rgba(74, 124, 89, 0.12),
                0 10px 20px rgba(74, 124, 89, 0.08);
        }

        .philosophy-card.hidden {
            display: none;
        }

        /* Icon container with organic shape */
        .philosophy-icon-wrap {
            position: relative;
            width: 110px;
            height: 110px;
            margin: 0 auto 30px;
            transition: all 0.5s ease;
        }

        .philosophy-card.expanded .philosophy-icon-wrap {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
        }

        .philosophy-icon-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: morphShape 8s ease-in-out infinite;
            transition: transform 0.5s ease;
        }

        .philosophy-card[data-theme="earthship"] .philosophy-icon-bg {
            background: linear-gradient(135deg, rgba(232, 149, 108, 0.2) 0%, rgba(244, 177, 131, 0.3) 100%);
        }

        .philosophy-card[data-theme="permaculture"] .philosophy-icon-bg {
            background: linear-gradient(135deg, rgba(127, 182, 133, 0.2) 0%, rgba(74, 124, 89, 0.25) 100%);
            animation-delay: -3s;
        }

        .philosophy-card[data-theme="biodynamic"] .philosophy-icon-bg {
            background: linear-gradient(135deg, rgba(139, 111, 71, 0.15) 0%, rgba(168, 145, 106, 0.25) 100%);
            animation-delay: -6s;
        }

        .philosophy-card:hover .philosophy-icon-bg {
            transform: scale(1.1) rotate(10deg);
        }

        @keyframes morphShape {

            0%,
            100% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }

            25% {
                border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
            }

            50% {
                border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
            }

            75% {
                border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
            }
        }

        .philosophy-icon {
            position: relative;
            z-index: 2;
            font-size: 3.5rem;
            line-height: 110px;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
            transition: all 0.5s ease;
        }

        .philosophy-card.expanded .philosophy-icon {
            font-size: 2.5rem;
            line-height: 80px;
        }

        .philosophy-card:hover:not(.expanded) .philosophy-icon {
            transform: scale(1.15) rotate(-5deg);
        }

        .philosophy-card h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 16px;
            font-weight: 700;
            letter-spacing: -0.5px;
            transition: all 0.3s ease;
        }

        .philosophy-card[data-theme="earthship"] h3 {
            color: var(--accent);
        }

        .philosophy-card[data-theme="permaculture"] h3 {
            color: var(--primary);
        }

        .philosophy-card[data-theme="biodynamic"] h3 {
            color: var(--earth);
        }

        .card-intro {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin: 0;
            transition: all 0.3s ease;
        }

        /* Expand prompt */
        .card-expand-prompt {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 24px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--primary);
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
        }

        .philosophy-card[data-theme="earthship"] .card-expand-prompt {
            color: var(--accent);
        }

        .philosophy-card[data-theme="biodynamic"] .card-expand-prompt {
            color: var(--earth);
        }

        .card-expand-prompt svg {
            transition: transform 0.3s ease;
        }

        .philosophy-card:hover:not(.expanded) .card-expand-prompt {
            opacity: 1;
            transform: translateY(0);
        }

        .philosophy-card.expanded .card-expand-prompt {
            display: none;
        }

        /* ============================================
           EXPANDED CONTENT
           ============================================ */

        .expanded-content {
            display: none;
            text-align: left;
            margin-top: 30px;
            animation: fadeSlideIn 0.5s ease forwards;
        }

        .philosophy-card.expanded .expanded-content {
            display: block;
        }

        @keyframes fadeSlideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .expanded-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 30px;
        }

        .expanded-main h4 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .philosophy-card[data-theme="earthship"] .expanded-main h4 {
            color: var(--accent);
        }

        .philosophy-card[data-theme="biodynamic"] .expanded-main h4 {
            color: var(--earth);
        }

        .expanded-main p {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Principle pills */
        .principles-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }

        .principle-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            background: var(--bg-soft);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
            border: 1px solid rgba(74, 124, 89, 0.1);
            transition: all 0.3s ease;
        }

        .principle-pill:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .philosophy-card[data-theme="earthship"] .principle-pill:hover {
            background: rgba(232, 149, 108, 0.15);
            border-color: var(--accent-light);
        }

        .philosophy-card[data-theme="permaculture"] .principle-pill:hover {
            background: rgba(127, 182, 133, 0.15);
            border-color: var(--primary-light);
        }

        .philosophy-card[data-theme="biodynamic"] .principle-pill:hover {
            background: rgba(139, 111, 71, 0.12);
            border-color: var(--earth);
        }

        /* Sidebar highlights */
        .expanded-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .highlight-box {
            padding: 24px;
            border-radius: 16px;
            background: var(--bg-soft);
            border-left: 4px solid var(--primary-light);
        }

        .philosophy-card[data-theme="earthship"] .highlight-box {
            border-left-color: var(--accent);
            background: linear-gradient(135deg, rgba(232, 149, 108, 0.08) 0%, var(--bg-soft) 100%);
        }

        .philosophy-card[data-theme="biodynamic"] .highlight-box {
            border-left-color: var(--earth);
            background: linear-gradient(135deg, rgba(139, 111, 71, 0.08) 0%, var(--bg-soft) 100%);
        }

        .highlight-box h5 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .philosophy-card[data-theme="earthship"] .highlight-box h5 {
            color: var(--accent);
        }

        .philosophy-card[data-theme="biodynamic"] .highlight-box h5 {
            color: var(--earth);
        }

        .highlight-box p {
            margin: 0;
            color: var(--text-main);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .highlight-box ul {
            margin: 0;
            padding-left: 0;
            list-style: none;
        }

        .highlight-box li {
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            color: var(--text-main);
            font-size: 0.95rem;
        }

        .highlight-box li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-light);
            font-weight: bold;
        }

        .philosophy-card[data-theme="earthship"] .highlight-box li::before {
            color: var(--accent);
        }

        .philosophy-card[data-theme="biodynamic"] .highlight-box li::before {
            color: var(--earth);
        }

        /* Close button */
        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--bg-soft);
            border: none;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .philosophy-card.expanded .close-btn {
            display: flex;
        }

        .close-btn:hover {
            background: var(--primary);
            transform: rotate(90deg);
        }

        .close-btn:hover svg {
            stroke: white;
        }

        .close-btn svg {
            stroke: var(--text-muted);
            transition: stroke 0.3s ease;
        }

        /* Bottom flourish */
        .section-flourish {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 70px;
            opacity: 0.5;
        }

        .flourish-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
        }

        .flourish-icon {
            font-size: 1.5rem;
            color: var(--primary-light);
            animation: gentleFloat 3s ease-in-out infinite;
        }

        @keyframes gentleFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        /* Responsive */
        @media (max-width: 900px) {
            .philosophy-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
                gap: 30px;
            }

            .philosophy-card.expanded {
                grid-column: 1;
            }

            .expanded-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .connection-circle {
                display: none;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

            .philosophy-section {
                padding: 80px 0 100px;
            }

            .deco-leaf {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .philosophy-card {
                padding: 40px 30px 35px;
            }

            .philosophy-icon-wrap {
                width: 90px;
                height: 90px;
            }

            .philosophy-icon {
                font-size: 2.8rem;
                line-height: 90px;
            }

            .principles-list {
                gap: 8px;
            }

            .principle-pill {
                padding: 8px 14px;
                font-size: 0.85rem;
            }
        }

        /* --- WORKSHOPS CALENDAR --- */
        .workshops-section {
            background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-body) 100%);
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }


        /* --- AMAZING WORKSHOPS CSS --- */
        .workshop-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .tab-btn {
            padding: 15px 30px;
            border: 2px solid var(--primary-light);
            background: transparent;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-btn.active,
        .tab-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
        }

        .workshop-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .workshop-content.active-tab {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .workshop-card.featured {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .card-ribbon {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--accent);
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-weight: bold;
            font-size: 0.9rem;
            z-index: 10;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .workshop-header-visual {
            height: 150px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .workshop-header-visual.technical-bg {
            background: linear-gradient(135deg, var(--earth), #a38b66);
        }

        .workshop-header-visual h3 {
            color: white;
            margin: 0;
            font-size: 2rem;
        }

        .workshop-header-visual p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
        }

        .card-body {
            padding: 40px;
        }

        /* The Timeline Flow */
        .day-flow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            position: relative;
        }

        .flow-step {
            text-align: center;
            z-index: 2;
            background: white;
            padding: 0 10px;
        }

        .step-icon {
            font-size: 2.5rem;
            margin-bottom: 5px;
        }

        .flow-step span {
            font-weight: 700;
            color: var(--primary);
            font-size: 0.9rem;
            line-height: 1.2;
            display: block;
        }

        .flow-line {
            flex-grow: 1;
            height: 3px;
            background: #e0e0e0;
            margin: 0 10px;
            position: relative;
            top: -15px;
            z-index: 1;
        }

        /* Details Grid */
        .workshop-details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .workshop-details-grid h5 {
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            margin-bottom: 15px;
            border-bottom: 2px solid var(--bg-soft);
            padding-bottom: 10px;
        }

        .check-list li {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
        }

        .check-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        /* Pricing */
        .price-block {
            text-align: center;
            background: var(--bg-soft);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

        .per {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
        }

        .local-price {
            font-size: 0.9rem;
            color: var(--accent);
            font-weight: 600;
            margin-top: 5px;
        }

        .full-width {
            width: 100%;
            display: block;
        }

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

            .workshop-tabs {
                flex-direction: column;
            }
        }


        .workshop-card {
            background: white;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .workshop-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--sunshine) 100%);
        }

        .workshop-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }

        .workshop-day {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .workshop-time {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .workshop-card h3 {
            color: var(--primary);
            margin-bottom: 16px;
            font-size: 1.8rem;
        }

        .workshop-topics {
            margin: 24px 0;
        }

        .topic-tag {
            display: inline-block;
            background: var(--bg-soft);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin: 4px;
            font-weight: 500;
        }

        .workshop-highlight {
            background: linear-gradient(135deg, #FFF9E6 0%, #FFF4D6 100%);
            padding: 20px;
            border-radius: var(--radius-sm);
            margin: 24px 0;
            border: 2px solid var(--sunshine);
        }

        .workshop-highlight strong {
            color: var(--earth);
            font-size: 1.1rem;
        }

        .price-badge {
            display: inline-block;
            background: var(--primary-light);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            margin-top: 10px;
        }

        .free-badge {
            display: block;
            background: var(--accent);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-top: 12px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* --- PILLARS SECTION --- */
        .pillars-section {
            background: linear-gradient(135deg, var(--primary) 0%, #3d6548 100%);
            padding: 100px 0;
            color: white;
        }

        .pillars-section h2,
        .pillars-section p {
            color: white;
        }

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

        .pillar-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius);
            padding: 40px;
            transition: var(--transition);
        }

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

        .pillar-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--sunshine);
            margin-bottom: 16px;
        }

        .pillar-card h3 {
            color: white;
            margin-bottom: 16px;
        }

        .pillar-card p {
            color: rgba(255, 255, 255, 0.9);
        }

        .pillar-card ul {
            list-style: none;
            margin-top: 20px;
        }

        .pillar-card li {
            color: rgba(255, 255, 255, 0.85);
            padding: 8px 0;
            padding-left: 28px;
            position: relative;
        }

        .pillar-card li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--sunshine);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* --- COMMUNITY CTA --- */
        .community-cta {
            background: var(--bg-soft);
            padding: 80px 0;
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            margin-bottom: 20px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        /* --- FOOTER --- */
        footer {
            background: var(--primary);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        footer h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        footer p,
        footer a {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        footer a {
            display: block;
            margin-bottom: 12px;
            transition: 0.2s;
        }

        footer a:hover {
            color: var(--sunshine);
            transform: translateX(5px);
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {

            .garden-grid,
            .about-grid,
            .prana-grid,
            .philosophy-grid,
            .pillars-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .calendar-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .self-sufficiency-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .breakthrough-grid,
            .kpg-earthship-vision {
                grid-template-columns: 1fr;
            }

            .breakthrough-visual {
                position: static;
            }

            .reasons-grid {
                grid-template-columns: 1fr;
            }

            .project-stats {
                grid-template-columns: 1fr;
            }

            .vision-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .hero {
                padding: 80px 0 60px;
            }

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

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-buttons .btn {
                width: 100%;
                max-width: 300px;
            }

            .garden-image img,
            .about-image img,
            .prana-image-container img {
                height: 300px;
                min-height: 300px;
            }

            .prana-principles,
            .menu-highlights {
                padding: 30px 20px;
            }

            .chef-callout {
                padding: 30px 20px;
            }

            .workshop-card {
                padding: 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            footer a:hover {
                transform: none;
            }

            .journey-item {
                grid-template-columns: 60px 1fr;
                gap: 15px;
            }

            .journey-year {
                font-size: 1.5rem;
            }

            .earthship-hero-visual img {
                height: 300px;
            }

            .earthship-overlay {
                flex-direction: column;
                padding: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .self-sufficiency-grid {
                grid-template-columns: 1fr;
            }

            .breakthrough-section {
                padding: 40px 20px;
            }

            .consultation-cta {
                padding: 40px 20px;
            }

            .consultation-features {
                grid-template-columns: 1fr;
            }
        }
    



        /* --- BASE STYLES (from your existing site) --- */


        /* --- WHY EARTHSHIP SECTION STYLES --- */
        .why-earthship-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #1a2f23 0%, #0f1a14 50%, #1a1510 100%);
            overflow: hidden;
            padding: 100px 0;
        }

        .why-earthship-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .why-earthship-content {
            position: relative;
            z-index: 2;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 32px;
        }

        .why-earthship-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .why-earthship-header .tag {
            color: #7FB685;
            margin-bottom: 16px;
        }

        .why-earthship-header h2 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .why-earthship-header .lead {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .why-earthship-header .lead strong {
            color: #F2C94C;
            font-weight: 600;
        }

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

        .why-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 36px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .why-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 36px;
            right: 36px;
            height: 3px;
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .why-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .why-card:hover::before {
            transform: scaleX(1);
        }

        /* Card color variants */
        .why-card.green {
            background: linear-gradient(135deg, rgba(74, 124, 89, 0.12) 0%, rgba(127, 182, 133, 0.06) 100%);
        }

        .why-card.green:hover {
            border-color: rgba(127, 182, 133, 0.4);
        }

        .why-card.green::before {
            background: linear-gradient(90deg, #4A7C59, #7FB685);
        }

        .why-card.green .why-card-subtitle {
            color: #7FB685;
        }

        .why-card.earth {
            background: linear-gradient(135deg, rgba(139, 111, 71, 0.12) 0%, rgba(196, 165, 116, 0.06) 100%);
        }

        .why-card.earth:hover {
            border-color: rgba(196, 165, 116, 0.4);
        }

        .why-card.earth::before {
            background: linear-gradient(90deg, #8B6F47, #C4A574);
        }

        .why-card.earth .why-card-subtitle {
            color: #C4A574;
        }

        .why-card.coral {
            background: linear-gradient(135deg, rgba(232, 149, 108, 0.12) 0%, rgba(244, 177, 131, 0.06) 100%);
        }

        .why-card.coral:hover {
            border-color: rgba(244, 177, 131, 0.4);
        }

        .why-card.coral::before {
            background: linear-gradient(90deg, #E8956C, #F4B183);
        }

        .why-card.coral .why-card-subtitle {
            color: #F4B183;
        }

        .why-card-icon {
            font-size: 2.8rem;
            margin-bottom: 20px;
            filter: grayscale(20%);
            transition: filter 0.3s ease;
        }

        .why-card:hover .why-card-icon {
            filter: grayscale(0%);
        }

        .why-card-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .why-card-subtitle {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }

        .why-card-description {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.7;
            margin: 0;
        }

        /* Quote section */
        .why-earthship-quote {
            text-align: center;
            margin-top: 80px;
            padding-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .why-earthship-quote blockquote {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.6);
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 20px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .why-earthship-quote cite {
            font-size: 0.95rem;
            color: #7FB685;
            font-weight: 600;
            font-style: normal;
            display: block;
            margin-bottom: 40px;
        }

        .why-earthship-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .why-earthship-buttons .btn-primary {
            background: linear-gradient(135deg, #4A7C59 0%, #7FB685 100%);
            box-shadow: 0 4px 25px rgba(74, 124, 89, 0.4);
        }

        .why-earthship-buttons .btn-outline {
            border-color: rgba(255, 255, 255, 0.3);
            color: #ffffff;
        }

        .why-earthship-buttons .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            color: #ffffff;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .why-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .why-earthship-section {
                padding: 70px 0;
            }

            .why-cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .why-card {
                padding: 28px;
            }

            .why-earthship-header {
                margin-bottom: 50px;
            }

            .why-earthship-quote {
                margin-top: 50px;
                padding-top: 40px;
            }

            .why-earthship-quote blockquote {
                font-size: 1.05rem;
            }


        }

        .wave-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }

        .wave-divider svg {
            position: relative;
            display: block;
            width: calc(137% + 1.3px);
            height: 60px;
        }

        .wave-divider .shape-fill {
            fill: #FFFFFF;
            /* Match the background of the NEXT section */
        }

        /* Scroll Animation Classes */
        .reveal {
            position: relative;
            transform: translateY(50px);
            opacity: 0;
            transition: 0.8s all ease;
        }

        .reveal.active {
            transform: translateY(0);
            opacity: 1;
        }
    
        .consultation-section {
            margin-top: 3rem;
            text-align: center;
        }

        .consultation-section h4 {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .consultation-grid {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            max-width: 700px;
            margin: 0 auto;
        }

        .consult-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.25rem 1.5rem;
            background: #fff;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            text-decoration: none;
            color: inherit;
            min-width: 140px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .consult-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .consult-card:hover {
            border-color: transparent;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transform: translateY(-4px);
        }

        .consult-card:hover::before {
            opacity: 1;
        }

        /* Thailand/Local Card */
        .consult-card.local {
            --accent-start: #00a86b;
            --accent-end: #2dd4bf;
        }

        .consult-card.local:hover {
            border-color: #00a86b;
        }

        /* USA Card */
        .consult-card.usa {
            --accent-start: #3b82f6;
            --accent-end: #ef4444;
        }

        .consult-card.usa:hover {
            border-color: #3b82f6;
        }

        /* International Card */
        .consult-card.international {
            --accent-start: #8b5cf6;
            --accent-end: #06b6d4;
        }

        .consult-card.international:hover {
            border-color: #8b5cf6;
        }

        .consult-flag {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .consult-card h5 {
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 0.25rem 0;
            color: #1a1a1a;
        }

        .consult-card span {
            font-size: 0.8rem;
            color: #888;
        }

        .consult-card .badge {
            position: absolute;
            top: 8px;
            right: 8px;
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            color: white;
            font-size: 0.6rem;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Workshop button stays as primary CTA */
        .why-earthship-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #00a86b, #00875a);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 168, 107, 0.3);
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 168, 107, 0.4);
        }

        @media (max-width: 500px) {
            .consultation-grid {
                flex-direction: column;
                align-items: center;
            }

            .consult-card {
                width: 100%;
                max-width: 280px;
            }
        }
    
        /* --- 3D INTERACTIVE SECTION --- */
        .cycle-section {
            position: relative;
            height: 90vh;
            /* Full immersion */
            min-height: 700px;
            background: radial-gradient(circle at center, #1a2f23 0%, #0a120e 100%);
            overflow: hidden;
        }

        #cycle-canvas-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            cursor: grab;
            /* Indicates interactive 3D */
        }

        #cycle-canvas-container:active {
            cursor: grabbing;
        }

        /* UI Layer */
        .cycle-ui-layer {
            position: relative;
            z-index: 10;
            width: 100%;
            height: 100%;
            pointer-events: none;
            /* Let clicks pass to 3D */
        }

        /* Header */
        .cycle-header-overlay {
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            width: 90%;
            max-width: 600px;
        }

        .cycle-header-overlay h2 {
            color: white;
            margin-bottom: 8px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .cycle-header-overlay p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }

        /* The Side Drawer */
        .cycle-drawer {
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 100%;
            background: rgba(15, 20, 18, 0.95);
            /* High contrast dark background */
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateX(100%);
            /* Hidden by default */
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 60px 40px;
            pointer-events: auto;
            /* Enable interaction inside drawer */
            box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cycle-drawer.is-open {
            transform: translateX(0);
        }

        /* Drawer Content Styling */
        .drawer-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            opacity: 0.7;
            transition: 0.2s;
        }

        .drawer-close-btn:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .drawer-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .cycle-drawer h3 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 5px;
            line-height: 1;
        }

        .highlight {
            color: var(--primary-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .cycle-drawer p {
            color: #e0e0e0;
            /* Very light gray for readability */
            line-height: 1.6;
            margin-bottom: 30px;
            font-size: 1.05rem;
        }

        .drawer-stats {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px 0;
        }

        .stat {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        .stat span {
            display: block;
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .drawer-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .drawer-list li {
            padding: 8px 0;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .drawer-list li::before {
            content: '•';
            color: var(--primary-light);
            font-size: 1.5rem;
        }

        .btn-sm {
            padding: 12px 24px;
            font-size: 0.9rem;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .cycle-drawer {
                width: 100%;
                height: 60%;
                /* Bottom sheet style */
                top: auto;
                bottom: 0;
                transform: translateY(110%);
                border-left: none;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                padding: 30px;
                justify-content: flex-start;
                overflow-y: auto;
            }

            .cycle-drawer.is-open {
                transform: translateY(0);
            }

            .cycle-section {
                height: 80vh;
            }
        }
    
        /* ============================================
           PRANA HERO SECTION
           ============================================ */

        .prana-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(180deg,
                    #f5ebe0 0%,
                    #ede3d5 30%,
                    #d9cfc2 60%,
                    #c4b8a8 80%,
                    #8a7d6d 95%,
                    var(--prana-dark) 100%);
        }

        /* Decorative grain overlay */
        .prana-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E"); */
            opacity: 0.04;
            pointer-events: none;
            z-index: 1;
        }

        /* Floating spice particles */
        .spice-particles {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 2;
            overflow: hidden;
        }

        .spice {
            position: absolute;
            border-radius: 50%;
            opacity: 0.3;
            animation: floatSpice 20s ease-in-out infinite;
        }

        .spice:nth-child(1) {
            width: 8px;
            height: 8px;
            background: var(--turmeric);
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .spice:nth-child(2) {
            width: 6px;
            height: 6px;
            background: var(--saffron);
            top: 40%;
            left: 85%;
            animation-delay: -3s;
        }

        .spice:nth-child(3) {
            width: 10px;
            height: 10px;
            background: var(--primary-light);
            top: 60%;
            left: 15%;
            animation-delay: -6s;
        }

        .spice:nth-child(4) {
            width: 5px;
            height: 5px;
            background: var(--earth);
            top: 30%;
            left: 70%;
            animation-delay: -9s;
        }

        .spice:nth-child(5) {
            width: 7px;
            height: 7px;
            background: var(--turmeric);
            top: 70%;
            left: 80%;
            animation-delay: -12s;
        }

        .spice:nth-child(6) {
            width: 4px;
            height: 4px;
            background: var(--saffron);
            top: 15%;
            left: 50%;
            animation-delay: -15s;
        }

        .spice:nth-child(7) {
            width: 9px;
            height: 9px;
            background: var(--primary);
            top: 80%;
            left: 30%;
            animation-delay: -18s;
        }

        @keyframes floatSpice {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.2;
            }

            25% {
                transform: translateY(-30px) rotate(90deg);
                opacity: 0.4;
            }

            50% {
                transform: translateY(-15px) rotate(180deg);
                opacity: 0.3;
            }

            75% {
                transform: translateY(-40px) rotate(270deg);
                opacity: 0.35;
            }
        }

        .prana-hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            padding: 60px 40px;
        }

        /* Decorative mandala behind title */
        .hero-mandala {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            opacity: 0.06;
            pointer-events: none;
        }

        .mandala-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            border: 1px solid var(--earth);
            border-radius: 50%;
            animation: mandalaRotate 60s linear infinite;
        }

        .mandala-ring:nth-child(1) {
            width: 200px;
            height: 200px;
            margin: -100px 0 0 -100px;
        }

        .mandala-ring:nth-child(2) {
            width: 300px;
            height: 300px;
            margin: -150px 0 0 -150px;
            animation-direction: reverse;
            animation-duration: 80s;
        }

        .mandala-ring:nth-child(3) {
            width: 400px;
            height: 400px;
            margin: -200px 0 0 -200px;
            animation-duration: 100s;
        }

        .mandala-ring:nth-child(4) {
            width: 500px;
            height: 500px;
            margin: -250px 0 0 -250px;
            animation-direction: reverse;
            animation-duration: 120s;
        }

        @keyframes mandalaRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .prana-tag {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--earth);
            margin-bottom: 30px;
            position: relative;
        }

        .prana-tag::before,
        .prana-tag::after {
            content: '✦';
            font-size: 0.6rem;
            opacity: 0.6;
        }

        .prana-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 400;
            color: var(--prana-dark);
            letter-spacing: -2px;
            line-height: 1;
            margin-bottom: 20px;
        }

        .prana-title em {
            font-style: italic;
            font-weight: 500;
            display: block;
            font-size: 0.5em;
            letter-spacing: 8px;
            text-transform: uppercase;
            color: var(--earth);
            margin-top: 15px;
        }

        .prana-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            font-weight: 400;
            font-style: italic;
            color: var(--text-muted);
            max-width: 650px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .prana-quote {
            display: inline-block;
            padding: 20px 40px;
            background: rgba(139, 111, 71, 0.08);
            border-left: 3px solid var(--earth);
            border-right: 3px solid var(--earth);
            margin-bottom: 50px;
        }

        .prana-quote blockquote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-style: italic;
            color: var(--text-main);
            margin: 0;
        }

        .prana-quote cite {
            display: block;
            font-family: 'Outfit', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--earth);
            margin-top: 10px;
            font-style: normal;
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: var(--earth);
            opacity: 0.6;
            animation: bobDown 2s ease-in-out infinite;
            z-index: 10;
        }

        .scroll-indicator span {
            font-family: 'Outfit', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .scroll-arrow {
            width: 20px;
            height: 30px;
            border: 2px solid var(--earth);
            border-radius: 10px;
            position: relative;
        }

        .scroll-arrow::before {
            content: '';
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: var(--earth);
            border-radius: 2px;
            animation: scrollDot 2s ease-in-out infinite;
        }

        @keyframes bobDown {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(10px);
            }
        }

        @keyframes scrollDot {

            0%,
            100% {
                top: 6px;
                opacity: 1;
            }

            50% {
                top: 14px;
                opacity: 0.5;
            }
        }

        /* ============================================
           THE CHEF SECTION
           ============================================ */

        .chef-section {
            position: relative;
            background: linear-gradient(180deg,
                    var(--prana-dark) 0%,
                    var(--prana-warm) 50%,
                    var(--prana-dark) 100%);
            padding: 120px 40px;
            overflow: hidden;
        }

        .chef-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(ellipse 600px 400px at 30% 20%, rgba(212, 168, 83, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse 400px 400px at 70% 80%, rgba(232, 149, 108, 0.04) 0%, transparent 60%);
            pointer-events: none;
        }

        .chef-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .chef-visual {
            position: relative;
        }

        .chef-image-frame {
            position: relative;
            aspect-ratio: 4/5;
            background: linear-gradient(135deg, #3a3228 0%, #2a2420 100%);
            border-radius: 200px 200px 30px 30px;
            overflow: hidden;
            box-shadow:
                0 40px 80px rgba(0, 0, 0, 0.4),
                inset 0 0 60px rgba(212, 168, 83, 0.05);
        }

        /* Placeholder chef illustration */
        .chef-placeholder {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 85%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
        }

        .chef-silhouette {
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg,
                    transparent 0%,
                    rgba(139, 111, 71, 0.1) 30%,
                    rgba(139, 111, 71, 0.2) 100%);
            border-radius: 100px 100px 0 0;
            position: relative;
        }

        .chef-silhouette::before {
            content: '👨‍🍳';
            position: absolute;
            top: 20%;
            left: 50%;
            transform: translateX(-50%);
            font-size: 8rem;
            opacity: 0.3;
            filter: grayscale(50%);
        }

        .chef-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 140px;
            height: 140px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(212, 168, 83, 0.4);
            z-index: 10;
        }

        .chef-badge-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--prana-dark);
            line-height: 1;
        }

        .chef-badge-text {
            font-family: 'Outfit', sans-serif;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--prana-dark);
            text-align: center;
            line-height: 1.3;
        }

        .chef-content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 400;
            color: #fff;
            margin-bottom: 10px;
            line-height: 1.1;
        }

        .chef-content h2 span {
            display: block;
            font-size: 0.4em;
            font-family: 'Outfit', sans-serif;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .chef-intro {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-style: italic;
            color: var(--gold-light);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .chef-description {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.9;
            margin-bottom: 40px;
        }

        /* The Prana Way - Principles Grid */
        .principles-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .principle-card {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            transition: all 0.4s ease;
        }

        .principle-card:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(212, 168, 83, 0.2);
            transform: translateX(5px);
        }

        .principle-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .principle-text h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 5px;
        }

        .principle-text p {
            font-family: 'Outfit', sans-serif;
            font-size: 0.8rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
            margin: 0;
        }

        /* ============================================
           SIGNATURE OFFERINGS SECTION
           ============================================ */

        .menu-highlights {
            position: relative;
            background: linear-gradient(180deg,
                    var(--prana-dark) 0%,
                    var(--prana-warm) 50%,
                    #1f1a15 100%);
            padding: 120px 40px 140px;
            overflow: hidden;
        }

        .menu-highlights::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(ellipse 600px 400px at 20% 30%, rgba(212, 168, 83, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse 500px 500px at 80% 70%, rgba(232, 149, 108, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }

        .menu-highlights::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E"); */
            opacity: 0.03;
            pointer-events: none;
        }

        .menu-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .menu-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .menu-header-tag {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .menu-header-tag::before,
        .menu-header-tag::after {
            content: '';
            width: 40px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
        }

        .menu-header h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.8rem, 5vw, 4.5rem);
            font-weight: 400;
            color: #fff;
            letter-spacing: 2px;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .menu-header h3 em {
            font-style: italic;
            color: var(--gold-light);
        }

        .menu-header-subtitle {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.6);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Featured Dish - Hero Card */
        .featured-dish {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            margin-bottom: 80px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
            border: 1px solid rgba(212, 168, 83, 0.15);
            border-radius: 24px;
            overflow: hidden;
            position: relative;
        }

        .featured-dish::before {
            content: 'CHEF\'S PRIDE';
            position: absolute;
            top: 30px;
            left: 30px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--gold);
            background: rgba(26, 22, 18, 0.9);
            padding: 8px 16px;
            border-radius: 50px;
            border: 1px solid rgba(212, 168, 83, 0.3);
            z-index: 10;
        }

        .featured-visual {
            position: relative;
            min-height: 450px;
            background: linear-gradient(135deg, #2a2520 0%, #1f1b18 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .dish-illustration {
            position: relative;
            width: 280px;
            height: 280px;
        }

        .bowl-outer {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 240px;
            height: 120px;
            background: linear-gradient(180deg, #c4a574 0%, #8B6F47 100%);
            border-radius: 0 0 120px 120px;
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.4),
                inset 0 -10px 30px rgba(0, 0, 0, 0.3);
        }

        .bowl-inner {
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 100px;
            background: radial-gradient(ellipse at center, #f5e6c8 0%, #e8d4a8 50%, #d4b87a 100%);
            border-radius: 50%;
            box-shadow: inset 0 10px 30px rgba(139, 111, 71, 0.5);
        }

        .rice-dots {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 160px;
            height: 60px;
        }

        .rice-dot {
            position: absolute;
            width: 6px;
            height: 8px;
            background: #fff9e6;
            border-radius: 50%;
            opacity: 0.9;
        }

        .herb-leaf {
            position: absolute;
            width: 20px;
            height: 30px;
            background: linear-gradient(135deg, #7FB685 0%, #4A7C59 100%);
            border-radius: 50% 0 50% 50%;
            transform: rotate(-30deg);
            top: -55px;
            left: 60%;
        }

        .herb-leaf:nth-child(2) {
            left: 30%;
            transform: rotate(20deg);
            width: 15px;
            height: 22px;
        }

        .spice-accent {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            top: -35px;
        }

        .steam-container {
            position: absolute;
            top: -80px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 80px;
        }

        .steam {
            position: absolute;
            bottom: 0;
            width: 3px;
            height: 40px;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.3), transparent);
            border-radius: 50%;
            animation: steamRise 2s ease-out infinite;
        }

        .steam:nth-child(1) {
            left: 30%;
            animation-delay: 0s;
        }

        .steam:nth-child(2) {
            left: 50%;
            animation-delay: 0.5s;
        }

        .steam:nth-child(3) {
            left: 70%;
            animation-delay: 1s;
        }

        @keyframes steamRise {
            0% {
                opacity: 0;
                transform: translateY(0) scaleX(1);
            }

            50% {
                opacity: 0.6;
            }

            100% {
                opacity: 0;
                transform: translateY(-40px) scaleX(2);
            }
        }

        .featured-content {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-content h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .featured-sanskrit {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            font-style: italic;
            color: var(--gold-light);
            margin-bottom: 24px;
            letter-spacing: 1px;
        }

        .featured-description {
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.9;
            margin-bottom: 30px;
        }

        .featured-benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 30px;
        }

        .benefit-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: rgba(127, 182, 133, 0.1);
            border: 1px solid rgba(127, 182, 133, 0.2);
            border-radius: 50px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--primary-light);
        }

        .ayurvedic-note {
            display: flex;
            gap: 15px;
            padding: 20px;
            background: rgba(212, 168, 83, 0.08);
            border-left: 3px solid var(--gold);
            border-radius: 0 12px 12px 0;
        }

        .ayurvedic-note-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .ayurvedic-note-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.95rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        /* Menu Grid */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 80px;
        }

        .menu-item {
            position: relative;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: pointer;
        }

        .menu-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .menu-item:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 168, 83, 0.3);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 168, 83, 0.08);
        }

        .menu-item:hover::before {
            opacity: 1;
        }

        .menu-item-visual {
            position: relative;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .menu-item-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        }

        .menu-item[data-dish="cheese"] .menu-item-visual {
            background: linear-gradient(135deg, #3a3228 0%, #2a2420 100%);
        }

        .menu-item[data-dish="brownies"] .menu-item-visual {
            background: linear-gradient(135deg, #2d2520 0%, #1f1a18 100%);
        }

        .menu-item[data-dish="thali"] .menu-item-visual {
            background: linear-gradient(135deg, #2a3028 0%, #1f251f 100%);
        }

        .dish-icon {
            position: relative;
            width: 100px;
            height: 100px;
            transition: transform 0.5s ease;
        }

        .menu-item:hover .dish-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        /* Cheese illustration */
        .cheese-wheel {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #f5e6b8 0%, #e8d090 50%, #d4b86a 100%);
            border-radius: 50%;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset -10px -10px 30px rgba(139, 111, 71, 0.3);
        }

        .cheese-wheel::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 20%;
            width: 12px;
            height: 12px;
            background: rgba(139, 111, 71, 0.3);
            border-radius: 50%;
        }

        .cheese-wheel::after {
            content: '';
            position: absolute;
            bottom: 25%;
            right: 25%;
            width: 8px;
            height: 8px;
            background: rgba(139, 111, 71, 0.3);
            border-radius: 50%;
        }

        .cheese-slice {
            position: absolute;
            top: -10px;
            right: -20px;
            width: 50px;
            height: 40px;
            background: linear-gradient(135deg, #f5e6b8 0%, #e8d090 100%);
            clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
            transform: rotate(30deg);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Brownie illustration */
        .brownie-stack {
            position: relative;
            width: 80px;
            height: 60px;
        }

        .brownie {
            position: absolute;
            width: 70px;
            height: 25px;
            background: linear-gradient(180deg, #4a3528 0%, #3a2820 100%);
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .brownie:nth-child(1) {
            bottom: 0;
            left: 5px;
        }

        .brownie:nth-child(2) {
            bottom: 20px;
            left: 0;
            transform: rotate(-5deg);
        }

        .brownie:nth-child(3) {
            bottom: 38px;
            left: 8px;
            transform: rotate(3deg);
        }

        .brownie::before {
            content: '';
            position: absolute;
            top: 3px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: rgba(74, 53, 40, 0.8);
            border-radius: 2px;
        }

        .cocoa-dust {
            position: absolute;
            top: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            background: #5a4538;
            border-radius: 50%;
            box-shadow: 10px 5px 0 #5a4538, -8px 3px 0 #5a4538, 5px -2px 0 #5a4538;
        }

        /* Thali illustration */
        .thali-plate {
            position: relative;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 50%, #909090 100%);
            border-radius: 50%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 2px 5px rgba(255, 255, 255, 0.3), inset 0 -5px 15px rgba(0, 0, 0, 0.2);
        }

        .thali-bowl {
            position: absolute;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.3);
        }

        .thali-bowl:nth-child(1) {
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: #e8956c;
        }

        .thali-bowl:nth-child(2) {
            top: 35px;
            left: 10px;
            background: #7FB685;
        }

        .thali-bowl:nth-child(3) {
            top: 35px;
            right: 10px;
            background: #F2C94C;
        }

        .thali-bowl:nth-child(4) {
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            background: #f5e6c8;
            width: 30px;
            height: 15px;
            border-radius: 3px;
        }

        .menu-item-content {
            padding: 30px;
        }

        .menu-item-label {
            display: inline-block;
            font-family: 'Outfit', sans-serif;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 50px;
            margin-bottom: 15px;
        }

        .menu-item[data-dish="cheese"] .menu-item-label {
            background: rgba(232, 149, 108, 0.15);
            color: var(--accent-light);
        }

        .menu-item[data-dish="brownies"] .menu-item-label {
            background: rgba(139, 111, 71, 0.15);
            color: #c4a574;
        }

        .menu-item[data-dish="thali"] .menu-item-label {
            background: rgba(127, 182, 133, 0.15);
            color: var(--primary-light);
        }

        .menu-item h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .menu-item p {
            font-family: 'Outfit', sans-serif;
            font-size: 0.9rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .ingredients-preview {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .ingredient {
            font-family: 'Outfit', sans-serif;
            font-size: 0.75rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.5);
            padding: 4px 10px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
        }

        /* Dietary Badges */
        .dietary-section {
            text-align: center;
            padding-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .dietary-label {
            font-family: 'Outfit', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 25px;
        }

        .dietary-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .dietary-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }

        .dietary-badge:hover {
            border-color: var(--gold);
            color: var(--gold-light);
            background: rgba(212, 168, 83, 0.08);
        }

        .dietary-badge .check {
            width: 18px;
            height: 18px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            color: white;
        }

        /* CTA Section */
        .prana-cta {
            text-align: center;
            margin-top: 80px;
            padding: 60px;
            background: linear-gradient(135deg, rgba(127, 182, 133, 0.08) 0%, rgba(74, 124, 89, 0.04) 100%);
            border: 1px solid rgba(127, 182, 133, 0.15);
            border-radius: 24px;
        }

        .prana-cta h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 500;
            color: #fff;
            margin-bottom: 15px;
        }

        .prana-cta p {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 30px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .btn {
            display: inline-block;
            padding: 16px 36px;
            border-radius: 50px;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(74, 124, 89, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(74, 124, 89, 0.5);
        }

        .btn-secondary {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(232, 149, 108, 0.4);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(232, 149, 108, 0.5);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .chef-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .chef-visual {
                max-width: 400px;
                margin: 0 auto;
            }

            .featured-dish {
                grid-template-columns: 1fr;
            }

            .featured-visual {
                min-height: 300px;
            }

            .menu-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .principles-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .prana-hero {
                min-height: auto;
                padding: 100px 20px;
            }

            .prana-hero-content {
                padding: 40px 20px;
            }

            .chef-section {
                padding: 80px 20px;
            }

            .menu-highlights {
                padding: 80px 20px 100px;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .featured-content {
                padding: 40px 30px;
            }

            .featured-content h4 {
                font-size: 2rem;
            }

            .chef-badge {
                width: 100px;
                height: 100px;
                bottom: -10px;
                right: -10px;
            }

            .chef-badge-number {
                font-size: 1.8rem;
            }

            .prana-cta {
                padding: 40px 20px;
            }

            .dietary-badges {
                gap: 10px;
            }

            .dietary-badge {
                padding: 10px 18px;
                font-size: 0.8rem;
            }

            .scroll-indicator {
                display: none;
            }
        }
    


        /* --- MODERN WORKSHOP STYLES --- */

        .workshops-modern {
            position: relative;
            padding: 120px 0;
            background-color: #fcfbf9;
            /* Warm off-white base */
            overflow: hidden;
        }

        /* Texture Overlay similar to Prana section */
        .workshop-bg-texture {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E"); */
            opacity: 0.6;
            pointer-events: none;
            z-index: 1;
        }

        /* Decorative Leaves */
        .workshop-leaf {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(74, 124, 89, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .leaf-1 {
            top: 10%;
            left: -100px;
        }

        .leaf-2 {
            bottom: 10%;
            right: -100px;
            background: radial-gradient(circle, rgba(232, 149, 108, 0.08) 0%, transparent 70%);
        }

        /* Header Styling matching Prana typography */
        .workshop-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
            position: relative;
            z-index: 2;
        }

        .workshop-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            color: var(--primary);
            margin: 15px 0;
            line-height: 1.1;
        }

        .workshop-header h2 em {
            font-style: italic;
            color: var(--accent);
        }

        .workshop-header .subtitle {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Grid Layout */
        .workshop-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Card Base Styles */
        .workshop-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .workshop-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
        }

        /* Badges */
        .card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--sunshine);
            color: var(--prana-dark);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 10;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .card-badge.secondary {
            background: var(--primary-light);
            color: white;
        }

        /* Visual Header */
        .card-visual {
            height: 180px;
            position: relative;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: white;
        }

        .community-theme .card-visual {
            background: linear-gradient(135deg, var(--accent) 0%, #d67f58 100%);
        }

        .tech-theme .card-visual {
            background: linear-gradient(135deg, var(--primary) 0%, #3d6548 100%);
        }

        /* Abstract shapes in visual header */
        .visual-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 60%);
        }

        .visual-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            position: relative;
        }

        .visual-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            margin: 0;
            line-height: 1;
            position: relative;
            color: white;
        }

        .visual-content span {
            font-family: 'Outfit', sans-serif;
            font-size: 0.85rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        /* Card Body */
        .card-body {
            padding: 35px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-desc {
            color: var(--text-muted);
            margin-bottom: 30px;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Schedule Timeline */
        .schedule-timeline {
            margin-bottom: 30px;
            padding-left: 15px;
            border-left: 2px solid #eee;
        }

        .time-slot {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            position: relative;
        }

        .time-slot::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 6px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ddd;
            border: 2px solid white;
        }

        .time-slot.highlight::before {
            background: var(--accent);
        }

        .time {
            font-weight: 700;
            color: var(--primary);
            font-size: 0.9rem;
            width: 45px;
        }

        .activity {
            font-size: 0.95rem;
            color: var(--text-main);
        }

        /* Skills List */
        .skills-list {
            background: var(--bg-soft);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .skills-list h5 {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .skills-list span {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--primary);
        }

        /* Footer & Price */
        .card-footer {
            margin-top: auto;
        }

        .price-tag {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .amount {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-main);
        }

        .note {
            font-size: 0.8rem;
            color: var(--accent);
            font-weight: 600;
        }

        .full-width {
            width: 100%;
            display: block;
            text-align: center;
        }

        /* Trust Indicators */
        .workshop-trust {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            position: relative;
            z-index: 2;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .trust-item .icon {
            font-size: 1.2rem;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .workshop-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                flex-direction: column;
            }

            .workshop-trust {
                align-items: center;
                gap: 15px;
            }
        }
    



        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(251, 248, 243, 0.92);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(74, 124, 89, 0.08);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 14px 0;
        }

        .brand-mark {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.1rem;
            letter-spacing: 1px;
            color: var(--primary);
        }

        .brand-mark span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            box-shadow: 0 6px 16px rgba(74, 124, 89, 0.25);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 22px;
            font-weight: 600;
            color: var(--text-main);
            flex-wrap: wrap;
        }

        .nav-links a {
            position: relative;
            padding: 8px 0;
            color: var(--text-main);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.2s ease;
        }

        .nav-links a:hover::after,
        .nav-links a:focus-visible::after {
            transform: scaleX(1);
        }

        .nav-cta {
            padding: 12px 20px;
            font-size: 0.95rem;
        }

        /* Button touch-ups for hero links */
        .hero-buttons .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: #fff;
        }

        .hero-buttons .btn-outline:hover {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 6px 20px rgba(74, 124, 89, 0.25);
        }

        @media (max-width: 900px) {
            .nav-container {
                flex-wrap: wrap;
            }

            .nav-links {
                width: 100%;
                justify-content: center;
                gap: 14px;
            }

            .nav-cta {
                width: 100%;
                text-align: center;
            }
        }
    
        /* --- PREMIUM GLASS NAVIGATION --- */
        .nav-fixed {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
        }

        /* Scrolled State (Added via JS) */
        .nav-fixed.scrolled {
            background: rgba(251, 248, 243, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 12px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

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

        /* Logo Styling */
        .nav-logo {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-main);
        }

        .logo-image {
            height: 58px;
            width: auto;
            display: block;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
            transition: transform 0.3s ease;
        }

        .nav-logo:hover .logo-image {
            transform: translateY(-2px) scale(1.02);
        }

        /* Desktop Links */
        .nav-menu-desktop {
            display: flex;
            gap: 32px;
            background: rgba(255, 255, 255, 0.5);
            padding: 10px 30px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(4px);
        }

        .nav-link {
            font-family: 'Outfit', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
            position: relative;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 100%;
            height: 2px;
            background: var(--accent);
            transition: transform 0.3s ease;
        }

        .nav-link:hover {
            opacity: 1;
            color: var(--primary);
        }

        .nav-link:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        /* Buttons & Toggle */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-btn-cta {
            padding: 12px 24px !important;
            font-size: 0.9rem !important;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            padding: 5px;
        }

        .bar {
            width: 28px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
            transition: 0.3s;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.3);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 999;
        }

        .mobile-menu-content {
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 100%;
            background: #FBF8F3;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 80px 40px;
            display: flex;
            flex-direction: column;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu-overlay.active .mobile-menu-content {
            transform: translateX(0);
        }

        .mobile-links a {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 600;
            transition: 0.2s;
        }

        .mobile-links a:hover {
            color: var(--accent);
            padding-left: 10px;
        }

        .close-mobile {
            position: absolute;
            top: 30px;
            right: 30px;
            background: none;
            border: none;
            font-size: 2.5rem;
            color: var(--text-muted);
            cursor: pointer;
        }

        .mobile-decoration {
            margin-top: auto;
            font-size: 5rem;
            opacity: 0.1;
            text-align: right;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .nav-menu-desktop {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            .nav-fixed {
                padding: 15px 0;
                background: rgba(251, 248, 243, 0.9);
                /* Slightly more solid on mobile by default */
                backdrop-filter: blur(10px);
            }

            .nav-btn-cta {
                display: none;
                /* Hide CTA button on small screens to save space, or keep if you prefer */
            }
        }
    
