:root {
    --gold: #b1892b;
    --soft-gold: #cba85a;
    /* A lighter shade for readability */
    --cream: #ffffff;
    --midnight: #2b2651;
    --forest: #0a0a0a;
    --teal: #5c5f33;
    --maroon: #4f103c;
    --brown: #684623;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--forest);
    color: var(--cream);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: .25em;
    color: var(--gold);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--midnight);
    text-decoration: none;
    transition: color .3s;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 201;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: var(--gold);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 6rem;
    background: #020912;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('A-blooming-plant-or-tree-with-sunlight-streaming-through.-Gentle-earthy-tones-that-match-your-Warm-Beige-Soft-Gold-and-Deep-Maroon-scaled.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(43, 38, 81, 0.8), rgba(79, 16, 60, 0.75));
}

@keyframes twinkle {

    0%,
    100% {
        opacity: .5
    }

    50% {
        opacity: 1
    }
}

@keyframes fireflyPulse {

    0%,
    100% {
        opacity: .1;
        r: 2px
    }

    50% {
        opacity: .9;
        r: 3.5px
    }
}

@keyframes floatUp {

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

    50% {
        transform: translateY(-8px)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

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

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: .5
    }

    50% {
        transform: scale(2);
        opacity: 1
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .3
    }

    50% {
        opacity: 1
    }
}

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

    to {
        transform: rotate(360deg)
    }
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .3
    }

    50% {
        transform: scale(1.15);
        opacity: .7
    }
}

.hero-eyebrow {
    font-size: .8rem;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--cream);
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: rgba(10, 10, 10, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    animation: fadeUp 1s .2s both;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(201, 168, 76, .6);
    animation: fadeUp 1s .4s both;
    position: relative;
    z-index: 2;
}

.hero-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    color: var(--gold);
    display: block;
    font-size: .75em;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--cream);
    max-width: 580px;
    margin: 2rem auto;
    line-height: 1.8;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
    animation: fadeUp 1s .6s both;
    position: relative;
    z-index: 2;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    animation: fadeUp 1s .8s both;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    font-family: 'Cinzel', serif;
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #0D1B2A;
    background: linear-gradient(135deg, var(--gold), #E8C55A);
    border: none;
    padding: 1rem 2.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 168, 76, .35);
}

.btn-secondary {
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    padding: 1rem 2.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, .08);
    transform: translateY(-2px);
}

.chakra-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(201, 168, 76, .0) 10%, rgba(201, 168, 76, .25) 45%, rgba(201, 168, 76, .45) 55%, rgba(201, 168, 76, .0) 90%, transparent 100%);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}

.chakra-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 15%;
    display: flex;
    flex-direction: column;
    gap: 55px;
    pointer-events: none;
    z-index: 3;
}

.chakra-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 0 auto;
    animation: pulseDot 2s ease-in-out infinite;
}

.chakra-dot:nth-child(1) {
    background: #E53935;
    animation-delay: 0s
}

.chakra-dot:nth-child(2) {
    background: #FB8C00;
    animation-delay: .3s
}

.chakra-dot:nth-child(3) {
    background: #FDD835;
    animation-delay: .6s
}

.chakra-dot:nth-child(4) {
    background: #43A047;
    animation-delay: .9s
}

.chakra-dot:nth-child(5) {
    background: #1E88E5;
    animation-delay: 1.2s
}

.chakra-dot:nth-child(6) {
    background: #5E35B1;
    animation-delay: 1.5s
}

.chakra-dot:nth-child(7) {
    background: #AB47BC;
    animation-delay: 1.8s
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    animation: fadeUp 1s 1.2s both;
    z-index: 3;
}

.scroll-indicator span {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--cream);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, .5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* SECTIONS */
section {
    position: relative;
    padding: 7rem 2rem;
}

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

.section-label {
    font-size: .65rem;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--soft-gold);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--soft-gold);
    font-weight: 300;
}

/* PHILOSOPHY */
.philosophy {
    background: linear-gradient(180deg, #0a0a0a 0%, #151329 100%);
}

.philosophy-inner {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 5rem;
    align-items: center;
}

.philosophy-divider {
    width: 1px;
    height: 280px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.philosophy-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    line-height: 1.7;
    color: var(--soft-gold);
    font-weight: 300;
    position: relative;
    padding-left: 2rem;
}

.philosophy-quote::before {
    content: '"';
    position: absolute;
    left: -.5rem;
    top: -1rem;
    font-size: 6rem;
    color: rgba(201, 168, 76, .12);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.philosophy-quote cite {
    display: block;
    font-style: normal;
    font-size: .75rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--soft-gold);
    margin-top: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
}

.code-137 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.code-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.code-number {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: rgba(201, 168, 76, .6);
    line-height: 1;
    min-width: 3rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.code-text h3 {
    font-family: 'Cinzel', serif;
    font-size: .85rem;
    letter-spacing: .2em;
    color: var(--gold);
    margin-bottom: .4rem;
}

.code-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--soft-gold);
    line-height: 1.6;
    font-weight: 300;
}

/* TRILOGY */
.trilogy {
    background: #030803;
}

.trilogy-header {
    text-align: center;
    margin-bottom: 5rem;
}

.book-arc {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    position: relative;
}

.book-arc::before {
    content: '';
    position: absolute;
    top: 115px;
    left: 16%;
    right: 16%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.book-card {
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid transparent;
    transition: all .4s ease;
}

.book-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, .15);
    background: rgba(201, 168, 76, .03);
}

.book-card.featured {
    background: linear-gradient(180deg, rgba(201, 168, 76, .06), transparent);
    border-color: rgba(201, 168, 76, .2);
}

.book-number {
    font-size: .65rem;
    letter-spacing: .5em;
    color: var(--soft-gold);
    margin-bottom: 1.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.book-orb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
}

.book-orb::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid;
    opacity: .3;
    animation: orbPulse 3s ease-in-out infinite;
}

.book-orb-1 {
    background: radial-gradient(circle, rgba(67, 160, 71, .2), rgba(4, 12, 4, .5));
}

.book-orb-1::after {
    border-color: #43A047;
}

.book-orb-2 {
    background: radial-gradient(circle, rgba(201, 168, 76, .3), rgba(13, 27, 42, .5));
}

.book-orb-2::after {
    border-color: var(--gold);
}

.book-orb-3 {
    background: radial-gradient(circle, rgba(171, 71, 188, .2), rgba(13, 27, 42, .5));
}

.book-orb-3::after {
    border-color: #AB47BC;
}

.book-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: .5rem;
}

.book-audience {
    font-size: .65rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--soft-gold);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.book-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--soft-gold);
    line-height: 1.7;
    font-weight: 300;
}

.book-status {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border: 1px solid;
    font-family: 'Lato', sans-serif;
}

.status-available {
    border-color: #43A047;
    color: #43A047;
}

.status-coming {
    border-color: rgba(201, 168, 76, .4);
    color: var(--gold);
}

/* JOURNEY */
.journey {
    background: linear-gradient(180deg, #151329, #0a0a0a);
    overflow: hidden;
}

.journey-header {
    text-align: center;
    margin-bottom: 4rem;
}

.chakra-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
}

.chakra-card {
    padding: 2rem 1rem;
    text-align: center;
    transition: all .4s;
    position: relative;
}

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

.chakra-card:hover .chakra-icon {
    filter: drop-shadow(0 0 15px var(--cc));
    transform: scale(1.3);
}

.chakra-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    transition: all .4s;
}

.chakra-name {
    font-family: 'Cinzel', serif;
    font-size: .6rem;
    letter-spacing: .2em;
    color: var(--soft-gold);
    margin-bottom: .5rem;
}

.chakra-theme {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .85rem;
    color: var(--cc, var(--gold));
    line-height: 1.4;
}

/* MOTHER OYA */
.mother-oya {
    background: linear-gradient(135deg, #0a0a0a, var(--midnight));
}

.mother-oya-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.oya-attrs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.oya-attr {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-left: 2px solid rgba(201, 168, 76, .25);
    transition: border-color .3s;
}

.oya-attr:hover {
    border-color: var(--gold);
}

.oya-attr-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--soft-gold);
    font-style: italic;
    line-height: 1.6;
}

.oya-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.oya-ring-outer {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slowRotate 30s linear infinite;
}

.oya-ring-inner {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slowRotate 20s linear infinite reverse;
}

.oya-center {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, .15), rgba(13, 27, 42, .8));
    border: 1px solid rgba(201, 168, 76, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
    animation: none;
}

.oya-center-symbol {
    font-size: 2.8rem;
}

.oya-center-text {
    font-family: 'Cinzel', serif;
    font-size: .5rem;
    letter-spacing: .3em;
    color: var(--gold);
}

/* OFFERINGS */
.offerings {
    background: #030803;
}

.offerings-header {
    text-align: center;
    margin-bottom: 4rem;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 2rem;
}

.offering-item {
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(201, 168, 76, .07);
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.offering-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform .4s;
}

.offering-item:hover::before {
    transform: scaleX(1);
}

.offering-item:hover {
    background: rgba(201, 168, 76, .04);
    border-color: rgba(201, 168, 76, .18);
    transform: translateY(-4px);
}

.offering-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.offering-title {
    font-family: 'Cinzel', serif;
    font-size: .85rem;
    letter-spacing: .2em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.offering-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--soft-gold);
    line-height: 1.7;
    font-weight: 300;
}

/* COMMUNITY */
.community {
    background: linear-gradient(180deg, var(--midnight), #080810);
    text-align: center;
}

.community-inner {
    max-width: 700px;
    margin: 0 auto;
}

.ubuntu-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold);
    line-height: 1.3;
    margin: 3rem 0;
    font-weight: 300;
    text-shadow: 0 0 60px rgba(201, 168, 76, .25);
}

.divider-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 2rem auto;
}

/* SIGNUP */
.signup {
    background: linear-gradient(135deg, #060E06, var(--midnight));
    text-align: center;
}

.signup-form {
    display: flex;
    max-width: 460px;
    margin: 2.5rem auto 0;
}

.signup-input {
    flex: 1;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(201, 168, 76, .3);
    border-right: none;
    padding: 1rem 1.5rem;
    color: var(--cream);
    font-family: 'Lato', sans-serif;
    outline: none;
    transition: border-color .3s;
}

.signup-input::placeholder {
    color: rgba(232, 213, 163, .4);
}

.signup-input:focus {
    border-color: var(--gold);
}

.signup-btn {
    font-family: 'Cinzel', serif;
    font-size: .7rem;
    letter-spacing: .2em;
    background: var(--gold);
    color: #0D1B2A;
    border: none;
    padding: 1rem 1.8rem;
    cursor: pointer;
    transition: background .3s;
}

.signup-btn:hover {
    background: var(--soft-gold);
}

/* FOOTER */
footer {
    background: var(--forest);
    border-top: 1px solid rgba(201, 168, 76, .1);
    padding: 4rem 4rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .nav-logo {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--cream);
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.footer-contact {
    font-size: .85rem;
    color: var(--cream);
    font-weight: 400;
    letter-spacing: .05em;
}

.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: .7rem;
    letter-spacing: .3em;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.footer-links a {
    font-size: .9rem;
    color: var(--cream);
    text-decoration: none;
    transition: color .3s;
    letter-spacing: .05em;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, .08);
}

.footer-copy {
    font-size: .8rem;
    color: var(--cream);
    letter-spacing: .1em;
    font-weight: 400;
}

.footer-ashe {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: rgba(201, 168, 76, .5);
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

.d5 {
    transition-delay: .5s
}

.d6 {
    transition-delay: .6s
}

.d7 {
    transition-delay: .7s
}

/* RESPONSIVE */
@media(max-width:900px) {
    nav {
        padding: 1rem 1.5rem;
        transition: background-color 0.4s ease;
    }

    nav.menu-active {
        background-color: rgba(11, 12, 16, 0.98) !important;
    }

    nav.menu-active .nav-logo img {
        filter: brightness(0) invert(1) !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(11, 12, 16, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: -1;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.25rem;
        color: var(--cream);
    }

    .nav-links a:hover {
        color: var(--soft-gold);
    }

    .philosophy-inner,
    .mother-oya-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .philosophy-divider,
    .oya-visual {
        display: none;
    }

    .book-arc {
        grid-template-columns: 1fr;
    }

    .book-arc::before {
        display: none;
    }

    .chakra-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .signup-form {
        flex-direction: column;
    }

    .signup-input {
        border-right: 1px solid rgba(201, 168, 76, .3);
        border-bottom: none;
    }
}