/* ==========================================================
   JADE INSPIRATIONS
   HOME SIGNATURE V4
========================================================== */

.jv4 {
    overflow: hidden;
    background: #fff;
}

.jv4-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--jade-accent-dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .18em;
    text-transform: uppercase;
}

.jv4-kicker::before {
    content: "";

    width: 24px;
    height: 1px;

    background: var(--jade-accent);
}

.jv4-button {
    display: inline-flex;

    min-height: 50px;

    align-items: center;
    justify-content: center;

    padding: 12px 25px;

    border: 1px solid transparent;
    border-radius: 9px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.jv4-button:hover {
    transform: translateY(-2px);
}

.jv4-button-dark {
    background: var(--jade-dark);
    color: #fff;

    box-shadow:
        0 11px 26px rgba(28,24,22,.17);
}

.jv4-button-dark:hover {
    background: var(--jade-accent-dark);

    box-shadow:
        0 17px 35px rgba(63,44,31,.20);
}

.jv4-button-light {
    border-color: rgba(54,40,31,.24);

    background: rgba(255,255,255,.50);
    color: var(--jade-dark);
}

.jv4-button-light:hover {
    border-color: var(--jade-dark);

    background: var(--jade-dark);
    color: #fff;
}

.jv4-button-outline-white {
    border-color: rgba(255,255,255,.55);
    color: #fff;
}

.jv4-button-outline-white:hover {
    background: #fff;
    color: var(--jade-dark);
}

.jv4-text-link {
    color: var(--jade-dark);

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
}


/* ==========================================================
   HERO
========================================================== */

.jv4-hero {
position: relative;
    padding: 82px 0 92px;

    background:
        radial-gradient(
            circle at 80% 8%,
            rgba(255,255,255,.92),
            transparent 28%
        ),
        radial-gradient(
            circle at 8% 85%,
            rgba(194,153,116,.10),
            transparent 30%
        ),
        linear-gradient(
            125deg,
            #fbf9f6 0%,
            #f2e5d9 54%,
            #d9b797 100%
        );
}

.jv4-hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -330px;
    top: -340px;

    border-radius: 50%;

    border: 1px solid rgba(75,52,35,.10);
}

.jv4-hero-grid {
position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0,.93fr)
        minmax(450px,1.07fr);

    align-items: center;

    gap: 68px;
}

.jv4-hero-copy h1 {
max-width: 720px;

    margin: 18px 0 0;

    color: var(--jade-dark);

    font-size:
        clamp(56px,6.25vw,88px);

    line-height: .91;
    letter-spacing: -.055em;
}

.jv4-hero-copy h1 span {
    display: block;

    color: var(--jade-accent-dark);

    font-style: italic;
    font-weight: 400;
}

.jv4-hero-copy > p {
max-width: 560px;

    margin: 25px 0 0;

    color: #564b44;

    font-size: 16px;
    line-height: 1.68;
}

.jv4-hero-actions {
display: flex;
    flex-wrap: wrap;

    gap: 11px;

    margin-top: 30px;
}

.jv4-hero-stats {
display: grid;

    grid-template-columns: repeat(4,1fr);

    max-width: 650px;

    margin-top: 42px;

    padding-top: 18px;

    border-top: 1px solid rgba(63,45,34,.17);
}

.jv4-hero-stats strong,
.jv4-hero-stats span {
    display: block;
}

.jv4-hero-stats strong {
    color: var(--jade-dark);

    font-family: Georgia,serif;

    font-size: 23px;
    font-weight: 400;
}

.jv4-hero-stats span {
    color: var(--jade-muted);

    font-size: 10px;
}

.jv4-hero-visual {
position: relative;

    min-height: 590px;
}

.jv4-hero-frame {
position: absolute;

    inset: 0 0 0 28px;

    overflow: hidden;

    border-radius:
        235px
        235px
        24px
        24px;

    background: #d8c5b4;

    box-shadow:
        0 36px 82px rgba(66,44,29,.23);
}

.jv4-hero-frame::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(20,16,14,.17),
            transparent 50%
        );
}

.jv4-hero-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.jv4-hero-flacon {
position: absolute;
    z-index: 5;

    width: 185px;
    height: 235px;

    left: -3px;
    bottom: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 16px;

    border: 1px solid rgba(255,255,255,.76);
    border-radius: 18px;

    background: rgba(255,255,255,.94);

    backdrop-filter: blur(12px);

    box-shadow:
        0 23px 58px rgba(41,29,22,.21);
}

.jv4-hero-flacon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.jv4-hero-note {
position: absolute;
    z-index: 6;

    right: -5px;
    bottom: 35px;

    width: 220px;

    padding: 18px 20px;

    border-radius: 15px;

    background: #211b17;
    color: #fff;

    box-shadow:
        0 19px 46px rgba(25,20,17,.27);
}

.jv4-hero-note small,
.jv4-hero-note strong {
    display: block;
}

.jv4-hero-note small {
    margin-bottom: 5px;

    color: #d9b38e;

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: .12em;
}

.jv4-hero-note strong {
    color: #fff;

    font-family: Georgia,serif;

    font-size: 20px;
    font-weight: 400;

    line-height: 1.15;
}

.jv4-hero-circle {
    position: absolute;

    top: 25px;
    left: 13px;

    width: 78px;
    height: 78px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    color: var(--jade-accent-dark);

    box-shadow:
        0 15px 40px rgba(46,31,22,.13);

    font-family: Georgia,serif;

    font-size: 35px;
}


/* ==========================================================
   TRUST
========================================================== */

.jv4-trust {
position: relative;
    z-index: 9;

    margin-top: -42px;
}

.jv4-trust-inner {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 16px;
}

.jv4-trust article {
min-height: 112px;

    display: grid;

    grid-template-columns:
        48px
        1fr;

    align-items: center;

    gap: 16px;

    padding: 22px 24px;

    border: 1px solid rgba(98,70,51,.10);
    border-radius: 15px;

    background: rgba(255,255,255,.97);

    box-shadow:
        0 15px 38px rgba(42,30,23,.105);
}

\1#76563f;

    font-family: Georgia,serif;

    font-size: 28px;
}

.jv4-trust strong {
    display: block;

    color: var(--jade-dark);

    font-size: 14px;
}

.jv4-trust p {
    margin: 3px 0 0;

    color: var(--jade-muted);

    font-size: 11px;
}


/* ==========================================================
   FEMME HOMME MIXTE
========================================================== */

.jv4-gender {
padding: 125px 0 92px;

    background: #fff;
}

.jv4-heading {
display: grid;

    grid-template-columns:
        1fr
        340px;

    align-items: end;

    gap: 55px;

    margin-bottom: 38px;
}

.jv4-heading h2 {
margin: 14px 0 0;

    color: var(--jade-dark);

    font-size:
        clamp(46px,5.2vw,68px);

    line-height: .94;
    letter-spacing: -.045em;
}

.jv4-heading > p {
    margin: 0;

    color: var(--jade-muted);
}

.jv4-gender-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 22px;
}

.jv4-gender-card {
position: relative;

    min-height: 350px;

    padding: 29px;

    display: flex;

    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    border: 1px solid rgba(87,62,46,.11);
    border-radius: 21px;

    text-decoration: none;

    box-shadow:
        0 14px 35px rgba(42,31,24,.085);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.jv4-gender-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 29px 68px rgba(42,31,24,.15);
}

.jv4-gender-femme {
    background:
        radial-gradient(
            circle at 105% 0,
            rgba(167,125,88,.18),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #fff,
            #f8eee5
        );
}

.jv4-gender-homme {
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(195,151,112,.13),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #2a2420,
            #171310
        );

    color: #fff;
}

.jv4-gender-mixte {
    background:
        linear-gradient(
            145deg,
            #ebe0d5,
            #caae94
        );
}

.jv4-gender-number {
    color: rgba(135,96,64,.26);

    font-family: Georgia,serif;

    font-size: 65px;

    line-height: 1;
}

.jv4-gender-homme .jv4-gender-number {
    color: rgba(255,255,255,.10);
}

.jv4-gender-copy small {
    color: var(--jade-accent-dark);

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: .12em;
}

.jv4-gender-homme .jv4-gender-copy small {
    color: #d9b38e;
}

.jv4-gender-copy h3 {
margin: 7px 0 9px;

    color: var(--jade-dark);

    font-size: 38px;

    line-height: .98;
}

.jv4-gender-homme .jv4-gender-copy h3 {
    color: #fff;
}

.jv4-gender-copy p {
    max-width: 290px;

    margin: 0 0 28px;

    color: var(--jade-muted);

    font-size: 13px;
}

.jv4-gender-homme .jv4-gender-copy p {
    color: #cfc7c2;
}

.jv4-gender-copy span {
    font-size: 11px;
    font-weight: 800;
}


/* ==========================================================
   WORLDS
========================================================== */

.jv4-worlds {
padding: 92px 0 98px;

    background:
        linear-gradient(
            180deg,
            #f7f3ee,
            #eee3d9
        );
}

.jv4-worlds-heading {
max-width: 830px;

    margin-bottom: 39px;
}

.jv4-worlds-heading h2 {
max-width: 760px;

    margin: 14px 0 0;

    color: var(--jade-dark);

    font-size:
        clamp(48px,5.4vw,70px);

    line-height: .92;
    letter-spacing: -.05em;
}

.jv4-worlds-heading > p {
    max-width: 500px;

    margin: 24px 0 0;

    color: var(--jade-muted);
}

.jv4-worlds-grid {
display: grid;

    grid-template-columns:
        1.18fr
        .82fr;

    grid-template-rows:
        315px
        315px;

    gap: 18px;
}

.jv4-world {
position: relative;

    overflow: hidden;

    border-radius: 21px;

    background: #d8c8ba;

    box-shadow:
        0 17px 43px rgba(45,31,23,.13);

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.jv4-world:hover {
    transform: translateY(-6px);

    box-shadow:
        0 32px 72px rgba(45,31,23,.18);
}

.jv4-world-beauty {
    grid-row: 1 / 3;
}

.jv4-world img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.jv4-world:hover img {
    transform: scale(1.045);
}

.jv4-world::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(18,14,12,.83),
            transparent 64%
        );
}

.jv4-world > div {
    position: absolute;

    z-index: 3;

    left: 31px;
    right: 31px;
    bottom: 30px;

    color: #fff;
}

.jv4-world small {
    color: #fff;

    font-size: 9px;

    letter-spacing: .14em;
}

.jv4-world h3 {
    margin: 7px 0 10px;

    color: #fff;

    font-size: 40px;

    line-height: .95;
}

.jv4-world-beauty h3 {
    font-size: 58px;
}

.jv4-world span {
    color: #fff;

    font-size: 11px;
    font-weight: 800;
}


/* ==========================================================
   FEATURE PARFUM
========================================================== */

.jv4-feature {
padding: 96px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 76% 45%,
            rgba(183,137,96,.10),
            transparent 34%
        ),
        radial-gradient(
            circle at 10% 18%,
            rgba(167,125,88,.13),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #211a16,
            #171310
        );

    color: #fff;
}

.jv4-feature-grid {
display: grid;

    grid-template-columns:
        .94fr
        1.06fr;

    align-items: center;

    gap: 70px;
}

.jv4-feature-copy .jv4-kicker {
    color: #d8b28d;
}

.jv4-feature-copy h2 {
max-width: 620px;

    margin: 16px 0 0;

    color: #fff;

    font-size:
        clamp(48px,5.4vw,70px);

    line-height: .92;
    letter-spacing: -.045em;
}

.jv4-feature-copy > p {
max-width: 500px;

    margin: 22px 0;

    color: #d4ccc7;

    font-size: 15px;
    line-height: 1.7;
}

.jv4-feature-product-name {
    margin: 32px 0;

    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.jv4-feature-product-name small,
.jv4-feature-product-name strong,
.jv4-feature-product-name span {
    display: block;
}

.jv4-feature-product-name small {
    color: #d8b28d;

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: .13em;
}

.jv4-feature-product-name strong {
    max-width: 500px;

    margin: 6px 0;

    color: #fff;

    font-family: Georgia,serif;

    font-size: 23px;
    font-weight: 400;
}

.jv4-feature-product-name span {
    color: #fff;
}

.jv4-feature-stage {
position: relative;

    min-height: 520px;
}

.jv4-feature-halo {
position: absolute;

    width: 430px;
    height: 430px;

    top: 45px;
    right: 55px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #d2ad88,
            #795740
        );

    box-shadow:
        inset 0 0 70px rgba(255,255,255,.08),
        0 35px 90px rgba(0,0,0,.25);
}

.jv4-feature-line {
position: absolute;
    z-index: 2;

    width: 350px;
    height: 350px;

    top: 84px;
    right: 95px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.22);
}

.jv4-feature-stage > img {
position: absolute;
    z-index: 4;

    width: 340px;
    height: 410px;

    top: 40px;
    left: 50%;

    padding: 20px;

    object-fit: contain;
    object-position: center;

    border-radius: 18px;

    background: #fff;

    transform: translateX(-50%);

    box-shadow:
        0 28px 65px rgba(0,0,0,.30);

    filter: none;
}

.jv4-feature-index {
position: absolute;
    z-index: 5;

    right: 18px;
    bottom: 35px;

    color: rgba(255,255,255,.14);

    font-family: Georgia,serif;

    font-size: 52px;
}


/* ==========================================================
   PRODUITS
========================================================== */

.jv4-products {
padding: 92px 0 98px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbf8f5 100%
        );
}

.jv4-products-heading {
display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 35px;

    margin-bottom: 38px;
}

.jv4-products-heading h2 {
max-width: 680px;

    margin: 14px 0 0;

    color: var(--jade-dark);

    font-size:
        clamp(47px,5.2vw,68px);

    line-height: .94;
    letter-spacing: -.045em;
}

.jv4-products-layout {
display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 18px;
}

.jv4-product {
overflow: hidden;

    border: 1px solid rgba(79,57,43,.12);
    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 12px 31px rgba(42,31,24,.085);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.jv4-product:hover {
    transform: translateY(-6px);

    box-shadow:
        0 26px 60px rgba(42,31,24,.14);
}

.jv4-product-large {
    grid-row: span 2;
}

.jv4-product-image {
    position: relative;

    display: block;

    height: 285px;

    overflow: hidden;

    padding: 0;

    background: transparent;
}

.jv4-product-large .jv4-product-image {
height: 505px;
    padding: 0;
}

.jv4-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    background: transparent;

    transition:
        transform .35s ease;
}

.jv4-product:hover .jv4-product-image img {
transform: scale(1.015);
}

.jv4-product-image > span {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.93);
    color: var(--jade-dark);

    box-shadow:
        0 5px 15px rgba(35,27,22,.13);
}

.jv4-product-content {
padding: 19px 20px 20px;

    background: #fff;
}

.jv4-product-content > small {
    color: var(--jade-accent-dark);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .11em;
}

.jv4-product-content h3,
.jv4-product-content .jv4-product-title {
margin: 7px 0 16px;

    color: var(--jade-dark);

    font-size: 18px;
    line-height: 1.25;
}

.jv4-product-content h3 a,
.jv4-product-content .jv4-product-title a {
    color: inherit;

    text-decoration: none;
}

.jv4-product-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-top: 16px;

    border-top: 1px solid var(--jade-border-soft);
}

.jv4-product-footer strong {
    color: var(--jade-accent-dark);

    font-size: 14px;
}

.jv4-product-footer > a {
    color: var(--jade-dark);

    text-decoration: none;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}


/* ==========================================================
   MANIFESTE
========================================================== */

.jv4-manifesto {
padding: 105px 0;

    background:
        radial-gradient(
            circle at 83% 12%,
            rgba(255,255,255,.38),
            transparent 30%
        ),
        linear-gradient(
            125deg,
            #e7d2bf,
            #c39770
        );

    text-align: center;
}

.jv4-manifesto .jade-shell > span {
    color: #66554a;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .18em;

    text-transform: uppercase;
}

.jv4-manifesto p {
    margin: 30px 0 19px;

    color: #66554a;

    font-size: 13px;
}

.jv4-manifesto h2 {
max-width: 900px;

    margin: 0 auto;

    color: var(--jade-dark);

    font-size:
        clamp(53px,6vw,80px);

    line-height: .91;
    letter-spacing: -.052em;
}

.jv4-manifesto h2 em {
    display: block;

    color: #fff;

    font-weight: 400;
}

.jv4-manifesto-line {
width: 1px;
    height: 62px;

    margin: 31px auto 0;

    background: rgba(68,46,31,.29);
}


/* ==========================================================
   EXPERIENCE
========================================================== */

.jv4-experience {
padding: 92px 0;

    background: #fff;
}

.jv4-experience-heading {
max-width: 720px;

    margin-bottom: 40px;
}

.jv4-experience-heading h2 {
margin: 14px 0 0;

    color: var(--jade-dark);

    font-size:
        clamp(47px,5.2vw,68px);

    line-height: .94;
    letter-spacing: -.047em;
}

.jv4-experience-list {
    border-top: 1px solid var(--jade-border);
}

.jv4-experience-list article {
display: grid;

    grid-template-columns:
        75px
        1fr
        auto;

    align-items: center;

    gap: 28px;

    min-height: 128px;

    border-bottom: 1px solid var(--jade-border);

    transition:
        padding .22s ease,
        background .22s ease;
}

.jv4-experience-list article:hover {
    padding-inline: 20px;

    background: var(--jade-surface);
}

\1#76563f;

    font-family: Georgia,serif;

    font-size: 29px;
}

.jv4-experience-list h3 {
margin: 0;

    color: var(--jade-dark);

    font-size: 31px;
}

.jv4-experience-list p {
    max-width: 540px;

    margin: 7px 0 0;

    color: var(--jade-muted);
}

.jv4-experience-list article > strong {
    color: var(--jade-accent-dark);

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: .12em;
}


/* ==========================================================
   EDITORIAL
========================================================== */

.jv4-editorial {
padding: 90px 0;

    background:
        linear-gradient(
            180deg,
            #f5efe9,
            #eaded3
        );
}

.jv4-editorial-grid {
display: grid;

    grid-template-columns:
        .82fr
        1.18fr;

    gap: 20px;
}

.jv4-editorial-left,
.jv4-editorial-right {
padding: 46px;

    border: 1px solid rgba(76,55,42,.10);

    background: rgba(255,255,255,.96);

    box-shadow:
        0 16px 43px rgba(42,31,24,.085);
}

.jv4-editorial-left {
position: relative;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    padding: 43px;

    background:
        linear-gradient(
            145deg,
            #b98961,
            #755039
        );

    box-shadow:
        0 21px 55px rgba(73,50,34,.18);
}

.jv4-editorial-mark {
    position: absolute;

    top: -45px;
    left: 20px;

    color: rgba(255,255,255,.18);

    font-family: Georgia,serif;

    font-size: 220px;
}

.jv4-editorial-left p {
position: relative;
    z-index: 2;

    max-width: 390px;

    margin: 0;

    color: #fff;

    font-family: Georgia,serif;

    font-size:
        clamp(38px,4vw,53px);

    line-height: .96;
}

.jv4-editorial-right {
    padding: 55px;

    border: 1px solid var(--jade-border-soft);

    background: #fff;

    box-shadow:
        0 20px 55px rgba(42,31,24,.09);
}

.jv4-editorial-right h2 {
max-width: 650px;

    margin: 14px 0 0;

    color: var(--jade-dark);

    font-size:
        clamp(45px,5vw,64px);

    line-height: .94;
    letter-spacing: -.045em;
}

.jv4-editorial-right > p {
    max-width: 570px;

    margin: 27px 0;

    color: var(--jade-muted);
}


/* ==========================================================
   JOURNAL
========================================================== */

.jv4-journal {
padding: 92px 0;

    background: #fff;
}

.jv4-journal-heading {
margin-bottom: 37px;
}

.jv4-journal-heading h2 {
max-width: 720px;

    margin: 14px 0 0;

    color: var(--jade-dark);

    font-size:
        clamp(47px,5.2vw,68px);

    line-height: .94;
    letter-spacing: -.045em;
}

.jv4-journal-grid {
display: grid;

    grid-template-columns:
        1.18fr
        .91fr
        .91fr;

    gap: 18px;
}

.jv4-article {
overflow: hidden;

    border: 1px solid rgba(79,57,43,.10);
    border-radius: 20px;

    background: #fff;

    box-shadow:
        0 14px 36px rgba(40,29,23,.09);
}

.jv4-article-image {
display: block;

    height: 250px;

    overflow: hidden;

    padding: 0;

    background: #fff;
}

.jv4-article-large .jv4-article-image {
height: 325px;
}

.jv4-article-image img {
display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    background: #fff;

    transition: transform .4s ease;
}

.jv4-article:hover .jv4-article-image img {
transform: scale(1.025);
}

.jv4-article-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #eadbcd,
            #c9a888
        );

    color: #fff;

    font-family: Georgia,serif;
}

.jv4-article-content {
padding: 22px 20px 24px;

    background: #fff;
}

.jv4-article-content small {
    color: var(--jade-accent-dark);

    font-size: 9px;
}

.jv4-article-content h3 {
    margin: 9px 0 17px;

    color: var(--jade-dark);

    font-size: 24px;
}

.jv4-article-large .jv4-article-content h3 {
    font-size: 32px;
}

.jv4-article-content h3 a {
    color: inherit;

    text-decoration: none;
}


/* ==========================================================
   FINAL CTA
========================================================== */

.jv4-final {
padding: 8px 0 75px;

    background: #fff;
}

.jv4-final-card {
position: relative;

    min-height: 380px;

    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding: 50px;

    border-radius: 27px;

    background:
        radial-gradient(
            circle at 83% 8%,
            rgba(255,255,255,.60),
            transparent 28%
        ),
        linear-gradient(
            125deg,
            #f0dfcf,
            #c89d76
        );

    box-shadow:
        0 27px 68px rgba(69,47,33,.17);

    text-align: center;
}

.jv4-final-card::before {
    content: "";

    position: absolute;

    width: 470px;
    height: 470px;

    right: -220px;
    top: -245px;

    border-radius: 50%;

    border: 1px solid rgba(70,48,32,.11);
}

.jv4-final-card::after {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    left: -110px;
    bottom: -120px;

    border-radius: 50%;

    border: 1px solid rgba(70,48,32,.08);
}

.jv4-final-card > * {
    position: relative;
    z-index: 2;
}

.jv4-final-card h2 {
max-width: 820px;

    margin: 17px 0 0;

    color: var(--jade-dark);

    font-size:
        clamp(51px,6vw,78px);

    line-height: .91;
    letter-spacing: -.052em;
}

.jv4-final-card > p {
    margin: 26px 0 30px;

    color: #5d5047;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

    .jv4-hero-grid {
        grid-template-columns: 1fr;
    }

    .jv4-hero-visual {
        width: min(100%,700px);
    }

    .jv4-gender-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .jv4-gender-mixte {
        grid-column: 1 / 3;
    }

    .jv4-worlds-grid {
        grid-template-columns: 1fr 1fr;
    }

    .jv4-feature-grid {
        grid-template-columns: 1fr;
    }

    .jv4-products-layout {
        grid-template-columns: repeat(2,1fr);
    }

    .jv4-product-large {
        grid-row: auto;
    }

    .jv4-product-large .jv4-product-image {
        height: 320px;
    }

    .jv4-journal-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .jv4-article-large {
        grid-column: 1 / 3;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .jv4-hero {
        padding: 55px 0 60px;
    }

    .jv4-hero-grid {
        gap: 40px;
    }

    .jv4-hero-copy h1 {
        font-size:
            clamp(52px,14vw,71px);
    }

    .jv4-hero-copy > p {
        font-size: 16px;
    }

    .jv4-hero-actions {
        flex-direction: column;
    }

    .jv4-button {
        width: 100%;
    }

    .jv4-hero-stats {
        grid-template-columns:
            1fr
            1fr;

        gap: 15px;
    }

    .jv4-hero-visual {
        width: 100%;
        min-height: 460px;
    }

    .jv4-hero-frame {
        inset:
            0
            10px
            0
            28px;

        border-radius:
            180px
            180px
            20px
            20px;
    }

    .jv4-hero-flacon {
        width: 135px;
        height: 180px;

        left: 0;
        bottom: 25px;

        padding: 12px;
    }

    .jv4-hero-note {
        width: 180px;

        right: 0;
        bottom: 25px;

        padding: 15px;
    }

    .jv4-hero-note strong {
        font-size: 16px;
    }

    .jv4-hero-circle {
        width: 58px;
        height: 58px;

        font-size: 27px;
    }


    .jv4-trust {
        margin-top: 0;

        padding: 20px 0;
    }

    .jv4-trust-inner {
        grid-template-columns: 1fr;
    }


    .jv4-gender {
        padding: 75px 0;
    }

    .jv4-heading {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-bottom: 32px;
    }

    .jv4-heading h2 {
        font-size:
            clamp(43px,12vw,59px);
    }

    .jv4-gender-grid {
        grid-template-columns: 1fr;
    }

    .jv4-gender-mixte {
        grid-column: auto;
    }

    .jv4-gender-card {
        min-height: 300px;
    }


    .jv4-worlds {
        padding: 75px 0;
    }

    .jv4-worlds-heading h2 {
        font-size:
            clamp(44px,12vw,60px);
    }

    .jv4-worlds-grid {
        display: grid;

        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .jv4-world-beauty {
        grid-row: auto;
    }

    .jv4-world {
        min-height: 330px;
    }

    .jv4-world h3,
    .jv4-world-beauty h3 {
        font-size: 37px;
    }


    .jv4-feature {
        padding: 75px 0;
    }

    .jv4-feature-copy h2 {
        font-size:
            clamp(45px,13vw,62px);
    }

    .jv4-feature-stage {
        min-height: 430px;
    }

    .jv4-feature-halo {
        width: 330px;
        height: 330px;

        top: 45px;
        right: 0;
    }

    .jv4-feature-line {
        width: 260px;
        height: 260px;

        top: 78px;
        right: 35px;
    }

    .jv4-feature-stage > img {
        width: 250px;
        height: 340px;
    }

    .jv4-feature-index {
        font-size: 40px;
    }


    .jv4-products {
        padding: 75px 0;
    }

    .jv4-products-heading {
        align-items: flex-start;
        flex-direction: column;

        margin-bottom: 34px;
    }

    .jv4-products-heading h2 {
        font-size:
            clamp(44px,12vw,60px);
    }

    .jv4-products-layout {
        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 12px;
    }

    .jv4-product-image,
    .jv4-product-large .jv4-product-image {
        height: 205px;
    }

    .jv4-product-content {
        padding: 13px;
    }

    .jv4-product-content h3,
.jv4-product-content .jv4-product-title {
        min-height: 58px;

        font-size: 15px;
    }

    .jv4-product-footer {
        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }


    .jv4-manifesto {
        padding: 90px 0;
    }

    .jv4-manifesto h2 {
        font-size:
            clamp(49px,13vw,69px);
    }

    .jv4-manifesto-line {
        height: 60px;
    }


    .jv4-experience {
        padding: 75px 0;
    }

    .jv4-experience-heading h2 {
        font-size:
            clamp(44px,12vw,60px);
    }

    .jv4-experience-list article {
        grid-template-columns:
            50px
            1fr;

        gap: 14px;

        padding: 28px 0;
    }

    .jv4-experience-list article > strong {
        display: none;
    }

    .jv4-experience-list h3 {
        font-size: 28px;
    }


    .jv4-editorial {
        padding: 75px 0;
    }

    .jv4-editorial-grid {
        grid-template-columns: 1fr;
    }

    .jv4-editorial-left,
    .jv4-editorial-right {
        min-height: 330px;

        padding: 32px;

        border-radius: 19px;
    }

    .jv4-editorial-left p {
        font-size:
            clamp(40px,12vw,56px);
    }

    .jv4-editorial-right h2 {
        font-size:
            clamp(44px,12vw,60px);
    }


    .jv4-journal {
        padding: 75px 0;
    }

    .jv4-journal-heading h2 {
        font-size:
            clamp(44px,12vw,60px);
    }

    .jv4-journal-grid {
        grid-template-columns: 1fr;
    }

    .jv4-article-large {
        grid-column: auto;
    }

    .jv4-article-image,
    .jv4-article-large .jv4-article-image {
        height: 245px;
    }


    .jv4-final {
        padding: 0 0 65px;
    }

    .jv4-final-card {
        min-height: 420px;

        padding: 42px 24px;

        border-radius: 21px;
    }

    .jv4-final-card h2 {
        font-size:
            clamp(50px,14vw,70px);
    }
}


/* ==========================================================
   ACCUEIL - FLACONS PNG/WEBP TRANSPARENTS
   Uniquement les visuels produits de la home
========================================================== */

.jv4-hero-flacon,
.jv4-hero-flacon img {
    background: transparent;
    background-color: transparent;
}

.jv4 img[src*="Pacific_Aura_100ml-removebg-preview.png"] {
    background: transparent;
    background-color: transparent;
}


/* ==========================================================
   ACCUEIL - FLACONS PNG/WEBP TRANSPARENTS
   Uniquement les visuels produits de la home
========================================================== */

.jv4-hero-flacon,
.jv4-hero-flacon img {
    background: transparent;
    background-color: transparent;
}

.jv4 img[src*="Pacific_Aura_100ml-removebg-preview.png"] {
    background: transparent;
    background-color: transparent;
}


/* ==========================================================
   ACCUEIL - FOND VISUELS PACIFIC AURA
========================================================== */

.jv4-hero-flacon {
    background: #f7f1eb;
}

.jv4-hero-flacon img {
    background: #f7f1eb;
}

.jv4 img[src*="Pacific_Aura_100ml-removebg-preview.png"] {
    background: #f7f1eb;
}



/* ==========================================================
   JADE HOME - LCP HERO
   Le texte principal doit etre visible des le premier rendu.
========================================================== */

.jv4-hero,
.jv4-hero * {
    animation-delay: 0s;
}

.jv4-hero h1,
.jv4-hero h1 span,
.jv4-hero-copy,
.jv4-hero-copy > span,
.jv4-hero-copy > p {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.jv4-hero h1,
.jv4-hero h1 span {
    animation: none;
    transition: none;
}

/* JADE_PACIFIC_AURA_BG_START */

/*
 * 35 % transparent
 * = 65 % de couleur visible.
 */
.jv4-hero-flacon {
    background: rgba(247, 241, 235, .65);
}

.jv4-hero-flacon img {
    background: transparent;
}

.jv4 img[src*="Pacific_Aura_100ml-removebg-preview.png"] {
    background-color: rgba(247, 241, 235, .65);
}

/* JADE_PACIFIC_AURA_BG_END */

/* JADE_SEO_HOME_ABOUT_EXTERNAL_START */

.jade-home-about{
		max-width:900px;
		margin:34px auto 42px;
		padding:26px 30px;
		background:#f8f5f0;
		border:1px solid #eee5da;
		border-radius:14px;
		text-align:center;
		box-shadow:0 5px 18px rgba(70,55,40,.04)
	}
	.jade-home-about__eyebrow{
		margin-bottom:6px;
		color:#6b5137;
		font-size:11px;
		font-weight:700;
		letter-spacing:1.8px
	}
	.jade-home-about h2{
		margin:0 0 12px!important;
		color:#332d27!important;
		font-family:Georgia,"Times New Roman",serif!important;
		font-size:24px!important;
		font-weight:400!important;
		text-transform:none!important
	}
	.jade-home-about h2::after{
		content:"";
		display:block;
		width:38px;
		height:1px;
		margin:11px auto 0;
		background:#c8a27a
	}
	.jade-home-about p{
		max-width:720px;
		margin:0 auto 16px!important;
		color:#5c554e!important;
		font-size:14.5px;
		line-height:1.75
	}
	.jade-home-about strong{color:#6b5137!important}
	.jade-home-about__byline{
		margin:-2px auto 10px!important;
		color:#766b61!important;
		font-size:12.5px!important;
		line-height:1.45!important
	}
	.jade-home-about__byline span{
		color:#6b5137!important;
		font-weight:700
	}
	.jade-home-about__updated{
		margin:-4px auto 13px!important;
		color:#7a7067!important;
		font-size:12px!important;
		line-height:1.4!important
	}
	.jade-home-about__updated time{font-weight:600;color:#6b5137}
	.jade-home-about__link{
		display:inline-flex;
		align-items:center;
		gap:8px;
		color:#6b5137!important;
		font-size:13px;
		font-weight:700;
		text-decoration:none!important;
		border-bottom:1px solid rgba(107,81,55,.28)
	}
	.jade-home-about__link:hover{color:#332d27!important;border-color:#c8a27a}
	@media(max-width:849px){
		.jade-home-about{margin:26px 15px 34px;padding:22px 20px;border-radius:12px}
		.jade-home-about h2{font-size:21px!important}
		.jade-home-about p{font-size:13.5px;line-height:1.7}
	}

/* JADE_SEO_HOME_ABOUT_EXTERNAL_END */
