/* ==========================
   CARNET NOA
========================== */

:root{
    --noa-black:#181818;
    --noa-dark:#24221f;
    --noa-text:#242424;
    --noa-muted:#6d6a66;
    --noa-light:#f4f1eb;
    --noa-border:#dedbd5;
    --noa-white:#ffffff;
}

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

html{
    scroll-behavior:smooth;
}

body{
    min-width:320px;
    font-family:Georgia, "Times New Roman", serif;
    background:var(--noa-white);
    color:var(--noa-text);
}

img{
    max-width:100%;
}

a{
    color:inherit;
}

button,
input{
    font:inherit;
}

.carnet-page{
    width:100%;
    overflow:hidden;
}

.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0, 0, 0, 0);
    white-space:nowrap;
    border:0;
}

/* ==========================
   INTRODUCTION
========================== */

.carnet-intro{
    width:min(100%, 1400px);
    margin:40px auto 28px;
    padding:0 55px;
}

.carnet-intro__label,
.section-heading__label{
    margin-bottom:15px;
    font-size:12px;
    line-height:1.3;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#898580;
}

.carnet-intro h1{
    margin-bottom:12px;
    font-size:clamp(42px, 5vw, 64px);
    font-weight:400;
    line-height:1;
}

.carnet-intro__description{
    font-size:18px;
    line-height:1.6;
    color:var(--noa-muted);
}

/* ==========================
   HERO
========================== */

.article-hero{
    position:relative;
    width:min(100%, 1600px);
    height:min(88vh, 900px);
    min-height:650px;
    margin:0 auto 125px;
    overflow:hidden;
    background:var(--noa-dark);
}

.article-hero__image{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 1.3s ease;
}

.article-hero:hover .article-hero__image{
    transform:scale(1.015);
}

.article-hero__overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.80) 0%,
            rgba(0,0,0,.38) 48%,
            rgba(0,0,0,.08) 100%
        );
}

.article-hero__content{
    position:absolute;
    left:90px;
    bottom:88px;
    z-index:2;
    width:calc(100% - 180px);
    max-width:930px;
    color:var(--noa-white);
}

.article-hero__label{
    margin-bottom:17px;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.article-hero__content h2{
    margin-bottom:22px;
    max-width:900px;
    font-size:clamp(52px, 6vw, 86px);
    font-weight:400;
    line-height:.98;
}

.article-hero__summary{
    max-width:720px;
    margin-bottom:32px;
    font-size:21px;
    line-height:1.65;
}

.article-hero__link,
.text-link{
    display:inline-flex;
    align-items:center;
    gap:15px;
    padding-bottom:6px;
    text-decoration:none;
    border-bottom:1px solid currentColor;
}

.article-hero__link{
    color:var(--noa-white);
    border-color:rgba(255,255,255,.7);
}

/* ==========================
   TITRES DE SECTIONS
========================== */

.section-heading{
    display:grid;
    grid-template-columns:minmax(0, 1.25fr) minmax(280px, .75fr);
    gap:90px;
    align-items:end;
    width:min(100%, 1400px);
    margin:0 auto 65px;
}

.section-heading h2{
    max-width:850px;
    font-size:clamp(44px, 5vw, 68px);
    font-weight:400;
    line-height:1.02;
}

.section-heading__text{
    max-width:480px;
    font-size:18px;
    line-height:1.75;
    color:var(--noa-muted);
}

.section-heading--light h2,
.section-heading--light .section-heading__text{
    color:var(--noa-white);
}

.section-heading--light .section-heading__label{
    color:rgba(255,255,255,.55);
}

/* ==========================
   DERNIERS REPORTAGES
========================== */

.derniers-reportages{
    width:min(100%, 1400px);
    margin:0 auto;
    padding:0 55px 140px;
}

.derniers-reportages .section-heading{
    width:100%;
}

.derniers-reportages__grid{
    display:grid;
}

.reportage-card{
    display:grid;
    grid-template-columns:minmax(0, 60%) minmax(0, 40%);
    gap:75px;
    align-items:center;
    margin-bottom:130px;
}

.reportage-card:last-child{
    margin-bottom:0;
}

.reportage-card__image-link{
    display:block;
    overflow:hidden;
    background:var(--noa-light);
}

.reportage-card__image{
    display:block;
    width:100%;
    height:620px;
    object-fit:cover;
    transition:transform .8s ease;
}

.reportage-card__image-link:hover .reportage-card__image{
    transform:scale(1.025);
}

.reportage-card__content{
    padding-right:20px;
}

.reportage-card__label{
    margin-bottom:20px;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#8a8782;
}

.reportage-card__content h3{
    margin-bottom:27px;
    font-size:clamp(42px, 4vw, 58px);
    font-weight:400;
    line-height:1.04;
}

.reportage-card__content h3 a{
    color:var(--noa-text);
    text-decoration:none;
}

.reportage-card__summary{
    max-width:530px;
    margin-bottom:35px;
    font-size:20px;
    line-height:1.8;
    color:var(--noa-muted);
}

.reportage-card:nth-child(even) .reportage-card__image-link{
    order:2;
}

.reportage-card:nth-child(even) .reportage-card__content{
    order:1;
    padding-right:0;
    padding-left:20px;
}

/* ==========================
   DESTINATIONS
========================== */

.destinations-section{
    padding:120px 55px 135px;
    background:var(--noa-black);
}

.destinations-section .section-heading{
    width:min(100%, 1290px);
}

.destinations-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    width:min(100%, 1290px);
    margin:0 auto;
}

.destination-card{
    position:relative;
    min-height:590px;
    overflow:hidden;
    background:#302e2a;
    color:var(--noa-white);
    text-decoration:none;
}

.destination-card:nth-child(2),
.destination-card:nth-child(5){
    min-height:680px;
    margin-top:-45px;
}

.destination-card__image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .9s ease;
}

.destination-card__overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.18) 58%,
            rgba(0,0,0,.04) 100%
        );
}

.destination-card__content{
    position:absolute;
    right:35px;
    bottom:38px;
    left:35px;
    z-index:2;
}

.destination-card__content p{
    margin-bottom:13px;
    font-size:11px;
    letter-spacing:2.5px;
    text-transform:uppercase;
    color:rgba(255,255,255,.7);
}

.destination-card__content h3{
    margin-bottom:18px;
    font-size:42px;
    font-weight:400;
    line-height:1;
}

.destination-card__content span{
    display:inline-block;
    padding-bottom:5px;
    font-size:14px;
    border-bottom:1px solid rgba(255,255,255,.65);
}

.destination-card:hover .destination-card__image{
    transform:scale(1.045);
}

/* ==========================
   SÉJOURNER
========================== */

.stay-editorial{
    display:grid;
    grid-template-columns:minmax(0, 58%) minmax(0, 42%);
    min-height:780px;
    background:var(--noa-light);
}

.stay-editorial__visual{
    min-height:780px;
    overflow:hidden;
    background:#d8d2c8;
}

.stay-editorial__visual img{
    display:block;
    width:100%;
    height:100%;
    min-height:780px;
    object-fit:cover;
    transition:transform 1s ease;
}

.stay-editorial:hover .stay-editorial__visual img{
    transform:scale(1.02);
}

.stay-editorial__content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:100px 9vw;
}

.stay-editorial__content h2{
    margin-bottom:30px;
    max-width:570px;
    font-size:clamp(48px, 5vw, 70px);
    font-weight:400;
    line-height:1.03;
}

.stay-editorial__content > p:not(.section-heading__label){
    max-width:540px;
    margin-bottom:38px;
    font-size:20px;
    line-height:1.8;
    color:var(--noa-muted);
}

.button-dark{
    display:inline-flex;
    align-items:center;
    align-self:flex-start;
    gap:18px;
    padding:18px 24px;
    color:var(--noa-white);
    background:var(--noa-black);
    text-decoration:none;
    transition:background .25s ease;
}

.button-dark:hover{
    background:#393632;
}

/* ==========================
   EXPÉRIENCES
========================== */

.experiences-section{
    width:min(100%, 1400px);
    margin:0 auto;
    padding:145px 55px;
}

.experiences-section .section-heading{
    width:100%;
}

.experiences-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    border-top:1px solid var(--noa-border);
    border-left:1px solid var(--noa-border);
}

.experience-card{
    min-height:360px;
    padding:42px;
    border-right:1px solid var(--noa-border);
    border-bottom:1px solid var(--noa-border);
    transition:background .25s ease;
}

.experience-card:hover{
    background:var(--noa-light);
}

.experience-card__number{
    margin-bottom:80px;
    font-size:13px;
    letter-spacing:2px;
    color:#8f8a84;
}

.experience-card h3{
    margin-bottom:20px;
    font-size:36px;
    font-weight:400;
    line-height:1.1;
}

.experience-card > p:last-child{
    max-width:340px;
    font-size:17px;
    line-height:1.7;
    color:var(--noa-muted);
}

/* ==========================
   GALERIE
========================== */

.gallery-section{
    padding:125px 55px;
    background:#e9e4db;
}

.gallery-section__heading{
    width:min(100%, 1290px);
    margin:0 auto 60px;
}

.gallery-section__heading h2{
    font-size:clamp(45px, 5vw, 70px);
    font-weight:400;
    line-height:1;
}

.gallery-grid{
    display:grid;
    grid-template-columns:1.35fr .8fr .9fr;
    grid-template-rows:370px 370px;
    gap:14px;
    width:min(100%, 1290px);
    margin:0 auto;
}

.gallery-item{
    overflow:hidden;
    background:#d5cfc5;
}

.gallery-item img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}

.gallery-item:hover img{
    transform:scale(1.035);
}

.gallery-item--1{
    grid-row:1 / 3;
}

.gallery-item--2{
    grid-column:2 / 3;
}

.gallery-item--3{
    grid-column:3 / 4;
}

.gallery-item--4{
    grid-column:2 / 3;
}

.gallery-item--5{
    grid-column:3 / 4;
}

/* ==========================
   CONSEILS
========================== */

.conseils-section{
    width:min(100%, 1400px);
    margin:0 auto;
    padding:145px 55px;
}

.conseils-section .section-heading{
    width:100%;
}

.conseils-list{
    border-top:1px solid var(--noa-border);
}

.conseil-item{
    display:grid;
    grid-template-columns:80px minmax(0, 1fr) 80px;
    gap:25px;
    align-items:center;
    padding:38px 0;
    border-bottom:1px solid var(--noa-border);
    transition:padding .25s ease;
}

.conseil-item:hover{
    padding-right:15px;
    padding-left:15px;
}

.conseil-item__number{
    font-size:13px;
    letter-spacing:2px;
    color:#88847f;
}

.conseil-item__content{
    display:grid;
    grid-template-columns:minmax(280px, .8fr) minmax(300px, 1.2fr);
    gap:60px;
    align-items:center;
}

.conseil-item h3{
    font-size:30px;
    font-weight:400;
    line-height:1.2;
}

.conseil-item__content p{
    max-width:560px;
    font-size:17px;
    line-height:1.7;
    color:var(--noa-muted);
}

.conseil-item__arrow{
    justify-self:end;
    font-size:24px;
}

/* ==========================
   NEWSLETTER
========================== */

.newsletter-section{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:720px;
    padding:110px 55px;
    color:var(--noa-white);
    background:var(--noa-black);
}

.newsletter-section__content{
    width:min(100%, 920px);
    text-align:center;
}

.newsletter-section__label{
    margin-bottom:25px;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:rgba(255,255,255,.55);
}

.newsletter-section h2{
    margin-bottom:30px;
    font-size:clamp(50px, 6vw, 82px);
    font-weight:400;
    line-height:1.02;
}

.newsletter-section__description{
    max-width:650px;
    margin:0 auto 45px;
    font-size:19px;
    line-height:1.75;
    color:rgba(255,255,255,.68);
}

.newsletter-form{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    max-width:700px;
    margin:0 auto;
    border-bottom:1px solid rgba(255,255,255,.55);
}

.newsletter-form input{
    min-width:0;
    padding:20px 0;
    color:var(--noa-white);
    background:transparent;
    border:0;
    outline:0;
}

.newsletter-form input::placeholder{
    color:rgba(255,255,255,.5);
}

.newsletter-form button{
    display:flex;
    align-items:center;
    gap:15px;
    padding:20px 0 20px 30px;
    color:var(--noa-white);
    background:transparent;
    border:0;
    cursor:pointer;
}

.newsletter-section__legal{
    margin-top:20px;
    font-size:12px;
    line-height:1.6;
    color:rgba(255,255,255,.42);
}

/* ==========================
   PIED DE PAGE
========================== */

.carnet-footer{
    padding:90px 55px 35px;
    color:var(--noa-white);
    background:#101010;
}

.carnet-footer__top{
    display:grid;
    grid-template-columns:1.3fr .7fr;
    gap:100px;
    width:min(100%, 1290px);
    margin:0 auto 90px;
}

.carnet-footer__logo{
    margin-bottom:22px;
    font-size:40px;
}

.carnet-footer__brand > p:last-child{
    max-width:430px;
    font-size:17px;
    line-height:1.7;
    color:rgba(255,255,255,.55);
}

.carnet-footer__navigation{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:60px;
}

.carnet-footer__navigation div{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

.carnet-footer__navigation p{
    margin-bottom:12px;
    font-size:11px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:rgba(255,255,255,.42);
}

.carnet-footer__navigation a{
    color:rgba(255,255,255,.72);
    text-decoration:none;
}

.carnet-footer__navigation a:hover{
    color:var(--noa-white);
}

.carnet-footer__bottom{
    display:flex;
    justify-content:space-between;
    gap:30px;
    width:min(100%, 1290px);
    margin:0 auto;
    padding-top:28px;
    font-size:13px;
    color:rgba(255,255,255,.42);
    border-top:1px solid rgba(255,255,255,.12);
}

.carnet-footer__bottom div{
    display:flex;
    gap:30px;
}

.carnet-footer__bottom a{
    color:inherit;
    text-decoration:none;
}

/* ==========================
   ÉTAT VIDE
========================== */

.carnet-empty{
    width:min(calc(100% - 48px), 1400px);
    margin:0 auto 100px;
    padding:100px 30px;
    text-align:center;
    background:var(--noa-light);
}

.carnet-empty p{
    font-size:22px;
}

/* ==========================
   TABLETTE
========================== */

@media (max-width:1100px){

    .article-hero{
        height:78vh;
        min-height:600px;
    }

    .article-hero__content{
        left:55px;
        bottom:60px;
        width:calc(100% - 110px);
    }

    .section-heading{
        gap:50px;
    }

    .reportage-card{
        grid-template-columns:1.15fr 1fr;
        gap:45px;
        margin-bottom:95px;
    }

    .reportage-card__image{
        height:500px;
    }

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

    .destination-card,
    .destination-card:nth-child(2),
    .destination-card:nth-child(5){
        min-height:570px;
        margin-top:0;
    }

    .stay-editorial{
        grid-template-columns:1fr 1fr;
    }

    .stay-editorial__content{
        padding:80px 55px;
    }

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

    .conseil-item__content{
        gap:35px;
    }
}

/* ==========================
   MOBILE ET PETITE TABLETTE
========================== */

@media (max-width:768px){

    .carnet-intro{
        margin:32px auto 22px;
        padding:0 24px;
    }

    .article-hero{
        height:72vh;
        min-height:560px;
        margin-bottom:85px;
    }

    .article-hero__content{
        right:24px;
        bottom:38px;
        left:24px;
        width:auto;
    }

    .article-hero__content h2{
        font-size:42px;
        line-height:1.04;
    }

    .article-hero__summary{
        font-size:17px;
        line-height:1.55;
    }

    .section-heading{
        display:block;
        margin-bottom:42px;
    }

    .section-heading__text{
        margin-top:22px;
        font-size:17px;
    }

    .derniers-reportages{
        padding:0 24px 90px;
    }

    .reportage-card{
        display:flex;
        flex-direction:column;
        gap:0;
        margin-bottom:80px;
    }

    .reportage-card__image-link{
        width:100%;
        order:initial !important;
    }

    .reportage-card__image{
        height:430px;
    }

    .reportage-card__content,
    .reportage-card:nth-child(even) .reportage-card__content{
        width:100%;
        padding:28px 0 0;
        order:initial;
    }

    .reportage-card__content h3{
        margin-bottom:18px;
        font-size:38px;
    }

    .reportage-card__summary{
        margin-bottom:25px;
        font-size:18px;
        line-height:1.65;
    }

    .destinations-section{
        padding:85px 24px 90px;
    }

    .destinations-grid{
        display:block;
    }

    .destination-card,
    .destination-card:nth-child(2),
    .destination-card:nth-child(5){
        display:block;
        min-height:540px;
        margin:0 0 14px;
    }

    .stay-editorial{
        display:block;
    }

    .stay-editorial__visual,
    .stay-editorial__visual img{
        min-height:520px;
        height:520px;
    }

    .stay-editorial__content{
        padding:75px 24px 85px;
    }

    .stay-editorial__content h2{
        font-size:46px;
    }

    .stay-editorial__content > p:not(.section-heading__label){
        font-size:18px;
    }

    .experiences-section{
        padding:90px 24px;
    }

    .experiences-grid{
        display:block;
        border-left:0;
    }

    .experience-card{
        min-height:auto;
        padding:35px 0;
        border-right:0;
    }

    .experience-card__number{
        margin-bottom:38px;
    }

    .gallery-section{
        padding:85px 24px;
    }

    .gallery-grid{
        display:grid;
        grid-template-columns:1fr 1fr;
        grid-template-rows:420px 260px 260px;
        gap:9px;
    }

    .gallery-item--1{
        grid-column:1 / 3;
        grid-row:1;
    }

    .gallery-item--2{
        grid-column:1;
        grid-row:2;
    }

    .gallery-item--3{
        grid-column:2;
        grid-row:2;
    }

    .gallery-item--4{
        grid-column:1;
        grid-row:3;
    }

    .gallery-item--5{
        grid-column:2;
        grid-row:3;
    }

    .conseils-section{
        padding:90px 24px;
    }

    .conseil-item{
        grid-template-columns:50px minmax(0, 1fr);
        gap:15px;
        padding:30px 0;
    }

    .conseil-item__content{
        display:block;
    }

    .conseil-item h3{
        margin-bottom:15px;
        font-size:26px;
    }

    .conseil-item__arrow{
        display:none;
    }

    .newsletter-section{
        min-height:650px;
        padding:90px 24px;
    }

    .newsletter-section h2{
        font-size:48px;
    }

    .newsletter-form{
        display:block;
        border-bottom:0;
    }

    .newsletter-form input{
        width:100%;
        border-bottom:1px solid rgba(255,255,255,.55);
    }

    .newsletter-form button{
        margin:15px auto 0;
        padding:16px 0;
    }

    .carnet-footer{
        padding:70px 24px 30px;
    }

    .carnet-footer__top{
        display:block;
        margin-bottom:65px;
    }

    .carnet-footer__navigation{
        margin-top:60px;
    }

    .carnet-footer__bottom{
        display:block;
    }

    .carnet-footer__bottom div{
        flex-direction:column;
        gap:10px;
        margin-top:20px;
    }
}

/* ==========================
   PETITS MOBILES
========================== */

@media (max-width:480px){

    .carnet-intro h1{
        font-size:39px;
    }

    .article-hero{
        height:68vh;
        min-height:520px;
    }

    .article-hero__content h2{
        font-size:35px;
    }

    .article-hero__summary{
        font-size:16px;
    }

    .reportage-card__image{
        height:350px;
    }

    .reportage-card__content h3{
        font-size:34px;
    }

    .destination-card,
    .destination-card:nth-child(2),
    .destination-card:nth-child(5){
        min-height:470px;
    }

    .destination-card__content{
        right:25px;
        bottom:28px;
        left:25px;
    }

    .destination-card__content h3{
        font-size:36px;
    }

    .stay-editorial__visual,
    .stay-editorial__visual img{
        height:430px;
        min-height:430px;
    }

    .stay-editorial__content h2{
        font-size:40px;
    }

    .experience-card h3{
        font-size:31px;
    }

    .gallery-grid{
        display:block;
    }

    .gallery-item{
        height:360px;
        margin-bottom:9px;
    }

    .newsletter-section h2{
        font-size:40px;
    }

    .carnet-footer__navigation{
        grid-template-columns:1fr;
    }
}