/* =========================================================
   GLOBAL HARMONIE — LANDING PAGE ATELIER BAZI
   ========================================================= */

:root {
    --bazi-cream: #f7f1e8;
    --bazi-blush: #efd8d7;
    --bazi-plum: #7d2b58;
    --bazi-plum-dark: #4b1835;
    --bazi-gold: #c68b52;
    --bazi-text: #4b352d;
    --bazi-white: #fffaf5;
    --bazi-line: rgba(125, 43, 88, 0.18);
    --font-title: "Cormorant Garamond", serif;
    --font-body: "Montserrat", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.bazi-page {
    margin: 0;
    background: var(--bazi-cream);
    color: var(--bazi-text);
    font-family: Arial, Helvetica, sans-serif;
}

.bazi-shell {
    width: min(1380px, calc(100% - 80px));
    margin-inline: auto;
}

.bazi-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 241, 232, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(125, 43, 88, 0.08);
}

.bazi-topbar-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.bazi-brand img {
    width: 150px;
    height: auto;
    display: block;
}

.bazi-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.bazi-nav a,
.bazi-footer a {
    color: inherit;
    text-decoration: none;
}

.bazi-nav a {
    font-size: 14px;
    opacity: 0.82;
}

.bazi-nav a:hover,
.bazi-nav a.active {
    color: var(--bazi-plum);
    opacity: 1;
}

.bazi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 34px;
    border: 1px solid rgba(255,255,255,.18);
    background: var(--bazi-plum);
    color: white !important;
    font-weight: 700;
    text-decoration: none;
    transition: .2s ease;
}

.bazi-btn:hover {
    transform: translateY(-2px);
    background: var(--bazi-plum-dark);
}

.bazi-btn-small {
    min-height: 46px;
    padding-inline: 22px;
    white-space: nowrap;
}

/* HERO */

.bazi-hero {
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;

    background:
    linear-gradient(
        90deg,
        rgba(62, 14, 40, 0.92) 0%,
        rgba(73, 20, 49, 0.78) 42%,
        rgba(73, 20, 49, 0.48) 70%,
        rgba(73, 20, 49, 0.40) 100%
    ),
    url("../images/baZi.png") center/cover no-repeat;

    color: var(--bazi-white);
}

.bazi-hero-content {
    position: relative;
    z-index: 2;
    padding-block: 90px;
}

.bazi-kicker,
.bazi-eyebrow,
.bazi-mini-title,
.bazi-final-kicker {
    letter-spacing: .16em;
    font-size: 14px;
    font-weight: 800;
}

.bazi-kicker {
    color: #f2d79e;
    margin-bottom: 28px;
}

.bazi-hero h1,
.bazi-section h2,
.bazi-section h3,
.bazi-final-cta h2,
.bazi-date-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.bazi-hero h1 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(54px, 6.5vw, 96px);
    line-height: .98;
}

.bazi-hero-subtitle {
    margin: 28px 0 42px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.15;
}

.bazi-hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px;
    padding-block: 22px;
    border-top: 1px solid rgba(255,255,255,.25);
    border-bottom: 1px solid rgba(255,255,255,.25);
    font-weight: 700;
}

.bazi-hero-facts span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bazi-hero-text {
    max-width: 760px;
    margin: 36px 0;
    font-size: 22px;
    line-height: 1.55;
}

.bazi-hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.bazi-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.55);
}

/* SECTIONS */

.bazi-section {
    padding: 100px 0;
}

.bazi-section-cream {
    background: var(--bazi-cream);
}

.bazi-section-blush {
    background: var(--bazi-blush);
}

.bazi-section-plum {
    background: var(--bazi-plum);
    color: white;
}

.bazi-two-columns {
    display: grid;
    grid-template-columns: .95fr 1.3fr;
    gap: 90px;
    align-items: start;
}

.bazi-eyebrow {
    color: var(--bazi-gold);
    margin-bottom: 20px;
}

.bazi-section h2,
.bazi-final-cta h2 {
    color: var(--bazi-plum);
    margin: 0;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.08;
}

.bazi-section-plum h2 {
    color: white;
}

.bazi-copy p,
.bazi-presenter p,
.bazi-for-who-grid p {
    font-size: 21px;
    line-height: 1.65;
}

.bazi-copy p:first-child {
    margin-top: 0;
}

/* FEATURES */

.bazi-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 70px;
}

.bazi-feature {
    min-width: 0;
    padding: 0 36px 20px;
    border-left: 1px solid var(--bazi-line);
}

.bazi-feature:first-child {
    padding-left: 0;
    border-left: 0;
}

.bazi-feature:last-child {
    padding-right: 0;
}

.bazi-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bazi-icon {
    color: var(--bazi-plum);
    font-size: 38px;
}

.bazi-index {
    font-family: Georgia, "Times New Roman", serif;
    color: rgba(125, 43, 88, .18);
    font-size: 34px;
}

.bazi-feature h3 {
    color: var(--bazi-plum);
    margin: 45px 0 18px;
    font-size: 31px;
}

.bazi-feature p {
    font-size: 18px;
    line-height: 1.55;
}

.bazi-highlight {
    max-width: 1100px;
    margin: 80px auto 0;
    padding: 22px 30px;
    border-left: 4px solid var(--bazi-gold);
    color: var(--bazi-plum);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    line-height: 1.4;
}

/* JOURNÉE */

.bazi-day {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 65px;
    border-top: 1px solid var(--bazi-line);
    border-bottom: 1px solid var(--bazi-line);
}

.bazi-day article {
    padding: 50px 60px 50px 0;
}

.bazi-day article + article {
    padding-left: 70px;
    border-left: 1px solid var(--bazi-line);
}

.bazi-mini-title {
    color: var(--bazi-gold);
}

.bazi-day h3 {
    color: var(--bazi-plum);
    font-size: 38px;
}

.bazi-checklist {
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
}

.bazi-checklist li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.45;
}

.bazi-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--bazi-gold);
    font-weight: 700;
}

.bazi-day-note {
    max-width: 940px;
    margin: 45px auto 0;
    color: var(--bazi-plum);
    font-family: Georgia, "Times New Roman", serif;
    text-align: center;
    font-size: 26px;
    line-height: 1.45;
}

/* DATES */

.bazi-dates {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px;
    align-items: center;
}

.bazi-eyebrow-gold {
    color: #f1b963;
}

.bazi-dates > div > p:last-child {
    max-width: 520px;
    font-size: 20px;
    line-height: 1.6;
}

.bazi-date-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px 48px;
    border: 1px solid rgba(255,255,255,.28);
}

.bazi-date-status {
    color: #f1b963;
    font-weight: 700;
}

.bazi-date-card h3 {
    margin: 14px 0;
    color: white;
    font-size: 36px;
}

.bazi-date-card p {
    margin: 6px 0;
}

.bazi-btn-gold {
    background: var(--bazi-gold);
    color: #22140f !important;
    border-color: transparent;
}

.bazi-btn-gold:hover {
    background: #d39a62;
}

/* POUR QUI */

.bazi-for-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
}

.bazi-for-who-grid p {
    padding: 18px 0;
    margin: 0;
    border-bottom: 1px solid var(--bazi-line);
}

/* SYLVIE */

.bazi-presenter {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 120px;
    align-items: center;
}

.bazi-presenter-photo {
    position: relative;
    max-width: 520px;
}

.bazi-presenter-photo::before {
    content: "";
    position: absolute;
    inset: 28px -28px -28px 28px;
    border: 1px solid var(--bazi-gold);
}

.bazi-presenter-photo img {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.bazi-signature {
    color: var(--bazi-plum);
    font-family: Georgia, "Times New Roman", serif;
}

/* FAQ */

.bazi-faq-wrap {
    max-width: 1120px;
}

.bazi-faq-wrap > h2 {
    text-align: center;
    margin-bottom: 60px;
}

.bazi-faq details {
    border-top: 1px solid var(--bazi-line);
}

.bazi-faq details:last-child {
    border-bottom: 1px solid var(--bazi-line);
}

.bazi-faq summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 30px 45px 30px 0;
    color: var(--bazi-plum);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.bazi-faq summary::-webkit-details-marker {
    display: none;
}

.bazi-faq summary::after {
    content: "⌄";
    position: absolute;
    right: 6px;
    top: 28px;
    transition: transform .2s ease;
}

.bazi-faq details[open] summary::after {
    transform: rotate(180deg);
}

.bazi-faq details p {
    max-width: 980px;
    padding: 0 45px 30px 0;
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}

/* CTA FINAL */

.bazi-final-cta {
    padding: 100px 0;
    background: var(--bazi-gold);
    text-align: center;
}

.bazi-final-cta h2 {
    color: #27140d;
}

.bazi-final-cta p {
    max-width: 760px;
    margin: 28px auto 35px;
    font-size: 20px;
    line-height: 1.6;
}

.bazi-final-kicker {
    color: #27140d;
}

/* FOOTER */

.bazi-footer {
    background: var(--bazi-plum-dark);
    color: white;
}

.bazi-footer-inner {
    min-height: 120px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.bazi-footer .bazi-brand img {
    width: 170px;
}

.bazi-footer nav {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.bazi-footer nav a {
    opacity: .9;
}

.bazi-footer-bottom {
    padding: 22px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 14px;
    opacity: .8;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .bazi-nav {
        display: none;
    }

    .bazi-topbar-inner .bazi-btn-small {
        margin-left: auto;
    }

    .bazi-features {
        grid-template-columns: 1fr 1fr;
        gap: 40px 0;
    }

    .bazi-feature:nth-child(3) {
        border-left: 0;
        padding-left: 0;
    }

    .bazi-two-columns,
    .bazi-dates,
    .bazi-presenter {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 760px) {
    .bazi-shell {
        width: min(100% - 34px, 1380px);
    }

    .bazi-topbar-inner {
        min-height: 72px;
    }

    .bazi-brand img {
        width: 120px;
    }

    .bazi-btn-small {
        font-size: 13px;
        padding-inline: 14px;
    }

    .bazi-hero {
        min-height: 680px;
        background-position: 62% center;
    }

    .bazi-hero-content {
        padding-block: 70px;
    }

    .bazi-hero h1 {
        font-size: 54px;
    }

    .bazi-hero-subtitle {
        font-size: 30px;
    }

    .bazi-hero-facts {
        flex-direction: column;
        gap: 14px;
    }

    .bazi-hero-text {
        font-size: 18px;
    }

    .bazi-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .bazi-section {
        padding: 70px 0;
    }

    .bazi-section h2,
    .bazi-final-cta h2 {
        font-size: 44px;
    }

    .bazi-features {
        grid-template-columns: 1fr;
    }

    .bazi-feature,
    .bazi-feature:first-child,
    .bazi-feature:nth-child(3) {
        padding: 0 0 32px;
        border-left: 0;
        border-bottom: 1px solid var(--bazi-line);
    }

    .bazi-highlight {
        margin-top: 50px;
        font-size: 24px;
    }

    .bazi-day {
        grid-template-columns: 1fr;
    }

    .bazi-day article,
    .bazi-day article + article {
        padding: 40px 0;
        border-left: 0;
    }

    .bazi-day article + article {
        border-top: 1px solid var(--bazi-line);
    }

    .bazi-date-card {
        align-items: stretch;
        flex-direction: column;
        padding: 32px 26px;
    }

    .bazi-for-who-grid {
        grid-template-columns: 1fr;
    }

    .bazi-presenter {
        gap: 60px;
    }

    .bazi-presenter-photo {
        width: calc(100% - 28px);
    }

    .bazi-footer-inner {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 40px;
        gap: 28px;
    }

    .bazi-footer nav {
        margin-left: 0;
    }
}

/* =========================================================
   GLOBAL HARMONIE — BAZI
   CORRECTION NAVBAR + HERO (V2)
   Remplace le précédent bloc "AJUSTEMENTS HERO + NAVBAR BAZI"
   ========================================================= */

/* NAVBAR DE LANDING PAGE */

body.bazi-page .bazi-topbar {
    background: #f7f1e8;
    border-bottom: 1px solid rgba(125, 43, 88, 0.10);
}

body.bazi-page .bazi-topbar-inner {
    min-height: 108px;
}

body.bazi-page .bazi-brand img {
    width: 155px;
}

body.bazi-page .bazi-nav {
    margin-left: auto;
    gap: 44px;
}

body.bazi-page .bazi-nav a {
    color: #4b352d !important;
    opacity: 1 !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

body.bazi-page .bazi-nav a:hover {
    color: #7d2b58 !important;
}

body.bazi-page .bazi-btn-small {
    margin-left: 22px;
    min-height: 52px;
    padding-inline: 28px;
}


/* HERO */

body.bazi-page .bazi-hero {
    min-height: 650px;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(62, 14, 40, 0.94) 0%,
            rgba(73, 20, 49, 0.82) 42%,
            rgba(73, 20, 49, 0.53) 70%,
            rgba(73, 20, 49, 0.40) 100%
        ),
        url("../images/baZi.png") center/cover no-repeat;
}

body.bazi-page .bazi-hero-content {
    padding-top: 72px;
    padding-bottom: 72px;
    text-align: left;
}

/* Petit surtitre avec trait doré */
body.bazi-page .bazi-kicker {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 28px;
    color: #fffaf5;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-align: left;
}

body.bazi-page .bazi-kicker::before {
    content: "";
    width: 54px;
    height: 1px;
    flex: 0 0 54px;
    background: #c68b52;
}

/* H1 : une ligne sur grand écran, comme la maquette */
body.bazi-page .bazi-hero h1 {
    width: max-content;
    max-width: none;
    margin: 0;
    color: #fffaf5;
    font-size: clamp(60px, 5vw, 82px);
    line-height: 1.02;
    text-align: left;
    white-space: nowrap;
}

/* Sous-titre aligné au H1 */
body.bazi-page .bazi-hero-subtitle {
    max-width: 980px;
    margin: 30px 0 44px;
    color: #fffaf5 !important;
    font-size: clamp(30px, 2.7vw, 43px);
    line-height: 1.15;
    text-align: left;
}

/* Ligne d'informations */
body.bazi-page .bazi-hero-facts {
    justify-content: flex-start;
    max-width: 1050px;
    gap: 42px;
    padding: 22px 0;
    color: #fffaf5;
    text-align: left;
}

/* Texte descriptif */
body.bazi-page .bazi-hero-text {
    max-width: 820px;
    margin: 34px 0;
    color: #fffaf5 !important;
    font-size: 21px;
    line-height: 1.55;
    text-align: left;
}

/* CTA */
body.bazi-page .bazi-hero-actions {
    justify-content: flex-start;
    gap: 30px;
}

/* Évite que les ancres soient cachées sous la navbar sticky */
#atelier,
#programme,
#dates,
#sylvie {
    scroll-margin-top: 120px;
}


/* TABLETTE */

@media (max-width: 1200px) {
    body.bazi-page .bazi-nav {
        gap: 24px;
    }

    body.bazi-page .bazi-hero h1 {
        width: auto;
        max-width: 900px;
        white-space: normal;
    }
}


/* MOBILE */

@media (max-width: 760px) {
    body.bazi-page .bazi-topbar-inner {
        min-height: 76px;
    }

    body.bazi-page .bazi-hero {
        min-height: 680px;
        background-position: 38% center;
    }

    body.bazi-page .bazi-hero h1 {
        width: auto;
        max-width: 100%;
        font-size: 52px;
        white-space: normal;
    }

    body.bazi-page .bazi-kicker::before {
        width: 30px;
        flex-basis: 30px;
    }

    body.bazi-page .bazi-hero-subtitle {
        font-size: 29px;
    }
}

/* =========================================================
   NAVBAR BAZI — VERSION SOMBRE ET COMPACTE
   ========================================================= */

body.bazi-page .bazi-topbar {
    background: #4b1835;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

body.bazi-page .bazi-topbar-inner {
    width: min(1320px, calc(100% - 70px));
    height: 108px;
    min-height: 0;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 210px 1fr auto;
    align-items: center;
    column-gap: 30px;
}

body.bazi-page .bazi-brand img {
    width: 145px;
    height: auto;
}

body.bazi-page .bazi-brand img {
    width: 150px;
    height: auto;
}

body.bazi-page .bazi-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin: 0;
}

body.bazi-page .bazi-nav a {
    color: #fffaf5 !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

body.bazi-page .bazi-nav a:hover {
    color: #f1b963 !important;
}

body.bazi-page .bazi-btn-small {
    margin: 0;
    min-height: 44px;
    padding: 0 24px;

    background: #7d2b58;
    color: #fffaf5 !important;

    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================================================
   SECTION "UNE APPROCHE PERSONNELLE"
   ========================================================= */

body.bazi-page #atelier {
    padding: 95px 0 105px;
    background: #f7f1e8;
}

body.bazi-page #atelier .bazi-two-columns {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 110px;
    align-items: start;
}

/* petit surtitre */
body.bazi-page #atelier .bazi-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;

    margin: 0 0 24px;

    color: #c68b52 !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

body.bazi-page #atelier .bazi-eyebrow::before {
    content: "";
    width: 55px;
    height: 1px;
    flex: 0 0 55px;
    background: #c68b52;
}

/* grand titre gauche */
body.bazi-page #atelier h2 {
    max-width: 620px;
    margin: 0;

    color: #7d2b58 !important;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 4vw, 62px);
    font-weight: 400;
    line-height: 1.08;
}

/* texte droite */
body.bazi-page #atelier .bazi-copy {
    padding-top: 0;
}

body.bazi-page #atelier .bazi-copy p {
    margin: 0 0 28px;

    color: #4b352d !important;

    font-size: 21px;
    font-weight: 400;
    line-height: 1.65;
    text-align: left;
}

body.bazi-page #atelier .bazi-copy p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   TYPOGRAPHIE BAZI
   ========================================================= */

body.bazi-page {
    font-family: "Montserrat", sans-serif;
}

/* Titres éditoriaux */
body.bazi-page h1,
body.bazi-page h2,
body.bazi-page h3,
body.bazi-page .bazi-hero-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

/* Navigation, boutons et petits surtitres */
body.bazi-page .bazi-nav,
body.bazi-page .bazi-btn,
body.bazi-page .bazi-btn-small,
body.bazi-page .bazi-eyebrow {
    font-family: "Montserrat", sans-serif;
}