@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

.text-deep-green {
    color: var(--green-dark)
}

.text-green-accent {
    color: var(--green-accent)
}

:root {
    --green-dark: #30483d;
    --green-accent: #6f8a72;
    --cream: #f7f6ef;
    --paper: #fffefa;
    --ink: #26362e;
    --muted: #637068;
    --sage: #6f9279;
    --sage-dark: #365d49;
    --sage-pale: #dce9df;
    --aloe: #cfe5d5;
    --gold: #b99658;
    --clay: var(--green-accent);
    --clay-pale: #eedbd1;
    --sand: #e8ddc8;
    --blush: #e7d8d2;
    --line: #dce1db;
    --white: #fff;
    --shadow: 0 18px 50px rgba(43, 77, 59, .08);
    --radius: 24px;
    --radius-sm: 14px;
    --container: 1180px;
    --section: 110px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto
}

.narrow {
    max-width: 800px
}

.centered {
    text-align: center
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    background: var(--ink);
    color: #fff;
    transform: translateY(-150%)
}

.skip-link:focus {
    transform: none
}

:focus-visible {
    outline: 3px solid var(--clay);
    outline-offset: 4px;
    border-radius: 4px
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(255, 253, 249, .94);
    border-bottom: 1px solid rgba(40, 52, 47, .08);
    backdrop-filter: blur(12px)
}

.header-inner {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 21px;
    font-weight: 600
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50% 50% 44% 56%;
    background: var(--sage-dark);
    color: #fff;
    font-style: italic
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px
}

.main-nav a {
    position: relative;
    color: #445049;
    font-size: 15px;
    font-weight: 500
}

.main-nav a:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--clay);
    transform: scaleX(0);
    transition: .2s
}

.main-nav a:hover:after,
.main-nav a[aria-current=page]:after {
    transform: scaleX(1)
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    padding: 8px
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px;
    background: var(--ink);
    transition: .2s
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.12;
    letter-spacing: -.025em
}

h1 {
    font-size: clamp(46px, 6vw, 76px);
    margin-bottom: 26px
}

h2 {
    font-size: clamp(36px, 4.5vw, 54px);
    margin-bottom: 25px
}

h3 {
    line-height: 1.3
}

em {
    color: var(--clay);
    font-weight: 600
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--sage-dark);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px
}

.eyebrow:before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    margin: 0 10px 4px 0;
    background: currentColor
}

.eyebrow.light {
    color: #dce6df
}

.section {
    padding: var(--section) 0
}

.button-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    min-height: 52px;
    padding: 12px 24px;
    border: 1px solid var(--sage-dark);
    border-radius: 999px;
    background: var(--sage-dark);
    color: #fff;
    font-weight: 600;
    transition: transform .2s, background .2s
}

.button:hover {
    background: var(--green-dark);
    transform: translateY(-2px)
}

.button-secondary {
    background: transparent;
    color: var(--sage-dark)
}

.button-secondary:hover {
    background: var(--sage-pale)
}

.hero {
    overflow: hidden;
    padding: 85px 0 105px;
    background: linear-gradient(110deg, var(--cream) 0 62%, #e8eee7 62%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    align-items: center;
    gap: 80px
}

.hero-lead {
    max-width: 620px;
    color: var(--muted);
    font-size: 19px;
    margin-bottom: 34px
}

.demo-note {
    margin: 25px 0 0;
    color: #7b817c;
    font-size: 13px
}

.demo-note span {
    color: var(--clay)
}

.hero-visual {
    position: relative;
    max-width: 460px;
    margin-left: auto
}

.portrait-frame {
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, .7);
    border-radius: 48% 48% 24px 24px;
    box-shadow: var(--shadow)
}

.portrait-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover
}

.floating-note {
    position: absolute;
    right: -35px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow)
}

.floating-note>span {
    font-size: 23px;
    color: var(--clay)
}

.floating-note p {
    margin: 0;
    font-size: 12px;
    line-height: 1.45
}

.floating-note strong {
    font-size: 14px
}

.split-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px
}

.prose {
    max-width: 660px;
    color: var(--muted)
}

.prose .lead {
    color: var(--ink);
    font-size: 20px
}

.demo-label,
.content-disclaimer {
    font-size: 12px;
    color: #7d827f
}

.demo-label {
    display: inline-block;
    padding: 5px 10px;
    border: 1px dashed #b9bcb7;
    border-radius: 6px
}

.values-section {
    background: var(--cream)
}

.section-heading {
    margin-bottom: 48px
}

.section-heading h2 {
    margin-bottom: 0
}

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

.value-card {
    padding: 32px 26px;
    background: var(--paper);
    border: 1px solid rgba(40, 52, 47, .06);
    border-radius: var(--radius);
    transition: .2s
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.icon-circle {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--sage-pale);
    color: var(--sage-dark);
    font-size: 23px
}

.value-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 21px;
    margin-bottom: 10px
}

.value-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0
}

.heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end
}

.text-link,
.card-link {
    color: var(--sage-dark);
    font-weight: 600
}

.text-link {
    margin-bottom: 13px
}

.text-link:hover,
.card-link:hover {
    text-decoration: underline
}

.product-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.preview-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: .2s
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.preview-image,
.detail-image {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden
}

.preview-image {
    height: 280px
}

.preview-image img {
    width: 74%;
    height: 74%;
    object-fit: contain
}

.clay {
    background: #ead8cf
}

.sage {
    background: #dce6dc
}

.sand {
    background: #eee2ca
}

.blush {
    background: #ead9d6
}

.badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 253, 249, .94);
    color: var(--sage-dark);
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05)
}

.preview-body {
    padding: 25px
}

.category {
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--clay);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px
}

.preview-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    margin: 0 0 10px
}

.preview-body p:not(.category) {
    min-height: 54px;
    color: var(--muted);
    font-size: 14px
}

.card-link {
    font-size: 13px
}

.mobile-products-link {
    display: none
}

.content-disclaimer {
    text-align: center;
    margin: 30px 0 0
}

.contact-section {
    padding-top: 40px
}

.contact-card {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;
    padding: 65px 75px;
    border-radius: 32px;
    background: var(--sage-dark);
    color: #fff
}

.contact-card h2 {
    font-size: clamp(32px, 4vw, 48px)
}

.contact-card>div>p:not(.eyebrow) {
    color: #d8e0da
}

.contact-list {
    display: grid;
    gap: 20px
}

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

.contact-item>span {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1)
}

.contact-item small {
    display: block;
    color: #c5d0c9
}

.contact-item strong {
    font-size: 14px
}

.social-placeholders {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    font-size: 13px
}

.social-placeholders a {
    text-decoration: underline
}

.site-footer {
    padding-top: 70px;
    background: #26352e;
    color: #d7ded9
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 55px
}

.brand-footer {
    color: #fff;
    margin-bottom: 16px
}

.brand-footer+.p {
    max-width: 340px
}

.footer-title {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #fff;
    margin-bottom: 18px
}

.footer-grid>div>a:not(.brand) {
    display: block;
    margin: 7px 0;
    font-size: 14px
}

.footer-grid p {
    font-size: 14px;
    color: #aebbb3
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer-bottom p {
    margin: 0;
    color: #99a79f;
    font-size: 12px
}

.page-hero {
    padding: 85px 0;
    background: var(--cream)
}

.page-hero h1 {
    font-size: clamp(43px, 5.5vw, 68px)
}

.page-hero .narrow>p:not(.eyebrow) {
    max-width: 670px;
    margin-inline: auto;
    color: var(--muted);
    font-size: 18px
}

.demo-banner {
    display: flex;
    gap: 14px;
    align-items: center;
    max-width: 620px;
    margin: 35px auto 0;
    padding: 15px 20px;
    text-align: left;
    background: #fff;
    border: 1px dashed #bdc4bd;
    border-radius: 12px
}

.demo-banner>span {
    color: var(--clay);
    font-size: 20px
}

.demo-banner p {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.5
}

.filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 65px
}

.filter-button {
    padding: 9px 19px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    cursor: pointer
}

.filter-button:hover,
.filter-button.active {
    border-color: var(--sage-dark);
    background: var(--sage-dark);
    color: #fff
}

.products-list {
    display: grid;
    gap: 100px
}

.product-detail {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center;
    scroll-margin-top: 110px
}

.product-detail.reverse {
    grid-template-columns: 1.2fr .8fr
}

.product-detail.reverse .detail-image {
    order: 2
}

.detail-image {
    min-height: 470px;
    border-radius: var(--radius)
}

.detail-image img {
    width: 76%;
    max-height: 360px;
    object-fit: contain
}

.detail-content h2 {
    font-size: 42px;
    margin-bottom: 15px
}

.product-summary {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 28px
}

.advice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 30px;
    padding-top: 25px;
    border-top: 1px solid var(--line)
}

.advice-grid h3 {
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--sage-dark)
}

.advice-grid h3 span {
    margin-right: 5px;
    color: var(--clay)
}

.advice-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6
}

.product-detail[hidden] {
    display: none
}

.no-results {
    text-align: center
}

.products-cta {
    padding: 80px 0;
    background: var(--sage-dark);
    color: #fff
}

.products-cta h2 {
    font-size: 43px;
    margin-bottom: 15px
}

.products-cta p:not(.eyebrow) {
    color: #d1dbd4
}

.button-light {
    border-color: #fff;
    background: #fff;
    color: var(--sage-dark)
}

.button-light:hover {
    background: var(--cream)
}

@media(max-width:900px) {
    :root {
        --section: 80px
    }

    .hero-grid {
        gap: 40px
    }

    .values-grid {
        grid-template-columns: 1fr 1fr
    }

    .split-layout {
        gap: 50px
    }

    .contact-card {
        padding: 50px;
        gap: 45px
    }

    .product-detail,
    .product-detail.reverse {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .product-detail.reverse .detail-image {
        order: 0
    }

    .detail-image {
        min-height: 400px
    }

    .products-list {
        gap: 75px
    }
}

@media(max-width:700px) {
    .container {
        width: min(calc(100% - 30px), var(--container))
    }

    .header-inner {
        height: 70px
    }

    .menu-toggle {
        display: block
    }

    .main-nav {
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 20px 22px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 15px 25px rgba(0, 0, 0, .06)
    }

    .main-nav.open {
        display: flex
    }

    .main-nav a {
        padding: 12px
    }

    .main-nav a:after {
        display: none
    }

    .menu-toggle[aria-expanded=true] span:nth-of-type(2) {
        transform: translateY(7px) rotate(45deg)
    }

    .menu-toggle[aria-expanded=true] span:nth-of-type(3) {
        opacity: 0
    }

    .menu-toggle[aria-expanded=true] span:nth-of-type(4) {
        transform: translateY(-7px) rotate(-45deg)
    }

    .hero {
        padding: 55px 0 70px;
        background: linear-gradient(180deg, var(--cream) 0 69%, #e8eee7 69%)
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .hero-content {
        text-align: center
    }

    .hero-content .button-group {
        justify-content: center
    }

    .hero-visual {
        width: 85%;
        margin: auto
    }

    .floating-note {
        right: -15px
    }

    .split-layout,
    .contact-card,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .section-heading {
        margin-bottom: 35px
    }

    .values-grid,
    .product-preview-grid {
        grid-template-columns: 1fr
    }

    .value-card {
        padding: 25px
    }

    .desktop-link {
        display: none
    }

    .mobile-products-link {
        display: flex;
        width: max-content;
        margin: 30px auto 0
    }

    .preview-image {
        height: 250px
    }

    .contact-section {
        padding: 0
    }

    .contact-card {
        width: 100%;
        border-radius: 0;
        padding: 55px 25px
    }

    .site-footer {
        padding-top: 55px
    }

    .footer-grid {
        gap: 25px
    }

    .page-hero {
        padding: 60px 0
    }

    .filters {
        margin-bottom: 45px
    }

    .detail-image {
        min-height: 330px
    }

    .advice-grid {
        grid-template-columns: 1fr
    }

    .products-list {
        gap: 65px
    }

    .products-cta {
        padding: 65px 0
    }

    .product-detail {
        scroll-margin-top: 85px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        transition: none !important
    }
}

/* V2 — identité Patricia et univers Aloe vera */
.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 9px;
    letter-spacing: .14em
}

.main-nav {
    gap: 28px
}

.hero-role {
    display: inline-block;
    max-width: 560px;
    margin-bottom: 18px;
    padding-left: 14px;
    border-left: 3px solid var(--gold);
    color: var(--sage-dark);
    font-weight: 600
}

.hero-content>p:not(.eyebrow):not(.hero-role):not(.hero-lead) {
    max-width: 590px;
    color: var(--muted);
    margin-bottom: 28px
}

.experience-card {
    position: absolute;
    right: -32px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 20px;
    border: 1px solid rgba(54, 93, 73, .1);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow)
}

.experience-card strong {
    color: var(--sage-dark);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 25px;
    line-height: 1
}

.experience-card span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4
}

.identity-line {
    padding: 17px 20px;
    border-left: 3px solid var(--gold);
    background: var(--cream);
    color: var(--muted);
    font-size: 13px
}

.identity-line strong {
    color: var(--ink);
    font-size: 15px
}

.placeholder-copy {
    padding: 18px;
    border: 1px dashed #aebbb2;
    border-radius: var(--radius-sm);
    background: var(--cream);
    font-style: italic
}

.advice-section {
    background: linear-gradient(120deg, #f7f6ef, #eef4ef)
}

.advice-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center
}

.advice-intro>p:not(.eyebrow) {
    color: var(--muted)
}

.advice-points {
    display: grid;
    gap: 0
}

.advice-points>div {
    position: relative;
    padding: 22px 20px 22px 58px;
    border-bottom: 1px solid var(--line)
}

.advice-points>div>span {
    position: absolute;
    top: 25px;
    left: 8px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600
}

.advice-points h3 {
    margin-bottom: 5px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px
}

.advice-points p {
    margin: 0;
    color: var(--muted);
    font-size: 13px
}

.aloe {
    background: var(--aloe)
}

.image-placeholder {
    position: absolute;
    right: 18px;
    bottom: 15px;
    padding: 4px 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .8);
    color: var(--muted);
    font-size: 10px
}

.product-contact {
    margin-top: 28px;
    font-size: 13px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center
}

.footer-bottom p:first-child {
    max-width: 700px
}

@media(max-width:900px) {
    .main-nav {
        gap: 18px
    }

    .advice-panel {
        gap: 45px
    }

    .experience-card {
        right: -15px
    }
}

@media(max-width:700px) {
    .brand-copy small {
        font-size: 8px
    }

    .advice-panel {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .experience-card {
        right: -12px
    }

    .hero-role {
        padding: 0 0 12px;
        border-left: 0;
        border-bottom: 2px solid var(--gold)
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom p+p {
        margin-top: 10px
    }

    .product-contact {
        width: 100%
    }
}

.product-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 72%;
    min-height: 230px;
    padding: 25px;
    border: 1px dashed rgba(54, 93, 73, .35);
    border-radius: 20px;
    background: rgba(255, 255, 255, .36);
    color: var(--sage-dark);
    text-align: center
}

.product-photo-placeholder>span {
    font-size: 38px
}

.product-photo-placeholder strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 19px
}

.product-photo-placeholder small {
    color: var(--muted);
    font-size: 10px;
    overflow-wrap: anywhere
}

.product-photo-placeholder.compact {
    min-height: 170px
}

.official-info {
    margin: 25px 0;
    padding: 24px;
    border-radius: var(--radius-sm);
    background: var(--cream)
}

.official-info h3 {
    margin: 0 0 8px;
    color: var(--sage-dark);
    font-size: 13px
}

.official-info h3:not(:first-child) {
    margin-top: 18px
}

.official-info ul {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none
}

.official-info li {
    padding: 5px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 11px
}

.official-info p {
    margin: 0;
    color: var(--muted);
    font-size: 12px
}

.product-reference {
    margin: -10px 0 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600
}

.personal-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.personal-notes>div {
    padding: 18px;
    border: 1px dashed #b8c2ba;
    border-radius: var(--radius-sm)
}

.personal-notes h3 {
    margin-bottom: 6px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px
}

.personal-notes p {
    margin: 0;
    color: var(--muted);
    font-size: 12px
}

.source-note {
    max-width: 850px;
    margin: 70px auto 0;
    color: var(--muted);
    font-size: 11px;
    text-align: center
}

.filters {
    position: sticky;
    z-index: 10;
    top: 92px;
    padding: 10px;
    background: rgba(255, 254, 250, .94);
    border-radius: 999px;
    backdrop-filter: blur(8px)
}

@media(max-width:700px) {
    .personal-notes {
        grid-template-columns: 1fr
    }

    .product-photo-placeholder {
        min-height: 180px
    }

    .filters {
        position: static;
        border-radius: 20px
    }
}

/* Photographies de Patricia */
.portrait-frame img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center 35%
}

.patricia-gallery {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    gap: 20px;
    align-items: end;
    margin-top: 68px
}

.patricia-gallery figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: var(--radius);
    background: var(--sage-pale);
    box-shadow: var(--shadow)
}

.patricia-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.gallery-main {
    height: 430px
}

.gallery-main img {
    object-position: center 32%
}

.gallery-secondary {
    height: 345px
}

.gallery-secondary img {
    object-position: center 40%
}

.gallery-tertiary {
    height: 385px
}

.gallery-tertiary img {
    object-position: center 35%
}

.patricia-gallery figcaption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 9px 13px;
    border-radius: 10px;
    background: rgba(255, 254, 250, .9);
    color: var(--sage-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    backdrop-filter: blur(6px)
}

@media(max-width:900px) {
    .patricia-gallery {
        grid-template-columns: 1.1fr .9fr
    }

    .gallery-main {
        grid-row: span 2;
        height: 540px
    }

    .gallery-secondary,
    .gallery-tertiary {
        height: 260px
    }
}

@media(max-width:700px) {
    .patricia-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 45px
    }

    .gallery-main {
        grid-column: 1/-1;
        grid-row: auto;
        height: auto;
        aspect-ratio: 4/5
    }

    .gallery-secondary,
    .gallery-tertiary {
        height: auto;
        aspect-ratio: 3/4
    }

    .patricia-gallery figcaption {
        right: 8px;
        bottom: 8px;
        left: 8px;
        padding: 7px 9px;
        font-size: 9px
    }
}

/* Packshots produits */
.detail-image>img,
.preview-image>.product-packshot {
    width: 82%;
    height: 82%;
    max-width: none;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 14px 16px rgba(38, 54, 46, .12))
}

.detail-image>img {
    max-height: 390px
}

.preview-image>.product-packshot {
    width: 78%;
    height: 78%
}

@media(max-width:700px) {
    .detail-image>img {
        width: 86%;
        height: 86%;
        max-height: 285px
    }

    .preview-image>.product-packshot {
        width: 80%;
        height: 80%
    }
}

/* Composition éditoriale de l'accueil */
.about-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 85px;
    align-items: center
}

.about-photo {
    overflow: hidden;
    margin: 0;
    min-height: 620px;
    border-radius: 38% 38% var(--radius) var(--radius);
    background: var(--sage-pale);
    box-shadow: var(--shadow)
}

.about-photo img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    object-position: center 34%
}

.about-copy .prose {
    max-width: none
}

.advice-panel {
    grid-template-columns: .82fr 1.18fr;
    gap: 75px
}

.advice-photo {
    overflow: hidden;
    min-height: 600px;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.advice-photo img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center 38%
}

.advice-content {
    align-self: center
}

.advice-content .advice-points {
    margin-top: 24px
}

.essentials-section {
    background: var(--paper)
}

.essentials-section .section-heading>p:last-child {
    color: var(--muted);
    font-size: 17px
}

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.essential-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow)
}

.essential-aloe {
    background: #d5e8d9
}

.essential-sage {
    background: #e3ece3
}

.essential-sand {
    background: #eee3cf
}

.essential-badge {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 254, 250, .9);
    color: var(--sage-dark);
    font-size: 10px;
    font-weight: 600
}

.essential-visual {
    display: grid;
    place-items: center;
    height: 330px;
    padding: 38px 28px 15px
}

.essential-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 16px 17px rgba(38, 54, 46, .13));
    transition: transform .25s ease
}

.essential-card:hover .essential-visual img {
    transform: translateY(-5px)
}

.essential-copy {
    padding: 22px 26px 28px
}

.essential-copy h3 {
    margin: 0 0 9px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px
}

.essential-copy>p:not(.category) {
    min-height: 50px;
    color: var(--muted);
    font-size: 13px
}

.essential-copy a {
    color: var(--sage-dark);
    font-size: 13px;
    font-weight: 600
}

.essential-copy a:hover {
    text-decoration: underline
}

.essentials-action {
    display: flex;
    justify-content: center;
    margin-top: 38px
}

@media(max-width:900px) {
    .about-layout {
        gap: 45px
    }

    .about-photo,
    .about-photo img {
        min-height: 540px
    }

    .advice-panel {
        gap: 40px
    }

    .advice-photo,
    .advice-photo img {
        min-height: 570px
    }

    .essentials-grid {
        gap: 16px
    }

    .essential-visual {
        height: 275px
    }

    .essential-copy {
        padding: 20px
    }
}

@media(max-width:700px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .about-photo {
        min-height: 0;
        aspect-ratio: 4/5;
        border-radius: 36% 36% var(--radius) var(--radius)
    }

    .about-photo img {
        min-height: 0
    }

    .advice-panel {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .advice-photo {
        min-height: 0;
        aspect-ratio: 4/5
    }

    .advice-photo img {
        min-height: 0
    }

    .essentials-grid {
        grid-template-columns: 1fr
    }

    .essential-visual {
        height: 300px
    }

    .essential-copy>p:not(.category) {
        min-height: 0
    }

    .essentials-action .button {
        width: 100%
    }
}

/* V4 — histoire et sélection personnelle */
.category {
    color: var(--green-dark)
}

.experience-card strong {
    white-space: nowrap;
    font-size: 21px
}

.patricia-quote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 3px solid var(--gold);
    background: rgba(255, 255, 255, .52);
    color: var(--sage-dark)
}

.patricia-quote p {
    margin: 0 0 4px !important;
    color: var(--sage-dark) !important;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-style: italic
}

.patricia-quote cite {
    color: var(--muted);
    font-size: 11px;
    font-style: normal
}

.selection-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--sage-dark);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(38, 54, 46, .15)
}

.filter-highlight:not(.active) {
    border-color: var(--gold);
    color: var(--sage-dark)
}

.info-origin {
    margin-bottom: 17px !important;
    font-style: italic
}

.patricia-approach {
    margin: 0 0 20px;
    padding: 22px;
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: #f6f2e8
}

.patricia-approach h3 {
    margin-bottom: 8px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px
}

.patricia-approach p {
    color: var(--muted);
    font-size: 13px;
    font-style: italic
}

.patricia-approach a {
    color: var(--sage-dark);
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline
}

@media(max-width:700px) {
    .experience-card strong {
        font-size: 18px
    }

    .selection-badge {
        right: 12px;
        bottom: 12px
    }
}

/* Carrousel des indispensables — le design interne des cartes reste inchangé */
.essentials-carousel {
    position: relative
}

.essentials-viewport {
    overflow: hidden;
    padding: 8px 0 22px;
    touch-action: pan-y
}

.essentials-carousel .essentials-grid {
    display: flex;
    gap: 24px;
    transition: transform 650ms cubic-bezier(.22, .61, .36, 1);
    will-change: transform
}

.essentials-carousel .essential-card {
    flex: 0 0 calc((100% - 48px)/3)
}

.carousel-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(54, 93, 73, .14);
    border-radius: 50%;
    background: rgba(255, 254, 250, .92);
    color: var(--sage-dark);
    box-shadow: 0 8px 22px rgba(38, 54, 46, .1);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s, transform .2s
}

.carousel-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.04)
}

.carousel-prev {
    left: -21px
}

.carousel-next {
    right: -21px
}

.carousel-arrow span {
    font-size: 19px;
    line-height: 1
}

@media(max-width:900px) {
    .essentials-carousel .essentials-grid {
        gap: 16px
    }

    .essentials-carousel .essential-card {
        flex-basis: calc((100% - 16px)/2)
    }
}

@media(max-width:700px) {
    .essentials-carousel .essentials-grid {
        gap: 12px
    }

    .essentials-carousel .essential-card {
        flex-basis: 100%
    }

    .carousel-arrow {
        width: 38px;
        height: 38px
    }

    .carousel-prev {
        left: 8px
    }

    .carousel-next {
        right: 8px
    }
}

@media(prefers-reduced-motion:reduce) {
    .essentials-carousel .essentials-grid {
        transition: none
    }

    .essential-card:hover .essential-visual img {
        transform: none
    }
}

/* Accès centralisés vers la future boutique Forever */
.nav-shop-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 15px;
    border: 1px solid var(--sage-dark);
    border-radius: 999px;
    background: var(--sage-dark);
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 600;
    white-space: nowrap
}

.main-nav .nav-shop-button:after {
    display: none
}

.nav-shop-button:hover {
    background: var(--green-dark)
}

.is-disabled {
    cursor: not-allowed;
    opacity: .62
}

.nav-shop-button.is-disabled {
    user-select: none
}

.product-actions {
    display: flex;
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px
}

.product-actions .product-contact {
    margin-top: 0
}

.button-shop {
    background: transparent;
    color: var(--sage-dark);
    text-align: center
}

.button-shop:hover {
    background: var(--sage-pale);
    color: var(--sage-dark)
}

.button-shop.is-disabled {
    display: flex;
    flex-direction: column;
    gap: 0
}

.button-shop small {
    font-size: 9px;
    font-weight: 500
}

.shop-cta-section {
    padding: 35px 0 75px
}

.shop-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
    padding: 38px 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(110deg, var(--cream), var(--sage-pale))
}

.shop-cta h2 {
    margin-bottom: 8px;
    font-size: clamp(28px, 3.2vw, 40px)
}

.shop-cta p:not(.eyebrow) {
    margin: 0;
    color: var(--muted)
}

.shop-cta>.button {
    flex: 0 0 auto
}

.shop-cta-disabled {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 5px
}

.shop-cta-disabled small {
    color: var(--muted);
    font-size: 10px
}

@media(max-width:1050px) {
    .main-nav {
        gap: 15px
    }

    .nav-shop-button {
        padding-inline: 11px
    }
}

@media(max-width:700px) {
    .main-nav .nav-shop-button {
        margin-top: 8px
    }

    .product-actions {
        display: grid
    }

    .product-actions .button {
        width: 100%
    }

    .shop-cta {
        display: grid;
        padding: 32px 25px;
        text-align: center
    }

    .shop-cta .eyebrow:before {
        display: none
    }

    .shop-cta>.button,
    .shop-cta-disabled,
    .shop-cta-disabled .button {
        width: 100%
    }
}

/* FAQ V5 */
.faq-section {
    background: var(--cream)
}

.faq-list {
    display: grid;
    gap: 12px
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper)
}

.faq-item summary {
    position: relative;
    padding: 18px 52px 18px 22px;
    color: var(--green-dark);
    font-weight: 600;
    cursor: pointer;
    list-style: none
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary:after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    color: var(--green-accent);
    font-size: 22px;
    font-weight: 400;
    transform: translateY(-50%)
}

.faq-item[open] summary:after {
    content: "−"
}

.faq-item p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: 14px
}

.contact-location {
    font-size: 14px !important
}

/* Actualités V6 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px
}

.news-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 38px rgba(48, 72, 61, .1);
    display: flex;
    flex-direction: column
}

.news-card>a:first-child {
    display: block;
    background: #eef2eb
}

.news-card img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: contain
}

.news-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1
}

.news-card-body h3 {
    font-size: 1.45rem;
    margin: .25rem 0 .6rem
}

.news-card-body .button {
    margin-top: auto
}

.news-date {
    color: #6f8a72;
    font-weight: 700;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.facebook-mark {
    height: 200px;
    display: grid;
    place-items: center;
    background: #4267b2;
    color: white;
    font: bold 100px Arial
}

.empty-news {
    max-width: 700px;
    margin: auto;
    text-align: center;
    background: #fff;
    padding: 50px;
    border-radius: 22px
}

.home-news {
    background: #f5f0e6
}

.news-all {
    margin-top: 30px
}

@media(max-width:900px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(max-width:620px) {
    .news-grid {
        grid-template-columns: 1fr
    }

    .news-card img {
        height: auto;
        max-height: 520px
    }

    .home-news .heading-row {
        display: block
    }

    .home-news .heading-row>a {
        display: none
    }
}

/* Publications Facebook */
.facebook-embed {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    border-radius: 18px 18px 0 0;
}

.facebook-embed iframe {
    display: block;
    width: 100%;
    max-width: 500px;
    min-height: 680px;
    border: 0;
}

.news-card-facebook {
    overflow: hidden;
}

.facebook-external-link {
    margin-top: 1rem;
}

@media (max-width: 600px) {
    .facebook-embed iframe {
        min-height: 620px;
    }
}

/* Les cartes d'actualités gardent leur hauteur naturelle */
.news-grid {
    align-items: start;
}

.news-card {
    align-self: start;
    height: auto;
}

.news-card>a {
    display: block;
    line-height: 0;
}

.news-card>a img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}