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

:root {
    --blush:       #FBE8F3;
    --blush-light: #FEF5FA;
    --pink:        #D4237A;
    --pink-light:  #F5C2DE;
    --pink-pale:   #FCE8F3;
    --dark:        #2A1520;
    --text:        #5C3D50;
    --text-light:  #9A7080;
    --white:       #FFFFFF;
    --border:      #F0C8E0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

/* ── NAVIGATION ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img { height: 48px; display: block; }

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--pink); }

/* ── BUTTONS ── */
.btn-pink {
    display: inline-block;
    background: var(--pink);
    color: white;
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.25s;
}
.btn-pink:hover { background: var(--dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,35,122,0.3); }

.btn-outline-pink {
    display: inline-block;
    border: 2px solid var(--pink);
    color: var(--pink);
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.25s;
}
.btn-outline-pink:hover { background: var(--pink); color: white; transform: translateY(-1px); }

.btn-white {
    display: inline-block;
    background: white;
    color: var(--pink);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.25s;
}
.btn-white:hover { background: var(--dark); color: white; transform: translateY(-1px); }

.btn-large { padding: 1rem 2.5rem; font-size: 0.88rem; }

/* ── SECTION HEADER ── */
.section-head {
    text-align: center;
    padding: 5rem 2rem 2.5rem;
}
.section-head .eyebrow {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: var(--pink);
    display: block;
    margin-bottom: 0.4rem;
}
.section-head h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.section-head p {
    font-size: 0.92rem;
    color: var(--text-light);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 4rem 4rem 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}
.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--pink-light);
    display: block;
    line-height: 1;
    margin-bottom: 0.75rem;
}
.brand-tagline { font-size: 0.83rem; line-height: 1.8; opacity: 0.6; }

footer h4 {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-light);
    margin-bottom: 1.25rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.55rem; }
footer ul a {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.87rem;
    transition: color 0.2s;
}
footer ul a:hover { color: var(--pink-light); }

.footer-bottom {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 1.25rem;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.3);
}
