@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --cream: #fbfaf7;
    --paper: #f5efe7;
    --paper-2: #efe2d2;
    --green: #26391b;
    --green-2: #3f5730;
    --gold: #c7935b;
    --ink: #17140f;
    --muted: #6f685f;
    --line: #cfc6ba;
    --white: #ffffff;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', Arial, sans-serif;
    --shadow: 0 14px 35px rgba(38, 57, 27, .13);
    --shadow-small: 0 4px 0 rgba(38, 57, 27, .22);
    --radius: 18px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--serif);
    font-size: 20px;
}

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

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

p {
    line-height: 1.42;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    line-height: 1.05;
}

h1 {
    font-size: clamp(44px, 5vw, 78px);
}

h2 {
    font-size: clamp(36px, 4vw, 56px);
}

h3 {
    font-size: clamp(28px, 2.8vw, 38px);
}

.container {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 0 30px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 30;
    height: 92px;
    background: rgba(251, 250, 247, .92);
    border-bottom: 1px solid rgba(38, 57, 27, .06);
    backdrop-filter: blur(14px);
}

.nav {
    max-width: 1280px;
    height: 100%;
    margin: auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--paper);
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}

.logo:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 38px rgba(38, 57, 27, .18);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.links {
    display: flex;
    align-items: center;
    gap: 30px;
    font: italic 26px var(--serif);
}

.links a {
    position: relative;
    transition: color .25s ease;
}

.links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .25s ease;
}

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

.links a:hover::after,
.links a.active::after {
    width: 100%;
}

.burger {
    display: none;
    border: 0;
    background: transparent;
    color: var(--green);
    font-size: 34px;
    cursor: pointer;
}

.section {
    padding: 72px 0;
}

.hero {
    width: 100%;
    max-width: none;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(30px, 1fr) minmax(0, 560px) minmax(0, 680px);
    gap: 70px;
    align-items: center;
    min-height: 560px;
}

.hero-text {
    grid-column: 2;
    padding: 70px 0 82px;
}

.hero-media {
    grid-column: 3;
    justify-self: stretch;
    align-self: start;
    height: 480px;
    border-radius: 0 0 0 var(--radius);
    overflow: hidden;
    background: var(--paper);
    box-shadow: var(--shadow);
    position: relative;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media.soft-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--cream) 0%, rgba(251, 250, 247, .72) 13%, transparent 42%);
    pointer-events: none;
}

.lead {
    max-width: 570px;
}

.breadcrumb {
    margin-bottom: 24px;
    color: var(--muted);
    font: italic 17px var(--serif);
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font: italic 20px var(--serif);
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 30px;
    border: 1px solid var(--green);
    border-radius: 999px;
    background: var(--green);
    color: white;
    font: 600 17px var(--serif);
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.btn:hover {
    transform: translateY(-3px);
    background: var(--green-2);
    box-shadow: var(--shadow);
}

.btn.alt {
    background: white;
    color: var(--green);
}

.btn.alt:hover {
    background: var(--green);
    color: white;
}

.btn.outline-light {
    border-color: rgba(255, 255, 255, .75);
    background: transparent;
    color: white;
}

.btn.outline-light:hover {
    background: white;
    color: var(--green);
}

.photo {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper);
    box-shadow: var(--shadow);
    position: relative;
}

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

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    margin-top: 45px;
}

.card,
.product-card,
.price-card,
.form-card,
.contact-card,
.legal-card {
    border: 1px solid var(--green-2);
    border-radius: 13px;
    background: rgba(255, 255, 255, .7);
    box-shadow: var(--shadow-small);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover,
.product-card:hover,
.price-card:hover,
.legal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.card-img {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: linear-gradient(135deg, #dfc9b3, #fafafa 55%, #bf683d);
}

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

.card-body {
    padding: 22px;
}

.card-body em,
.product-tag {
    color: var(--gold);
    font-weight: 600;
}

.process {
    background: var(--green);
    color: white;
    overflow: hidden;
}

.steps {
    display: grid;
    grid-template-columns: minmax(220px, 1.25fr) repeat(4, minmax(180px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.step {
    padding: 18px 28px;
    border-left: 1px solid rgba(255, 255, 255, .38);
}

.step-icon,
.inline-icon {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-bottom: 16px;
}

.step-icon.white {
    filter: brightness(0) invert(1);
}

.icon-text {
    color: white;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 16px;
}

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

.overlap {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.overlap .photo:first-child {
    transform: translate(40px, -20px);
}

.overlap .photo:last-child {
    transform: translate(-20px, 70px);
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 55px;
    align-items: center;
    text-align: center;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.feature-icon {
    width: 66px;
    height: 66px;
    object-fit: contain;
    flex: 0 0 auto;
}

.footer {
    margin-top: 60px;
    padding: 70px 0;
    background: var(--green);
    color: white;
}

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

.footer-logo {
    width: 230px;
    max-width: 100%;
    height: auto;
}

.footer h3 {
    margin-bottom: 26px;
    font-size: 42px;
}

.footer p,
.footer a {
    display: block;
    margin: 9px 0;
    opacity: .9;
}

.footer a {
    width: fit-content;
    transition: color .25s ease, opacity .25s ease, transform .25s ease;
}

.footer a:hover {
    color: var(--gold);
    opacity: 1;
    transform: translateX(4px);
}

.toolbar {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 60px;
    margin-bottom: 42px;
}

.search input,
.field input,
.field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    font: 15px var(--sans);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.search input:focus,
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(199, 147, 91, .16);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.filter {
    padding: 10px 24px;
    border: 1px solid var(--green);
    border-radius: 999px;
    background: white;
    color: var(--green);
    cursor: pointer;
    font: italic 17px var(--serif);
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.filter.active,
.filter:hover {
    transform: translateY(-2px);
    background: var(--green);
    color: white;
    box-shadow: var(--shadow);
}

.collection-count {
    margin: 36px 0 26px;
}

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

.product-card {
    display: block;
    color: inherit;
}

.product-card-image {
    position: relative;
    height: 245px;
    background: var(--paper);
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.06);
}

.tag {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    padding: 4px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    font-size: 15px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 62px 0 20px;
}

.pagination button {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: var(--green);
    color: white;
    font: italic 24px/1 var(--serif);
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.pagination button.active,
.pagination button:hover {
    background: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mini-icons {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 40px;
}

.mini {
    text-align: center;
    color: var(--green);
    font-weight: 600;
}

.mini img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin: 0 auto 12px;
}

.mini .ico {
    display: block;
    margin-bottom: 12px;
    font-size: 50px;
    line-height: 1;
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 62px;
    margin-top: 38px;
}

.order-step-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.num {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: var(--gold);
    color: white;
    font: italic 36px/1 var(--serif);
}

.order-icon {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.order-arrow {
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--green));
    position: relative;
    margin-left: auto;
}

.order-arrow::after {
    content: '›';
    position: absolute;
    right: -9px;
    top: 50%;
    transform: translateY(-52%);
    color: var(--green);
    font-size: 36px;
}

.price-layout {
    display: grid;
    grid-template-columns: 1.05fr 2fr;
    gap: 42px;
    align-items: stretch;
}

.price-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.price-card {
    padding: 34px;
    min-height: 360px;
}

.price-card.large {
    min-height: 430px;
    background: rgba(255, 255, 255, .42);
}

.price-card ul {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.price-card li {
    margin: 17px 0;
}

.price-card strong {
    display: inline-block;
    margin-top: 18px;
}

.notice,
.cta {
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 14px;
}

.notice {
    padding: 25px 40px;
    background: #ebd8c3;
}

.cta {
    padding: 0;
    overflow: hidden;
    background: var(--green);
    color: white;
}

.cta img {
    width: 285px;
    min-height: 210px;
    align-self: stretch;
    object-fit: cover;
}

.cta-content {
    flex: 1;
    padding: 38px 20px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 38px 34px 38px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 75px;
    align-items: start;
}

.form-card,
.contact-card {
    padding: 32px;
    background: white;
}

.field {
    display: block;
    margin: 20px 0;
    font-family: var(--sans);
    font-size: 16px;
}

.field span {
    display: block;
    margin-bottom: 8px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 17px;
    margin: 22px 0;
}

.contact-line img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex: 0 0 auto;
}

.article-hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: start;
    padding-top: 72px;
}

.gallery {
    position: relative;
}

.gallery-main {
    height: 560px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper);
    box-shadow: var(--shadow);
    cursor: zoom-in;
}

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

.gallery-arrow {
    position: absolute;
    top: 280px;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid var(--green);
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--green);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.gallery-arrow:hover {
    background: var(--green);
    color: white;
}

.gallery-arrow.prev {
    left: 16px;
}

.gallery-arrow.next {
    right: 16px;
}

.thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.thumb {
    width: 90px;
    height: 74px;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: var(--paper);
    padding: 0;
    cursor: pointer;
}

.thumb.active {
    border-color: var(--gold);
}

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

.article-info {
    position: sticky;
    top: 118px;
}

.article-meta {
    margin: 20px 0;
    color: var(--gold);
    font-weight: 600;
}

.article-prices {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.article-price-line {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
}

.article-price-line strong {
    display: block;
    color: var(--green);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, .78);
}

.modal.open {
    display: grid;
}

.modal img {
    max-height: 90vh;
    max-width: 92vw;
    border-radius: 10px;
    object-fit: contain;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: white;
    color: var(--green);
    font-size: 32px;
    cursor: pointer;
}

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

.legal-card {
    padding: 28px;
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-up.show {
    opacity: 1;
    transform: none;
}

@media (max-width: 1100px) {
    .steps {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 900px) {
    body {
        font-size: 18px;
    }

    .burger {
        display: block;
    }

    .links {
        display: none;
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        padding: 25px 30px;
        flex-direction: column;
        background: var(--cream);
        border-bottom: 1px solid var(--line);
    }

    .links.open {
        display: flex;
    }

    .hero {
        display: block;
        min-height: 0;
    }

    .hero-text {
        padding: 42px 30px 35px;
    }

    .hero-media {
        height: 340px;
        border-radius: var(--radius);
        margin: 0 30px 35px;
    }

    .cards,
    .features,
    .footer-grid,
    .toolbar,
    .split,
    .about,
    .form-grid,
    .article-hero,
    .price-layout,
    .price-options,
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .grid-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .steps,
    .order-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .35);
        padding: 22px 0 0;
    }

    .mini-icons {
        gap: 30px;
        flex-wrap: wrap;
    }

    .overlap {
        display: block;
    }

    .overlap .photo {
        transform: none !important;
        margin-bottom: 20px;
    }

    .cta {
        display: block;
    }

    .cta img {
        width: 100%;
        min-height: 230px;
    }

    .cta-content,
    .cta-actions {
        padding: 26px;
    }

    .article-info {
        position: static;
    }

    .gallery-main {
        height: 420px;
    }

    .gallery-arrow {
        top: 210px;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        padding: 0 18px;
    }

    .grid-products {
        grid-template-columns: 1fr;
    }

    .pagination button {
        width: 46px;
        height: 46px;
    }

    .feature {
        display: block;
    }

    .feature-icon {
        margin: 0 auto 14px;
    }
}


/* =========================================================
   Dernières corrections UI / UX
   ========================================================= */
.header {
    height: 112px;
}

.nav {
    max-width: 1500px;
    padding-left: clamp(34px, 6vw, 92px);
    padding-right: clamp(44px, 8vw, 120px);
}

.logo {
    width: 88px;
    height: 88px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.logo img {
    object-fit: contain;
}

.links {
    margin-left: auto;
    gap: clamp(28px, 3vw, 46px);
    font-size: clamp(27px, 2vw, 34px);
}

.hero {
    grid-template-columns: minmax(80px, 1fr) minmax(0, 640px) minmax(0, 850px);
    gap: clamp(42px, 5vw, 86px);
    min-height: 620px;
}

.hero-text {
    padding: 84px 0 90px;
}

.hero-media {
    height: 560px;
    border-radius: 0 0 0 22px;
}

.cards {
    align-items: stretch;
}

.card {
    display: flex;
    flex-direction: column;
    background: #fffefa;
}

.card-img {
    height: 255px;
}

.card-body {
    padding: 28px 30px 34px;
}

.step-icon.white {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.feature-icon[src*="france"] {
    width: 86px;
    height: 86px;
}

.footer h3 {
    margin-bottom: 34px;
}

.footer a {
    padding: 3px 0;
}

.footer a:hover,
.contact-line a:hover {
    color: var(--gold);
    opacity: 1;
    transform: translateX(4px);
}

.toolbar h3 {
    margin-bottom: 18px;
}

.toolbar {
    row-gap: 34px;
}

.collection-count {
    margin: 52px 0 34px;
}

.pagination button {
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3px;
}

.pagination button:hover {
    outline: 1px solid var(--green);
    outline-offset: 5px;
}

.mini img {
    width: 62px;
    height: 62px;
    margin: 0 auto 12px;
}

.order-steps > div,
.price-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.order-steps > div:hover,
.price-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
    background: #fffdfa;
}

.price-card.large {
    min-height: 500px;
    padding: 46px 48px;
}

.price-options .price-card {
    min-height: 430px;
}

.cta .btn.alt {
    border-color: white;
}

.cta .btn.alt:hover {
    border-color: white;
    background: var(--paper);
    color: var(--green);
}

.contact-line a {
    transition: color .25s ease, transform .25s ease;
}

.legal-text .legal-card {
    padding: clamp(28px, 4vw, 56px);
}

.legal-text h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    font-size: clamp(30px, 3vw, 44px);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.faq-grid .legal-card {
    min-height: 260px;
}

.faq-process {
    padding-top: 20px;
}

.order-steps.compact > div {
    border: 1px solid var(--green-2);
    border-radius: 14px;
    padding: 28px;
    background: rgba(255, 255, 255, .7);
}

@media (max-width: 900px) {
    .header {
        height: 96px;
    }

    .links {
        top: 96px;
        font-size: 28px;
    }

    .nav {
        padding-left: 20px;
        padding-right: 20px;
    }

    .logo {
        width: 74px;
        height: 74px;
    }

    .hero-text {
        padding: 48px 30px 36px;
    }

    .hero-media {
        height: 380px;
        margin: 0 0 35px 30px;
        border-radius: 18px 0 0 18px;
    }

    .card-img {
        height: 235px;
    }
}

@media (max-width: 560px) {
    .hero-media {
        height: 300px;
        margin-left: 20px;
    }

    .links {
        font-size: 25px;
    }
}

/* =========================================================
   Ajustements v4 demandés
   ========================================================= */
.about {
    gap: clamp(90px, 9vw, 150px);
}

.overlap .photo {
    min-height: 360px;
}

.overlap .photo:first-child {
    width: min(390px, 100%);
    justify-self: end;
    transform: translate(55px, -30px);
}

.overlap .photo:last-child {
    width: min(400px, 100%);
    justify-self: start;
    transform: translate(-10px, 100px);
}

.legal-page > h1 {
    margin-bottom: 42px;
}

.legal-page .legal-text,
.legal-page .legal-card:first-of-type {
    margin-top: 20px;
}

.legal-text .legal-card {
    padding-top: clamp(52px, 5vw, 78px);
}

.price-card.large {
    background: var(--green);
    color: white;
    border-color: var(--green);
    box-shadow: 0 12px 28px rgba(38, 57, 27, .22);
}

.price-card.large .eyebrow,
.price-card.large h3,
.price-card.large p,
.price-card.large li {
    color: white;
}

.price-card.large:hover {
    background: var(--green-2);
    color: white;
}

.cta .btn.alt {
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

.cta .btn.alt:hover {
    background: transparent;
    color: white;
    border-color: white;
    box-shadow: inset 0 0 0 1px white, 0 14px 28px rgba(0, 0, 0, .18);
}

.contact-card a,
.contact-card .contact-line {
    transition: color .25s ease, transform .25s ease, opacity .25s ease;
}

.contact-card a:hover,
.contact-card .contact-line:hover a {
    color: var(--gold);
    transform: translateX(4px);
}

.contact-card .contact-line:hover {
    opacity: .92;
}

.cards .card:first-child .card-img img {
    object-position: center 58%;
}

.cards .card:first-child .card-img {
    height: 275px;
}

.hero-text {
    transform: translateX(20px);
}

.hero-media {
    height: 600px;
}

@media (min-width: 901px) {
    .hero {
        grid-template-columns: minmax(90px, 1fr) minmax(0, 680px) minmax(0, 900px);
    }
}

@media (max-width: 900px) {
    .hero-text {
        transform: none;
    }

    .overlap .photo {
        width: 100% !important;
        min-height: 300px;
    }
}

/* ===== Corrections v5 : étapes commande + lisibilité ===== */
.num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding-bottom: 4px;
}

.order-steps > div {
    position: relative;
    padding: 10px 4px 14px;
    border-radius: 18px;
}

.order-steps > div:hover {
    transform: translateY(-4px);
    box-shadow: none;
    border-color: transparent;
    background: transparent;
}

.order-steps > div::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width .25s ease;
}

.order-steps > div:hover::after {
    width: 82%;
}

.order-step-header {
    margin-bottom: 26px;
}

.order-steps h3 {
    margin-bottom: 22px;
}

.order-steps p {
    max-width: 420px;
}

.price-card.base-highlight {
    background: var(--green);
    color: white;
    border-color: var(--green);
}

.price-card.base-highlight .eyebrow,
.price-card.base-highlight h3,
.price-card.base-highlight p,
.price-card.base-highlight strong {
    color: white;
}

.price-card.base-highlight:hover {
    background: var(--green-2);
    border-color: var(--gold);
}

/* ===== Bannière cookies v5 ===== */
.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    max-width: 980px;
    margin: auto;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 18px;
    background: rgba(38, 57, 27, .96);
    color: white;
    box-shadow: var(--shadow);
}

.cookie-banner p {
    margin: 0;
    font-size: 18px;
}

.cookie-banner div {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.cookie-banner button {
    border: 1px solid white;
    border-radius: 999px;
    padding: 10px 18px;
    font: 600 16px var(--serif);
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

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

.cookie-refuse {
    background: transparent;
    color: white;
}

.cookie-accept {
    background: white;
    color: var(--green);
}

@media (max-width: 700px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   Corrections responsive v6 : information / tarifs / espacements
   ========================================================= */
.pricing-section {
    padding-top: 78px;
}

.pricing-heading {
    margin-bottom: 32px;
}

.pricing-heading h2 {
    max-width: 760px;
}

.price-layout {
    align-items: stretch;
}

.price-options {
    margin-top: 0;
}

.num {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-align: center;
}

.order-steps > div {
    overflow: visible;
}

.order-steps > div:hover {
    background: rgba(255, 255, 255, .26);
    box-shadow: 0 14px 28px rgba(38, 57, 27, .08);
    border-color: transparent;
}

@media (max-width: 900px) {
    .section {
        padding: 52px 0;
    }

    .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .order-steps {
        gap: 30px;
        margin-top: 32px;
    }

    .order-steps > div {
        padding: 0 0 30px;
        border-radius: 0;
        border-bottom: 1px solid rgba(38, 57, 27, .18);
        background: transparent !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .order-steps > div:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .order-steps > div::after {
        display: none;
    }

    .order-steps > div:hover {
        background: transparent !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .order-step-header {
        justify-content: flex-start;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }

    .num {
        width: 64px;
        height: 64px;
        font-size: 35px;
        flex: 0 0 64px;
    }

    .order-icon {
        width: 58px;
        height: 58px;
    }

    .order-arrow {
        display: none;
    }

    .order-steps h3 {
        margin-bottom: 14px;
        font-size: clamp(34px, 10vw, 46px);
    }

    .order-steps p {
        max-width: none;
        margin: 0;
    }

    .pricing-section {
        padding-top: 58px;
    }

    .pricing-heading {
        margin-bottom: 26px;
    }

    .pricing-heading h2 {
        max-width: 100%;
        font-size: clamp(40px, 12vw, 58px);
    }

    .price-layout,
    .price-options {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .price-card,
    .price-card.large,
    .price-card.base-highlight {
        min-height: 0 !important;
        padding: 34px 28px !important;
        border-radius: 18px;
    }

    .price-card ul {
        margin-top: 22px;
    }

    .price-card li {
        margin: 13px 0;
    }

    .notice {
        align-items: flex-start;
        gap: 18px;
        padding: 24px 22px;
        margin-top: 4px;
    }

    .notice .icon-text {
        flex: 0 0 auto;
        margin-top: 8px !important;
    }

    .notice p {
        margin-bottom: 0;
    }

    .process.section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
}

@media (max-width: 520px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: clamp(42px, 15vw, 64px);
    }

    h2 {
        font-size: clamp(36px, 12vw, 52px);
    }

    .section {
        padding: 44px 0;
    }

    .price-card,
    .price-card.large,
    .price-card.base-highlight {
        padding: 30px 24px !important;
    }

    .notice {
        border-radius: 18px;
    }
}

/* =========================================================
   Corrections v7 : espaces mobile + tarifs desktop/mobile
   ========================================================= */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

h1,
h2,
h3,
p,
.eyebrow,
.breadcrumb {
    max-width: 100%;
}

@media (min-width: 901px) {
    .pricing-section {
        display: grid;
        grid-template-columns: minmax(330px, 420px) minmax(0, 1fr);
        gap: 42px;
        align-items: start;
        padding-top: 78px;
    }

    .pricing-heading {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 4px;
        align-self: end;
    }

    .pricing-heading h2 {
        max-width: 850px;
    }

    .price-layout {
        display: contents;
    }

    .price-card.base-highlight {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: stretch;
        min-height: 520px;
    }

    .price-options {
        grid-column: 2;
        grid-row: 2;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
        margin-top: 22px;
    }
}

.order-steps > div:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .62);
    box-shadow: 0 16px 36px rgba(38, 57, 27, .10);
}

.num {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
    padding: 0 !important;
}

@media (max-width: 900px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: clamp(24px, 6vw, 34px);
        padding-right: clamp(24px, 6vw, 34px);
    }

    .hero,
    .split,
    .about,
    .toolbar,
    .form-grid {
        gap: 30px;
    }

    .hero h1,
    .section > h2,
    .pricing-heading h2,
    .legal-page h1 {
        max-width: min(100%, 620px);
        overflow-wrap: normal;
        word-break: normal;
    }

    .section > h2,
    .pricing-heading h2 {
        font-size: clamp(38px, 10.5vw, 52px);
        line-height: 1.02;
    }

    .cards,
    .grid-products,
    .box-row,
    .features {
        gap: 28px;
    }

    .toolbar {
        margin-bottom: 42px;
    }

    .toolbar h3 {
        margin-bottom: 14px;
    }

    .filters {
        gap: 12px;
        margin-top: 8px;
    }

    .collection-count,
    #count {
        margin-top: 46px !important;
        margin-bottom: 28px !important;
    }

    .pricing-section {
        display: block;
        padding-top: 52px;
    }

    .pricing-heading {
        margin-bottom: 28px;
    }

    .pricing-heading .eyebrow {
        display: block;
        margin-bottom: 6px;
    }

    .pricing-heading h2 {
        max-width: 100%;
    }

    .price-layout,
    .price-options {
        display: grid;
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .price-card,
    .price-card.large,
    .price-card.base-highlight {
        width: 100%;
        min-height: 0 !important;
        padding: clamp(30px, 7vw, 42px) clamp(26px, 7vw, 38px) !important;
        border-radius: 20px;
    }

    .price-card.base-highlight {
        margin-top: 0;
    }

    .price-card h3 {
        font-size: clamp(34px, 9.5vw, 46px);
        line-height: 1.06;
    }

    .price-card p,
    .price-card li,
    .notice p {
        font-size: clamp(20px, 5.4vw, 25px);
        line-height: 1.45;
    }

    .price-card ul {
        margin-top: 20px;
    }

    .price-card li {
        margin: 12px 0;
    }

    .notice {
        margin-top: 28px;
        margin-left: 0;
        margin-right: 0;
        padding: 26px clamp(22px, 6vw, 34px);
        border-radius: 18px;
    }

    .process.section {
        margin-top: 42px;
    }
}

@media (max-width: 560px) {
    .container {
        padding-left: 26px;
        padding-right: 26px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 58px);
        line-height: .98;
    }

    .section > h2,
    .pricing-heading h2 {
        font-size: clamp(36px, 10vw, 46px);
    }

    .toolbar h3 {
        font-size: clamp(30px, 8vw, 38px);
    }

    .filters .filter {
        padding: 10px 22px;
    }

    .price-card,
    .price-card.large,
    .price-card.base-highlight {
        padding: 30px 24px !important;
    }

    .notice {
        gap: 14px;
    }
}


/* =========================================================
   PATCH ARTICLE GALLERY RESPONSIVE
   Objectif : empêcher la galerie de pousser le texte hors écran,
   garder une belle fiche article desktop, et avoir un vrai carrousel mobile.
   ========================================================= */
.article-hero{
    width: min(1480px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.64fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: start;
    padding-top: clamp(34px, 5vw, 72px);
}

.gallery{
    min-width: 0;
    width: 100%;
}

.gallery-main{
    width: 100%;
    height: clamp(360px, 54vh, 620px);
    border-radius: var(--radius);
    overflow: hidden;
    background: #f6f0e9;
    box-shadow: var(--shadow);
    cursor: zoom-in;
}

.gallery-main img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f6f0e9;
}

.gallery-arrow{
    top: calc(clamp(360px, 54vh, 620px) / 2);
    z-index: 3;
}

.thumbs{
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 3px 2px 10px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}

.thumb{
    flex: 0 0 auto;
    width: 88px;
    height: 68px;
    scroll-snap-align: start;
}

.article-info{
    min-width: 0;
    max-width: 100%;
    position: sticky;
    top: 118px;
    align-self: start;
}

.article-info h1{
    font-size: clamp(48px, 4.7vw, 82px);
    max-width: 100%;
    overflow-wrap: anywhere;
}

.article-info p,
.article-info .breadcrumb,
.article-info .article-price-line{
    max-width: 100%;
}

.article-prices{
    max-height: none;
}

.lightbox-arrow{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    color: var(--green);
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.lightbox-arrow:hover{
    transform: translateY(-50%) scale(1.06);
    background: var(--green);
    color: white;
}

.lightbox-arrow.prev{ left: 28px; }
.lightbox-arrow.next{ right: 28px; }

@media (max-width: 1050px){
    .article-hero{
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .article-info{
        position: static;
    }

    .article-info h1{
        font-size: clamp(44px, 10vw, 68px);
        overflow-wrap: normal;
    }
}

@media (max-width: 700px){
    .article-hero{
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 26px;
        gap: 26px;
    }

    .gallery-main{
        height: clamp(260px, 55vh, 390px);
        border-radius: 16px;
    }

    .gallery-arrow{
        top: calc(clamp(260px, 55vh, 390px) / 2);
        width: 42px;
        height: 42px;
        font-size: 30px;
    }

    .gallery-arrow.prev{ left: 10px; }
    .gallery-arrow.next{ right: 10px; }

    .thumbs{
        gap: 9px;
        margin-top: 11px;
        padding-bottom: 8px;
    }

    .thumb{
        width: 66px;
        height: 54px;
        border-radius: 8px;
    }

    .article-info h1{
        font-size: clamp(40px, 13vw, 58px);
    }

    .article-prices{
        gap: 12px;
    }

    .article-price-line{
        padding: 16px;
    }

    .modal{
        padding: 14px;
    }

    .modal img{
        max-width: 94vw;
        max-height: 82vh;
    }

    .modal-close{
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }

    .lightbox-arrow{
        width: 42px;
        height: 42px;
        font-size: 30px;
    }

    .lightbox-arrow.prev{ left: 12px; }
    .lightbox-arrow.next{ right: 12px; }
}

/* ===== Patch UI collections/articles v11 ===== */
.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(38, 57, 27, .55);
    border-radius: 18px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 5px 0 rgba(38, 57, 27, .18), 0 18px 36px rgba(38, 57, 27, .08);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(199, 147, 91, .16), transparent 42%);
    opacity: 0;
    transition: opacity .28s ease;
}

.product-card:hover,
.product-card:focus-visible {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 7px 0 rgba(38, 57, 27, .20), 0 26px 54px rgba(38, 57, 27, .16);
}

.product-card:hover::after,
.product-card:focus-visible::after {
    opacity: 1;
}

.product-card-image {
    height: 270px;
    border-radius: 18px 18px 0 0;
}

.product-card .card-body {
    position: relative;
    z-index: 1;
    padding: 24px 24px 28px;
}

.product-card .card-body h3 {
    font-size: clamp(30px, 2.4vw, 38px);
}

.product-card .tag {
    top: 14px;
    left: 14px;
    border-color: rgba(38, 57, 27, .22);
    box-shadow: 0 8px 18px rgba(38, 57, 27, .10);
}

.article-hero {
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
    gap: clamp(34px, 4vw, 72px);
}

.gallery,
.gallery-main,
.thumbs {
    min-width: 0;
}

.article-info {
    min-width: 0;
}

.article-info h1 {
    overflow-wrap: anywhere;
}

.gallery-main {
    height: min(62vh, 620px);
}

.article-price-line {
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.article-price-line:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 16px 30px rgba(38, 57, 27, .11);
    background: rgba(255, 255, 255, .95);
}

.footer [data-phone] {
    text-decoration: none;
}

@media (max-width: 900px) {
    .product-card-image {
        height: 235px;
    }

    .article-hero {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 34px;
    }

    .article-info {
        position: static;
        top: auto;
    }

    .gallery-main {
        height: min(58vh, 430px);
    }

    .thumbs {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 82px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        padding: 0 0 12px;
    }

    .thumb {
        scroll-snap-align: start;
    }

    .gallery-arrow {
        top: calc(min(58vh, 430px) / 2);
    }
}
