﻿/* ════════════════════════════════════════════════════════
   PAGE HERO
════════════════════════════════════════════════════════ */
.overview-hero {
    width: 100%;
    height: 78vh;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.overview-hero::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 10, 22, 0.38) 0%,
        rgba(6, 10, 22, 0.05) 45%,
        rgba(6, 10, 22, 0.58) 100%
    );
}

.overview-hero-label {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.overview-hero-eyebrow {
    font-family: "Jost", sans-serif;
    font-size: 0.60rem;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.50);
}

.overview-hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-shadow: 0 2px 32px rgba(6,10,22,0.30);
    margin: 0;
}

.overview-hero-title em {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.12em;
}

/* ════════════════════════════════════════════════════════
   QUOTE INTRO
════════════════════════════════════════════════════════ */
.suites-intro-quote {
    margin-top: 20px;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #9B7E54;
    letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════════════════
   INTRO CHIFFRÉE
════════════════════════════════════════════════════════ */
.overview-intro {
    background: #FDFAF5;
    padding: 80px max(5vw, 48px) 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.overview-intro-text .section-text {
    margin-bottom: 0;
}

.overview-intro-facts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 48px;
    border-left: 1px solid rgba(197, 180, 154, 0.35);
}

.overview-fact {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.overview-fact-value {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 400;
    color: #1B2744;
    letter-spacing: 0.03em;
}

.overview-fact-label {
    font-family: "Jost", sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C5B49A;
}

/* ════════════════════════════════════════════════════════
   SECTIONS NARRATIVES (splits)
   Réutilise les classes .standard-split de suites.css
════════════════════════════════════════════════════════ */

/* ── Badge Millésime ── */
.overview-millesime {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.15rem;
    color: #9B7E54;
    margin-bottom: 4px;
}

.overview-millesime::before {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: #C5B49A;
}

/* ── Badge localisation ── */
.overview-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Jost", sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #9B7E54;
    border: 1px solid rgba(155, 126, 84, 0.40);
    padding: 5px 12px;
    width: fit-content;
    border-radius: 2px;
}

/* ── Badge PMR ── */
.overview-pmr-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    font-family: "Jost", sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #6B7A8D;
    border: 1px solid rgba(107, 122, 141, 0.35);
    padding: 5px 12px;
    width: fit-content;
    border-radius: 2px;
}

.overview-pmr-badge svg {
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   LISTE DES PIÈCES
════════════════════════════════════════════════════════ */
.suite-rooms {
    list-style: none;
    margin: 20px 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(197, 180, 154, 0.25);
}

.suite-room {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(197, 180, 154, 0.18);
}

.suite-room-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.suite-room-name {
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1B2744;
}

.suite-room-m2 {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: "Cormorant Garamond", serif;
    font-size: 0.95rem;
    color: #9B7E54;
    white-space: nowrap;
    flex-shrink: 0;
}

.room-area-icon {
    width: 11px;
    height: 11px;
    color: #C5B49A;
    position: relative;
    top: -1px;
}

.suite-room-desc {
    font-family: "Jost", sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9B8E7A;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════
   HEADER NARRATIF — avant les splits
════════════════════════════════════════════════════════ */
.overview-narrative-header {
    background: #FDFAF5;
    padding: 96px max(5vw, 48px) 0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.overview-narrative-header .section-text {
    margin: 0 auto;
}

/* ════════════════════════════════════════════════════════
   TEASERS — 4 sous-pages
════════════════════════════════════════════════════════ */
.overview-teasers {
    background: #FDFAF5;
    padding: 96px max(5vw, 48px) 104px;
}

.overview-teasers-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}

.overview-teasers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.overview-teaser-card {
    position: relative;
    display: block;
    text-decoration: none;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(27, 39, 68, 0.08);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.overview-teaser-card:hover {
    box-shadow: 0 10px 40px rgba(27, 39, 68, 0.13);
    transform: translateY(-4px);
}

.overview-teaser-card-img {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.overview-teaser-card:hover .overview-teaser-card-img {
    transform: scale(1.05);
}

.overview-teaser-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to top, rgba(10,7,3,0.72) 0%, rgba(10,7,3,0) 55%);
    z-index: 1;
}

.overview-teaser-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
}

.overview-teaser-name {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.overview-teaser-sub {
    font-family: "Jost", sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.52);
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .overview-teasers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .overview-hero { height: 60vh; min-height: 360px; }
    .overview-hero-label { padding-bottom: 40px; }

    .overview-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 56px 24px 48px;
    }

    .overview-intro-facts {
        padding-left: 24px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 28px 40px;
    }

    .overview-teasers {
        padding: 72px 20px 80px;
    }

    .overview-teasers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .overview-teaser-card {
        aspect-ratio: 3/4;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .overview-teasers-grid {
        grid-template-columns: 1fr;
    }

    .overview-teaser-card {
        aspect-ratio: 16/10;
    }
}
