:root {
    --wine: #861d1d;
    --wine-dark: #5c2e15;
    --text: #1f1f1f;
    --muted: #555;
    --card: rgba(255, 255, 255, 0.92);
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    --radius: 22px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        linear-gradient(rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62)),
        url("../img/autres/fond_bois.jpg") center / cover fixed;
}

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

.about-page {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 36px 20px 70px;
}

.hero-about {
    position: relative;
    min-height: 520px;
    margin-bottom: 40px;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../img/autres/illustration.png") center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.hero-content {
    max-width: 850px;
    padding: 40px;
    color: #fff;
    text-align: center;
}

.about-kicker {
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 900;
    font-size: 0.85rem;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-family: Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.05;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-section {
    margin-bottom: 34px;
}

.about-grid,
.about-values-wrapper,
.values-grid {
    display: grid;
    gap: 28px;
}

.about-grid,
.about-values-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

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

.about-text-card,
.about-card,
.quote-section,
.seo-section,
.value-card,
.about-image-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.about-text-card,
.about-card,
.quote-section,
.seo-section,
.value-card {
    padding: 34px;
}

.about-text-card h2,
.about-card h2,
.values-section h2,
.seo-section h2 {
    margin-bottom: 18px;
    color: var(--wine);
    font-family: Georgia, serif;
    font-size: 2rem;
}

.about-text-card p,
.about-card p,
.seo-section p,
.section-header p,
.value-card p {
    color: var(--muted);
    line-height: 1.8;
}

.about-text-card p+p,
.about-card p+p {
    margin-top: 14px;
}

.about-image-card {
    overflow: hidden;
    min-height: 360px;
}

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

.quote-section {
    margin-bottom: 36px;
    text-align: center;
}

.quote-section blockquote {
    margin-bottom: 14px;
    color: var(--wine-dark);
    font-family: Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-style: italic;
    line-height: 1.5;
}

.quote-section span {
    color: #666;
    font-weight: 700;
}

.values-section {
    margin-bottom: 36px;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.value-card {
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
    transform: translateY(-6px);
}

.value-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.value-card h3 {
    margin-bottom: 14px;
    color: var(--wine);
    font-size: 1.35rem;
}

.seo-section {
    text-align: center;
}

.fade-slide {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-slide.visible {
    opacity: 1;
    transform: translateY(0);
}
.hero-about {
    position: relative;
    min-height: 520px;
    margin-bottom: 40px;
    border-radius: 30px;
    overflow: hidden;

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

    box-shadow: var(--shadow);
}

/* IMAGE FLOUTÉE */
.hero-about::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("../img/autres/champs_de_vigne.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: blur(4px);
    transform: scale(1.08);

    z-index: 1;
}

/* CONTENU AU-DESSUS */
.hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    padding: 40px;

    text-align: center;
    color: white;
}.hero-about {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 30px;

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

    box-shadow: var(--shadow);
}

/* IMAGE DE FOND */
.hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("/img/autres/verre.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: blur(5px);
    transform: scale(1.08);

    z-index: 1;
}

/* TEXTE */
.hero-content {
    position: relative;
    z-index: 2;

    text-align: center;
    color: white;

    max-width: 850px;
    padding: 40px;
}

@media (max-width: 980px) {

    .about-grid,
    .about-values-wrapper,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-about {
        min-height: 430px;
    }
}

@media (max-width: 640px) {
    .about-page {
        padding: 20px 14px 50px;
    }

    .hero-about {
        min-height: 360px;
        border-radius: 22px;
    }

    .hero-content {
        padding: 24px;
    }

    .about-text-card,
    .about-card,
    .quote-section,
    .seo-section,
    .value-card {
        padding: 24px;
        border-radius: 18px;
    }

    .about-text-card h2,
    .about-card h2,
    .values-section h2,
    .seo-section h2 {
        font-size: 1.6rem;
    }
}