:root {
    --background: #061722;
    --background-light: #0c2b36;

    --panel: rgba(5, 22, 31, 0.76);
    --panel-strong: rgba(4, 18, 27, 0.9);

    --border: rgba(255, 255, 255, 0.17);
    --border-light: rgba(255, 255, 255, 0.27);

    --text: #fff7e9;
    --muted: rgba(255, 247, 233, 0.72);

    --orange: #ff6649;
    --orange-light: #ffb45d;

    --shadow:
        0 28px 80px rgba(0, 0, 0, 0.48);

    --container: 1480px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;

    scroll-behavior: smooth;

    background: var(--background);
}

body {
    min-width: 320px;
    min-height: 100vh;
    min-height: 100svh;

    margin: 0;

    overflow-x: hidden;

    color: var(--text);

    background:
        linear-gradient(
            180deg,
            var(--background),
            #031019
        );

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

[hidden] {
    display: none !important;
}

/*
|--------------------------------------------------------------------------
| Accessibilité
|--------------------------------------------------------------------------
*/

.screen-reader-only {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    margin: -1px !important;
    padding: 0 !important;

    border: 0 !important;

    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

/*
|--------------------------------------------------------------------------
| Icônes SVG
|--------------------------------------------------------------------------
*/

.icon-wrapper {
    display: inline-grid;
    place-items: center;

    flex: 0 0 auto;
}

.icon-wrapper svg {
    width: 1em;
    height: 1em;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/*
|--------------------------------------------------------------------------
| Navigation
|--------------------------------------------------------------------------
*/

.topbar {
    position: fixed;
    z-index: 100;

    top: 0;
    right: 0;
    left: 0;

    min-height: 70px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.11);

    background:
        rgba(3, 17, 27, 0.72);

    backdrop-filter:
        blur(18px)
        saturate(125%);

    -webkit-backdrop-filter:
        blur(18px)
        saturate(125%);
}

.topbar-inner {
    display: grid;

    grid-template-columns:
        minmax(220px, 1fr)
        auto
        minmax(220px, 1fr);

    align-items: center;

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    min-height: 70px;

    margin: 0 auto;
}

.brand {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    width: fit-content;

    color: var(--orange);

    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.brand-dot {
    width: 10px;
    height: 10px;

    flex: 0 0 auto;

    border-radius: 999px;

    background: var(--orange);

    box-shadow:
        0 0 0 6px
        rgba(255, 102, 73, 0.14);
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(24px, 4vw, 55px);
}

.navigation a {
    position: relative;

    padding:
        27px
        0
        24px;

    color:
        rgba(255, 247, 233, 0.84);

    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        color 180ms ease;
}

.navigation a::after {
    position: absolute;

    right: 0;
    bottom: 17px;
    left: 0;

    height: 2px;

    content: "";

    background: var(--orange);

    transform: scaleX(0);
    transform-origin: center;

    transition:
        transform 180ms ease;
}

.navigation a:hover,
.navigation a:focus-visible {
    color: var(--text);
}

.navigation a:hover::after,
.navigation a:focus-visible::after,
.navigation a.active::after {
    transform: scaleX(1);
}

.topbar-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 16px;

    color: var(--orange);
}

.lets-go {
    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;

    font-size: 1.3rem;
    font-style: italic;

    transform: rotate(-4deg);
}

.plane {
    font-size: 1.4rem;
}

.menu-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 13px;

    color: var(--text);

    background:
        rgba(255, 255, 255, 0.06);

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 19px;
    height: 2px;

    margin: 4px auto;

    border-radius: 999px;

    background: currentColor;

    transition:
        transform 180ms ease,
        opacity 180ms ease;
}

.menu-button.open span:nth-child(1) {
    transform:
        translateY(6px)
        rotate(45deg);
}

.menu-button.open span:nth-child(2) {
    opacity: 0;
}

.menu-button.open span:nth-child(3) {
    transform:
        translateY(-6px)
        rotate(-45deg);
}

/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.hero {
    position: relative;
    isolation: isolate;

    display: flex;
    align-items: stretch;

    min-height: 100vh;
    min-height: 100svh;

    overflow: hidden;

    padding-top: 70px;
}

.hero-background {
    position: absolute;
    z-index: -5;

    inset: 0;
}

.hero-background picture,
.hero-background img {
    width: 100%;
    height: 100%;
}

.hero-background img {
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    z-index: -4;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2, 13, 21, 0.83) 0%,
            rgba(2, 13, 21, 0.42) 38%,
            rgba(2, 13, 21, 0.05) 67%,
            rgba(2, 13, 21, 0.16) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 10, 17, 0.15) 0%,
            rgba(2, 10, 17, 0.02) 42%,
            rgba(2, 10, 17, 0.28) 68%,
            rgba(2, 10, 17, 0.94) 100%
        );

    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    min-height:
        calc(100vh - 70px);

    min-height:
        calc(100svh - 70px);

    margin: 0 auto;

    padding:
        clamp(36px, 6vh, 72px)
        0
        clamp(28px, 4vh, 48px);
}

/*
|--------------------------------------------------------------------------
| Titre et trajet
|--------------------------------------------------------------------------
*/

.hero-heading {
    width: 100%;
    max-width: none;

    text-shadow:
        0 8px 30px rgba(0, 0, 0, 0.72);
}

.hero-title {
    display: flex;
    align-items: baseline;

    gap: 0.14em;

    width: fit-content;
    max-width: none;

    margin: 0;

    font-family:
        "Bebas Neue",
        Impact,
        "Arial Narrow",
        sans-serif;

    font-size:
        clamp(5.4rem, 9vw, 10rem);

    font-weight: 400;
    letter-spacing: 0.025em;
    line-height: 0.82;
    text-transform: uppercase;
    white-space: nowrap;

    color: #f6ead8;

    background:
        repeating-linear-gradient(
            102deg,
            #fff8e9 0,
            #fff8e9 18px,
            #eadcc7 19px,
            #fff8e9 21px,
            #fff8e9 43px
        );

    background-clip: text;
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    text-shadow:
        0 3px 0 rgba(47, 31, 22, 0.24),
        0 9px 20px rgba(0, 0, 0, 0.42);
}

.hero-title span {
    display: block;
}

.hero-route {
    display: grid;

    gap: 11px;

    width: fit-content;
    max-width: 100%;

    margin-top: 28px;
}

.route {
    margin: 0;
}

.route-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 8px 14px;

    width: fit-content;
    max-width: 100%;

    padding: 12px 17px;

    border:
        1px solid rgba(255, 255, 255, 0.2);

    border-radius: 999px;

    color:
        rgba(255, 247, 233, 0.94);

    background:
        rgba(2, 16, 25, 0.53);

    font-size:
        clamp(0.86rem, 1.6vw, 1.05rem);

    font-weight: bold;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.route-arrow {
    color: var(--orange);
}

.route-stages {
    max-width: 760px;

    margin: 0;
    padding-left: 5px;

    color:
        rgba(255, 247, 233, 0.74);

    font-size:
        clamp(0.72rem, 1.1vw, 0.88rem);

    font-weight: 700;
    letter-spacing: 0.035em;
    line-height: 1.5;

    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.85);
}

/*
|--------------------------------------------------------------------------
| Tableau inférieur
|--------------------------------------------------------------------------
*/

.dashboard {
    display: grid;

    grid-template-columns:
        minmax(360px, 0.95fr)
        minmax(420px, 1.22fr)
        minmax(250px, 0.72fr);

    gap: clamp(16px, 2vw, 28px);

    align-items: stretch;

    margin-top: 50px;
}

.glass-panel {
    border:
        1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            rgba(6, 27, 37, 0.88),
            rgba(3, 17, 25, 0.73)
        );

    box-shadow: var(--shadow);

    backdrop-filter:
        blur(20px)
        saturate(120%);

    -webkit-backdrop-filter:
        blur(20px)
        saturate(120%);
}

/*
|--------------------------------------------------------------------------
| Compteur
|--------------------------------------------------------------------------
*/

.countdown-card {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 285px;

    padding:
        clamp(26px, 3vw, 42px);

    border-radius:
        clamp(24px, 3vw, 36px);
}

.countdown-label {
    margin: 0 0 13px;

    color: var(--muted);

    font-size:
        clamp(0.72rem, 1.3vw, 0.9rem);

    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.days-mode {
    display: flex;
    align-items: flex-end;

    gap:
        clamp(12px, 2vw, 21px);
}

.days-value {
    color: var(--text);

    font-size:
        clamp(7rem, 13vw, 11.5rem);

    font-weight: 950;
    letter-spacing: -0.09em;
    line-height: 0.74;

    font-variant-numeric:
        tabular-nums;

    text-shadow:
        0 12px 38px
        rgba(0, 0, 0, 0.42);
}

.days-unit {
    padding-bottom:
        clamp(8px, 1vw, 15px);

    color: var(--orange);

    font-size:
        clamp(1.65rem, 3vw, 2.65rem);

    font-weight: 900;
}

.clock-mode {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 9px;

    margin-top: 8px;
}

.time-box {
    min-width: 0;

    padding:
        clamp(15px, 2.2vw, 22px)
        7px;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 17px;

    background:
        rgba(255, 255, 255, 0.055);

    text-align: center;
}

.time-box strong {
    display: block;

    color: var(--orange);

    font-size:
        clamp(2.3rem, 4.5vw, 4.8rem);

    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 0.9;

    font-variant-numeric:
        tabular-nums;
}

.time-box span {
    display: block;

    margin-top: 9px;

    color: var(--muted);

    font-size:
        clamp(0.57rem, 0.9vw, 0.73rem);

    font-weight: bold;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.departure-mode {
    display: grid;

    gap: 8px;

    margin-top: 7px;
}

.departure-mode strong {
    color: var(--orange-light);

    font-size:
        clamp(3.6rem, 7vw, 6.6rem);

    font-weight: 950;
    letter-spacing: -0.07em;
    line-height: 0.9;
}

.departure-mode span {
    color: var(--muted);

    font-size:
        clamp(1rem, 2vw, 1.25rem);

    font-weight: bold;
}

.countdown-separator {
    width: 100%;
    height: 1px;

    margin:
        clamp(21px, 2.7vw, 29px)
        0
        clamp(18px, 2.7vw, 24px);

    background:
        rgba(255, 255, 255, 0.16);
}

.departure-date {
    display: flex;
    align-items: flex-start;

    gap: 13px;
}

.calendar-icon {
    color: var(--orange);

    font-size: 1.55rem;
}

.departure-date strong {
    display: block;

    font-size:
        clamp(1rem, 1.7vw, 1.3rem);

    line-height: 1.25;
}

.departure-date span:not(.calendar-icon) {
    display: block;

    margin-top: 5px;

    color: var(--muted);

    font-size:
        clamp(0.78rem, 1.2vw, 0.93rem);
}

/*
|--------------------------------------------------------------------------
| Informations
|--------------------------------------------------------------------------
*/

.info-card,
.quote-card {
    min-height: 285px;

    padding:
        clamp(25px, 3vw, 38px);

    border-radius:
        clamp(24px, 3vw, 36px);
}

.section-kicker {
    margin: 0 0 21px;

    color: var(--orange-light);

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.info-list {
    display: grid;

    gap: 19px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.info-list li {
    display: grid;

    grid-template-columns:
        32px
        minmax(0, 1fr);

    gap: 12px;

    align-items: center;
}

.info-icon {
    color: var(--orange);

    font-size: 1.4rem;
}

.info-list strong {
    display: block;

    font-size:
        clamp(0.93rem, 1.4vw, 1.08rem);
}

.info-list span {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size:
        clamp(0.73rem, 1.1vw, 0.87rem);
}

.switch-message {
    margin: 22px 0 0;
    padding: 12px 14px;

    border:
        1px solid
        rgba(255, 102, 73, 0.25);

    border-radius: 14px;

    color:
        rgba(255, 247, 233, 0.82);

    background:
        rgba(255, 102, 73, 0.08);

    font-size:
        clamp(0.71rem, 1vw, 0.82rem);

    line-height: 1.45;
}

/*
|--------------------------------------------------------------------------
| Citation
|--------------------------------------------------------------------------
*/

.quote-card {
    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;
}

.quote-mark {
    color:
        rgba(255, 102, 73, 0.5);

    font-family:
        Georgia,
        serif;

    font-size: 5.4rem;
    line-height: 0.5;
}

blockquote {
    margin: 18px 0 0;

    color: var(--orange);

    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;

    font-size:
        clamp(1.45rem, 2.3vw, 2.05rem);

    font-style: italic;
    line-height: 1.3;

    transform: rotate(-2deg);
}

.quote-line {
    width: 82%;
    height: 2px;

    margin-top: 25px;

    background: var(--orange);

    transform: rotate(-3deg);
    transform-origin: left;
}

/*
|--------------------------------------------------------------------------
| États
|--------------------------------------------------------------------------
*/

.states-section {
    padding:
        clamp(54px, 7vw, 90px)
        24px
        clamp(65px, 8vw, 105px);

    background:
        linear-gradient(
            180deg,
            #061722,
            #031019
        );

    scroll-margin-top: 70px;
}

.states-inner {
    width:
        min(
            100%,
            var(--container)
        );

    margin: 0 auto;
}

.states-heading {
    display: flex;
    align-items: center;

    gap: 20px;

    margin:
        0
        0
        clamp(24px, 4vw, 38px);

    color: var(--muted);

    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-align: center;
    text-transform: uppercase;
}

.states-heading::before,
.states-heading::after {
    height: 1px;

    flex: 1;

    content: "";

    background:
        rgba(255, 255, 255, 0.17);
}

.states-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        clamp(14px, 2vw, 24px);
}

.state-card {
    position: relative;
    isolation: isolate;

    min-height:
        clamp(260px, 25vw, 370px);

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        clamp(18px, 2vw, 25px);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.34);

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.state-card img {
    position: absolute;
    z-index: -2;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 450ms ease;
}

.state-card::after {
    position: absolute;
    z-index: -1;

    inset: 0;

    content: "";

    background:
        linear-gradient(
            180deg,
            rgba(3, 14, 21, 0.02) 28%,
            rgba(3, 14, 21, 0.27) 57%,
            rgba(3, 14, 21, 0.94) 100%
        );
}

.state-card-content {
    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    padding:
        clamp(20px, 2.3vw, 29px);

    text-align: center;
}

.state-card strong {
    font-family:
        "Bebas Neue",
        Impact,
        "Arial Narrow",
        sans-serif;

    font-size:
        clamp(1.5rem, 2.5vw, 2.3rem);

    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    text-shadow:
        0 5px 18px
        rgba(0, 0, 0, 0.9);
}

.state-card span {
    display: block;

    margin-top: 7px;

    color: var(--muted);

    font-size:
        clamp(0.72rem, 1vw, 0.86rem);
}

.state-card:hover {
    border-color:
        rgba(255, 180, 93, 0.6);

    box-shadow:
        0 24px 55px
        rgba(0, 0, 0, 0.45);

    transform:
        translateY(-6px);
}

.state-card:hover img {
    transform: scale(1.06);
}

/*
|--------------------------------------------------------------------------
| Itinéraire
|--------------------------------------------------------------------------
*/

.itinerary-section {
    padding:
        clamp(60px, 8vw, 110px)
        24px;

    background:
        linear-gradient(
            145deg,
            #031019,
            #08242e
        );

    scroll-margin-top: 70px;
}

.itinerary-inner {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.8fr)
        minmax(420px, 1.2fr);

    gap: clamp(35px, 6vw, 90px);

    align-items: center;

    width: min(100%, 1200px);

    margin: 0 auto;
}

.itinerary-kicker {
    margin: 0 0 15px;

    color: var(--orange-light);

    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.itinerary-title {
    margin: 0;

    font-size:
        clamp(2.6rem, 5vw, 5.2rem);

    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.itinerary-description {
    margin: 22px 0 0;

    color: var(--muted);

    font-size:
        clamp(0.92rem, 1.4vw, 1.08rem);

    line-height: 1.7;
}

.stops-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.stops-list li {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 13px 15px;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius: 14px;

    color:
        rgba(255, 247, 233, 0.88);

    background:
        rgba(255, 255, 255, 0.045);

    font-size:
        clamp(0.77rem, 1.1vw, 0.91rem);

    font-weight: bold;
}

.stop-number {
    display: grid;
    place-items: center;

    width: 27px;
    height: 27px;

    flex: 0 0 auto;

    border-radius: 999px;

    color: #fff;
    background: var(--orange);

    font-size: 0.72rem;
    font-weight: 900;
}

/*
|--------------------------------------------------------------------------
| Pied de page
|--------------------------------------------------------------------------
*/

.footer {
    display: grid;
    justify-items: center;

    gap: 8px;

    padding:
        24px
        20px
        max(
            24px,
            env(safe-area-inset-bottom)
        );

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    color:
        rgba(255, 247, 233, 0.58);

    background: #020c12;

    text-align: center;
}

.footer p {
    margin: 0;
}

.footer-copyright {
    font-size:
        clamp(0.72rem, 1.2vw, 0.82rem);

    font-weight: 600;
    letter-spacing: 0.04em;
}

.footer-brand {
    color: var(--orange);

    font-weight: 900;
    letter-spacing: 0.08em;
}

.footer-separator {
    margin: 0 8px;

    color:
        rgba(255, 247, 233, 0.3);
}

.footer-tagline {
    color:
        rgba(255, 247, 233, 0.38);

    font-size:
        clamp(0.66rem, 1vw, 0.74rem);

    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .footer-copyright {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        gap: 4px 6px;
    }

    .footer-separator {
        margin: 0 2px;
    }
}

/*
|--------------------------------------------------------------------------
| Message image manquante
|--------------------------------------------------------------------------
*/

.image-error {
    position: fixed;
    z-index: 300;

    right: 16px;
    bottom: 16px;
    left: 16px;

    display: none;

    max-width: 720px;

    margin: auto;
    padding: 13px 17px;

    border-radius: 13px;

    color: #2c1600;
    background: #ffd898;

    font-size: 0.84rem;
    font-weight: bold;
    text-align: center;

    box-shadow:
        0 14px 35px
        rgba(0, 0, 0, 0.32);
}

.image-error.visible {
    display: block;
}

/*
|--------------------------------------------------------------------------
| Tablette
|--------------------------------------------------------------------------
*/

@media (max-width: 1100px) {
    .topbar-inner {
        grid-template-columns:
            auto
            1fr
            auto;
    }

    .navigation {
        gap: 25px;
    }

    .dashboard {
        grid-template-columns:
            minmax(330px, 0.9fr)
            minmax(380px, 1.1fr);
    }

    .quote-card {
        grid-column:
            1 / -1;

        min-height: 220px;
    }

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

    .state-card {
        min-height: 320px;
    }
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 760px) {
    .topbar {
        min-height: 62px;
    }

    .topbar-inner {
        display: flex;
        justify-content: space-between;

        width:
            calc(100% - 28px);

        min-height: 62px;
    }

    .brand {
        font-size: 0.68rem;
    }

    .topbar-action {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .navigation {
        position: fixed;

        top: 62px;
        right: 0;
        bottom: 0;
        left: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;

        gap: 0;

        padding:
            26px
            18px;

        background:
            rgba(2, 13, 21, 0.97);

        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);

        opacity: 0;
        pointer-events: none;

        transform:
            translateY(-12px);

        transition:
            opacity 180ms ease,
            transform 180ms ease;
    }

    .navigation.open {
        opacity: 1;
        pointer-events: auto;

        transform:
            translateY(0);
    }

    .navigation a {
        padding:
            20px
            8px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.1);

        font-size: 0.87rem;
    }

    .navigation a::after {
        display: none;
    }

    .hero {
        padding-top: 62px;
    }

    .hero-background img {
        object-position:
            center bottom;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2, 13, 21, 0.73) 0%,
                rgba(2, 13, 21, 0.22) 30%,
                rgba(2, 13, 21, 0.18) 48%,
                rgba(2, 13, 21, 0.76) 72%,
                rgba(2, 13, 21, 0.98) 100%
            );
    }

    .hero-content {
        width:
            calc(100% - 24px);

        min-height:
            calc(100svh - 62px);

        padding:
            28px
            0
            22px;
    }

    .hero-title {
        display: block;

        width: fit-content;
        max-width: 7ch;

        font-size:
            clamp(4.2rem, 20vw, 6.4rem);

        line-height: 0.84;
        white-space: normal;
    }

    .hero-title-usa {
        margin-top: 0.02em;
    }

    .hero-route {
        gap: 9px;

        margin-top: 19px;
    }

    .route-main {
        gap: 7px 9px;

        padding:
            10px
            12px;

        border-radius: 17px;

        font-size: 0.71rem;
    }

    .route-stages {
        max-width: 95%;

        padding-left: 2px;

        font-size: 0.67rem;
        line-height: 1.45;
    }

    .dashboard {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top:
            clamp(180px, 33vh, 360px);
    }

    .countdown-card,
    .info-card,
    .quote-card {
        min-height: auto;

        border-radius: 25px;
    }

    .countdown-card {
        padding:
            27px
            22px;
    }

    .days-value {
        font-size:
            clamp(7.2rem, 37vw, 10rem);
    }

    .days-unit {
        font-size: 1.55rem;
    }

    .clock-mode {
        gap: 6px;
    }

    .time-box {
        padding:
            15px
            4px;
    }

    .time-box span {
        font-size: 0.57rem;
        letter-spacing: 0;
        text-transform: none;
    }

    .quote-card {
        min-height: 220px;
    }

    .states-section {
        padding-right: 12px;
        padding-left: 12px;
    }

    .states-heading {
        gap: 10px;

        font-size: 0.65rem;
        letter-spacing: 0.12em;
    }

    .states-grid {
        display: flex;

        overflow-x: auto;

        margin-right: -12px;
        margin-left: -12px;

        padding:
            0
            12px
            15px;

        scroll-snap-type:
            x mandatory;

        scrollbar-width: none;
    }

    .states-grid::-webkit-scrollbar {
        display: none;
    }

    .state-card {
        min-width: 78vw;
        min-height: 390px;

        scroll-snap-align: center;
    }

    .itinerary-section {
        padding-right: 17px;
        padding-left: 17px;
    }

    .itinerary-inner {
        grid-template-columns: 1fr;
    }

    .stops-list {
        grid-template-columns: 1fr;
    }
}

/*
|--------------------------------------------------------------------------
| Petits mobiles
|--------------------------------------------------------------------------
*/

@media (max-width: 390px) {
    .brand {
        letter-spacing: 0.13em;
    }

    .route-main {
        font-size: 0.65rem;
    }

    .route-stages {
        font-size: 0.62rem;
    }

    .dashboard {
        margin-top:
            clamp(145px, 27vh, 270px);
    }

    .days-value {
        font-size: 7rem;
    }

    .days-unit {
        font-size: 1.35rem;
    }
}

/*
|--------------------------------------------------------------------------
| Écrans peu hauts
|--------------------------------------------------------------------------
*/

@media (max-height: 790px) and (min-width: 761px) {
    .hero-content {
        padding-top: 28px;
        padding-bottom: 24px;
    }

    .hero-title {
        font-size:
            clamp(4.5rem, 13vh, 7.4rem);
    }

    .hero-route {
        margin-top: 16px;
    }

    .dashboard {
        margin-top: 28px;
    }

    .countdown-card,
    .info-card,
    .quote-card {
        min-height: 245px;
    }

    .days-value {
        font-size:
            clamp(6rem, 20vh, 8.6rem);
    }
}

/*
|--------------------------------------------------------------------------
| Animations
|--------------------------------------------------------------------------
*/

@media (prefers-reduced-motion: no-preference) {
    .hero-heading {
        animation:
            heading-arrival
            700ms
            ease-out
            both;
    }

    .dashboard {
        animation:
            dashboard-arrival
            800ms
            100ms
            ease-out
            both;
    }

    @keyframes heading-arrival {
        from {
            opacity: 0;

            transform:
                translateY(-18px);
        }

        to {
            opacity: 1;

            transform:
                translateY(0);
        }
    }

    @keyframes dashboard-arrival {
        from {
            opacity: 0;

            transform:
                translateY(25px);
        }

        to {
            opacity: 1;

            transform:
                translateY(0);
        }
    }
}

/*
|--------------------------------------------------------------------------
| Boutons home vers la page itinéraire
|--------------------------------------------------------------------------
*/

.hero-route-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 18px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 18px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;

    color: #fff7e9;
    background:
        linear-gradient(
            135deg,
            rgba(255, 102, 73, 0.9),
            rgba(255, 180, 93, 0.88)
        );

    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.25);

    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
    transform: translateY(-2px);

    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.32);

    filter: brightness(1.04);
}

.hero-cta-secondary {
    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.state-card {
    display: block;

    color: inherit;
    text-decoration: none;
}

.state-card:focus-visible {
    outline: 2px solid rgba(255, 180, 93, 0.9);
    outline-offset: 4px;
}

@media (max-width: 760px) {
    .hero-route-actions {
        gap: 10px;
    }

    .hero-cta {
        width: 100%;

        padding: 0 14px;

        font-size: 0.73rem;
    }
}