/* =============================================
   MAYEUL DE LA HAMAYDE - MINI-SITE
   Design v2 - Modern, editorial, rounded
   ============================================= */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =============================================
   PALETTE — Navy / Gold + touches aubergine
   ============================================= */

/* PALETTE — Navy / Gold */
:root {
    --bg-main: #FDFCF9;
    --bg-soft: #F5F3EE;
    --text-main: #1F3459;
    --text-muted: #5A6478;
    --brand-dark: #1F3459;
    --brand-bronze: #9F8451;
    --navy: #1F3459;
    --navy-dark: #152544;
    --gold: #9F8451;
    --gold-light: #B89A62;
    --aubergine: #33032F;
    --ivory: #FDFCF9;
    --cream: #F5F3EE;
    --white: #FFFFFF;
    --text: #1F3459;
    --text-light: #5A6478;
    --border: #E0D9CE;
    --border-light: #EAE4DA;
}





/* --- Tokens partagés (non-couleur) --- */
:root {
    --shadow-sm: 0 2px 8px rgba(33, 26, 23, 0.04);
    --shadow-md: 0 8px 30px rgba(33, 26, 23, 0.08);
    --shadow-lg: 0 20px 60px rgba(33, 26, 23, 0.12);
    --font-title: 'Playfair Display', serif;
    --font-alt: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    --container: 1240px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background-color: #ffffff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold);
}

ul {
    list-style: none;
}

/* --- Skip Link (accessibility) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 1rem;
}

/* --- Utility --- */
.section {
    padding: 4rem 0;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section__label {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2rem;
}

.section__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background: var(--gold);
}

.section__label--light {
    color: var(--gold-light);
}

.section__label--light::before {
    background: var(--gold-light);
}

.section__title {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.section__title--light {
    color: var(--white);
}

.section__intro {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    border-radius: 50px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.vins__header-content .btn,
.cigares__content .btn,
.inventaires__footer .btn {
    margin-top: 2rem;
}

.btn--primary {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn--primary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(159, 132, 81, 0.3);
}

.btn--outline {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--border);
}

.btn--outline:hover {
    border-color: var(--navy);
    background-color: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
}

.btn--full {
    width: 100%;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition);
}

.nav--scrolled {
    box-shadow: var(--shadow-md);
}

.nav__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav__logo-mark {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
}


.nav__logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav__logo-name {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.2;
}

.nav__logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav__links {
    display: none;
    align-items: center;
    list-style: none;
}

.nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    z-index: 999;
}

.nav__links.active a {
    display: block;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--text);
}

.nav__links.active .nav__cta {
    margin-top: 0.5rem;
    text-align: center;
    border-radius: 50px !important;
}

.nav__links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-light);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    transition: color var(--transition), background var(--transition);
}

.nav__links a:hover {
    color: var(--navy);
}

.nav__links a.active {
    color: var(--navy);
    background: var(--cream);
}

.nav__cta {
    padding: 0.55rem 1.4rem !important;
    background: var(--navy);
    color: var(--white) !important;
    border-radius: 50px;
}

.nav__cta:hover {
    background: var(--gold) !important;
    color: var(--white) !important;
}

.nav__cta.active {
    background: var(--gold) !important;
    color: var(--white) !important;
    font-weight: 500;
}

.nav__cta.active::after {
    display: none;
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: var(--navy);
    transition: all 0.25s ease;
    border-radius: 2px;
    transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
    padding-top: 150px;
    padding-bottom: 5rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.hero__container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    margin-bottom: 1rem;
}

.hero__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero__overtitle {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    margin-bottom: 1.2rem;
}

.hero__title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255,255,255,0.92);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero__ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* --- Sub-hero facts bar --- */
.subhero {
    background: var(--cream);
    border-bottom: 1px solid var(--border-light);
    padding: 2rem 0;
}

.subhero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
}

.subhero__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
}

.subhero__link {
    display: flex;
    line-height: 0;
    opacity: 0.75;
    transition: opacity var(--transition);
}

.subhero__link:hover {
    opacity: 1;
}

.subhero__logo {
    height: 44px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    margin-bottom: 0.25rem;
}

.subhero__map {
    height: 44px;
    width: auto;
    margin-bottom: 0.25rem;
}

.subhero__item strong {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
}

.subhero__item span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
}

.hero .btn--primary {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.hero .btn--primary:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
}

.hero .btn--outline {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.hero .btn--outline:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

/* Hero Slider — full-height background */
.hero__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy) 0%, rgba(31, 52, 89, 0.85) 30%, rgba(31, 52, 89, 0.3) 55%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero__slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.hero__slide {
    flex: 0 0 100%;
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    height: 100%;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
    transition: transform var(--transition);
}

.hero__slide:hover img {
    transform: scale(1.03);
}

.hero__slide-label {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 280px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 2;
    transition: all var(--transition);
    cursor: pointer;
}

.hero__slide-label:hover {
    background: #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    transform: translateY(-2px);
}

.hero__slide-label strong {
    display: block;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.hero__slide-label p {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

.hero__slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    gap: 0.4rem;
    z-index: 2;
}

.hero__slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero__slider-dot--active {
    background: #fff;
    transform: scale(1.2);
}



/* --- À propos --- */
.apropos {
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.apropos__grid {
    display: grid;
    align-items: start;
}

.apropos__aside {
    order: -1;
}

.apropos__text p {
    margin-bottom: 1.4rem;
    color: var(--text-light);
    line-height: 1.85;
    font-size: 0.95rem;
}

.apropos__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.apropos__contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--navy);
    padding: 0.8rem 1.4rem;
    background: var(--cream);
    border-radius: 50px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.apropos__contact a svg {
    flex-shrink: 0;
    color: var(--gold);
}

.apropos__contact a:hover {
    color: var(--navy);
    border-color: var(--gold);
}

.apropos__aside {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.apropos__quote {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: none;
    position: relative;
}

.apropos__quote::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: var(--font-title);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.apropos__quote p {
    font-family: var(--font-alt);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--navy);
    margin-bottom: 1rem;
}

.apropos__quote cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.apropos__portrait {
    overflow: visible;
    position: relative;
}

.apropos__portrait > img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.apropos__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.75rem 1.4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.apropos__brand-mark {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
}

.apropos__brand-text {
    display: flex;
    flex-direction: column;
}

.apropos__brand-name {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--navy);
    line-height: 1.2;
}

.apropos__brand-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

/* --- CTA Visual section --- */
.cta-visual {
    display: flex;
    min-height: 560px;
    max-height: 560px;
    overflow: hidden;
}

.cta-visual__image {
    flex: 0 0 52%;
    overflow: hidden;
}

.cta-visual__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-visual:hover .cta-visual__image img {
    transform: scale(1.03);
}

.cta-visual__text {
    flex: 1;
    background: var(--cream);
    display: flex;
    align-items: center;
    padding: 2.5rem 3.5rem;
}

.cta-visual__inner {
    max-width: 460px;
}

.cta-visual__rule {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.cta-visual__quote {
    border: none;
    padding: 0;
    margin: 0 0 1.8rem;
}

.cta-visual__quote p {
    font-family: var(--font-alt);
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-style: italic;
    color: var(--navy);
    line-height: 1.65;
    margin-bottom: 1.4rem;
}

.cta-visual__quote cite {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-style: normal;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cta-visual__domains {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    line-height: 2;
    opacity: 0.7;
}

#citation .cta-visual__text {
    padding: 2rem 3rem;
}

@media (max-width: 768px) {
    .cta-visual {
        flex-direction: column;
    }
    .cta-visual__image {
        flex: 0 0 280px;
        width: 100%;
    }
    .cta-visual__text,
    #citation .cta-visual__text {
        padding: 2.5rem 1.5rem 5rem;
    }
}

/* --- Expertises / Carousel --- */
.expertises {
    background: var(--navy);
    padding-bottom: 5rem;
}

.expertises .section__label {
    color: var(--gold-light);
}

.expertises .section__label::before {
    background: var(--gold-light);
}

.expertises .section__title {
    color: var(--white);
}

.expertises .section__intro {
    color: rgba(255,255,255,0.7);
}

.expertises__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.carousel__controls {
    display: flex;
    gap: 0.5rem;
}

.carousel__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--navy);
}

.carousel__btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.carousel {
    overflow: hidden;
    padding: 0 1.5rem;
    max-width: var(--container);
    margin: 0 auto;
}

.carousel__track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.carousel__track:active {
    cursor: grabbing;
}

.carousel__card {
    flex: 0 0 85%;
    min-width: 240px;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.carousel__card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--navy);
    transition: transform var(--transition);
}

.carousel__card:hover .carousel__card-img {
    transform: scale(1.05);
}

.carousel__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.carousel__card-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.carousel__card-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* --- Expertise Panel (click-to-open) --- */
.expertise-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
    background: var(--cream);
    padding: 0 0;
}

.expertise-panel--open {
    max-height: 600px;
    opacity: 1;
    padding: 3rem 0;
}

.expertise-panel .container {
    position: relative;
}

.expertise-panel__close {
    position: absolute;
    top: 0;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--white);
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.expertise-panel__close:hover {
    background: var(--navy);
    color: var(--white);
}

.expertise-panel__inner {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.expertise-panel__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.expertise-panel__img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.expertise-panel__title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1rem;
}

.expertise-panel__text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.carousel__card {
    cursor: pointer;
}

/* --- Expertises Detail --- */
.expertises-detail {
    background: var(--ivory);
    padding-top: 0;
}

.expertises-detail__grid {
    display: grid;
    gap: 2rem;
}

.expertise-block {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.expertise-block:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.expertise-block__title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1rem;
}

.expertise-block__text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.expertise-block__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.expertise-block__tags li {
    padding: 0.4rem 1rem;
    background: var(--cream);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--navy);
}

.expertise-block__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    transition: all var(--transition);
}

.expertise-block__link:hover {
    color: var(--navy);
    border-color: var(--navy);
}

/* --- Galerie visuelle --- */
.galerie {
    padding: 2rem 0;
    background: var(--ivory);
}

.galerie__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.galerie__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.galerie__item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.galerie__item:hover img {
    transform: scale(1.03);
}

.galerie__item--large img {
    height: 280px;
}

/* --- Citation intermédiaire --- */
.citation {
    background: var(--white);
    padding: 4rem 0;
}

.citation__inner {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.citation__block {
    padding: 0;
    border: none;
}

.citation__block p {
    font-family: var(--font-alt);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.citation__block cite {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-style: normal;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.citation__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.citation__visual img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* --- Inventaires --- */
.inventaires {
    background: var(--white);
}

.inventaires__header {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.inventaires__header-visual {
    border-radius: var(--radius-lg);
    overflow: visible;
}

.inventaires__header-visual img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.inventaires__visual {
    margin-top: 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.inventaires__visual img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.inventaires__desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
}

.inventaires__grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.inventaire-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.inventaire-card__number {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.inventaire-card__title {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.inventaire-card__text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.75;
}

.inventaire-card__link {
    display: inline-block;
    margin-top: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

.inventaire-card__link:hover {
    color: var(--navy);
}

.inventaires__reassurance {
    font-family: var(--font-alt);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--navy);
    padding: 1.5rem 2rem;
    background: var(--cream);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
}

/* --- Implantation --- */
.implantation {
    background: var(--ivory);
}

.implantation__text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
}

.implantation__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.implantation__tag {
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--navy);
    transition: all var(--transition);
}

.implantation__tag:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.implantation__tag--accent {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.implantation__tag--accent:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.implantation__visual {
    margin-top: 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.implantation__visual img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* --- Vins --- */
.vins {
    background-color: var(--white);
}

.vins__header {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.vins__header-visual {
    border-radius: var(--radius-lg);
    overflow: visible;
}

.vins__header-visual img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.vins__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

/* --- Baijiu --- */
.baijiu {
    background: var(--aubergine);
    padding: 3.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.baijiu::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(159, 132, 81, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.baijiu__inner {
    max-width: 1100px;
    position: relative;
    z-index: 1;
}

.baijiu__grid {
    display: grid;
    gap: 2rem;
}

.baijiu__visual {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.baijiu__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 0.75rem;
}

.baijiu__gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: block;
}

.baijiu__gallery .baijiu__gallery-full {
    grid-column: 1 / -1;
    height: 180px;
}

.baijiu__content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.3rem;
    font-size: 1rem;
    line-height: 1.8;
}

.baijiu__highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.baijiu__highlight {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.baijiu__highlight-value {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-light);
}

.baijiu__highlight-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

.baijiu__list {
    list-style: none;
    margin-top: 1.2rem;
    padding: 0;
}

.baijiu__list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.baijiu__list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.baijiu__list li strong {
    color: rgba(255,255,255,0.95);
}

.baijiu__quote {
    margin-top: 2rem;
    padding: 0;
    border: none;
}

.baijiu__quote p {
    font-family: var(--font-alt);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.6;
}

/* --- Ventes --- */
.ventes {
    background-color: var(--ivory);
}

.ventes__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.vente-item {
    padding: 0.9rem 1.6rem;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.vente-item:hover {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.vente-item__name {
    font-family: var(--font-alt);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
}

.ventes__infos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.ventes__info {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.ventes__info strong {
    display: block;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

/* --- Processus --- */
.processus {
    background-color: var(--white);
}

.processus__header {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.processus__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.processus__visual img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.processus__grid {
    display: grid;
    margin-top: 3rem;
}

.processus__step {
    background: var(--cream);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.processus__step:hover {
    background: var(--cream);
}

.processus__number {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 1.2rem;
    display: block;
}

.processus__step-title {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.processus__step-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
}

.processus__cta {
    margin-top: 3rem;
    text-align: center;
}

/* --- Équipe --- */
.equipe {
    background-color: var(--white);
}

.equipe__header {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.equipe__header .section__intro {
    margin-bottom: 0;
}

.equipe__grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}

.equipe__member {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.equipe__member:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.equipe__member-name {
    font-family: var(--font-title);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.equipe__member-role {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

.equipe__logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.equipe__logo-link {
    display: inline-block;
    transition: opacity 0.2s;
}

.equipe__logo-link:hover {
    opacity: 0.7;
}

.equipe__logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.equipe__contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.88rem;
    color: var(--text-light);
}

.equipe__contact a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.equipe__contact a:hover {
    color: var(--navy);
}

/* --- Contact --- */
.contact {
    background: var(--ivory);
}

.contact__grid {
    display: grid;
    align-items: start;
}

.contact__text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 400;
}

.contact__detail svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--gold);
}

.contact__links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact__links a {
    font-size: 0.85rem;
    color: var(--gold);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.contact__links a:hover {
    border-bottom-color: var(--gold);
}

/* --- Form --- */
.contact__form-wrapper {
    background: var(--cream);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
}

.form__row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form__group {
    margin-bottom: 1rem;
}

.form__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form__input {
    width: 100%;
    padding: 0.85rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    appearance: none;
}

.form__input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(159, 132, 81, 0.08);
}

.form__input::placeholder {
    color: #B8B8B8;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__file {
    padding: 0.7rem;
    font-size: 0.82rem;
}

.form__hint {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 0.3rem;
    display: block;
}

/* --- Footer --- */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

.footer__col-title {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.footer__name {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.footer__role {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.footer__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 320px;
    font-weight: 300;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__nav li a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    transition: color var(--transition);
}

.footer__nav li a:hover {
    color: var(--gold-light);
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__contact-list li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.footer__contact-list li a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}

.footer__contact-list li a:hover {
    color: var(--gold-light);
}

.footer__col--partners {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__partner-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
}

.footer__partner-logo {
    height: 28px;
    width: auto;
    margin-bottom: 0.6rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__partner-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

.footer__partner-card a {
    font-size: 0.85rem;
    color: var(--gold-light);
    transition: color var(--transition);
}

.footer__partner-card a:hover {
    color: var(--white);
}

.footer__bottom p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    line-height: 1.6;
}

.footer__bottom a {
    color: var(--gold-light);
    transition: color var(--transition);
}

.footer__bottom a:hover {
    color: var(--white);
}

.footer__legal-links {
    margin-top: .4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
    font-size: .78rem !important;
    color: rgba(255,255,255,.45) !important;
}

.footer__legal-links a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color var(--transition);
}

.footer__legal-links a:hover {
    color: var(--gold-light);
}

/* =============================================
   RESPONSIVE - MOBILE FIRST (min-width)
   Base styles = mobile, enhanced upward
   ============================================= */

/* --- Mobile only --- */
@media (max-width: 768px) {
    .hero__slide-label {
        display: none;
    }

    .processus__step {
        padding-bottom: 3.5rem;
    }

    .processus__grid {
        gap: 1.5rem;
    }

}

/* --- 480px+ --- */
@media (min-width: 481px) {
    .hero__ctas {
        flex-direction: row;
        width: auto;
    }

    .btn {
        width: auto;
    }

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

    .carousel__card {
        flex: 0 0 80%;
        height: 320px;
    }

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

    .galerie__item--large {
        grid-column: span 2;
    }

    .galerie__item img {
        height: 240px;
    }

    .galerie__item--large img {
        height: 320px;
    }
}

/* --- 769px+ --- */
@media (min-width: 769px) {
    .section {
        padding: 6rem 0;
    }

    .container {
        padding: 0 2rem;
    }

    .nav__links {
        display: flex;
        position: static;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: row;
        padding: 0;
        border-bottom: none;
        gap: 0.5rem;
    }

    .nav__toggle {
        display: none;
    }

    .hero {
        min-height: 75vh;
        padding-top: 150px;
        padding-bottom: 5rem;
        display: flex;
        align-items: center;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 2rem;
    }

    .hero__avatar {
        width: 56px;
        height: 56px;
    }

    .hero__ctas {
        flex-direction: row;
        width: auto;
    }

    .subhero__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .subhero__item {
        text-align: center;
        align-items: center;
    }

    .apropos__grid {
        grid-template-columns: 1.3fr 1fr;
        gap: 5rem;
    }

    .apropos__aside {
        order: 0;
    }

    .carousel {
        padding: 0 2rem;
    }

    .carousel__card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 260px;
        height: 380px;
    }

    .expertises__header {
        align-items: center;
    }

    .expertise-panel__inner {
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
    }

    .expertise-panel__img img {
        height: 300px;
    }

    .expertises-detail__grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .inventaires__header {
        grid-template-columns: 1.4fr 1fr;
        align-items: start;
    }

    .inventaires__header-visual img {
        height: 240px;
    }

    .inventaires__visual img {
        height: 300px;
    }

    .implantation__visual img {
        height: 280px;
    }

    .vins__header {
        grid-template-columns: 1.4fr 1fr;
        align-items: start;
    }

    .vins__header-visual img {
        height: 240px;
    }

    .vins__header-visual--offset,
    .inventaires__header-visual--offset {
        margin-left: 3rem;
        height: 200px;
    }

    .baijiu__grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: start;
    }

    .baijiu__gallery img {
        height: 240px;
    }

    .baijiu__gallery .baijiu__gallery-full {
        height: 200px;
    }

    .citation__inner {
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
    }

    .citation__visual img {
        height: 300px;
    }

    .citation__block p {
        font-size: 1.5rem;
    }

    .processus__header {
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
    }

    .processus__visual img {
        height: 260px;
    }

    .processus__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .equipe__header {
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
    }

    .equipe__logos {
        flex-direction: column;
        align-items: flex-end;
    }

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

    .contact {
        margin: 0 2rem;
        border-radius: var(--radius-xl);
        padding: 5rem 4rem;
    }

    .contact__grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 5rem;
    }

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

    .baijiu {
        margin: 0 2rem;
        border-radius: var(--radius-xl);
        padding: 5rem 4rem;
    }

    .baijiu__highlights {
        flex-direction: row;
        gap: 3rem;
    }

    .footer__top {
        grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
        gap: 3rem;
    }

    .contact__form-wrapper {
        padding: 3rem;
    }
}

/* --- 1025px+ --- */
@media (min-width: 1025px) {
    .section {
        padding: 7rem 0;
    }

    .carousel__card {
        flex: 0 0 calc(33.333% - 1rem);
        min-width: 280px;
    }

    .processus__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .equipe__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .galerie__item img {
        height: 300px;
    }

    .galerie__item--large img {
        height: 400px;
    }

    .citation {
        padding: 6rem 0;
    }

    .citation__block p {
        font-size: 1.7rem;
    }
}

/* --- Animations --- */
@media (prefers-reduced-motion: no-preference) {
    .carousel__card,
    .processus__step,
    .equipe__member,
    .vente-item,
    .apropos__quote,
    .apropos__portrait,
    .expertise-block,
    .inventaire-card,
    .implantation__tag,
    .galerie__item,
    .citation__block,
    .citation__visual,
    .inventaires__header-visual,
    .inventaires__visual,
    .implantation__visual,
    .vins__header-visual,
    .baijiu__visual,
    .processus__visual {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .carousel__card.visible,
    .processus__step.visible,
    .equipe__member.visible,
    .vente-item.visible,
    .apropos__quote.visible,
    .apropos__portrait.visible,
    .expertise-block.visible,
    .inventaire-card.visible,
    .implantation__tag.visible,
    .galerie__item.visible,
    .citation__block.visible,
    .citation__visual.visible,
    .inventaires__header-visual.visible,
    .inventaires__visual.visible,
    .implantation__visual.visible,
    .vins__header-visual.visible,
    .baijiu__visual.visible,
    .processus__visual.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   NEW SECTIONS - Restructured site
   ============================================= */

/* --- Hero badges --- */
.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.hero__badge {
    font-size: 0.72rem;
    font-family: var(--font-body);
    font-weight: 400;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.02em;
}

/* --- Expertise Cards (no carousel) --- */
.expertises__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.expertise-card {
    display: block;
    text-decoration: none;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.expertise-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.expertise-card:hover .expertise-card__link::after {
    transform: translateX(4px);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-card__number {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    display: block;
}

.expertise-card__title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.expertise-card__text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.expertise-card__link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.expertise-card__link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.expertise-card__icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    color: var(--navy);
    opacity: 0.1;
    transition: opacity var(--transition);
    pointer-events: none;
}

.expertise-card:hover .expertise-card__icon {
    opacity: 0.3;
}

/* --- Tags (shared) --- */
.tag {
    display: inline-block;
    font-size: 0.78rem;
    font-family: var(--font-body);
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    background: var(--cream);
    color: var(--navy);
    border: 1px solid var(--border-light);
}

.tag--sm {
    font-size: 0.7rem;
    padding: 0.28rem 0.65rem;
}

/* --- Vins tags under h2 --- */
.vins__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
}

/* --- Internal sections background gradient --- */
.vins,
.cigares,
.inventaires {
    background: linear-gradient(to bottom, var(--cream), var(--white));
}

/* --- Vins Résultats Carousel --- */
.vins__resultats {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-light);
}

.vins__resultats-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.vins__resultats-intro {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.vins__carousel {
    position: relative;
}

.vins__carousel-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.5rem;
}

.vins__carousel-track::-webkit-scrollbar {
    display: none;
}

.vins__result-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

.lot-photo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 1rem;
    background: #f0ede8;
}

.lot-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lot-photo[src=""] {
    display: none;
}

.lot-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #b8b0a4;
    pointer-events: none;
}

.lot-photo[src=""]:not([src]) ~ .lot-photo-placeholder,
.lot-photo[src=""] + .lot-photo-placeholder {
    display: flex;
}

.lot-photo:not([src=""]) + .lot-photo-placeholder {
    display: none;
}

.vins__result-lot {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    display: block;
}

.vins__result-name {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.vins__result-detail {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.vins__result-price {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.vins__carousel-nav {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.vins__carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.vins__carousel-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* --- Prochaine Vente section (style baijiu) --- */
.prochaine-vente {
    background: #2a4470;
    padding: 3.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.prochaine-vente::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(159, 132, 81, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.prochaine-vente .container {
    position: relative;
    z-index: 1;
}

.prochaine-vente .section__label {
    color: var(--gold);
}

.prochaine-vente .section__title {
    color: var(--white);
}

.prochaine-vente .section__intro {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.prochaine-vente__content > p {
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.prochaine-vente p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 0.92rem;
}

.prochaine-vente__pill {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--white);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-right: 0.75rem;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.prochaine-vente__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.prochaine-vente__details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.12);
}

.prochaine-vente__detail strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.prochaine-vente__detail span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.92);
    font-weight: 400;
}

.prochaine-vente__detail span a {
    color: rgba(255,255,255,0.92);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}

.prochaine-vente__detail span a:hover {
    color: var(--gold-light);
}

.prochaine-vente__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.prochaine-vente .btn--primary {
    background-color: var(--gold);
    border-color: var(--gold);
}

.prochaine-vente .btn--primary:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
}

.prochaine-vente .btn--outline {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.3);
}

.prochaine-vente .btn--outline:hover {
    color: var(--white);
    border-color: var(--white);
}

.prochaine-vente__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.prochaine-vente__visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

@media (min-width: 769px) {
    .prochaine-vente {
        margin: 0 2rem;
        border-radius: var(--radius-xl);
        padding: 5rem 4rem;
    }

    .prochaine-vente__grid {
        grid-template-columns: 1fr 1.4fr;
        gap: 3rem;
    }

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

    .prochaine-vente__visual img {
        height: 100%;
        min-height: 420px;
    }
}

/* --- Cigares section --- */
.cigares__grid {
    display: grid;
    gap: 3rem;
}

.cigares__content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.3rem;
    font-size: 0.95rem;
}

.cigares__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
}

.cigares__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cigares__visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* --- Mobilier section --- */
.mobilier__grid {
    display: grid;
    gap: 3rem;
}

.mobilier__content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.3rem;
    font-size: 0.95rem;
}

.mobilier__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mobilier__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.mobilier__visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* --- Ventes & Résultats --- */
.ventes__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.ventes__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* --- Inventaires footer --- */
.inventaires__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.inventaires__link {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

.inventaires__link:hover {
    color: var(--navy);
}

/* --- Section CTA --- */
.section__cta {
    margin-top: 2.5rem;
}

/* --- Form RGPD --- */
.form__rgpd {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.5;
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 1rem 0;
    cursor: pointer;
}

.form__checkbox input {
    margin-top: 0.2rem;
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    flex-shrink: 0;
    cursor: pointer;
}

.form__checkbox span {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
}

.form__checkbox a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* --- Stacked visuals (vins & inventaires) --- */
.vins__header-visual--stacked,
.inventaires__header-visual--stacked {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vins__header-visual--stacked img,
.inventaires__header-visual--stacked img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    display: block;
}

.vins__header-visual--stacked img:first-child,
.inventaires__header-visual--stacked img:first-child {
    height: 220px;
}

.vins__header-visual--offset,
.inventaires__header-visual--offset {
    height: 180px;
    margin-left: 2rem;
}

/* --- FAQ --- */
.faq {
    background: var(--white);
}

.faq__layout {
    display: grid;
    gap: 3rem;
}

.faq__grid {
    display: grid;
    gap: 0;
    max-width: 800px;
}

.faq__photos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq__photos img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.faq__photos--offset {
    margin-left: 2rem;
}

.faq__photos--offset-right {
    margin-right: 2rem;
}

@media (max-width: 768px) {
    .vins__header-visual--offset,
    .inventaires__header-visual--offset {
        margin-left: 0;
    }

    .faq__photos--offset {
        margin-left: 0;
    }

    .faq__photos--offset-right {
        margin-right: 0;
    }
}

.faq__item {
    border-bottom: 1px solid var(--border-light);
}

.faq__item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    margin-left: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
    content: '−';
}

.faq__item[open] .faq__question {
    color: var(--gold);
}

.faq__answer {
    padding: 0 0 1.5rem;
}

.faq__answer p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 680px;
}

/* --- FAQ responsive --- */
@media (min-width: 769px) {
    .faq__layout {
        grid-template-columns: 1.4fr 0.6fr;
        align-items: start;
    }

    .faq__photos img {
        height: 180px;
    }

    .faq__photos--offset {
        margin-left: 3rem;
    }

    .faq__photos--offset-right {
        margin-right: 3rem;
    }
}

/* --- Responsive: Expertise cards --- */
@media (min-width: 481px) {
    .expertises__cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1025px) {
    .expertises__cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .cigares__grid {
        grid-template-columns: 1.4fr 0.8fr;
        align-items: start;
    }

    .mobilier__grid {
        grid-template-columns: 1fr 1.3fr;
        align-items: start;
    }

    .cigares__visual img {
        height: 100%;
        min-height: 440px;
    }

    .mobilier__visual img {
        height: 100%;
        min-height: 400px;
    }
}

/* --- Scroll reveal for new elements --- */
@media (prefers-reduced-motion: no-preference) {
    .expertise-card,
    .cigares__visual,
    .mobilier__visual,
    .tag {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .expertise-card.visible,
    .cigares__visual.visible,
    .mobilier__visual.visible,
    .tag.visible {
        opacity: 1;
        transform: translateY(0);
    }
}
