/*
 * Page d'accueil 2026 — expérience éditoriale, catalogue et réservation.
 * Les styles sont volontairement isolés sous .home-modern afin de ne pas
 * modifier les autres écrans du site.
 */

.home-modern {
    --home-ink: #071b2b;
    --home-ink-soft: #53677c;
    --home-teal: #0c8f87;
    --home-teal-dark: #08736e;
    --home-mint: #20c98b;
    --home-mint-soft: #dff9f1;
    --home-sky: #eaf8fb;
    --home-warm: #ffb547;
    --home-coral: #ff6b5f;
    --home-line: rgba(7, 27, 43, .11);
    --home-surface: #fff;
    --home-shadow-sm: 0 18px 48px rgba(9, 34, 48, .09);
    --home-shadow-md: 0 28px 75px rgba(9, 34, 48, .15);
    --home-radius-xl: 38px;
    --home-radius-lg: 28px;
    --home-radius-md: 20px;
    color: var(--home-ink);
    background:
        radial-gradient(circle at 4% 18%, rgba(32, 201, 139, .08), transparent 25rem),
        #fbfdfd;
    overflow: clip;
}

.home-modern *,
.home-modern *::before,
.home-modern *::after {
    box-sizing: border-box;
}

.home-modern a {
    text-decoration: none;
}

.home-modern :where(a, button, summary):focus-visible {
    outline: 3px solid #ffb547;
    outline-offset: 4px;
}

/* Le contenu principal reste lisible même si JavaScript est indisponible. */
.home-modern .reveal-up {
    opacity: 1;
    transform: none;
}

.home-section {
    position: relative;
    padding-block: clamp(4.5rem, 8vw, 8.5rem);
}

.home-section__header {
    max-width: 760px;
    margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.home-section__header--split {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.5rem;
}

.home-section__header--split > div {
    max-width: 780px;
}

.home-section__header--center {
    margin-inline: auto;
    text-align: center;
}

.home-section__header h2,
.home-how__intro h2,
.home-faq__intro h2,
.home-final-cta__content h2 {
    margin: .85rem 0 1rem;
    color: var(--home-ink);
    font-size: clamp(2.15rem, 4vw, 4.25rem);
    font-weight: 900;
    line-height: 1.01;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.home-section__header p,
.home-how__intro > p,
.home-faq__intro > p,
.home-final-cta__content > p {
    margin: 0;
    color: var(--home-ink-soft);
    font-size: clamp(1rem, 1.4vw, 1.17rem);
    line-height: 1.75;
    text-wrap: pretty;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    width: fit-content;
    padding: .55rem .85rem;
    border: 1px solid rgba(12, 143, 135, .16);
    border-radius: 999px;
    background: rgba(12, 143, 135, .09);
    color: var(--home-teal-dark);
    font-size: .76rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .105em;
    text-transform: uppercase;
}

.home-kicker--warm {
    border-color: rgba(255, 181, 71, .22);
    background: rgba(255, 181, 71, .14);
    color: #95580a;
}

.home-kicker--light {
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.home-text-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: .75rem;
    padding-block: .8rem;
    color: var(--home-ink);
    font-weight: 850;
}

.home-text-link i {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border-radius: 50%;
    background: var(--home-mint-soft);
    color: var(--home-teal-dark);
    transition: transform .25s ease, background-color .25s ease;
}

.home-text-link--light {
    color: #fff;
}

.home-text-link--light i {
    background: rgba(255, 255, 255, .13);
    color: #fff;
}

.home-button {
    display: inline-flex;
    min-height: 3.65rem;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    padding: .9rem 1.45rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 850;
    line-height: 1.1;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.home-button--primary {
    background: linear-gradient(135deg, var(--home-teal), var(--home-mint));
    box-shadow: 0 15px 35px rgba(12, 143, 135, .25);
    color: #fff;
}

.home-button--ghost {
    border-color: var(--home-line);
    background: #fff;
    color: var(--home-ink);
}

.home-button--light {
    background: #fff;
    color: var(--home-ink);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.home-button--outline-light {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.home-section__actions {
    display: flex;
    justify-content: center;
    gap: .8rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Hero */

.home-hero {
    position: relative;
    min-height: clamp(700px, 84vh, 900px);
    display: flex;
    align-items: center;
    padding-block: clamp(4.2rem, 7vw, 7.3rem);
    background:
        linear-gradient(120deg, rgba(235, 251, 248, .98), rgba(246, 251, 255, .97) 58%, rgba(255, 249, 239, .92)),
        #f1fbfa;
    isolation: isolate;
}

.home-hero__texture {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .32;
    background-image: radial-gradient(rgba(7, 27, 43, .17) .75px, transparent .75px);
    background-size: 22px 22px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.home-hero__glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.home-hero__glow--one {
    width: 31rem;
    height: 31rem;
    top: -14rem;
    left: -10rem;
    background: radial-gradient(circle, rgba(32, 201, 139, .19), transparent 70%);
}

.home-hero__glow--two {
    width: 25rem;
    height: 25rem;
    right: 2%;
    bottom: -12rem;
    background: radial-gradient(circle, rgba(255, 181, 71, .19), transparent 70%);
}

.home-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr);
    gap: clamp(2.2rem, 5vw, 6rem);
    align-items: center;
}

.home-kicker--hero {
    margin-bottom: 1.45rem;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 8px 30px rgba(7, 27, 43, .07);
    backdrop-filter: blur(12px);
}

.home-hero h1 {
    max-width: 830px;
    margin: 0;
    color: var(--home-ink);
    font-size: clamp(3.25rem, 6.5vw, 7.25rem);
    font-weight: 950;
    line-height: .91;
    letter-spacing: -.074em;
    text-wrap: balance;
}

.home-hero h1 span {
    display: block;
    margin-top: .1em;
    background: linear-gradient(100deg, var(--home-teal), var(--home-mint) 66%, #0fae9b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.home-hero__lead {
    max-width: 720px;
    margin: 1.65rem 0 0;
    color: var(--home-ink-soft);
    font-size: clamp(1.05rem, 1.55vw, 1.28rem);
    line-height: 1.75;
    text-wrap: pretty;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.home-button--hero {
    min-height: 4rem;
    padding-inline: 1.7rem;
}

.home-button--hero-ghost {
    min-height: 4rem;
    border-color: rgba(7, 27, 43, .12);
    background: rgba(255, 255, 255, .76);
    color: var(--home-ink);
    backdrop-filter: blur(10px);
}

.home-hero__trust {
    display: flex;
    gap: .7rem 1.2rem;
    margin-top: 1.55rem;
    color: #3f5b6d;
    font-size: .88rem;
    font-weight: 750;
    flex-wrap: wrap;
}

.home-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.home-hero__trust i {
    color: var(--home-teal);
}

.home-hero__quick-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .7rem;
    max-width: 720px;
    margin-top: 2.1rem;
}

.home-hero__quick-stat {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: .7rem;
    padding: .85rem;
    border: 1px solid rgba(7, 27, 43, .09);
    border-radius: 18px;
    background: rgba(255, 255, 255, .69);
    color: var(--home-ink);
    box-shadow: 0 12px 35px rgba(7, 27, 43, .06);
    backdrop-filter: blur(10px);
}

.home-hero__quick-icon {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    background: var(--home-mint-soft);
    color: var(--home-teal-dark);
}

.home-hero__quick-stat > span:last-child {
    min-width: 0;
}

.home-hero__quick-stat strong,
.home-hero__quick-stat small {
    display: block;
}

.home-hero__quick-stat strong {
    overflow: hidden;
    font-size: 1.08rem;
    line-height: 1.12;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-hero__quick-stat small {
    margin-top: .18rem;
    color: var(--home-ink-soft);
    font-size: .71rem;
    font-weight: 700;
}

.home-hero__visual {
    position: relative;
    min-width: 0;
    padding: .7rem;
}

.home-hero-showcase {
    position: relative;
    z-index: 1;
}

.home-hero-showcase::before {
    position: absolute;
    z-index: -1;
    content: "";
    inset: 8% -4% -4% 8%;
    border-radius: 45px;
    background: linear-gradient(150deg, rgba(32, 201, 139, .22), rgba(255, 181, 71, .19));
    transform: rotate(3deg);
}

.home-hero-showcase__viewport {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, .88);
    border-radius: clamp(28px, 4vw, 48px);
    background: #0b3b42;
    box-shadow: var(--home-shadow-md);
}

.home-hero-showcase__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-hero-slide {
    position: absolute;
    display: block;
    visibility: hidden;
    opacity: 0;
    inset: 0;
    color: #fff;
    pointer-events: none;
    transform: scale(1.035);
    transition: opacity .65s ease, transform 1.1s ease, visibility .65s;
}

.home-hero-slide.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.home-hero-slide__media,
.home-hero-slide__media img,
.home-hero-slide__shade {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.home-hero-slide__media img {
    object-fit: cover;
}

.home-hero-slide__shade {
    background:
        linear-gradient(180deg, rgba(3, 21, 30, .08) 28%, rgba(3, 21, 30, .87) 100%),
        linear-gradient(90deg, rgba(3, 21, 30, .16), transparent 50%);
}

.home-hero-slide__top {
    position: absolute;
    top: 1.35rem;
    right: 1.35rem;
    left: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.home-hero-slide__tag,
.home-hero-slide__offers {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem .8rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(4, 29, 39, .42);
    color: #fff;
    font-size: .73rem;
    font-weight: 850;
    backdrop-filter: blur(12px);
}

.home-hero-slide__content {
    position: absolute;
    right: clamp(1.3rem, 4vw, 2.4rem);
    bottom: clamp(1.5rem, 4vw, 2.6rem);
    left: clamp(1.3rem, 4vw, 2.4rem);
    display: block;
}

.home-hero-slide__content small {
    display: block;
    margin-bottom: .45rem;
    color: #bff6df;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.home-hero-slide__content > strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 950;
    line-height: .96;
    letter-spacing: -.05em;
    text-wrap: balance;
}

.home-hero-slide__content > span:not(.home-hero-slide__link) {
    display: -webkit-box;
    max-width: 90%;
    overflow: hidden;
    margin-top: .85rem;
    color: rgba(255, 255, 255, .82);
    font-size: .96rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.home-hero-slide__link {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-top: 1.1rem;
    color: #fff;
    font-weight: 850;
}

.home-hero-showcase__controls {
    position: absolute;
    z-index: 4;
    right: 1.2rem;
    bottom: -1.45rem;
    left: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}

.home-hero-showcase__arrow {
    display: grid;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(7, 27, 43, .1);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 28px rgba(7, 27, 43, .14);
    color: var(--home-ink);
    cursor: pointer;
    place-items: center;
}

.home-hero-showcase__dots {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .62rem .8rem;
    border: 1px solid rgba(7, 27, 43, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 28px rgba(7, 27, 43, .11);
}

.home-hero-showcase__dot {
    width: .48rem;
    height: .48rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #b5c8ca;
    cursor: pointer;
    transition: width .25s ease, background-color .25s ease;
}

.home-hero-showcase__dot.is-active {
    width: 1.55rem;
    background: var(--home-teal);
}

.home-hero__floating-card {
    position: relative;
    z-index: 5;
    display: flex;
    max-width: min(90%, 390px);
    align-items: center;
    gap: .8rem;
    margin-block-start: 4rem;
    margin-inline-start: auto;
    padding: .85rem 1rem;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 20px;
    background: rgba(255, 255, 255, .91);
    box-shadow: 0 18px 45px rgba(7, 27, 43, .18);
    color: var(--home-ink);
    backdrop-filter: blur(15px);
}

.home-hero__floating-card > i {
    margin-inline-start: auto;
    color: var(--home-teal);
}

.home-hero__floating-icon {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--home-teal), var(--home-mint));
    color: #fff;
}

.home-hero__floating-card small,
.home-hero__floating-card strong {
    display: block;
}

.home-hero__floating-card small {
    color: var(--home-ink-soft);
    font-size: .72rem;
}

.home-hero__floating-card strong {
    margin-top: .15rem;
    font-size: .93rem;
}

/* Réassurance */

.home-assurance {
    position: relative;
    z-index: 3;
    border-block: 1px solid var(--home-line);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 20px 50px rgba(7, 27, 43, .04);
}

.home-assurance__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-assurance__item {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: .85rem;
    padding: 1.25rem clamp(.8rem, 1.5vw, 1.4rem);
}

.home-assurance__item + .home-assurance__item {
    border-inline-start: 1px solid var(--home-line);
}

.home-assurance__item .home-assurance__icon {
    display: grid;
    width: 2.65rem;
    height: 2.65rem;
    flex: 0 0 auto;
    align-items: center;
    justify-items: center;
    place-items: center;
    border-radius: 14px;
    background: var(--home-mint-soft);
    color: var(--home-teal-dark);
}

.home-assurance__icon i {
    display: block;
    margin: 0;
    line-height: 1;
}

.home-assurance__item strong,
.home-assurance__item span {
    display: block;
}

.home-assurance__item strong {
    font-size: .92rem;
}

.home-assurance__item div > span {
    margin-top: .18rem;
    color: var(--home-ink-soft);
    font-size: .73rem;
    line-height: 1.4;
}

/* Catégories */

.home-experiences {
    background:
        radial-gradient(circle at 85% 12%, rgba(32, 201, 139, .11), transparent 22rem),
        #fff;
}

.home-category-slider {
    position: relative;
    /* L'ancien composant global utilise une grille. Les flèches de cette
       variante étant absolues, la grille réduisait le viewport à 56 px. */
    display: block;
    width: 100%;
    padding-inline: 3.85rem;
}

.home-modern .categories-slider__viewport {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 28px;
    /* Pas de fondu blanc : les cartes restent nettes jusqu'aux extrémités. */
    mask-image: none;
    -webkit-mask-image: none;
}

.home-modern .categories-slider__track {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 1.25rem;
    transition: transform .55s cubic-bezier(.22, .75, .22, 1);
    will-change: transform;
}

.home-modern .categories-slider__item {
    min-width: 0;
    flex: 0 0 calc((100% - 2.5rem) / 3);
}

.home-category-card {
    display: flex;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius-lg);
    background: #fff;
    box-shadow: var(--home-shadow-sm);
    color: var(--home-ink);
    flex-direction: column;
}

.home-category-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #c9f3e8, #fce7b3);
}

.home-category-card__media img,
.home-category-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    object-fit: cover;
    place-items: center;
}

.home-category-card__placeholder {
    color: var(--home-teal);
    font-size: 3rem;
}

.home-category-card__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(3, 21, 30, .42));
}

.home-category-card__count {
    position: absolute;
    right: .85rem;
    bottom: .85rem;
    padding: .48rem .68rem;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    background: rgba(4, 29, 39, .56);
    color: #fff;
    font-size: .72rem;
    font-weight: 850;
    backdrop-filter: blur(10px);
}

.home-category-card__body {
    display: flex;
    min-height: 0;
    padding: 1.35rem;
    flex: 1 1 auto;
    flex-direction: column;
}

.home-category-card__type {
    color: var(--home-teal-dark);
    font-size: .71rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.home-category-card__body > strong {
    margin-top: .55rem;
    font-size: 1.45rem;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.home-category-card__description {
    display: -webkit-box;
    overflow: hidden;
    margin-top: .65rem;
    color: var(--home-ink-soft);
    font-size: .92rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.home-category-card__link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-top: auto;
    padding-top: 1rem;
    color: var(--home-ink);
    font-weight: 850;
}

.home-modern .categories-slider__arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
    border: 1px solid var(--home-line);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 14px 35px rgba(7, 27, 43, .14);
    color: var(--home-ink);
    cursor: pointer;
    place-items: center;
    transform: translateY(-50%);
}

.home-modern .categories-slider__arrow--prev {
    left: 0;
}

.home-modern .categories-slider__arrow--next {
    right: 0;
}

.home-modern .categories-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    min-height: 1.7rem;
    margin-top: 1.35rem;
}

.home-modern .categories-slider__dot {
    width: .5rem;
    height: .5rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #bfd0d2;
    cursor: pointer;
    transition: width .25s ease, background-color .25s ease;
}

.home-modern .categories-slider__dot.is-active {
    width: 1.7rem;
    background: var(--home-teal);
}

/* Offres */

.home-featured {
    background:
        radial-gradient(circle at 5% 95%, rgba(255, 181, 71, .13), transparent 25rem),
        #f4f9fa;
}

.home-featured__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 1.5rem);
}

.home-featured__item,
.home-featured__item .offre-card {
    min-width: 0;
    height: 100%;
}

.home-modern .offre-card {
    display: flex;
    border: 1px solid rgba(7, 27, 43, .09);
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 17px 45px rgba(7, 27, 43, .08);
    flex-direction: column;
}

.home-modern .offre-card__image-wrap {
    aspect-ratio: 4 / 3;
}

.home-modern .offre-card__body {
    display: flex;
    padding: 1.15rem;
    flex: 1 1 auto;
    flex-direction: column;
}

.home-modern .offre-card__top {
    gap: .5rem;
    margin-bottom: .65rem;
}

.home-modern .offre-card__category,
.home-modern .offre-card__type {
    font-size: .72rem;
}

.home-modern .offre-card__type {
    padding: .35rem .5rem;
}

.home-modern .offre-card__title {
    font-size: clamp(1.08rem, 1.5vw, 1.28rem);
    line-height: 1.18;
}

.home-modern .offre-card__description {
    margin-top: .7rem;
    font-size: .84rem;
    line-height: 1.5;
}

.home-modern .offre-card__footer {
    margin-top: auto;
    padding-top: 1rem;
    align-items: center;
}

.home-modern .offre-card__price {
    font-size: 1.2rem;
}

.home-modern .offre-card .btn--sm {
    min-height: 2.7rem;
    padding: .65rem .85rem;
    border-radius: 999px;
}

/* Destinations */

.home-destinations {
    background: #fff;
}

.home-destinations__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.home-destination-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--home-radius-lg);
    background: #0c4748;
    box-shadow: var(--home-shadow-sm);
    color: #fff;
}

.home-destination-card:first-child {
    grid-column: span 2;
}

.home-destination-card__media,
.home-destination-card__media img,
.home-destination-card__placeholder,
.home-destination-card__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.home-destination-card__media img {
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.home-destination-card__placeholder {
    display: grid;
    background: linear-gradient(135deg, #096c68, #20c98b);
    color: rgba(255, 255, 255, .7);
    font-size: 4rem;
    place-items: center;
}

.home-destination-card__overlay {
    background: linear-gradient(180deg, rgba(2, 17, 25, .06) 30%, rgba(2, 17, 25, .9) 100%);
}

.home-destination-card__content {
    position: absolute;
    right: 1.5rem;
    bottom: 1.4rem;
    left: 1.5rem;
}

.home-destination-card__meta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: .5rem;
    color: #baf4db;
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-destination-card__content > strong {
    display: block;
    font-size: clamp(1.8rem, 3.2vw, 3.4rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.home-destination-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: .85rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .82);
    font-size: .86rem;
    font-weight: 750;
}

/* Parcours */

.home-how {
    background:
        radial-gradient(circle at 8% 85%, rgba(32, 201, 139, .22), transparent 27rem),
        radial-gradient(circle at 94% 12%, rgba(255, 181, 71, .18), transparent 22rem),
        var(--home-ink);
    color: #fff;
}

.home-how__layout {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(500px, 1.22fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.home-how__intro {
    position: sticky;
    top: 8rem;
}

.home-how__intro h2,
.home-how__intro > p {
    color: #fff;
}

.home-how__intro > p {
    color: rgba(255, 255, 255, .68);
}

.home-how__intro .home-button {
    margin-top: 1.8rem;
}

.home-how__steps {
    display: grid;
    gap: .85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-how__step {
    position: relative;
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(14px);
}

.home-how__number {
    color: rgba(255, 255, 255, .35);
    font-size: 1.05rem;
    font-weight: 950;
}

.home-how__step-icon {
    display: grid;
    width: 3.3rem;
    height: 3.3rem;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(32, 201, 139, .25), rgba(32, 201, 139, .08));
    color: #61e5b8;
    font-size: 1.15rem;
}

.home-how__step h3 {
    margin: 0;
    color: #fff;
    font-size: 1.22rem;
}

.home-how__step p {
    margin: .35rem 0 0;
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    line-height: 1.55;
}

/* Preuve et métriques */

.home-proof {
    background:
        radial-gradient(circle at 92% 15%, rgba(32, 201, 139, .12), transparent 23rem),
        #f7fbfb;
}

.home-proof__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
    gap: 1.2rem;
}

.home-proof__story {
    position: relative;
    display: flex;
    min-height: 420px;
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    overflow: hidden;
    border-radius: var(--home-radius-xl);
    background:
        radial-gradient(circle at 95% 0, rgba(255, 181, 71, .19), transparent 19rem),
        linear-gradient(145deg, #fff, #effaf7);
    box-shadow: var(--home-shadow-sm);
    flex-direction: column;
}

.home-proof__quote {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: rgba(12, 143, 135, .11);
    font-size: 5rem;
}

.home-proof__stars {
    display: flex;
    gap: .25rem;
    color: #f5a623;
}

.home-proof__story blockquote {
    max-width: 780px;
    margin: 1.2rem 0 1.7rem;
    color: var(--home-ink);
    font-size: clamp(1.45rem, 2.7vw, 2.45rem);
    font-weight: 780;
    line-height: 1.3;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.home-proof__story footer {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.home-proof__avatar {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--home-teal), var(--home-mint));
    color: #fff;
    font-weight: 900;
}

.home-proof__story footer strong,
.home-proof__story footer span {
    display: block;
}

.home-proof__story footer div > span {
    max-width: 500px;
    margin-top: .2rem;
    overflow: hidden;
    color: var(--home-ink-soft);
    font-size: .82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-proof__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.home-proof__metric {
    display: flex;
    min-height: 198px;
    justify-content: flex-end;
    padding: 1.35rem;
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius-lg);
    background: #fff;
    box-shadow: 0 14px 38px rgba(7, 27, 43, .06);
    color: var(--home-ink);
    flex-direction: column;
}

.home-proof__metric-icon {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: auto;
    place-items: center;
    border-radius: 15px;
    background: var(--home-mint-soft);
    color: var(--home-teal-dark);
}

.home-proof__metric strong {
    margin-top: 1.2rem;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: .9;
    letter-spacing: -.06em;
}

.home-proof__metric > span:last-child {
    margin-top: .55rem;
    color: var(--home-ink-soft);
    font-size: .85rem;
    font-weight: 750;
}

/* Contenu éditorial */

.home-editorial {
    background: #fff;
}

.home-editorial__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.home-editorial__card {
    position: relative;
    display: flex;
    min-height: 390px;
    padding: clamp(1.4rem, 2.5vw, 2.2rem);
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: var(--home-radius-lg);
    background: #f6fbfb;
    color: var(--home-ink);
    flex-direction: column;
}

.home-editorial__card::after {
    position: absolute;
    width: 12rem;
    height: 12rem;
    right: -5rem;
    bottom: -5rem;
    border-radius: 50%;
    background: rgba(32, 201, 139, .1);
    content: "";
}

.home-editorial__card--stay {
    background: #fff9ef;
}

.home-editorial__card--stay::after {
    background: rgba(255, 181, 71, .13);
}

.home-editorial__card--taste {
    background: #fff5f3;
}

.home-editorial__card--taste::after {
    background: rgba(255, 107, 95, .11);
}

.home-editorial__icon {
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    place-items: center;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(7, 27, 43, .09);
    color: var(--home-teal);
    font-size: 1.3rem;
}

.home-editorial__label {
    margin-top: 1.25rem;
    color: var(--home-teal-dark);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-editorial__card h3 {
    margin: .6rem 0 .85rem;
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
    line-height: 1.07;
    letter-spacing: -.045em;
}

.home-editorial__card p {
    margin: 0;
    color: var(--home-ink-soft);
    line-height: 1.65;
}

.home-editorial__card a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    width: fit-content;
    margin-top: auto;
    padding-top: 1.25rem;
    color: var(--home-ink);
    font-weight: 850;
}

/* FAQ */

.home-faq {
    background:
        radial-gradient(circle at 0 100%, rgba(32, 201, 139, .18), transparent 27rem),
        var(--home-ink);
}

.home-faq__layout {
    display: grid;
    grid-template-columns: minmax(300px, .75fr) minmax(520px, 1.25fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: start;
}

.home-faq__intro {
    position: sticky;
    top: 8rem;
}

.home-faq__intro h2,
.home-faq__intro > p {
    color: #fff;
}

.home-faq__intro > p {
    color: rgba(255, 255, 255, .65);
}

.home-faq__intro .home-text-link {
    margin-top: 1.1rem;
}

.home-faq__items {
    display: grid;
    gap: .8rem;
}

.home-faq__item {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.home-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1.3rem 1.4rem;
    font-size: 1.04rem;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

.home-faq__item summary::-webkit-details-marker {
    display: none;
}

.home-faq__toggle {
    display: grid;
    width: 2.2rem;
    height: 2.2rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #69e5bd;
}

.home-faq__toggle i {
    transition: transform .25s ease;
}

.home-faq__item[open] .home-faq__toggle i {
    transform: rotate(45deg);
}

.home-faq__answer {
    padding: 0 1.4rem 1.4rem;
}

.home-faq__answer p {
    margin: 0;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, .11);
    color: rgba(255, 255, 255, .68);
    line-height: 1.7;
}

/* CTA finale */

.home-final-cta {
    padding-block: clamp(3rem, 6vw, 6rem);
    background: #f7fbfb;
}

.home-final-cta__panel {
    position: relative;
    display: grid;
    min-height: 360px;
    grid-template-columns: 190px minmax(0, 1fr) auto;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
    padding: clamp(1.6rem, 4vw, 3.5rem);
    overflow: hidden;
    border-radius: var(--home-radius-xl);
    background:
        radial-gradient(circle at 0 0, rgba(32, 201, 139, .24), transparent 24rem),
        linear-gradient(125deg, #073640, #07565a);
    box-shadow: var(--home-shadow-md);
    color: #fff;
}

.home-final-cta__panel::after {
    position: absolute;
    width: 24rem;
    height: 24rem;
    right: -12rem;
    bottom: -15rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow:
        0 0 0 3rem rgba(255, 255, 255, .025),
        0 0 0 6rem rgba(255, 255, 255, .02);
    content: "";
}

.home-final-cta__art {
    position: relative;
    display: grid;
    width: 10.5rem;
    height: 10.5rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 3.2rem;
}

.home-final-cta__sun {
    position: absolute;
    width: 5.8rem;
    height: 5.8rem;
    border-radius: 50%;
    background: rgba(255, 181, 71, .34);
    filter: blur(1px);
}

.home-final-cta__art i {
    position: relative;
    z-index: 1;
}

.home-final-cta__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.home-final-cta__content h2,
.home-final-cta__content > p {
    color: #fff;
}

.home-final-cta__content > p {
    color: rgba(255, 255, 255, .7);
}

.home-final-cta__actions {
    position: relative;
    z-index: 1;
    display: grid;
    min-width: 220px;
    gap: .7rem;
}

.home-empty {
    display: grid;
    min-height: 260px;
    grid-column: 1 / -1;
    padding: 2rem;
    border: 1px dashed rgba(7, 27, 43, .2);
    border-radius: var(--home-radius-lg);
    background: rgba(255, 255, 255, .65);
    text-align: center;
    place-items: center;
}

.home-empty > i {
    color: var(--home-teal);
    font-size: 2rem;
}

.home-empty h3 {
    margin: .7rem 0 0;
}

.home-empty p {
    margin: .4rem 0 0;
    color: var(--home-ink-soft);
}

/* Interactions de pointeur */

@media (hover: hover) and (pointer: fine) {
    .home-button:hover {
        transform: translateY(-3px);
    }

    .home-button--primary:hover {
        box-shadow: 0 21px 42px rgba(12, 143, 135, .31);
    }

    .home-text-link:hover i,
    .home-category-card:hover .home-category-card__link i,
    .home-editorial__card a:hover i {
        transform: translateX(4px);
    }

    .home-category-card:hover,
    .home-modern .offre-card:hover,
    .home-proof__metric:hover {
        transform: translateY(-7px);
        box-shadow: var(--home-shadow-md);
    }

    .home-category-card:hover img,
    .home-modern .offre-card:hover .offre-card__image,
    .home-destination-card:hover img {
        transform: scale(1.06);
    }

    .home-destination-card:hover .home-destination-card__footer i,
    .home-hero__floating-card:hover > i {
        transform: translateX(4px);
    }

    .home-how__step:hover,
    .home-faq__item:hover {
        border-color: rgba(97, 229, 184, .34);
        background: rgba(255, 255, 255, .1);
    }
}

/* Tablettes et petits ordinateurs */

@media (max-width: 1240px) {
    .home-hero {
        min-height: auto;
    }

    .home-hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(365px, .85fr);
        gap: 2.5rem;
    }

    .home-hero h1 {
        font-size: clamp(3.6rem, 6.3vw, 5.6rem);
    }

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

    .home-final-cta__panel {
        grid-template-columns: 145px minmax(0, 1fr);
    }

    .home-final-cta__art {
        width: 8.5rem;
        height: 8.5rem;
    }

    .home-final-cta__actions {
        grid-column: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .home-hero__layout {
        grid-template-columns: 1fr 420px;
        gap: 2rem;
    }

    .home-hero__quick-stats {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .home-hero__quick-stat {
        padding: .6rem .75rem;
    }

    .home-assurance__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-assurance__item:nth-child(3) {
        border-inline-start: 0;
    }

    .home-assurance__item:nth-child(n + 3) {
        border-top: 1px solid var(--home-line);
    }

    .home-modern .categories-slider__item {
        flex-basis: calc((100% - 1.25rem) / 2);
    }

    .home-featured__grid,
    .home-editorial__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-destinations__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-destination-card:first-child {
        grid-column: auto;
    }

    .home-how__layout,
    .home-faq__layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .home-how__intro,
    .home-faq__intro {
        position: static;
        max-width: 720px;
    }

    .home-proof__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .home-hero {
        padding-top: calc(3.5rem + 76px);
    }

    .home-hero__layout {
        grid-template-columns: 1fr;
    }

    .home-hero__content {
        text-align: center;
    }

    .home-kicker--hero,
    .home-hero__actions,
    .home-hero__trust {
        margin-inline: auto;
        justify-content: center;
    }

    .home-hero__lead,
    .home-hero__quick-stats {
        margin-inline: auto;
    }

    .home-hero__quick-stats {
        max-width: 680px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        text-align: start;
    }

    .home-hero__visual {
        width: min(100%, 590px);
        margin-inline: auto;
    }

    .home-hero-showcase__viewport {
        aspect-ratio: 4 / 4.25;
    }

    .home-section__header--split {
        align-items: flex-start;
        flex-direction: column;
        gap: .5rem;
    }
}

/* Mobiles */

@media (max-width: 680px) {
    .home-modern {
        --home-radius-xl: 28px;
        --home-radius-lg: 23px;
    }

    .home-section {
        padding-block: 4.3rem;
    }

    .home-section__header {
        margin-bottom: 2rem;
    }

    .home-section__header h2,
    .home-how__intro h2,
    .home-faq__intro h2,
    .home-final-cta__content h2 {
        font-size: clamp(2.05rem, 10vw, 3rem);
    }

    .home-hero {
        padding-block: calc(3rem + 70px) 4rem;
    }

    .home-hero h1 {
        font-size: clamp(3.05rem, 15vw, 4.7rem);
    }

    .home-hero__lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .home-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .home-button--hero,
    .home-button--hero-ghost {
        width: 100%;
    }

    .home-hero__trust {
        gap: .55rem .8rem;
        font-size: .78rem;
    }

    .home-hero__quick-stats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .home-hero__quick-stat {
        text-align: start;
    }

    .home-hero__visual {
        padding-inline: 0;
    }

    .home-hero-showcase::before {
        inset: 7% -2% -3% 7%;
        border-radius: 32px;
    }

    .home-hero-showcase__viewport {
        aspect-ratio: 4 / 5;
        border-width: 5px;
    }

    .home-hero-slide__top {
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .home-hero-slide__tag,
    .home-hero-slide__offers {
        padding: .48rem .62rem;
        font-size: .64rem;
    }

    .home-hero-slide__content > strong {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .home-hero-slide__content > span:not(.home-hero-slide__link) {
        max-width: 100%;
        font-size: .85rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .home-hero__floating-card {
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: none;
        margin-block-start: 4rem;
    }

    .home-assurance__grid {
        grid-template-columns: 1fr;
    }

    .home-assurance__item + .home-assurance__item {
        border-top: 1px solid var(--home-line);
        border-inline-start: 0;
    }

    .home-category-slider {
        padding-inline: 0;
        padding-bottom: 4rem;
    }

    .home-modern .categories-slider__item {
        flex-basis: 100%;
    }

    .home-modern .categories-slider__arrow {
        top: auto;
        bottom: .2rem;
        transform: none;
    }

    .home-modern .categories-slider__arrow--prev {
        left: calc(50% - 3.7rem);
    }

    .home-modern .categories-slider__arrow--next {
        right: calc(50% - 3.7rem);
    }

    .home-modern .categories-slider__dots {
        display: none;
    }

    .home-featured__grid,
    .home-destinations__grid,
    .home-editorial__grid {
        grid-template-columns: 1fr;
    }

    .home-modern .offre-card__body {
        padding: 1.2rem;
    }

    .home-destination-card {
        min-height: 330px;
    }

    .home-how__step {
        grid-template-columns: auto 1fr;
    }

    .home-how__number {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .home-how__step > div {
        min-width: 0;
    }

    .home-proof__story {
        min-height: 380px;
        padding: 1.4rem;
    }

    .home-proof__story blockquote {
        font-size: 1.35rem;
    }

    .home-proof__metrics {
        grid-template-columns: 1fr;
    }

    .home-proof__metric {
        min-height: 150px;
    }

    .home-editorial__card {
        min-height: 350px;
    }

    .home-faq__item summary {
        padding: 1.1rem;
        font-size: .95rem;
    }

    .home-faq__answer {
        padding: 0 1.1rem 1.1rem;
    }

    .home-final-cta__panel {
        display: flex;
        min-height: 0;
        align-items: flex-start;
        text-align: center;
        flex-direction: column;
    }

    .home-final-cta__art {
        width: 6.5rem;
        height: 6.5rem;
        margin-inline: auto;
        font-size: 2.3rem;
    }

    .home-final-cta__sun {
        width: 4rem;
        height: 4rem;
    }

    .home-final-cta__content .home-kicker {
        margin-inline: auto;
    }

    .home-final-cta__actions {
        width: 100%;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .home-kicker {
        font-size: .68rem;
        letter-spacing: .075em;
    }

    .home-hero h1 {
        font-size: clamp(2.8rem, 14.5vw, 3.7rem);
    }

    .home-hero__trust {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-hero__floating-card {
        padding: .75rem;
    }

    .home-hero__floating-card strong {
        font-size: .82rem;
    }

    .home-hero-slide__offers {
        display: none;
    }

    .home-button--hero-ghost {
        width: auto;
        margin-inline-end: 3.55rem;
    }

    .home-section__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-section__actions .home-button {
        width: 100%;
    }

    .home-destination-card {
        min-height: 300px;
    }

    .home-proof__story footer div > span {
        max-width: 190px;
    }

    /* Garde un espace confortable face aux boutons flottants du site. */
    .home-final-cta__panel {
        padding-inline-end: 4.2rem;
    }
}

@media (max-width: 340px) {
    .home-hero h1 {
        font-size: 2.65rem;
    }

    .home-hero-slide__content {
        right: 1rem;
        bottom: 1.35rem;
        left: 1rem;
    }

    .home-hero-slide__link {
        font-size: .82rem;
    }

    .home-proof__metrics {
        gap: .75rem;
    }

    .home-final-cta__panel {
        padding-inline-end: 3.8rem;
    }
}

/* Arabe / RTL */

[dir="rtl"] .home-text-link i,
[dir="rtl"] .home-category-card__link i,
[dir="rtl"] .home-editorial__card a i,
[dir="rtl"] .home-hero-slide__link i,
[dir="rtl"] .home-button i.fa-arrow-right,
[dir="rtl"] .home-hero__floating-card > i {
    transform: scaleX(-1);
}

[dir="rtl"] .home-proof__quote {
    right: auto;
    left: 2rem;
}

[dir="rtl"] .home-how__number {
    direction: ltr;
}

@media (max-width: 680px) {
    [dir="rtl"] .home-how__number {
        right: auto;
        left: 1rem;
    }
}

/* Accessibilité et stabilité visuelle */

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

    .home-modern .reveal-up {
        opacity: 1;
        transform: none;
    }
}

@media (forced-colors: active) {
    .home-kicker,
    .home-button,
    .home-category-card,
    .home-destination-card,
    .home-how__step,
    .home-proof__story,
    .home-proof__metric,
    .home-editorial__card,
    .home-faq__item,
    .home-final-cta__panel {
        border: 1px solid CanvasText;
    }
}
