*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #C0392B;
    --primary-dark: #7A2019;
    --primary-soft: #FCE3DC;
    --accent: #E67E22;
    --accent-2: #FFB27C;
    --rose: #FF7E8A;
    --cream: #FFF7EF;
    --honey: #FFDDA7;
    --text: #26110E;
    --text-mid: #6A4740;
    --text-muted: #9A7670;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-solid: #FFFFFF;
    --surface-alt: #FFF4ED;
    --border: rgba(192, 57, 43, 0.16);
    --shadow: 0 28px 90px rgba(120, 32, 20, 0.18);
    --footer-bg: #24110E;
    --footer-text: #D4AAA1;
    --mx: 50%;
    --my: 20%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at var(--mx) var(--my), rgba(255, 178, 124, 0.28), transparent 28rem),
        radial-gradient(circle at 12% 10%, rgba(255, 126, 138, 0.23), transparent 30rem),
        radial-gradient(circle at 86% 20%, rgba(230, 126, 34, 0.18), transparent 26rem),
        linear-gradient(135deg, #fffaf5 0%, #fff3ed 50%, #fbe7de 100%);
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.cuddle-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.cuddle-blob {
    position: absolute;
    border-radius: 42% 58% 55% 45% / 45% 35% 65% 55%;
    filter: blur(2px);
    opacity: .72;
    animation: cuddleFloat 16s ease-in-out infinite;
}

.cuddle-blob:nth-child(1) {
    width: 34rem;
    height: 28rem;
    left: -12rem;
    top: 7rem;
    background: linear-gradient(135deg, rgba(255, 126, 138, .24), rgba(255, 221, 167, .28));
}

.cuddle-blob:nth-child(2) {
    width: 31rem;
    height: 34rem;
    right: -13rem;
    top: 18rem;
    background: linear-gradient(135deg, rgba(230, 126, 34, .20), rgba(252, 227, 220, .62));
    animation-delay: -5s;
}

.cuddle-blob:nth-child(3) {
    width: 30rem;
    height: 25rem;
    left: 30%;
    bottom: -11rem;
    background: linear-gradient(135deg, rgba(192, 57, 43, .12), rgba(255, 178, 124, .20));
    animation-delay: -9s;
}

@keyframes cuddleFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate3d(22px, -18px, 0) rotate(7deg) scale(1.04);
    }
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(.75);
        opacity: .65;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

@keyframes waveLine {
    0% {
        transform: scaleY(.42);
    }

    50% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(.42);
    }
}

.container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

nav {
    background: rgba(255, 248, 242, .72);
    border-bottom: 1px solid rgba(192, 57, 43, .14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 0 clamp(18px, 5vw, 70px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 12px 40px rgba(120, 32, 20, .06);
}

.nav-brand {
    display: inline-flex;
    align-items: center;
}
.nav-brand img{
    display: block;
    width: 230px;
    height: auto;
}

.nav-cta,
.hero-cta,
.g-card .btn,
.g-card .btn-outline {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 999px;
    transform: translateZ(0);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
    padding: 12px 23px;
    white-space: nowrap;
    box-shadow: 0 13px 30px rgba(192, 57, 43, .25);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(192, 57, 43, .32);
}

.nav-cta::after,
.hero-cta::after,
.g-card .btn::after,
.g-card .btn-outline::after {
    content: '';
    position: absolute;
    inset: -40% auto -40% -65%;
    width: 50%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-22deg);
    transition: left .65s ease;
    z-index: -1;
}

.nav-cta:hover::after,
.hero-cta:hover::after,
.g-card .btn:hover::after,
.g-card .btn-outline:hover::after {
    left: 120%;
}

section,
footer,
nav,
.ribbon {
    position: relative;
    z-index: 1;
}

.hero {
    min-height: 760px;
    padding: 118px 5% 90px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 26%, rgba(255, 255, 255, .30), transparent 14rem),
        radial-gradient(circle at 18% 20%, rgba(255, 178, 124, .55), transparent 32rem),
        radial-gradient(circle at 85% 28%, rgba(255, 126, 138, .32), transparent 25rem),
        linear-gradient(145deg, #5a170f 0%, #9f2b20 38%, #c85d37 76%, #ec9a62 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-img{
    position: absolute;
    inset: 0;
    opacity: .4;
}

.hero-img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-inner{
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.25rem, 7vw, 5.55rem);
    line-height: .98;
    letter-spacing: -.07em;
    font-weight: 800;
    max-width: 960px;
    margin: 0 auto 24px;
    text-shadow: 0 18px 50px rgba(40, 10, 6, .28);
}

.hero-sub {
    font-size: clamp(1.04rem, 2vw, 1.35rem);
    opacity: .92;
    max-width: 640px;
    margin: 0 auto 36px;
    color: #fffaf7;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff0cc, var(--honey) 36%, var(--accent));
    color: #4c170f;
    font-size: 1.12rem;
    font-weight: 900;
    padding: 17px 44px;
    box-shadow: 0 22px 48px rgba(82, 21, 12, .24), inset 0 1px 0 rgba(255, 255, 255, .48);
    transition: transform .25s ease, box-shadow .25s ease;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    filter: none;
    box-shadow: 0 28px 64px rgba(82, 21, 12, .32);
}

.hero-note {
    font-size: .82rem;
    opacity: .74;
    margin-top: 18px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cuddle-hero-art {
    position: absolute;
    inset: auto auto 5rem 7%;
    width: min(28vw, 330px);
    min-width: 210px;
    aspect-ratio: 1;
    z-index: 1;
    animation: bob 8s ease-in-out infinite;
    opacity: .96;
}

.cuddle-hero-art svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 30px 48px rgba(64, 18, 11, .22));
}

.cuddle-hero-art .ring {
    transform-origin: 50% 50%;
    animation: pulseRing 2.9s ease-out infinite;
}

.cuddle-hero-art .bar {
    transform-origin: 50% 70%;
    animation: waveLine 1.2s ease-in-out infinite;
}

.cuddle-hero-art .bar:nth-of-type(2) {
    animation-delay: .15s;
}

.cuddle-hero-art .bar:nth-of-type(3) {
    animation-delay: .3s;
}

@media (max-width: 900px) {
    .cuddle-hero-art {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 34px;
        width: 250px;
    }
}

section {
    padding: clamp(50px, 9vw, 80px) 5%;
}

.section-label {
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title,
.feat-title,
.mission h2,
.final-cta h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.04em;
    color: var(--text);
    margin-bottom: 18px;
}

.section-sub {
    font-size: 1.08rem;
    color: var(--text-mid);
    max-width: 720px;
    line-height: 1.72;
}

.how,
.mission,
.gendered,
.testimonial {
    background: transparent;
}

.how-inner,
.feat-inner,
.mission-inner,
.hood-inner,
.gendered-inner,
.why-inner,
.faq-inner,
.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
}

.how-inner,
.mission-inner,
.gendered-inner,
.why-inner,
.faq-inner,
.hood-inner,
.feat-inner {
    background: rgba(255, 255, 255, .58);
    border: 1px solid rgba(255, 255, 255, .68);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    border-radius: 44px;
    padding: clamp(28px, 5vw, 56px);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.step {
    background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 244, 237, .85));
    border: 1px solid rgba(192, 57, 43, .12);
    border-radius: 32px 32px 32px 12px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(192, 57, 43, .10);
    transition: transform .25s ease, box-shadow .25s ease;
}

.step:nth-child(even) {
    border-radius: 32px 32px 12px 32px;
    transform: translateY(18px);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(192, 57, 43, .16);
}

.step:nth-child(even):hover {
    transform: translateY(8px);
}

.step::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    right: -20px;
    top: -22px;
    border-radius: 50%;
    background: rgba(255, 126, 138, .18);
}

.step-num {
    font-family: 'Fraunces', serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.step p {
    font-size: .96rem;
    color: var(--text-mid);
}

.features,
.neighborhoods,
.why,
.faq {
    background: transparent;
}

.feat-title {
    margin-bottom: 28px;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feat-card,
.why-card,
.g-card,
.faq-item,
.hood-pill {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(192, 57, 43, .14);
    box-shadow: 0 16px 40px rgba(120, 32, 20, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feat-card,
.why-card {
    border-radius: 28px;
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
}

.feat-card::before,
.why-card::before {
    content: '';
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 42% 58% 54% 46%;
    background: linear-gradient(135deg, var(--primary), var(--accent-2));
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(192, 57, 43, .20);
}

.feat-card:hover,
.why-card:hover,
.g-card:hover,
.hood-pill:hover,
.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 58px rgba(120, 32, 20, .14);
    border-color: rgba(192, 57, 43, .28);
}

.feat-card h3,
.why-card h3,
.g-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.feat-card p,
.why-card p,
.g-card li,
.mission p,
.test-quote {
    color: var(--text-mid);
}

.mission-inner {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 36px;
    align-items: center;
    overflow: hidden;
}

.mission-inner::after {
    content: '';
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 48% 52% 40% 60%;
    background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, .9), rgba(255, 178, 124, .28) 42%, rgba(192, 57, 43, .08));
}

.mission-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.mission-stat {
    flex: 1;
    min-width: 150px;
    text-align: left;
    background: rgba(255, 247, 239, .76);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(192, 57, 43, .12);
}

.mission-stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2.15rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.mission-stat-label {
    font-size: .86rem;
    color: var(--text-mid);
    margin-top: 6px;
}

.hood-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.hood-pill {
    border-radius: 999px;
    padding: 13px 17px;
    text-align: center;
    font-size: .93rem;
    font-weight: 800;
    color: var(--text-mid);
}

.hood-pill:nth-child(3n+1) {
    transform: rotate(-1.4deg);
}

.hood-pill:nth-child(3n+2) {
    transform: rotate(1.1deg);
}

.hood-pill:hover {
    transform: translateY(-6px) rotate(0deg);
}

.gendered-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

.g-card {
    border-radius: 38px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.g-card::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: rgba(255, 178, 124, .58);
    z-index: 2;
}

.g-card img{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 24px;
}

.g-card ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.g-card li {
    font-size: .96rem;
    padding: 9px 0 9px 28px;
    line-height: 1.55;
    position: relative;
}

.g-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 5px rgba(192, 57, 43, .08);
}

.g-card .btn,
.g-card .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 13px 28px;
    font-weight: 900;
    font-size: .95rem;
    border: 0;
    box-shadow: 0 16px 36px rgba(192, 57, 43, .20);
}

.g-card .btn-outline {
    background: #fff;
    color: var(--primary);
    border: 2px solid rgba(192, 57, 43, .24);
}

.g-card .btn-outline:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
}

.testimonial {
    text-align: center;
    padding: 86px 5%;
}

.testimonial::before {
    content: '';
    display: block;
    width: 86px;
    height: 86px;
    margin: 0 auto 24px;
    border-radius: 44% 56% 57% 43%;
    background: radial-gradient(circle at 35% 30%, #fff, #ffd6c7 40%, #c0392b 80%);
    box-shadow: 0 18px 40px rgba(192, 57, 43, .18);
}

.test-quote {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.3rem, 3vw, 2.1rem);
    font-style: italic;
    max-width: 760px;
    margin: 0 auto 18px;
    line-height: 1.35;
    color: var(--text);
}

.test-credit {
    font-size: .96rem;
    font-weight: 900;
    color: var(--primary);
}

.faq-inner {
    max-width: 850px;
}

.faq-item {
    border-radius: 24px;
    margin-bottom: 13px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 22px 26px;
    font-size: 1rem;
    font-weight: 900;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: inherit;
}

.faq-q:hover {
    background: rgba(255, 244, 237, .58);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform .25s ease;
}

.faq-a {
    padding: 0 26px 22px;
    font-size: .97rem;
    color: var(--text-mid);
    display: none;
    line-height: 1.7;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.final-cta {
    background: linear-gradient(145deg, #5b170f 0%, #a22b21 56%, #e58647 100%);
    color: #fff;
    text-align: center;
    padding: clamp(76px, 10vw, 122px) 5%;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, .20), transparent 18rem);
    animation: cuddleFloat 12s ease-in-out infinite;
}

.final-cta h2 {
    color: #fff;
    text-shadow: 0 16px 38px rgba(0, 0, 0, .22);
}

.final-cta p {
    opacity: .9;
    max-width: 560px;
    margin: 0 auto 30px;
    font-size: 1.08rem;
    position: relative;
}

footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 54px 5% 30px;
}

.footer-brand {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.footer-desc {
    font-size: .9rem;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-disclaimer {
    font-size: .78rem;
    opacity: .62;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 18px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {

    .how-steps,
    .feat-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-inner,
    .gendered-inner {
        grid-template-columns: 1fr;
    }

    .hood-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    nav {
        min-height: 68px;
        padding: 0 16px;
    }

    .nav-cta {
        display: none;
    }

    .how-steps,
    .feat-grid,
    .why-grid,
    .hood-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 96px;
    }

    .how-inner,
    .feat-inner,
    .mission-inner,
    .hood-inner,
    .why-inner,
    .faq-inner {
        border-radius: 30px;
    }

    .step:nth-child(even) {
        transform: none;
    }
}
