:root {
    --pink: #ff3f7d;
    --pink-dark: #f53170;
    --pink-soft: #fff0f5;
    --page: #fff3f7;
    --border: #f6cbd8;
    --ink: #111827;
    --muted: #6b6370;
    --white: #ffffff;
    --green-bg: #f1faec;
    --blue-bg: #edf5ff;
    --purple-bg: #f7edff;
    --pink-bg: #fff0f5;
    --orange-bg: #fff5e8;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page);
    color: var(--ink);
    font-family: "Poppins", sans-serif;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    width: min(1335px, calc(100% - 34px));
    margin: 0 auto;
    padding: 18px 0 34px;
}

.topbar {
    min-height: 102px;
    padding: 12px 34px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0 0 28px 28px;
}

.brand {
    justify-self: start;
}

.brand img {
    display: block;
    width: 110px;
    height: 68px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: stretch;
    gap: 50px;
    height: 74px;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 2px;
    font-weight: 600;
    font-size: 15px;
}

.nav-link svg {
    width: 21px;
    height: 21px;
    stroke-width: 2.2;
}

.nav-link.active {
    color: var(--pink);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    bottom: 3px;
    height: 3px;
    border-radius: 999px;
    background: var(--pink);
}

.nav-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-actions form {
    margin: 0;
}

.btn {
    min-height: 48px;
    padding: 0 26px;
    border-radius: 15px;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.btn:hover,
.hero-button:hover {
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--pink);
    background: var(--white);
    border-color: #ff9bbb;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, #ff5b91, #f72e70);
    box-shadow: 0 10px 24px rgba(255, 63, 125, .18);
}

main {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.section-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 26px;
}

.hero {
    min-height: 388px;
    padding: 42px 52px;
    display: grid;
    grid-template-columns: 1.22fr .78fr;
    align-items: center;
    gap: 32px;
}

.hero-copy h1 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(43px, 4.25vw, 64px);
    line-height: .99;
    letter-spacing: -1.7px;
}

.hero-copy h1 span {
    color: var(--pink);
}

.hero-copy p {
    max-width: 625px;
    margin: 25px 0 25px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.hero-button {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    border-radius: 15px;
    color: var(--white);
    background: linear-gradient(135deg, #ff4f88, #f72f70);
    box-shadow: 0 13px 27px rgba(255, 63, 125, .2);
    font-weight: 700;
    transition: transform .18s ease;
}

.hero-button span {
    font-size: 25px;
    font-weight: 400;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-visual img {
    width: min(100%, 430px);
    max-height: 280px;
    object-fit: contain;
}

.content-section {
    padding: 28px 31px 29px;
}

.section-heading {
    margin-bottom: 24px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: "Playfair Display", serif;
    font-size: 31px;
    line-height: 1.2;
}

.section-heading h2 svg {
    width: 29px;
    height: 29px;
    stroke-width: 2.2;
}

.section-heading p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.spark {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
}

.grid {
    display: grid;
    gap: 19px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.ingredient-card,
.activity-card {
    border: 1px solid #e6dfe2;
    border-radius: 21px;
}

.info-card {
    min-height: 182px;
    padding: 24px 27px;
    text-align: center;
}

.icon-circle {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .8);
}

.icon-circle svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.2;
}

.icon-green {
    color: #79c637;
}

.icon-blue {
    color: #70a8ff;
}

.icon-purple {
    color: #a87af4;
}

.icon-pink {
    color: var(--pink);
}

.icon-orange {
    color: #f3a008;
}

.info-card h3,
.ingredient-card h3,
.activity-card h3,
.value-card h3,
.value-item h3,
.mission-card h3 {
    font-family: "Playfair Display", serif;
}

.info-card h3 {
    margin: 0 0 9px;
    font-size: 23px;
}

.info-card p,
.ingredient-card p,
.activity-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.tone-green {
    background: var(--green-bg);
}

.tone-blue {
    background: var(--blue-bg);
}

.tone-purple {
    background: var(--purple-bg);
}

.tone-pink {
    background: var(--pink-bg);
}

.tone-orange {
    background: var(--orange-bg);
}

.ingredient-card {
    min-height: 178px;
    padding: 22px 20px 18px;
    display: flex;
    flex-direction: column;
}

.ingredient-card h3 {
    margin: 0 0 11px;
    font-size: 20px;
}

.ingredient-card p {
    flex: 1;
}

.tag {
    align-self: flex-start;
    margin-top: 19px;
    padding: 7px 15px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.tag-pink {
    color: #ff3172;
    background: #ffd8e5;
}

.tag-blue {
    color: #4b84de;
    background: #dbe9ff;
}

.tag-green {
    color: #5a9d20;
    background: #dff1cf;
}

.tag-orange {
    color: #e98a00;
    background: #ffe4b7;
}

.center-action {
    margin-top: 22px;
    text-align: center;
}

.activity-card {
    min-height: 118px;
    padding: 21px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.activity-card .icon-circle {
    flex: 0 0 auto;
    margin: 0;
}

.activity-card h3 {
    margin: 0 0 4px;
    font-size: 24px;
}

.trust-strip {
    padding: 18px 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 28px;
}

.trust-strip article {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-strip svg {
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    stroke-width: 2.3;
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip strong {
    font-size: 13px;
}

.trust-strip span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10.5px;
    line-height: 1.45;
}

/* ABOUT */
.about-page {
    margin-top: 20px;
}

.about-hero {
    padding: 0 38px 8px;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    align-items: center;
    gap: 45px;
}

.about-image img {
    display: block;
    width: 100%;
    max-height: 340px;
    object-fit: contain;
}

.about-pill {
    display: inline-flex;
    padding: 8px 17px;
    border: 1px solid #ffb6cc;
    border-radius: 999px;
    color: var(--pink);
    background: #fff5f8;
    font-weight: 700;
    font-size: 13px;
}

.about-copy h1 {
    margin: 19px 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 3.45vw, 55px);
    line-height: 1.05;
}

.about-copy h1 span {
    color: var(--pink);
}

.about-copy p {
    margin: 0 0 18px;
    color: #37313a;
    font-size: 16px;
    line-height: 1.6;
}

.about-values {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 18px;
}

.value-card {
    min-height: 258px;
    padding: 36px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 19px;
    text-align: center;
}

.value-card-wide {
    padding-inline: 42px;
    flex-direction: row;
    align-items: stretch;
    gap: 52px;
}

.value-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-icon,
.mission-icon {
    display: grid;
    place-items: center;
    color: var(--pink);
    background: #fff0f5;
    border-radius: 50%;
}

.value-icon {
    width: 68px;
    height: 68px;
}

.value-icon svg {
    width: 31px;
    height: 31px;
}

.value-card h3,
.value-item h3 {
    margin: 13px 0 8px;
    color: var(--pink);
    font-family: "Poppins", sans-serif;
    font-size: 17px;
}

.value-card p,
.value-item p {
    margin: 0;
    color: #514854;
    font-size: 14px;
    line-height: 1.5;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mission-card {
    min-height: 130px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    gap: 22px;
    background: #fff8fa;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.mission-icon {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
}

.mission-icon svg {
    width: 32px;
    height: 32px;
}

.mission-card h3 {
    margin: 0 0 8px;
    color: var(--pink);
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

.mission-card p {
    margin: 0;
    color: #514854;
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 1050px) {
    .site-shell {
        width: min(940px, calc(100% - 24px));
    }

    .topbar {
        grid-template-columns: auto 1fr auto;
    }

    .main-nav {
        justify-self: center;
        gap: 24px;
    }

    .hero {
        grid-template-columns: 1fr .72fr;
        padding-inline: 35px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-values {
        grid-template-columns: 1fr 1fr;
    }

    .value-card-wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .site-shell {
        width: min(100% - 18px, 620px);
        padding-top: 9px;
    }

    .topbar {
        padding: 14px 17px;
        grid-template-columns: 1fr auto;
        border-radius: 0 0 21px 21px;
    }

    .brand img {
        width: 92px;
        height: 55px;
    }

    .main-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        height: 55px;
        justify-content: center;
    }

    .nav-actions {
        gap: 8px;
    }

    .btn {
        min-height: 42px;
        padding-inline: 17px;
        font-size: 12px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 34px 25px;
    }

    .hero-copy h1 {
        font-size: clamp(39px, 12vw, 54px);
    }

    .hero-visual {
        order: -1;
    }

    .hero-visual img {
        max-height: 225px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .trust-strip,
    .mission-grid,
    .about-values {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 25px 18px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .value-card-wide {
        grid-column: auto;
        flex-direction: column;
        gap: 34px;
    }

    .about-hero {
        grid-template-columns: 1fr;
        padding-inline: 8px;
    }

    .about-copy h1 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .nav-link span {
        font-size: 12px;
    }

    .nav-actions .btn {
        padding-inline: 12px;
    }

    .hero-copy h1 {
        font-size: 37px;
    }

    .section-heading h2 {
        align-items: flex-start;
    }
}
