/* Our Story page styles */
:root {
    --ink: #19172e;
    --muted: #6f6b7b;
    --line: #d7cdbd;
    --cream: #fff8ed;
    --cream2: #fff3dd;
    --coral: #ff6e5e;
    --yellow: #ffd027;
    --mint: #8ee9cb;
    --purple: #b98af6;
    --footer: #171428
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
    background: radial-gradient(circle at 45% 0, #fffdf8 0, #fff7ea 46%, #fff4e5 100%);
    color: var(--ink);
    font-size: 15px
}

.page-shell {
    width: min(1330px, calc(100% - 72px));
    margin-inline: auto
}

.site-header {
    height: 70px;
    border-bottom: 1px solid rgba(40, 32, 49, .14);
    position: sticky;
    top: 0;
    background: rgba(255, 249, 238, .84);
    backdrop-filter: blur(16px);
    z-index: 20
}

.navbar {
    height: 70px;
    padding: 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: .5px;
    color: var(--ink);
    text-decoration: none
}

.brand span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 21px
}

.brand.light {
    color: white
}

.brand.light span {
    background: #fff;
    color: var(--ink)
}

.nav-gap {
    gap: 32px;
    align-items: center
}

.nav-gap a,
.mobile-links a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    padding: 26px 0 24px;
    border-bottom: 3px solid transparent
}

.nav-gap a.active {
    border-color: var(--ink)
}

.cart-btn {
    width: 48px;
    height: 48px;
    border-radius: 22px;
    border: 0;
    background: var(--ink);
    color: white;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 6px 18px rgba(25, 23, 46, .16)
}

.cart-btn span {
    font-size: 18px;
    transform: rotate(2deg)
}

.section-pad {
    padding: 70px 0 28px
}

.section-pad-sm {
    padding: 42px 0
}

.eyebrow {
    color: #ff604f;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    margin: 0 0 16px;
    text-transform: uppercase
}

h1 {
    font-size: clamp(44px, 6.1vw, 76px);
    line-height: .95;
    letter-spacing: -.055em;
    font-weight: 900;
    margin: 0 0 26px
}

h2 {
    font-size: clamp(27px, 3vw, 40px);
    line-height: 1;
    letter-spacing: -.035em;
    font-weight: 900;
    margin: 0 0 18px
}

h3,
h4,
p {
    margin-top: 0
}

.lead-copy {
    color: #6d6877;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.75;
    max-width: 610px
}

.small-copy {
    color: #736e7b;
    font-weight: 600;
    line-height: 1.75
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px
}

.btn-dark-pill,
.btn-outline-pill,
.yellow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    min-height: 40px;
    padding: 0 28px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer
}

.btn-dark-pill {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 8px 20px rgba(25, 23, 46, .14)
}

.btn-outline-pill {
    border: 1.5px solid var(--ink);
    background: rgba(255, 255, 255, .5);
    color: var(--ink)
}

.yellow-btn {
    background: var(--yellow);
    color: var(--ink);
    font-size: 13px
}

.hero-visual {
    height: 395px;
    position: relative;
    overflow: hidden;
    border-bottom: 0
}

.hero-visual .sun {
    position: absolute;
    right: 10%;
    bottom: 0;
    width: 525px;
    height: 310px;
    background: #f7cba5;
    border-radius: 160px 160px 0 0;
    transform: rotate(4deg);
    box-shadow: inset -60px 0 80px rgba(196, 135, 82, .18)
}

.pink-orb {
    position: absolute;
    left: 9%;
    bottom: 0;
    width: 355px;
    height: 315px;
    background: #ffa99d;
    border-radius: 50% 50% 0 0;
    opacity: .85
}

.curtain {
    position: absolute;
    right: 4%;
    bottom: 0;
    width: 270px;
    height: 365px;
    background: repeating-linear-gradient(105deg, #e8b984 0 24px, #edc696 24px 48px);
    border-radius: 20px 20px 0 0;
    opacity: .45;
    filter: blur(.2px)
}

.tray {
    position: absolute;
    left: 27%;
    bottom: 35px;
    width: 430px;
    height: 48px;
    background: #aa7a45;
    border-radius: 50%;
    box-shadow: 0 19px 0 #8f6536
}

.vase {
    position: absolute;
    left: 21%;
    bottom: 90px;
    width: 68px;
    height: 138px;
    background: linear-gradient(#f8efe2, #caa98b);
    border-radius: 34px 34px 26px 26px
}

.flower {
    position: absolute;
    width: 80px;
    height: 80px;
    border-left: 2px solid #b49a6e
}

.f1 {
    left: 22%;
    bottom: 200px;
    transform: rotate(-18deg)
}

.f2 {
    left: 24%;
    bottom: 195px;
    transform: rotate(12deg)
}

.f3 {
    left: 20%;
    bottom: 186px;
    transform: rotate(-40deg)
}

.flower:after {
    content: "";
    position: absolute;
    top: -8px;
    left: -18px;
    width: 55px;
    height: 26px;
    background: #f7e7bb;
    border-radius: 50%;
    box-shadow: 12px -14px 0 #fff3c9
}

.product {
    position: absolute;
    bottom: 92px;
    width: 92px;
    border-radius: 22px 22px 13px 13px;
    box-shadow: 0 13px 22px rgba(25, 23, 46, .14)
}

.product:before {
    content: "";
    position: absolute;
    left: 30px;
    top: -32px;
    width: 33px;
    height: 35px;
    background: linear-gradient(90deg, #9d7026, #ffd577, #96651a);
    border-radius: 6px 6px 0 0
}

.product:after {
    content: "VIRAA";
    position: absolute;
    left: 0;
    right: 0;
    top: 45%;
    text-align: center;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: .08em;
    color: #2b2233
}

.product span:before {
    content: "";
    position: absolute;
    left: 23px;
    top: -48px;
    width: 49px;
    height: 18px;
    border: 6px solid #c08a24;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0 9px 0 0
}

.lavender {
    left: 37%;
    height: 215px;
    background: linear-gradient(#d4b3ff, #b48af2)
}

.peach {
    left: 53%;
    height: 225px;
    background: linear-gradient(#eeb49c, #d99479)
}

.black {
    left: 69%;
    height: 232px;
    background: linear-gradient(#15131d, #050509)
}

.black:after {
    color: #fff
}

.plumeria {
    position: absolute;
    left: 31%;
    bottom: 65px;
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50% 0 50% 50%;
    transform: rotate(-28deg);
    box-shadow: 18px 8px 0 #fff, 10px -15px 0 #fff, -5px 12px 0 #fff
}

.card-soft {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .36)
}

.began-panel {
    padding: 30px 56px
}

.began-panel p {
    color: #6d6877;
    line-height: 1.75;
    font-weight: 600
}

.timeline-box {
    position: relative;
    background: rgba(255, 255, 255, .5);
    border-radius: 12px;
    padding: 26px 26px 22px;
    overflow: hidden
}

.timeline-line {
    position: absolute;
    left: 38px;
    right: 38px;
    top: 60px;
    height: 2px;
    background: #bbb1a4
}

.ticon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    margin: 0 auto 18px;
    position: relative;
    z-index: 2
}

.coral {
    background: #ff8476
}

.mint {
    background: #79e3bd
}

.yellow {
    background: #ffd02d
}

.purple {
    background: #b685f1
}

.timeline-items h4 {
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 5px
}

.timeline-items b {
    font-size: 15px
}

.timeline-items p {
    font-size: 12px;
    line-height: 1.5;
    margin: 8px auto 0;
    max-width: 155px
}

.philosophy {
    padding-left: 0;
    padding-right: 0;
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px
}

.ingredient {
    background: rgba(255, 255, 255, .55);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 12px 12px 18px;
    text-align: left
}

.ing-img {
    height: 150px;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #faf7f0;
    position: relative;
    overflow: hidden
}

.ingredient h3 {
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 7px
}

.ingredient p,
.mini-card p,
.mv-card p,
.contact-card p {
    font-size: 13px;
    line-height: 1.45;
    color: #6f6a76;
    font-weight: 600;
    margin: 0
}

.coconut:before {
    content: "";
    position: absolute;
    left: 35px;
    top: 40px;
    width: 78px;
    height: 78px;
    background: radial-gradient(circle, #fff 0 38%, #8b5e32 40% 61%, #6f3e1e 62%);
    border-radius: 50%;
    box-shadow: 68px 15px 0 -2px #8a5a2b
}

.moroccan:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 45px;
    width: 44px;
    height: 74px;
    background: #b88431;
    border-radius: 60% 60% 50% 50%;
    box-shadow: 38px -10px 0 #bd8b35, 78px 2px 0 #a2702b, 110px -10px 0 #c58f3f;
    transform: rotate(55deg)
}

.moroccan:after {
    content: "";
    position: absolute;
    right: 18px;
    top: 22px;
    width: 70px;
    height: 38px;
    background: #6fb660;
    border-radius: 0 90%
}

.peptides {
    background: linear-gradient(135deg, #eff8ff, #fff)
}

.peptides:before {
    content: "";
    position: absolute;
    left: 28px;
    top: 46px;
    width: 24px;
    height: 24px;
    background: #a5c4df;
    border-radius: 50%;
    box-shadow: 58px -25px 0 #c4d9ec, 105px 6px 0 #91badc, 42px 58px 0 #bad5ea, 92px 63px 0 #d8e7f3
}

.peptides:after {
    content: "";
    position: absolute;
    left: 47px;
    top: 59px;
    width: 115px;
    height: 80px;
    border-top: 3px solid #9db6c8;
    border-bottom: 3px solid #b7cde0;
    transform: rotate(-12deg)
}

.silk {
    background: linear-gradient(135deg, #fff, #f0e4d2)
}

.silk:before {
    content: "";
    position: absolute;
    inset: 18px;
    background: linear-gradient(135deg, #fff 15%, #dfcfb8 50%, #fff 85%);
    border-radius: 55% 35% 55% 35%;
    transform: rotate(-12deg)
}

.shea:before {
    content: "";
    position: absolute;
    left: 25px;
    top: 45px;
    width: 65px;
    height: 55px;
    background: #e5cfad;
    border-radius: 50%;
    box-shadow: 62px 8px 0 #c98d43, 96px -14px 0 #af7433
}

.mission-vision {
    padding-bottom: 30px
}

.mv-card {
    min-height: 138px;
    border-radius: 12px;
    padding: 30px 42px;
    display: flex;
    align-items: center;
    gap: 28px
}

.mv-card.mint {
    background: linear-gradient(100deg, #b4f4dc, #f1fff8)
}

.mv-card.purple {
    background: linear-gradient(100deg, #e0cdfd, #fff3fb)
}

.big-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(25, 23, 46, .1);
    font-size: 34px;
    flex: 0 0 auto
}

.mv-card h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px
}

.feature-grid,
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.mini-card {
    background: rgba(255, 255, 255, .55);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 23px;
    text-align: left;
    min-height: 112px
}

.mini-card i {
    font-style: normal;
    color: #ff7464;
    font-size: 34px;
    line-height: 1
}

.mini-card h4 {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .02em;
    margin: 8px 0 8px
}

.horizontal {
    display: flex;
    align-items: center;
    gap: 18px
}

.values {
    padding-bottom: 28px
}

.promise-card {
    overflow: hidden;
    /* padding: 32px 58px 0 */
    padding-left: 58px;
    margin-bottom: 50px;
}

.promise-card p {
    color: #6d6877;
    line-height: 1.75;
    font-weight: 600
}

.promise-visual {
    height: 202px;
    position: relative
}

.yellow-arc {
    position: absolute;
    left: 55px;
    bottom: 0;
    width: 300px;
    height: 190px;
    background: #ffd12d;
    border-radius: 190px 190px 0 0
}

.towel {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 340px;
    height: 90px;
    background: linear-gradient(#fff, #efe8de);
    border-radius: 70px 70px 0 0;
    box-shadow: 0 -8px 18px rgba(0, 0, 0, .04)
}

.small-bottle {
    position: absolute;
    left: 280px;
    bottom: 30px;
    width: 82px;
    height: 155px;
    border-radius: 22px 22px 10px 10px;
    background: linear-gradient(#d7b7ff, #ba8eeb);
    box-shadow: 0 12px 18px rgba(25, 23, 46, .15)
}

.small-bottle:before {
    content: "";
    position: absolute;
    left: 28px;
    top: -32px;
    width: 27px;
    height: 36px;
    background: #c89228;
    border-radius: 7px 7px 0 0
}

.small-bottle:after {
    content: "VIRAA";
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10px;
    font-weight: 900
}

.plant {
    position: absolute;
    left: 112px;
    bottom: 88px;
    width: 62px;
    height: 120px;
    background: linear-gradient(40deg, #427f45 0 18%, transparent 19%), linear-gradient(-35deg, #6eae5c 0 20%, transparent 21%);
    border-left: 7px solid #8a704d
}

.flower-bowl {
    position: absolute;
    right: 115px;
    bottom: 24px;
    width: 92px;
    height: 45px;
    background: #b78247;
    border-radius: 0 0 80px 80px
}

.flower-bowl:before {
    content: "";
    position: absolute;
    left: 10px;
    top: -35px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50% 0 50% 50%;
    box-shadow: 24px 4px 0 #fff, 38px -6px 0 #fff
}

.community {
    padding-bottom: 28px
}

.community-bg {
    min-height: 165px;
    border-radius: 9px;
    overflow: hidden;
    background: #FC6259;
    position: relative;
    display: flex;
    align-items: center
}

.community-text {
    padding: 30px 58px;
    max-width: 500px;
    position: relative;
    z-index: 2
}

.community-text h2 {
    margin-bottom: 8px
}

.community-text p {
    font-weight: 600;
    color: #5c3c37;
    line-height: 1.5
}

/* .people {
    position: absolute;
    right: 185px;
    bottom: 0;
    width: 320px;
    height: 145px
} */

.people div {
    position: absolute;
    bottom: 0;
    width: 92px;
    height: 120px;
    background: linear-gradient(#8a3f28, #2b1822);
    border-radius: 45px 45px 0 0
}

.people div:nth-child(1) {
    left: 40px;
    background: linear-gradient(#b66740, #512616)
}

.people div:nth-child(2) {
    left: 115px;
    height: 142px;
    background: linear-gradient(#1f1717, #080708)
}

.people div:nth-child(3) {
    left: 190px;
    background: linear-gradient(#7a3526, #251319)
}

.connect-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.15fr 2fr 1fr;
    gap: 26px;
    align-items: center
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: center
}

.circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 28px;
    flex: 0 0 auto
}

.circle.yellow {
    background: #ffd12b
}

.circle.mint {
    background: #7ee0c1
}

.circle.purple {
    background: #b78bf1
}

.contact-card b {
    font-size: 11px;
    font-weight: 900
}

.contact-card p {
    font-weight: 800;
    color: var(--ink)
}

.contact-action {
    text-align: right
}

.brand-strip {
    position: relative;
    overflow: hidden;
    background: var(--yellow);
    border-radius: 6px;
    padding: 26px 30px 24px;
    text-align: center;
    margin-bottom: 50px;
}

.brand-strip h2 {
    font-size: 36px;
    margin-bottom: 6px
}

.brand-strip p {
    font-size: 18px;
    font-weight: 700;
    margin: 0
}

.brand-strip span {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 150px;
    height: 90px;
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 70% 20%;
    transform: rotate(-25deg)
}

.footer {
    background: radial-gradient(circle at 55% 0, #242036, #151322 70%);
    color: #fff;
    padding: 42px 0 18px
}

.footer h4 {
    font-size: 12px;
    color: #ffd623;
    font-weight: 900;
    margin-bottom: 16px
}

.footer a {
    display: block;
    color: #fff;
    text-decoration: none;
    opacity: .88;
    font-size: 13px;
    margin-bottom: 9px
}

.footer p {
    font-size: 13px;
    line-height: 1.6;
    color: #d7d1df;
    max-width: 260px
}

.socials {
    display: flex;
    gap: 18px;
    margin-top: 24px
}

.socials i {
    font-style: normal;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px
}

.newsletter {
    display: flex;
    gap: 8px
}

.newsletter input {
    min-width: 0;
    flex: 1;
    height: 42px;
    border-radius: 22px;
    border: 0;
    padding: 0 18px
}

.newsletter button {
    border: 0;
    border-radius: 22px;
    background: var(--yellow);
    font-weight: 900;
    padding: 0 22px
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding-top: 16px;
    margin-top: 16px;
    font-size: 12px;
    color: #ddd
}

.hamb i {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0
}

.mobile-links {
    display: grid;
    gap: 0
}

.mobile-links a {
    padding: 16px 0;
    border-bottom: 1px solid #eee
}

.mobile-bottom {
    display: none
}

@media (max-width:1199px) {
    .ingredient-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .feature-grid,
    .value-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .philosophy {
        padding-left: 0;
        padding-right: 0
    }

    .hero-visual {
        height: 350px
    }

    .connect-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:991px) {
    .page-shell {
        width: min(100% - 36px, 760px)
    }

    .site-header,
    .navbar {
        height: 64px
    }

    .section-pad {
        padding: 44px 0 20px
    }

    .hero {
        text-align: left
    }

    .hero-visual {
        height: 330px;
        margin-top: 10px
    }

    .began-panel,
    .promise-card {
        padding: 24px
    }

    .timeline-line {
        display: none
    }

    .ingredient-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .community-bg {
        display: block
    }

    /* .people {
        right: 20px;
        opacity: .25
    } */

    .connected {
        padding-bottom: 28px
    }

    .brand-strip h2 {
        font-size: 25px
    }

    .brand-strip p {
        font-size: 14px
    }

    .footer {
        padding-bottom: 92px
    }

    .mobile-bottom {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        height: 64px;
        background: rgba(25, 23, 46, .95);
        border: 1px solid rgba(255, 255, 255, .15);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-radius: 24px;
        z-index: 30;
        box-shadow: 0 12px 35px rgba(0, 0, 0, .25)
    }

    .mobile-bottom a {
        color: #fff;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 20px
    }

    .mobile-bottom small {
        font-size: 10px;
        margin-top: 1px
    }

    .nav-gap {
        gap: 18px
    }
}

@media (max-width:767px) {
    body {
        font-size: 14px
    }

    .page-shell {
        width: calc(100% - 28px)
    }

    .brand {
        font-size: 20px
    }

    .brand span {
        width: 34px;
        height: 34px;
        font-size: 18px
    }

    .cart-btn {
        width: 42px;
        height: 42px
    }

    .eyebrow {
        font-size: 11px;
        margin-bottom: 11px
    }

    h1 {
        font-size: 42px;
        line-height: .98
    }

    h2 {
        font-size: 26px
    }

    .lead-copy {
        font-size: 14px;
        line-height: 1.65
    }

    .hero-actions a {
        width: 100%
    }

    .hero-visual {
        height: 300px
    }

    .hero-visual .sun {
        right: -32%;
        width: 430px;
        height: 250px
    }

    .pink-orb {
        left: -15%;
        width: 280px;
        height: 245px
    }

    .curtain {
        right: -12%;
        height: 300px
    }

    .tray {
        left: 15%;
        width: 310px
    }

    .vase,
    .flower {
        display: none
    }

    .product {
        width: 70px
    }

    .lavender {
        left: 28%;
        height: 160px
    }

    .peach {
        left: 49%;
        height: 170px
    }

    .black {
        left: 70%;
        height: 175px
    }

    .began-panel {
        padding: 22px 18px
    }

    .timeline-box {
        padding: 20px 8px
    }

    .ticon {
        width: 54px;
        height: 54px;
        font-size: 24px
    }

    .ingredient-grid,
    .feature-grid,
    .value-grid,
    .connect-grid {
        grid-template-columns: 1fr
    }

    .ing-img {
        height: 130px
    }

    .mv-card {
        padding: 22px;
        align-items: flex-start
    }

    .big-icon {
        width: 58px;
        height: 58px;
        font-size: 26px
    }

    .mini-card {
        padding: 18px
    }

    .promise-card {
        padding: 22px 18px 0
    }

    .promise-visual {
        height: 175px
    }

    .yellow-arc {
        left: 15px;
        width: 210px;
        height: 135px
    }

    .towel {
        width: 245px
    }

    .small-bottle {
        left: 160px;
        height: 130px;
        width: 62px
    }

    .plant {
        left: 52px
    }

    .flower-bowl {
        right: 10px
    }

    .community-text {
        padding: 26px 22px
    }

    /* .people {
        display: none
    } */

    .contact-action {
        text-align: left
    }

    .contact-action .btn-dark-pill {
        width: 100%
    }

    .brand-strip {
        padding: 22px 18px
    }

    .brand-strip span {
        opacity: .35
    }

    .footer-top>div {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding-bottom: 15px
    }

    .newsletter {
        flex-direction: column
    }

    .newsletter button {
        height: 42px
    }

    .socials {
        margin-top: 16px
    }
}

@media (max-width:420px) {
    h1 {
        font-size: 36px
    }

    .hero-visual {
        height: 250px
    }

    .ingredient-grid {
        gap: 12px
    }

    .brand-strip h2 {
        font-size: 20px
    }

    .community-text h2,
    .promise-card h2 {
        font-size: 25px
    }

    .page-shell {
        width: calc(100% - 22px)
    }
}
/* Our Story community CTA image */
.our-story-cta-2-visual {
    min-height: 260px;
    border-radius: 18px;
    overflow: hidden;
    align-self: stretch;
}

.our-story-cta-2-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
}

@media(max-width:767px) {
    .our-story-cta-2-visual {
        min-height: 210px;
        border-radius: 14px;
    }
}

/* Our Story CTA image */
.our-story-cta-visual {
    min-height: 290px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff4df;
}

.our-story-cta-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: contain;
    object-position: center;
}

@media(max-width:767px) {
    .our-story-cta-visual {
        min-height: 220px;
        border-radius: 14px;
    }
}

/* Real ingredient section from Hair Concerns */
.ingredients.section-block {
    padding-top: 30px;
    padding-bottom: 46px;
}

.ingredients .ingredient-grid {
    margin-top: 24px;
}

.ingredients .ingredient-grid article {
    background: rgba(255, 255, 255, .55);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 12px 12px 18px;
    text-align: left;
    overflow: hidden;
}

.ingredients .ingredient-img {
    height: 150px;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #faf7f0;
    overflow: hidden;
}

.ingredients .ingredient-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ingredients .ingredient-grid h3 {
    font-size: 13px;
    font-weight: 900;
    margin: 0 0 7px;
}

.ingredients .ingredient-grid p {
    font-size: 13px;
    line-height: 1.45;
    color: #6f6a76;
    font-weight: 600;
    margin: 0;
}

@media(max-width:991px) {
    .ingredients .ingredient-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:767px) {
    .ingredients .ingredient-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .ingredients .ingredient-img {
        height: 130px;
    }
}

@media(max-width:420px) {
    .ingredients .ingredient-grid {
        grid-template-columns: 1fr;
    }
}

/* Our Story hero banner image */
.our-story-banner-visual {
    min-height: 430px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff3e8;
}

.our-story-banner-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
}

@media(max-width:1199px) {
    .our-story-banner-visual {
        min-height: 390px;
    }
}

@media(max-width:991px) {
    .our-story-banner-visual {
        min-height: 360px;
        margin-top: 18px;
    }
}

@media(max-width:767px) {
    .our-story-banner-visual {
        min-height: 280px;
        border-radius: 16px;
    }
}

@media(max-width:420px) {
    .our-story-banner-visual {
        min-height: 230px;
    }
}
/* WordPress template hero overrides */
.hero.page-shell.section-pad {
    display: block;
    grid-template-columns: none;
    gap: 0;
    align-items: initial;
    min-height: auto;
    overflow: visible;
}

.hero.page-shell.section-pad>.row {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
    margin-right: 0;
    margin-left: 0;
}

.hero.page-shell.section-pad>.row>* {
    width: auto;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

.hero.page-shell.section-pad h1 {
    font-size: clamp(44px, 6.1vw, 76px);
    line-height: .95;
    letter-spacing: -.055em;
}

.hero.page-shell.section-pad .lead-copy {
    max-width: 610px;
    color: #6d6877;
}

.hero.page-shell.section-pad .our-story-banner-visual {
    width: 100%;
    min-height: clamp(390px, 32vw, 430px);
}

@media (max-width:991px) {
    .hero.page-shell.section-pad>.row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero.page-shell.section-pad .our-story-banner-visual {
        min-height: 360px;
        margin-top: 10px;
    }
}

@media (max-width:767px) {
    .hero.page-shell.section-pad h1 {
        font-size: 42px;
        line-height: 1.02;
    }

    .hero.page-shell.section-pad .our-story-banner-visual {
        min-height: 280px;
    }
}

@media (max-width:420px) {
    .hero.page-shell.section-pad h1 {
        font-size: 35px;
    }

    .hero.page-shell.section-pad .our-story-banner-visual {
        min-height: 230px;
    }
}
