:root {
    --cream: #FBF3E3;
    --paper: #FFFDF6;
    --ink: #1A160F;
    --body: #4C4536;
    --coral: #FF5C4D;
    --pink: #FF7CC4;
    --blue: #2D5BFF;
    --yellow: #FFCE3A;
    --mint: #22C58A;
    --purple: #7A5CFF;
    --line: var(--ink);
    --radius: 22px;
    --shadow: 6px 6px 0 var(--ink);
    --shadow-sm: 3px 3px 0 var(--ink);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: .09;
    mix-blend-mode: multiply
}

::selection {
    background: var(--coral);
    color: #fff
}

.cursor,
.cursor-follow {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference
}

.cursor {
    width: 10px;
    height: 10px;
    background: #fff;
    transform: translate(-50%, -50%)
}

.cursor-follow {
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
    transform: translate(-50%, -50%);
    transition: transform .18s, width .18s, height .18s
}

.cursor-follow.grow {
    width: 78px;
    height: 78px;
    background: #fff
}

@media (hover:none) {

    .cursor,
    .cursor-follow {
        display: none
    }

    body {
        cursor: auto
    }
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(20px, 5vw, 64px);
    transition: transform .4s ease
}

nav.hide { transform: translateY(-120%) }

.brand {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink)
}

.brand .dot {
    width: 13px;
    height: 13px;
    background: var(--coral);
    border-radius: 50%;
    display: inline-block;
    animation: bob 2s ease-in-out infinite
}

@keyframes bob {
    50% {
        transform: translateY(-6px)
    }
}

.nav-links {
    display: flex;
    gap: 6px;
    align-items: center
}

.nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    font-size: .95rem;
    padding: 8px 16px;
    border-radius: 100px;
    transition: .25s;
    cursor: none
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--ink);
    color: var(--cream)
}

.nav-cta {
    background: var(--blue) !important;
    color: #fff !important;
    border: 1.5px solid var(--blue);
    box-shadow: var(--shadow-sm)
}

/* hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 140px clamp(20px, 5vw, 64px) 40px;
    text-align: center
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: .34;
    z-index: 0
}

.b1 {
    width: 360px;
    height: 360px;
    background: var(--pink);
    top: 2%;
    left: -6%
}

.b2 {
    width: 300px;
    height: 300px;
    background: var(--mint);
    top: 12%;
    right: -6%
}

.hero-in {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: var(--cream);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 20px
}

.eyebrow .pulse {
    width: 8px;
    height: 8px;
    background: var(--mint);
    border-radius: 50%;
    animation: pulse 1.4s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 7vw, 5.2rem);
    line-height: .95;
    letter-spacing: -.025em
}

.hero h1 em {
    font-style: italic;
    background: linear-gradient(90deg, var(--coral), var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.hero p {
    margin: 20px auto 0;
    color: var(--body);
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.55
}

/* pillars */
.pillars {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px clamp(20px, 5vw, 64px) 30px
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.pillar {
    position: relative;
    border: 3px solid var(--ink);
    border-radius: var(--radius);
    padding: 34px 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(40px) scale(.94);
    transition: opacity .6s ease, transform .7s cubic-bezier(.34, 1.5, .64, 1), box-shadow .25s
}

.pillar.in {
    opacity: 1;
    transform: none
}

.pillar.in:hover {
    box-shadow: 12px 12px 0 var(--ink)
}

.pillar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ac)
}

.pillar .ic {
    font-size: 2.4rem;
    display: inline-block;
    transition: transform .3s;
    animation: floaty 4.5s ease-in-out infinite
}

.pillar:hover .ic {
    animation: wiggle .5s ease-in-out infinite
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-7px) rotate(-6deg)
    }
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(-11deg) scale(1.15)
    }

    50% {
        transform: rotate(11deg) scale(1.15)
    }
}

.pillar .kick {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ac);
    margin: 16px 0 4px
}

.pillar h3 {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1.1;
    margin-bottom: 10px
}

.pillar p {
    color: var(--body);
    line-height: 1.6;
    font-size: .98rem
}

.pillar:nth-child(1) {
    --ac: var(--coral);
    background: #fff
}

.pillar:nth-child(2) {
    --ac: var(--ink);
    background: var(--yellow)
}

.pillar:nth-child(3) {
    --ac: var(--ink);
    background: var(--mint)
}

.pillar:nth-child(4) {
    --ac: #fff;
    background: var(--blue);
    color: #fff
}

.pillar:nth-child(5) {
    --ac: var(--ink);
    background: var(--pink)
}

.pillar:nth-child(6) {
    --ac: #fff;
    background: var(--purple);
    color: #fff
}

.pillar:nth-child(4) h3,
.pillar:nth-child(6) h3 {
    color: #fff
}

.pillar:nth-child(4) p,
.pillar:nth-child(6) p {
    color: rgba(255, 255, 255, .9)
}

/* cta */
.cta {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 clamp(20px, 5vw, 64px) 90px
}

.cta-in {
    background: var(--ink);
    color: var(--cream);
    border-radius: 26px;
    padding: clamp(40px, 6vw, 70px);
    text-align: center
}

.cta-in h2 {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -.01em
}

.cta-in h2 em {
    font-style: italic;
    color: #E0C079
}

.cta-in p {
    margin: 16px auto 30px;
    color: #c9c2b4;
    max-width: 480px;
    line-height: 1.55
}

.btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.btn {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 1rem;
    cursor: none;
    padding: 15px 30px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s, box-shadow .2s;
    border: 1.5px solid transparent
}

.btn.primary {
    background: var(--coral);
    color: #fff;
    box-shadow: var(--shadow-sm)
}

.btn.ghost {
    background: transparent;
    color: var(--cream);
    border-color: rgba(255, 255, 255, .3)
}

.btn:hover {
    transform: translateY(-3px)
}

/* footer */
footer {
    background: var(--ink);
    color: var(--cream);
    padding: 56px clamp(20px, 6vw, 80px) 34px;
    border-top: 1px solid #3a352c
}

.foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center
}

.foot-brand {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.8rem
}

.foot-brand span {
    color: var(--coral)
}

.foot-in a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500
}

.foot-in a:hover {
    color: var(--yellow)
}

.foot-note {
    color: #8a8375;
    font-size: .88rem;
    width: 100%;
    text-align: center;
    margin-top: 24px;
    border-top: 1px solid #3a352c;
    padding-top: 20px
}

footer { padding: 70px clamp(20px, 6vw, 80px) 40px; margin-top: 60px }
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto 50px }
.foot-description { margin-top: 14px; color: #8a8375; max-width: 300px; line-height: 1.6 }
.foot-cols { display: flex; gap: 70px; flex-wrap: wrap }
.foot-col h4 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: #8a8375; margin-bottom: 16px }
.foot-col a { display: block; color: var(--cream); text-decoration: none; margin-bottom: 10px; font-weight: 500; transition: .2s }
.foot-col a:hover { color: var(--yellow); transform: translateX(4px) }
.foot-bottom { border-top: 1px solid #333; padding-top: 24px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #8a8375; font-size: .9rem }

@media(max-width:900px) {
    .grid {
        grid-template-columns: 1fr 1fr
    }

    .nav-links a:not(.nav-cta) {
        display: none
    }
}

@media(max-width:560px) {
    .grid {
        grid-template-columns: 1fr
    }
}

/* ---------- mobile nav dropdown ---------- */
@media(max-width:900px) {
    nav {
        position: fixed
    }

    .nav-links a:not(.nav-cta) {
        display: none
    }

    .menu-btn {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border: 2px solid var(--ink);
        border-radius: 12px;
        background: var(--paper);
        cursor: none;
        box-shadow: 2px 2px 0 var(--ink);
        margin-left: 8px
    }

    .menu-btn span {
        width: 18px;
        height: 2px;
        background: var(--ink);
        position: relative;
        display: block
    }

    .menu-btn span::before,
    .menu-btn span::after {
        content: "";
        position: absolute;
        left: 0;
        width: 18px;
        height: 2px;
        background: var(--ink)
    }

    .menu-btn span::before {
        top: -6px
    }

    .menu-btn span::after {
        top: 6px
    }

    nav.open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        min-width: 210px;
        background: var(--paper);
        border: 2.5px solid var(--ink);
        border-radius: 16px;
        padding: 10px;
        box-shadow: 6px 6px 0 var(--ink);
        z-index: 1001;
        gap: 4px
    }

    nav.open .nav-links a {
        display: block !important;
        text-align: left
    }
}

@media(min-width:901px) {
    .menu-btn {
        display: none !important
    }
}
