:root {
    --cream: #f3efe7;
    --cream-2: #e7e0d4;
    --forest: #20382f;
    --forest-deep: #142920;
    --earth: #9a7352;
    --clay: #a86650;
    --ink: #211e1a;
    --white: #fffdf8;
    --line: rgba(33, 30, 26, .16);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Manrope", system-ui, sans-serif;
    --page-x: clamp(20px, 4.5vw, 78px);
    --section-y: clamp(88px, 10vw, 168px);
    --logo-scrolled-h: clamp(84px, 6.5vw, 140px);
    --header-h: calc(var(--logo-scrolled-h) + 28px);
    --ease: cubic-bezier(.32,.72,0,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
}
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
main { overflow: clip; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 22px var(--page-x);
    color: var(--white);
    transition: color .45s var(--ease), padding .45s var(--ease);
}
/* Fond et flou portés par un pseudo-élément : un backdrop-filter sur la barre
   elle-même en ferait le repère du menu mobile (position: fixed). */
.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(243,239,231,.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(33,30,26,.08);
    opacity: 0;
    transition: opacity .45s var(--ease);
}
.site-header.is-scrolled {
    color: var(--ink);
    padding-block: 14px;
}
.site-header.is-scrolled::before { opacity: 1; }
.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: 200px;
}
.brand-logo { object-fit: contain; }
.brand-logo--labarboire {
    width: auto;
    height: clamp(130px, 10.5vw, 230px);
    transition: height .45s var(--ease), filter .45s var(--ease);
}
.is-scrolled .brand-logo--labarboire { height: var(--logo-scrolled-h); filter: brightness(0); }
.brand-logo--aldana {
    width: clamp(220px, 17vw, 400px);
    height: auto;
    filter: brightness(10);
    opacity: .92;
    transition: width .45s var(--ease), filter .45s var(--ease);
}
.is-scrolled .brand-logo--aldana { width: clamp(160px, 11vw, 260px); filter: brightness(0); }
.brand-cross { opacity: .55; }
.brand-fallback {
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: .09em;
    line-height: .9;
    font-size: 17px;
}
.brand-fallback small {
    font-family: var(--sans);
    font-size: 7px;
    letter-spacing: .28em;
    font-weight: 500;
}
.desktop-nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 38px);
    font-size: 13px;
}
.desktop-nav a { opacity: .88; }
.desktop-nav a:hover { opacity: 1; }
.header-cta {
    font-size: 12px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
}
.header-cta span { margin-left: 8px; }
.menu-toggle, .mobile-menu { display: none; }

.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    color: var(--white);
}
.hero__image, .final-cta > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8,18,14,.18) 0%, rgba(8,18,14,.06) 36%, rgba(8,18,14,.62) 100%);
}
.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 var(--page-x) clamp(58px, 8vh, 96px);
}
.eyebrow {
    margin: 0 0 18px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 500;
}
.eyebrow--light { color: rgba(255,255,255,.78); }
.hero h1 {
    margin: 0;
    max-width: 950px;
    font-family: var(--serif);
    font-size: clamp(60px, 8vw, 132px);
    font-weight: 400;
    line-height: .87;
    letter-spacing: -.035em;
}
.hero__footer {
    margin-top: 42px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
}
.hero__footer p {
    margin: 0;
    color: rgba(255,255,255,.82);
}
.text-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    width: fit-content;
    font-size: 13px;
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
}
.text-link span {
    transition: transform .4s var(--ease);
}
.text-link:hover span { transform: translate(4px,-3px); }
.text-link--light { color: var(--white); }
.hero__scroll {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: .7;
}

.section {
    padding: var(--section-y) var(--page-x);
}
/* Arrivée sur une ancre : le titre reste sous la barre fixe. */
.section[id] {
    scroll-margin-top: max(0px, calc(var(--header-h) + 16px - var(--section-y)));
}
.section-kicker {
    margin: 0 0 24px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .24em;
    font-weight: 600;
}
.section-kicker--light { color: rgba(255,255,255,.58); }
.display {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(54px, 6.2vw, 108px);
    line-height: .94;
    font-weight: 400;
    letter-spacing: -.035em;
}
.display--sm { font-size: clamp(46px, 4.6vw, 80px); }
.display--light { color: var(--white); }

.intro {
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, .5fr);
    align-items: end;
    gap: 8vw;
}
.intro__copy {
    margin: 0 0 10px;
    max-width: 430px;
    color: rgba(33,30,26,.66);
    font-size: 17px;
}

.retreats { background: #faf7f0; }
.section-heading {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 4vw;
    align-items: start;
    margin-bottom: 80px;
}
.retreat {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
    padding-top: 28px;
    margin-top: 72px;
}
.retreat--featured {
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
}
.retreat--secondary {
    grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr);
    width: 76%;
    margin-left: auto;
}
.retreat__visual {
    position: relative;
    overflow: hidden;
    min-height: 620px;
}
.retreat--secondary .retreat__visual { min-height: 430px; order: 2; }
.retreat__visual img {
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}
.retreat:hover .retreat__visual img { transform: scale(1.025); }
.retreat__index {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: rgba(243,239,231,.93);
    border-radius: 50%;
    font-size: 11px;
}
.retreat__body {
    padding: 36px 0 10px 52px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.retreat--secondary .retreat__body { padding: 36px 52px 10px 0; }
.retreat__body h3 {
    font-family: var(--serif);
    font-size: clamp(42px, 4.2vw, 70px);
    font-weight: 400;
    line-height: .95;
    margin: 0 0 18px;
}
.retreat__body > p:not(.eyebrow) {
    color: rgba(33,30,26,.62);
    margin: 0;
}
.retreat__meta {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin: 44px 0 32px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 12px;
}

.section--dark {
    background: var(--forest-deep);
    color: var(--white);
}
.spaces__heading {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    margin-bottom: 80px;
}
.spaces__heading .display { grid-column: 2; }
.spaces__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
    gap: 8vw;
    align-items: end;
}
.space-card { margin: 0; }
.space-card img {
    aspect-ratio: 4/5;
    object-fit: cover;
}
.space-card figcaption {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding-top: 22px;
}
.space-card figcaption > span {
    font-size: 11px;
    opacity: .5;
}
.space-card h3 {
    font-family: var(--serif);
    font-size: 36px;
    margin: 0;
    font-weight: 400;
}
.space-card p {
    margin: 4px 0 0;
    opacity: .62;
    font-size: 13px;
}
.spaces__list {
    border-top: 1px solid rgba(255,255,255,.18);
}
.spaces__list a {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 14px;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
}
.spaces__list span { opacity: .4; font-size: 10px; }
.spaces__list strong {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
}
.spaces__list em {
    font-style: normal;
    opacity: .5;
    font-size: 11px;
}

.seasons__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: end;
    margin-bottom: 56px;
}
.seasons__tabs {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}
.season-tab {
    border: 0;
    background: transparent;
    color: rgba(33,30,26,.5);
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid transparent;
}
.season-tab.is-active {
    color: var(--ink);
    border-color: var(--ink);
}
.season-stage {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
}
.season-stage__image {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    transition: opacity .45s var(--ease), transform .8s var(--ease);
}
.season-stage.is-switching .season-stage__image { opacity: .2; transform: scale(1.01); }
.season-stage__copy {
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(620px, 65%);
    background: var(--cream);
    padding: 38px 46px 10px 0;
}
.season-stage__text {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(30px, 3vw, 52px);
    line-height: 1.04;
}

.aurane {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 10vw;
    background: #f8f3ed;
    align-items: center;
}
.aurane__copy p:not(.section-kicker) {
    max-width: 520px;
    color: rgba(33,30,26,.62);
    margin: 34px 0;
}
.aurane__portrait {
    position: relative;
    min-height: 760px;
}
.aurane__portrait > img {
    height: 100%;
    min-height: 760px;
    object-fit: cover;
}
.aurane__signature {
    position: absolute;
    right: 30px;
    bottom: 28px;
    width: 150px;
}
.aurane__signature img { filter: none; }

.preparation {
    background: var(--cream-2);
}
.preparation__intro {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 4vw;
    margin-bottom: 88px;
}
.preparation__intro .display { grid-column: 2; }
.journey {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}
.journey__step {
    min-height: 300px;
    padding: 28px 28px 24px 0;
    border-right: 1px solid var(--line);
}
.journey__step + .journey__step { padding-left: 28px; }
.journey__step:last-child { border-right: 0; }
.journey__step > span {
    font-size: 10px;
    letter-spacing: .14em;
    opacity: .5;
}
.journey__step h3 {
    margin: 74px 0 14px;
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
}
.journey__step p {
    margin: 0;
    font-size: 13px;
    color: rgba(33,30,26,.62);
}

.table-section {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 7vw;
    align-items: center;
}
.table-section__image img {
    min-height: 680px;
    object-fit: cover;
}
.table-section__copy > p:not(.section-kicker) {
    margin: 30px 0;
    color: rgba(33,30,26,.62);
}

.section--quiet {
    min-height: 68vh;
    display: grid;
    place-items: center;
    background: #f8f5ef;
}
.testimonial blockquote {
    margin: 0;
    width: min(1000px, 90%);
    text-align: center;
}
.quote-mark {
    display: block;
    font-family: var(--serif);
    font-size: 100px;
    line-height: .5;
    opacity: .22;
}
.testimonial blockquote p {
    margin: 30px 0;
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 66px);
    line-height: 1.05;
}
.testimonial footer {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    opacity: .55;
}

.final-cta {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: flex-end;
    color: white;
}
.final-cta__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,21,17,.1), rgba(11,21,17,.64));
}
.final-cta__content {
    position: relative;
    z-index: 2;
    padding: 0 var(--page-x) 82px;
}
.button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    margin-top: 34px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
}
.button span { transition: transform .4s var(--ease); }
.button:hover span { transform: translate(4px,-3px); }
.button--light { color: white; }

.footer {
    background: var(--forest);
    color: var(--white);
    padding: 76px var(--page-x) 28px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 54px;
}
.footer__wordmark {
    font-family: var(--serif);
    font-size: 38px;
}
.footer__brand p {
    margin: 2px 0;
    opacity: .56;
    font-size: 11px;
}
.footer__title {
    margin: 0 0 18px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .18em;
    opacity: .55;
}
.footer a {
    display: block;
    margin: 9px 0;
    font-size: 13px;
    color: rgba(255,255,255,.72);
}
.footer__bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,.14);
    padding-top: 24px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    opacity: .5;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Un écran = une section (bureau, format paysage).
   La barre fixe occupe --header-h : chaque section réserve cet espace en haut,
   puis répartit la hauteur restante entre le titre et le visuel. */
@media (min-width: 981px) and (min-height: 560px) and (min-aspect-ratio: 5/4) {
    :root {
        --fit-gap: clamp(20px, 4vh, 56px);
        --fit-space: clamp(24px, 5vh, 72px);
        --fit-h: calc(100dvh - var(--header-h) - 2 * var(--fit-gap));
    }

    .section {
        min-height: 100dvh;
        padding-top: calc(var(--header-h) + var(--fit-gap));
        padding-bottom: var(--fit-gap);
    }
    .section[id] { scroll-margin-top: 0; }

    .display { font-size: clamp(54px, min(6.2vw, 12vh), 108px); }
    .display--sm { font-size: clamp(46px, min(4.6vw, 9vh), 80px); }

    /* Séjours : titre + séjour à la une tiennent dans le premier écran. */
    .retreats__screen {
        display: grid;
        grid-template-rows: auto minmax(0, 1fr);
        min-height: var(--fit-h);
    }
    .section-heading { margin-bottom: var(--fit-space); }
    .retreat { margin-top: var(--fit-space); }
    .retreats__screen .retreat {
        margin-top: 0;
        min-height: 300px;
    }
    .retreat__visual img {
        position: absolute;
        inset: 0;
    }
    .retreat--featured .retreat__visual { min-height: 240px; }
    .retreat--secondary .retreat__visual { min-height: clamp(280px, 48vh, 430px); }
    .retreat__body h3 { font-size: clamp(40px, min(4.2vw, 7.5vh), 70px); }
    .retreat__meta { margin: clamp(20px, 4vh, 44px) 0 clamp(18px, 3vh, 32px); }

    /* Espaces : visuel pleine hauteur à gauche, titre et liste à droite. */
    .spaces {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
        grid-template-rows: auto minmax(0, 1fr);
        column-gap: clamp(40px, 6vw, 120px);
    }
    .spaces__heading {
        display: block;
        grid-column: 2;
        grid-row: 1;
        margin-bottom: var(--fit-space);
    }
    .spaces .display { font-size: clamp(44px, min(4.4vw, 8.5vh), 80px); }
    .spaces__grid { display: contents; }
    .space-card {
        grid-column: 1;
        grid-row: 1 / -1;
        display: flex;
        flex-direction: column;
    }
    .space-card img {
        aspect-ratio: auto;
        flex: 1 1 0;
        height: 0;
        min-height: 240px;
    }
    .spaces__list {
        grid-column: 2;
        grid-row: 2;
        align-self: end;
    }
    .spaces__list a { padding: clamp(10px, 2.4vh, 20px) 0; }
    .spaces__list strong { font-size: clamp(22px, 3.4vh, 28px); }

    /* Saisons : la scène prend la hauteur qui reste sous le titre. */
    .seasons {
        display: flex;
        flex-direction: column;
    }
    .seasons__top { margin-bottom: var(--fit-space); }
    .season-stage {
        flex: 1 1 0;
        min-height: 260px;
    }
    .season-stage__text { font-size: clamp(28px, min(3vw, 5.4vh), 52px); }

    /* Aurane et table : le visuel occupe exactement l'écran utile. */
    .aurane__portrait { min-height: 0; height: max(320px, var(--fit-h)); }
    .aurane__portrait > img {
        position: absolute;
        inset: 0;
        min-height: 0;
    }
    .table-section__image img {
        min-height: 0;
        height: max(320px, var(--fit-h));
    }

    /* Préparation et citation : contenu centré sous la barre. */
    .preparation {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .preparation__intro { margin-bottom: var(--fit-space); }
    .journey__step h3 { margin-top: clamp(28px, 8vh, 74px); }
    .testimonial blockquote p { font-size: clamp(34px, min(4vw, 7.2vh), 66px); }

    .final-cta { min-height: 100dvh; }
}

@media (max-width: 980px) {
    .desktop-nav, .header-cta { display: none; }
    .site-header { grid-template-columns: 1fr auto; }
    .menu-toggle {
        display: inline-grid;
        width: 44px;
        height: 44px;
        place-content: center;
        gap: 6px;
        border: 0;
        background: transparent;
        color: currentColor;
        cursor: pointer;
    }
    .menu-toggle span {
        display: block;
        width: 22px;
        height: 1px;
        background: currentColor;
        transition: transform .35s var(--ease);
    }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

    .mobile-menu {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(20,41,32,.98);
        color: white;
        padding: 120px var(--page-x) 50px;
        transform: translateY(-105%);
        transition: transform .55s var(--ease);
        z-index: -1;
    }
    .mobile-menu.is-open { transform: translateY(0); }
    .site-header.is-menu-open { color: var(--white); }
    .site-header.is-menu-open .brand-logo--labarboire { filter: none; }
    .mobile-menu nav { display: grid; gap: 12px; }
    .mobile-menu a {
        font-family: var(--serif);
        font-size: 42px;
        line-height: 1;
        padding: 7px 0;
    }
    .mobile-menu__cta {
        margin-top: 30px;
        font-family: var(--sans) !important;
        font-size: 14px !important;
    }

    .intro__grid,
    .section-heading,
    .spaces__heading,
    .seasons__top,
    .preparation__intro {
        grid-template-columns: 1fr;
    }
    .spaces__heading .display,
    .preparation__intro .display { grid-column: auto; }
    .retreat--featured,
    .retreat--secondary {
        width: 100%;
        grid-template-columns: 1fr;
    }
    .retreat--secondary .retreat__visual { order: 0; }
    .retreat__body,
    .retreat--secondary .retreat__body { padding: 30px 0 0; }
    .spaces__grid,
    .aurane,
    .table-section {
        grid-template-columns: 1fr;
    }
    .journey { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    :root {
        --page-x: 20px;
        --section-y: 86px;
        --logo-scrolled-h: 68px;
    }
    .site-header { padding-top: 15px; }
    .brand-logo--aldana, .brand-cross { display: none; }
    .brand-logo--labarboire { height: 104px; }
    .brand-lockup { min-width: 0; }
    .hero { min-height: 94dvh; }
    .hero h1 { font-size: clamp(52px, 15vw, 72px); }
    .hero__footer {
        align-items: start;
        flex-direction: column;
        margin-top: 30px;
    }
    .hero__scroll { display: none; }

    .intro { min-height: auto; }
    .intro__grid { gap: 36px; }
    .display { font-size: clamp(47px, 14vw, 66px); }
    .display--sm { font-size: clamp(43px, 12vw, 58px); }

    .retreat__visual,
    .retreat--secondary .retreat__visual { min-height: 0; aspect-ratio: 4/5; }
    .retreat__body h3 { font-size: 48px; }

    .spaces__heading { margin-bottom: 46px; }
    .space-card figcaption { grid-template-columns: 38px 1fr; }
    .spaces__list a { grid-template-columns: 34px 1fr; }
    .spaces__list em { grid-column: 2; }
    .spaces__list strong { font-size: 25px; }

    .seasons__tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .season-tab { white-space: nowrap; }
    .season-stage { min-height: 76vh; }
    .season-stage__copy {
        width: 92%;
        padding: 26px 24px 6px 0;
    }

    .aurane__portrait, .aurane__portrait > img { min-height: 560px; }
    .aurane__copy { order: 2; }

    .journey { grid-template-columns: 1fr; }
    .journey__step,
    .journey__step + .journey__step {
        min-height: 0;
        padding: 26px 0 32px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .journey__step h3 { margin: 28px 0 10px; }

    .table-section__image img { min-height: 500px; }
    .section--quiet { min-height: 60vh; }

    .footer { grid-template-columns: 1fr 1fr; gap: 34px 28px; }
    .footer__brand { grid-column: 1 / -1; }
    .footer > div:nth-child(4) { grid-column: 1 / -1; }
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
    .reveal { opacity: 1; transform: none; }
}
