@import url("https://fonts.googleapis.com/css2?family=Tilt+Warp&display=swap");

:root {
    /* Couleurs principales */
    --color-red: #bc382d;
    --color-blue: #1831ba;
    --color-black: #111111;
    --color-beige: #f9f5e6;

    /* Couleurs fonctionnelles */
    --color-white: #ffffff;
    --color-grey: rgba(17, 17, 17, 0.62);

    /*
     * Alias conservés pour éviter de devoir immédiatement
     * modifier toutes les anciennes règles.
     */
    --color-blue-dark: #111111;
    --color-cream: var(--color-beige);
    --color-paper: var(--color-beige);
    --color-yellow: var(--color-beige);
    --color-pink: var(--color-red);

    /* Typographies */
    --font-display: "Tilt Warp", sans-serif;
    --font-serif: "Times New Roman", Times, serif;
    --font-body: "Times New Roman", Times, serif;

    /*
     * Compatibilité temporaire avec la CSS existante.
     * Les éléments qui utilisaient --font-sans passent sur Tilt Warp.
     */
    --font-sans: var(--font-display);

    --container-width: 1600px;
    --container-padding: clamp(22px, 3.25vw, 58px);

    --header-height: 88px;

    --transition: 180ms ease;
}

/* Reset */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--color-beige);
    color: var(--color-black);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

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

.cta{ border-radius: 999px;
    padding: 10px 24px;
    background: var(--color-red);
    color: var(--color-beige);
    font-size: 20px;
    font-family: var(--font-display);}



.tag {
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-blue);
    border-radius: 999px;
    padding: 5px 16px;
    background: var(--color-blue);
    color: var(--color-beige);
    font-family: var(--font-display);
    font-size: 14px;
    line-height: 1;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}
.tag.tagSmall{     padding: 4px 10px;
    font-size: 12px; }
.tag.tagCat{ border: 1px solid var(--color-red);
    color: var(--color-red); background: transparent;}
.tag:hover {
    transform: translateY(-2px);
}

.tag.is-active {
    background: var(--color-red);
    border-color: var(--color-red);
}

button {
    color: inherit;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

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

.font-display {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.035em;
}

.font-serif {
    font-family: var(--font-serif);
    font-weight: 400;
}

.eyebrow,
.site-navigation,
.home-arrow-link,
.article-card__category,
.article-tag {
    font-family: var(--font-display);
}

/* Structure */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

.page-section {
    padding-block: clamp(70px, 9vw, 150px);
}

.page-section--compact {
    padding-block: clamp(45px, 6vw, 90px);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Typographie */

.heading-display {
    font-family: var(--font-display);
    font-size: clamp(64px, 10vw, 165px);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.045em;
}

.heading-section {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 110px);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.04em;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--color-red);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}
/* Header */

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
}

.site-header__inner {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 25px clamp(24px, 3.4vw, 58px);
}

.brand-logo {
    width: clamp(142px, 13vw, 200px);
    flex-shrink: 0;
}

.site-navigation__list {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.7vw, 43px);
}

.site-navigation__link {
    position: relative;
    display: block;
    padding: 0 0 5px;
    color: var(--color-black);
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
}

.site-navigation__link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.site-navigation__link:hover::after,
.site-navigation__link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-navigation__item--maps {
    position: relative;
}

.site-navigation__submenu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 180px;
    padding: 16px;
    background: var(--color-beige);
    box-shadow: 0 16px 40px rgb(0 0 0 / 9%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.site-navigation__submenu a {
    display: block;
    padding: 7px 4px;
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
}

.site-navigation__submenu a:hover {
    color: var(--color-red);
}

.site-navigation__item--maps:hover .site-navigation__submenu,
.site-navigation__item--maps:focus-within .site-navigation__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-navigation__link--map {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.site-navigation__icon {
    width: 1.05rem;
    height: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header__menu-button {
    display: none;
    align-items: center;
    gap: 12px;
    border: 0;
    padding: 8px 0;
    background: transparent;
    cursor: pointer;
}

.site-header__menu-label {
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
}

.site-header__menu-icon {
    display: grid;
    width: 28px;
    gap: 6px;
}

.site-header__menu-icon span {
    width: 100%;
    height: 1px;
    background: currentColor;
    transition:
        transform var(--transition),
        opacity var(--transition);
}
/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    overflow: hidden;
    background: var(--color-blue);
    color: var(--color-beige);
}

.site-footer__main {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.2fr)
        minmax(460px, 1fr);
    gap: clamp(70px, 10vw, 160px);
    padding:
        clamp(75px, 9vw, 135px)
        clamp(24px, 5vw, 78px)
        clamp(70px, 8vw, 120px);
        border-top: 1px solid rgba(249, 245, 230, 0.32);
}

.site-footer__brand {
    max-width: 570px;
}

.site-footer__logo {
    display: grid;
    width: fit-content;
    color: var(--color-beige);
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 400;
    line-height: 0.75;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.site-footer__logo span:nth-child(2) {
    transform: translateX(0.2em);
}

.site-footer__logo span:nth-child(3) {
    transform: translateX(-0.08em);
}

.site-footer__logo span:nth-child(4) {
    transform: translateX(0.28em);
}

.site-footer__intro {
    max-width: 430px;
    margin:
        clamp(35px, 5vw, 70px)
        0
        0;
    color: rgba(249, 245, 230, 0.76);
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1.25;
}

.site-footer__columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(30px, 4vw, 65px);
    align-items: start;
    padding-top: 12px;
}

.site-footer__title {
    margin-bottom: 27px;
    color: var(--color-red);
    font-family: var(--font-display);
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
}

.site-footer__column ul {
    display: grid;
    gap: 13px;
}

.site-footer__column a {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1.15;
    transition:
        color var(--transition),
        transform var(--transition);
}

.site-footer__column a:hover {
    color: var(--color-red);
    transform: translateX(3px);
}

.site-footer__column a span {
    color: var(--color-red);
    font-family: var(--font-display);
    font-size: 13px;
}

.site-footer__statement {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2em;
    align-items: baseline;
    padding:
        clamp(40px, 6vw, 85px)
        clamp(24px, 5vw, 78px);
    border-top: 1px solid rgba(249, 245, 230, 0.32);
    border-bottom: 1px solid rgba(249, 245, 230, 0.32);
    font-family: var(--font-display);
    font-size: 50px;
    line-height: 0.78;
    letter-spacing: -0.05em;
}

.site-footer__statement span {
    color: var(--color-beige);
}

.site-footer__statement strong {
    color: var(--color-red);
    font-weight: 400;
}

.site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 35px;
    align-items: center;
    padding:
        24px
        clamp(24px, 5vw, 78px)
        30px;
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__bottom > p:last-child {
    text-align: right;
}

.site-footer__legal {
    display: flex;
    gap: 25px;
}

.site-footer__legal a {
    position: relative;
}

.site-footer__legal a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.site-footer__legal a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Tablet */

@media (max-width: 950px) {
    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .site-footer__columns {
        max-width: 700px;
    }
}

/* Mobile */

@media (max-width: 650px) {
    .site-footer__main {
        gap: 60px;
        padding-inline: 20px;
    }

    .site-footer__logo {
        font-size:  30px;
    }

    .site-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 45px;
    }

    .site-footer__column:last-child {
        grid-column: 1 / -1;
    }

    .site-footer__statement {
        display: block;
        padding-inline: 20px;
        font-size: 40px;
        line-height: 0.82;
    }

    .site-footer__statement span,
    .site-footer__statement strong {
        display: block;
    }

    .site-footer__bottom {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-inline: 20px;
    }

    .site-footer__bottom > p:last-child {
        text-align: left;
    }

    .site-footer__legal {
        flex-wrap: wrap;
        gap: 12px 22px;
    }
}
/* Global responsive */

@media (max-width: 800px) {
    :root {
        --header-height: 76px;
    }

    .site-header__inner {
        padding: 18px 20px;
    }

    .brand-logo {
        position: relative;
        z-index: 2;
        width: 132px;
    }

    .site-header__menu-button {
        position: relative;
        z-index: 2;
        display: flex;
        color: var(--color-black);
    }

    .site-navigation {
        position: fixed;
        inset: 0;
        display: flex;
        align-items: center;
        padding: 110px var(--container-padding) 50px;
        background: var(--color-beige);
        color: var(--color-black);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition:
            opacity 250ms ease,
            visibility 250ms ease,
            transform 250ms ease;
    }

    .site-navigation.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-navigation__list {
        display: grid;
        width: 100%;
        gap: 10px;
    }

    .site-navigation__link {
        padding-block: 7px;
        color: var(--color-blue);
        font-family: var(--font-display);
        font-size: clamp(40px, 13vw, 66px);
        line-height: 0.92;
        letter-spacing: -0.03em;
    }

    .site-navigation__link::after {
        display: none;
    }

    .site-navigation__submenu {
        position: static;
        min-width: 0;
        padding: 8px 0 4px 20px;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .site-navigation__submenu a {
        padding: 4px;
        color: var(--color-red);
    }

    .site-header__menu-button[aria-expanded="true"] .site-header__menu-icon span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .site-header__menu-button[aria-expanded="true"] .site-header__menu-icon span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .site-footer__copyright {
        grid-column: auto;
    }
}
/* Article grid */

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(20px, 3vw, 46px);
    row-gap: clamp(55px, 7vw, 105px);
}

.article-card {
    min-width: 0;
}

.article-card__link {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.article-card__image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 25px;
    background: var(--color-cream);
}

.article-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.article-card__link:hover .article-card__image {
    transform: scale(1.035);
}

.article-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.article-card__meta {
    display: flex;
    min-height: 22px;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.article-card__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.article-card__category {
    color: var(--color-red);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-card__date {
    flex-shrink: 0;
    color: var(--color-grey);
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.article-card__title {
    max-width: 95%;
    margin-bottom: 14px;
    color: var(--color-blue);
    font-family: var(--font-serif);
    font-size: clamp(28px, 2.4vw, 39px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.025em;
    transition: color var(--transition);
}

.article-card__link:hover .article-card__title {
    color: var(--color-red);
}

.article-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 19px;
    color: var(--color-grey);
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.article-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 25px;
}

.article-tag {
    border-radius: 999px;
    padding: 5px 10px;
    background: rgb(18 62 101 / 8%);
    color: var(--color-blue);
    font-size: 10px;
}

.article-card__read-more {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--color-blue);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-card__read-more span {
    transition: transform var(--transition);
}

.article-card__link:hover .article-card__read-more span {
    transform: translate(3px, -3px);
}

/* Card without image */

.article-card--without-image .article-card__link {
    min-height: 480px;
    padding: clamp(26px, 3vw, 45px);
    background: var(--color-blue);
}

.article-card--without-image .article-card__content {
    justify-content: flex-start;
}

.article-card--without-image .article-card__category,
.article-card--without-image .article-card__date,
.article-card--without-image .article-card__excerpt {
    color: rgb(255 255 255 / 68%);
}

.article-card--without-image .article-card__title,
.article-card--without-image .article-card__read-more {
    color: var(--color-white);
}

.article-card--without-image .article-tag {
    background: rgb(255 255 255 / 12%);
    color: var(--color-white);
}
/* Shared timeline entry */
.home-timeline-entry {
    font-size: 13px;
    line-height: 1.55;
}

.home-timeline-entry p {
    margin: 0;
    color: var(--color-grey);
}

.home-timeline-entry__link {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-top: 14px;
    border-top: 1px solid rgb(24 24 24 / 15%);
    color: var(--color-blue);
}

.home-timeline-entry__link > span:last-child {
    flex-shrink: 0;
    color: var(--color-red);
}

.home-timeline-entry figure {
    margin: 0;
}

.home-timeline-entry figure img {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
}

.home-timeline-entry figcaption {
    margin-top: 7px;
    color: var(--color-grey);
    font-size: 10px;
}
/* Modal infobox */

.timeline-infobox {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 220ms ease,
        visibility 220ms ease;
}

.timeline-infobox.is-open {
    opacity: 1;
    visibility: visible;
}

.timeline-infobox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgb(11 42 70 / 75%);
    cursor: pointer;
}

.timeline-infobox__panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    width: min(960px, 100%);
    max-height: calc(100vh - 50px);
    overflow: auto;
    background: var(--color-paper);
    box-shadow: 0 25px 80px rgb(0 0 0 / 25%);
    transform: translateY(20px);
    transition: transform 220ms ease;
}

.timeline-infobox.is-open .timeline-infobox__panel {
    transform: translateY(0);
}

.timeline-infobox__image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}

.timeline-infobox__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 7vw, 90px);
}

.timeline-infobox__content h2 {
    margin-bottom: 25px;
    
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
}

.timeline-infobox__text {
    color: var(--color-grey);
    line-height: 1.7;
    white-space: pre-line;
}

.timeline-infobox__close {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgb(24 24 24 / 30%);
    border-radius: 50%;
    background: var(--color-paper);
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

body.timeline-infobox-is-open {
    overflow: hidden;
}
@media (max-width: 700px) {
    .timeline-infobox__panel {
        grid-template-columns: 1fr;
    }

    .timeline-infobox__image-wrapper img {
        min-height: 260px;
        max-height: 330px;
    }
}
/* Leaflet */

.leaflet-container {
    font-family: var(--font-sans);
}

.leaflet-control-attribution {
    font-size: 9px;
}

.leaflet-control-zoom {
    overflow: hidden;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: 0 6px 20px rgb(0 0 0 / 12%) !important;
}

.leaflet-control-zoom a {
    display: grid !important;
    width: 38px !important;
    height: 38px !important;
    place-items: center;
    border: 0 !important;
    border-bottom: 1px solid rgb(0 0 0 / 10%) !important;
    color: var(--color-blue) !important;
    font-family: var(--font-sans) !important;
    line-height: 1 !important;
}
/* Marker */

.travel-map-marker-wrapper {
    border: 0;
    background: transparent;
}

.travel-map-marker {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 2px solid var(--color-paper);
    border-radius: 50%;
    background: var(--color-red);
    color: var(--color-white);
    box-shadow: 0 6px 18px rgb(0 0 0 / 20%);
    font-size: 11px;
    font-weight: 600;
    transition:
        transform var(--transition),
        background-color var(--transition);
}

.travel-map-marker:hover {
    transform: scale(1.1);
    background: var(--color-blue);
}
/* Homepage */
.page-home { overflow-x: hidden; }
/* Hero */

.home-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #b8ced1;
}

.home-hero__background {
    position: absolute;
    inset: 0;
}

.home-hero__background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(249, 245, 230, 0.08),
            transparent 45%,
            rgba(17, 17, 17, 0.08)
        );
    pointer-events: none;
}

.home-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.78) contrast(0.92);
}

.home-hero__collage {
    position: absolute;
    z-index: 3;
    top: 14%;
    right: clamp(7%, 11vw, 15%);
    width: clamp(280px, 31vw, 480px);
    aspect-ratio: 0.85;
}

.home-hero__photo {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 79%;
    height: 78%;
    overflow: hidden;
    background: #d2d2d2;
    transform: rotate(0.8deg);
    box-shadow: 0 9px 20px rgb(0 0 0 / 12%);
}

.home-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.03);
}

.home-hero__sun {
    position: absolute;
    z-index: 1;
    top: 4%;
    right: -8%;
    width: 68%;
    height: 54px;
   
    transform: rotate(7deg);
}


.home-hero__postcard {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 76%;
    min-height: 42%;
    padding: 10px;
    background: var(--color-beige);
    color: var(--color-red);
    transform: rotate(7deg);
    box-shadow: 0 8px 20px rgb(0 0 0 / 11%);
}

.home-hero__postcard strong,
.home-hero__postcard span {
    display: block;
    font-family: "Tilt Warp", sans-serif;
    font-size: 25px;
    font-weight: 400;
    text-align: right;
    position: absolute;
   
}

.home-hero__postcard p {
        margin: 62px 32px;
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(14px, 1.35vw, 21px);
    font-style: italic;
    line-height: 1.05;
    text-align: center;
}

.home-hero__postcard span {
    text-align: left;
    bottom: 5px;
    left: 10px;
}
.home-hero__postcard strong {
 right: 10px;
    top: 5px;
}

.home-hero__postcard:after{content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: url(../images/frontiere.svg) no-repeat;background-size: 100%;}

/* About */

.home-about {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    padding: clamp(90px, 11vw, 160px) 7vw;
    background: var(--color-blue);
    color: var(--color-beige);
}

.home-about__button-wrapper {
    position: absolute;
    top: 42px;
    right: 34px;
}

.home-pill-button {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border-radius: 999px;
    padding: 8px 23px;
    background: var(--color-red);
    color: var(--color-beige);
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(17px, 1.6vw, 24px);
    font-weight: 700;
}

.home-about__content {
    position: relative;
    z-index: 2;
    width: min(980px, 78%);
    margin: 0 auto;
    text-align: center;
}

.home-about__content > p {
    margin-bottom: 22px;
    font-size: clamp(25px, 3.3vw, 48px);
    line-height: 1.5;
}

.home-about__content > p span {
    color: rgba(249, 245, 230, 0.38);
}

.home-about__statement {
    font-style: italic;
}

.home-about__decoration {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.home-about__decoration img {
    position: absolute;
    
    object-fit: cover;
        max-width: 350px;
}


/* Desktop proportions */

@media (min-width: 1400px) {
    .home-hero {
        min-height: 920px;
    }

    .home-about {
        min-height: 690px;
    }
}

/* Mobile */

@media (max-width: 800px) {
    .site-header__inner {
        padding: 18px 20px;
    }

    .brand-logo {
        width: 132px;
    }

    .brand-logo__line {
        font-size: 24px;
    }

    .site-header__menu-button {
        display: flex;
        color: var(--color-black);
    }

    .site-navigation {
        background: var(--color-beige);
        color: var(--color-black);
    }

    .site-navigation__link {
        color: var(--color-blue);
        font-size: clamp(40px, 13vw, 66px);
    }

    .home-hero {
        min-height: 760px;
    }

    .home-hero__background img {
        object-position: 44% center;
    }

    .home-hero__collage {
        top: 25%;
        right: 5%;
        width: min(73vw, 360px);
    }

    .home-about {
        min-height: 670px;
        padding:
            120px
            20px
            100px;
    }

    .home-about__button-wrapper {
        top: 28px;
        right: 20px;
    }

    .home-about__content {
        width: 100%;
    }

    .home-about__content > p {
        font-size: clamp(24px, 7vw, 36px);
        line-height: 1.48;
    }

    .home-about__decoration--left {
        left: -45px;
    }

    .home-about__decoration--right {
        right: -60px;
    }
}
/* Shared section header */

.home-section-header {
    display: flex;
    justify-content: space-between;
    gap: 45px;
    align-items: end;
    margin-bottom: clamp(55px, 8vw, 110px);
}

.home-section-header h2 {
    margin: 0;
    color: var(--color-blue);
}

/* Featured articles */

.home-featured {
    padding-block: clamp(100px, 13vw, 200px);
    background: var(--color-cream);
}

.home-featured__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    gap: clamp(25px, 4vw, 65px);
}

.home-featured-card:nth-child(3) {
    grid-column: 2;
}

.home-featured-card__link {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.home-featured-card__image {
    overflow: hidden;
    background: var(--color-paper);
}

.home-featured-card--large .home-featured-card__image {
    aspect-ratio: 1.35 / 1;
}

.home-featured-card--small .home-featured-card__image {
    aspect-ratio: 1.2 / 1;
}

.home-featured-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-featured-card__link:hover img {
    transform: scale(1.035);
}

.home-featured-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding-top: 24px;
}

.home-featured-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 17px;
    color: var(--color-grey);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-featured-card__meta span:first-child {
    color: var(--color-red);
}

.home-featured-card h3 {
    margin-bottom: 16px;
    color: var(--color-blue);
    font-family: var(--font-serif);
    font-size: clamp(35px, 4.2vw, 68px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.home-featured-card--small h3 {
    font-size: clamp(29px, 2.8vw, 43px);
}

.home-featured-card__content > p {
    display: -webkit-box;
    overflow: hidden;
    max-width: 680px;
    margin-bottom: 25px;
    color: var(--color-grey);
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-featured-card__more {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--color-red);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.home-featured-card--without-image .home-featured-card__link {
    min-height: 390px;
    padding: clamp(28px, 4vw, 55px);
    background: var(--color-blue);
    color: var(--color-white);
}

.home-featured-card--without-image h3,
.home-featured-card--without-image .home-featured-card__more {
    color: var(--color-white);
}

.home-featured-card--without-image .home-featured-card__meta,
.home-featured-card--without-image .home-featured-card__content > p {
    color: rgb(255 255 255 / 68%);
}

/* Manifesto */

.home-manifesto {
    padding-block: clamp(110px, 15vw, 230px);
    background: var(--color-blue);
    color: var(--color-white);
}

.home-manifesto__grid {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) minmax(280px, 0.45fr);
    gap: clamp(35px, 7vw, 115px);
    align-items: start;
}

.home-manifesto__number {
    margin: 8px 0 0;
    color: var(--color-yellow);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.home-manifesto .eyebrow {
    color: var(--color-yellow);
}

.home-manifesto h2 {
    max-width: 850px;
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: clamp(55px, 8vw, 120px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.045em;
}

.home-manifesto__text {
    padding-top: clamp(45px, 8vw, 120px);
    color: rgb(255 255 255 / 72%);
    font-size: 15px;
    line-height: 1.75;
}

.home-manifesto__text p:last-child {
    margin-bottom: 0;
}
/* Maps */
.map-switcher {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem;
    border: 1px solid currentColor;
    border-radius: 999px;
}

.map-switcher__link {
    position: relative;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    color: inherit;
    text-decoration: none;
    transition:
        background-color 180ms ease,
        color 180ms ease;
}

.map-switcher__link.is-active {
    background: var(--color-black, #111);
    color: var(--color-white, #fff);
}

.home-maps {
    padding-block: clamp(105px, 14vw, 210px);
    background: var(--color-cream);
}

.home-maps__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 45px);
}

.home-map-card {
    position: relative;
    display: flex;
    min-height: clamp(450px, 52vw, 720px);
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: clamp(30px, 5vw, 70px);
    transition: transform 300ms ease;
}

.home-map-card:hover {
    transform: translateY(-5px);
}

.home-map-card--den-haag {
    background: var(--color-red);
    color: var(--color-white);
}

.home-map-card--netherlands {
    background: var(--color-blue);
    color: var(--color-white);
}

.home-map-card::before,
.home-map-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.home-map-card::before {
    top: 16%;
    right: -12%;
    width: 75%;
    height: 52%;
    border: 1px solid currentColor;
    border-radius: 48% 52% 55% 45%;
    opacity: 0.32;
    transform: rotate(-14deg);
}

.home-map-card::after {
    top: 33%;
    left: -15%;
    width: 88%;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
    transform: rotate(12deg);
}

.home-map-card__label,
.home-map-card__title,
.home-map-card__text,
.home-map-card__arrow {
    position: relative;
    z-index: 1;
}

.home-map-card__label {
    margin-bottom: auto;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-map-card__title {
    display: block;
    margin-bottom: 23px;
    font-family: var(--font-serif);
    font-size: clamp(56px, 7vw, 105px);
    line-height: 0.9;
    letter-spacing: -0.045em;
}

.home-map-card__text {
    max-width: 390px;
    color: rgb(255 255 255 / 72%);
    font-size: 14px;
    line-height: 1.65;
}

.home-map-card__arrow {
    position: absolute;
    right: clamp(30px, 5vw, 70px);
    bottom: clamp(30px, 5vw, 70px);
    font-size: 25px;
    transition: transform var(--transition);
}

.home-map-card:hover .home-map-card__arrow {
    transform: translate(6px, -6px);
}

/* Latest */

.home-latest {
    padding-block: clamp(110px, 14vw, 210px);
}

.home-latest__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 42px);
}

.home-latest__grid .article-card__title {
    font-size: clamp(26px, 2.3vw, 36px);
}

.home-latest__grid .article-card--without-image .article-card__link {
    min-height: 440px;
}
/* Homepage sections responsive */

@media (max-width: 1100px) {
    .home-featured__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-featured-card--large {
        grid-column: 1 / -1;
    }

    .home-featured-card:nth-child(3) {
        grid-column: auto;
    }

    .home-manifesto__grid {
        grid-template-columns: 55px minmax(0, 1fr);
    }

    .home-manifesto__text {
        grid-column: 2;
        max-width: 600px;
        padding-top: 20px;
    }

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

@media (max-width: 700px) {
    .home-section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .home-featured__grid,
    .home-maps__grid,
    .home-latest__grid {
        grid-template-columns: 1fr;
    }

    .home-featured-card--large {
        grid-column: auto;
    }

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

    .home-manifesto__number,
    .home-manifesto__text {
        grid-column: auto;
    }

    .home-manifesto__text {
        padding-top: 15px;
    }

    .home-map-card {
        min-height: 490px;
    }
}
/* =========================================================
   SHARED TRAVEL CALENDAR
   ========================================================= */

.timeline-calendar-hero {
    padding:
        clamp(145px, 16vw, 250px)
        0
        clamp(75px, 8vw, 125px);
    background: var(--color-beige);
}

.timeline-calendar-hero__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 380px);
    gap: clamp(60px, 10vw, 160px);
    align-items: end;
}

.timeline-calendar-hero__eyebrow {
    margin-bottom: 26px;
    color: var(--color-red);
    font-family: var(--font-display);
    font-size: 12px;
    text-transform: uppercase;
}

.timeline-calendar-hero h1 {
    margin: 0;
    color: var(--color-black);
    font-family: var(--font-display);
    font-size: clamp(70px, 11vw, 170px);
    font-weight: 400;
    line-height: 0.78;
    letter-spacing: -0.055em;
}

.timeline-calendar-hero__tagline {
    margin: 24px 0 0;
    font-family: var(--font-display);
    font-size: clamp(15px, 1.5vw, 22px);
}

.timeline-calendar-hero__meta {
    padding-bottom: 12px;
}

.timeline-calendar-hero__meta > p {
    margin-bottom: 40px;
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.35;
}

.timeline-calendar-hero__meta dl {
    display: grid;
    gap: 15px;
    margin: 0;
}

.timeline-calendar-hero__meta dl div {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding-top: 10px;
    border-top: 1px solid var(--color-black);
}

.timeline-calendar-hero__meta dt {
    font-family: var(--font-display);
    font-size: 10px;
    text-transform: uppercase;
}

.timeline-calendar-hero__meta dd {
    margin: 0;
    font-size: 14px;
    text-align: right;
}

.timeline-calendar-section {
    background: var(--color-beige);
}

.travel-calendar {
    overflow: hidden;
}

.travel-calendar__months {
    position: sticky;
    z-index: 20;
    top: 0;
    border-top: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
    background: var(--color-beige);
}

.travel-calendar__months-inner {
    display: flex;
    gap: clamp(22px, 3vw, 50px);
    overflow-x: auto;
    padding:
        18px
        clamp(24px, 5vw, 78px);
    scrollbar-width: none;
}

.travel-calendar__months-inner::-webkit-scrollbar {
    display: none;
}

.travel-calendar__month {
    position: relative;
    flex-shrink: 0;
    border: 0;
    padding: 0 0 6px;
    background: transparent;
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer;
}

.travel-calendar__month::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--color-red);
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.travel-calendar__month.is-active {
    color: var(--color-red);
}

.travel-calendar__month.is-active::after {
    transform: scaleX(1);
}

.travel-calendar__controls {
    display: grid;
    grid-template-columns:
        auto
        minmax(180px, 1fr)
        auto;
    gap: 30px;
    align-items: center;
    padding:
        30px
        clamp(24px, 5vw, 78px);
}

.travel-calendar__nav {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    border: 0;
    padding: 0;
    background: transparent;
    font-family: var(--font-display);
    font-size: 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.travel-calendar__nav:disabled {
    opacity: 0.25;
    cursor: default;
}

.travel-calendar__period {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 32px);
    line-height: 1;
    text-align: center;
}

.travel-calendar__viewport {
    overflow: hidden;
}

.travel-calendar__track {
    display: flex;
    width: 100%;
    transition: transform 600ms
        cubic-bezier(0.65, 0, 0.35, 1);
}

.travel-calendar__group {
    display: grid;
    width: 100%;
    min-width: 100%;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    padding-inline: 70px;
}

.travel-calendar-week {
    position: relative;
    min-width: 0;
    min-height: 680px;
    border-left: 1px solid var(--color-black);
    padding:
        0
        clamp(18px, 2.4vw, 38px)
        70px;
    padding-top: 7px;
}

.travel-calendar-week:last-child {
    border-right: 1px solid var(--color-black);
}

.travel-calendar-week__header {
    position: relative;
    min-height: 175px;
    padding-top: 12px;
}

.travel-calendar-week__dot {
    position: absolute;
    top: -7px;
    left: calc(
        clamp(18px, 2.4vw, 38px) * -1 - 6px
    );
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-black);
}

.travel-calendar-week__number {
    color: var(--color-black);
    font-family: var(--font-display);
    font-size: clamp(68px, 7vw, 108px);
    line-height: 0.72;
    text-align: right;
    transform: rotate(-4deg);
}

.travel-calendar-week--before
.travel-calendar-week__number,
.travel-calendar-week--before
.travel-calendar-week__label {
    color: var(--color-red);
}

.travel-calendar-week__heading {
    display: grid;
    gap: 7px;
    margin-top: 25px;
    padding-top: 14px;
    border-top: 1px solid var(--color-black);
    text-align: right;
}

.travel-calendar-week__label {
    font-family: var(--font-display);
    font-size: 13px;
}

.travel-calendar-week__dates {
    font-size: 13px;
}

.travel-calendar-day {
    padding-block: 20px;
    border-bottom: 1px dashed
        rgba(17, 17, 17, 0.55);
}

.travel-calendar-day:last-child {
    border-bottom: 0;
}

.travel-calendar-day__header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 13px;
    font-family: var(--font-display);
    font-size: 18px;
    text-transform: uppercase;
}

.travel-calendar-day__header time {
    font-family: var(--font-serif);
    font-size: 11px;
}

.travel-calendar-day h3 {
    margin-bottom: 12px;
    color: var(--color-red);
    font-family: var(--font-serif);
    font-size: 17px;
    line-height: 1.2;
}

.travel-calendar-day__description {
    font-size: 14px;
    line-height: 1.4;
}

.travel-calendar-day__entries {
    display: grid;
    gap: 14px;
}

.travel-calendar .home-timeline-entry {
    font-size: 17px;
    line-height: 1.35;
}

.travel-calendar .home-timeline-entry__link {
    padding-top: 0;
    border-top: 0;
    color: var(--color-red);
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 700;
    background: none;
    border: none;
    padding: 0;
}

.travel-calendar .home-timeline-entry figure img {
    aspect-ratio: 4 / 3;
}

.travel-calendar-week__empty {
    margin-top: 25px;
    color: rgba(17, 17, 17, 0.42);
    font-size: 13px;
    font-style: italic;
}

/* Homepage wrapper */

.home-calendar-section {
    padding:
        clamp(75px, 8vw, 120px)
        0
        clamp(100px, 10vw, 160px);
    background: var(--color-beige);
}

.home-calendar-section__header {
    display: flex;
    justify-content: space-between;
    gap: 45px;
    align-items: end;
    padding:
        0
        clamp(24px, 5vw, 78px)
        50px;
}

.home-calendar-section__header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.045em;
}

.home-calendar-section__header p {
    margin: 15px 0 0;
    font-family: var(--font-display);
}

.home-calendar-section__link {
    border-radius: 999px;
    padding: 10px 24px;
    background: var(--color-red);
    color: var(--color-beige);
    font-size: 18px;
    font-weight: 700;
}

/* Mobile */

@media (max-width: 800px) {
    .timeline-calendar-hero__grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .timeline-calendar-hero {
        padding-top: 125px;
    }

    .travel-calendar__months {
        top: 0;
    }
}

@media (max-width: 700px) {
    .timeline-calendar-hero h1 {
        font-size: clamp(68px, 22vw, 108px);
    }

    .travel-calendar__controls {
        grid-template-columns:
            auto
            1fr
            auto;
        padding-inline: 20px;
    }

    .travel-calendar__period {
        font-size: 15px;
    }

    .travel-calendar__viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .travel-calendar__viewport::-webkit-scrollbar {
        display: none;
    }

    .travel-calendar__track {
        width: max-content;
        transform: none !important;
    }

    .travel-calendar__group {
        display: contents;
    }

    .travel-calendar-week {
        width: 84vw;
        min-width: 84vw;
        min-height: 620px;
        scroll-snap-align: start;
    }

    .travel-calendar-week:last-child {
        border-right: 0;
    }

    .home-calendar-section__header {
        align-items: flex-start;
        flex-direction: column;
        padding-inline: 20px;
    }
}
/* =========================================================
   ARTICLE DETAIL — EDITORIAL DESIGN
   ========================================================= */

.article-detail-page {
    padding-top: clamp(145px, 15vw, 220px);
    background: var(--color-beige);
}

.article-detail-page__container {
    max-width: 1050px;
}

.article-detail-page__layout {
    display: grid;
    grid-template-columns:
        minmax(230px, 0.34fr)
        minmax(0, 0.66fr);
    gap: 0;
    align-items: stretch;
}

.article-detail-page__sidebar {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-right: clamp(35px, 5vw, 75px);
}

.article-detail-page__main {
    min-width: 0;
    padding-left: clamp(40px, 5vw, 78px);
    border-left: 1px solid var(--color-black);
}

.article-detail-page__back {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-bottom: 50px;
    font-family: var(--font-display);
    font-size: 12px;
    text-transform: uppercase;
}

.article-detail-page__back span:first-child {
    display: inline-flex;
    width: 42px;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 29px;
    line-height: 1;
    padding-bottom: 3px;
}

.article-detail-page__sidebar-content {
    display: grid;
    gap: 20px;
}

.article-detail-page__practical {
    font-family: var(--font-serif);
}

.article-detail-page__practical h2 {
    margin-bottom: 32px;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
}

.article-detail-page__practical-text {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.article-detail-page__practical-text p {
    margin-bottom: 24px;
}

.article-detail-page__address {
    margin-top: 28px;
}

.article-detail-page__address strong {
    display: block;
    margin-bottom: 7px;
    font-size: 15px;
}

.article-detail-page__address p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.article-detail-page__map-link {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding-top: 15px;
    border-top: 1px solid var(--color-black);
    color: var(--color-blue);
    font-family: var(--font-display);
    font-size: 10px;
    text-transform: uppercase;
}

.article-detail-page__summary-wrap {
    position: relative;
    padding-top: 25px;
}

.article-detail-page__summary-shape {
    position: absolute;
    z-index: 0;
    top: -35px;
    left: 30%;
    width: 160px;
    height: 145px;
    background: #b5c9c7;
    clip-path: polygon(
        15% 5%,
        48% 34%,
        61% 0,
        70% 43%,
        100% 25%,
        80% 61%,
        100% 78%,
        55% 72%,
        30% 100%,
        25% 66%,
        0 54%
    );
}

.article-detail-page__summary {
    position: relative;
    z-index: 1;
    padding: 20px;
    background: var(--color-blue);
    color: var(--color-beige);
}

.article-detail-page__summary h2 {
    margin-bottom: 28px;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
}

.article-detail-page__summary > div {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.article-detail-page__summary p:last-child {
    margin-bottom: 0;
}

/* Header */

.article-detail-page__header {
    max-width: 760px;
    margin-bottom: clamp(48px, 6vw, 85px);
}

.article-detail-page__date {
    display: block;
    margin-bottom: 26px;
    font-family: var(--font-display);
    font-size: 12px;
}

.article-detail-page__header h1 {
    margin-bottom: 34px;
    color: var(--color-black);
    font-family: var(--font-serif);
    font-size: 60px;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.article-detail-page__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.article-detail-page__label {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    min-height: 30px;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 13px;
    line-height: 1;
}

.article-detail-page__label--category {
    border: 1px solid var(--color-red);
    color: var(--color-red);
}

.article-detail-page__label--tag {
    border: 1px solid var(--color-blue);
    background: var(--color-blue);
    color: var(--color-beige);
}

/* Hero */

.article-detail-page__hero {
    position: relative;
    width: min(72%, 620px);
    margin:
        0
        0
        clamp(55px, 7vw, 95px);
}

.article-detail-page__hero::after {
    content: "";
    position: absolute;
    z-index: 2;
    right: -47%;
    top: 28%;
    width: 68%;
    height: 44%;
    border-top: 2px solid var(--color-red);
    border-right: 2px solid var(--color-red);
    transform: rotate(8deg);
    pointer-events: none;
}

.article-detail-page__hero img {
    width: 100%;
    aspect-ratio: 0.95 / 1;
    object-fit: cover;
}

/* Article content */

.article-detail-page__intro {
    max-width: 760px;
    margin-bottom: 45px;
    font-family: var(--font-serif);
    font-size: clamp(21px, 2vw, 29px);
    font-weight: 700;
    line-height: 1.45;
}

.article-detail-page__content {
    max-width: 760px;
    font-family: var(--font-serif);
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 700;
    line-height: 1.9;
}

.article-detail-page__content > *:first-child {
    margin-top: 0;
}

.article-detail-page__content p,
.article-detail-page__content ul,
.article-detail-page__content ol {
    margin-bottom: 1.35em;
}

.article-detail-page__content h2 {
    margin:
        2em
        0
        0.7em;
    color: var(--color-blue);
    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 400;
    line-height: 0.9;
}

.article-detail-page__content h3 {
    margin:
        1.8em
        0
        0.6em;
    color: var(--color-red);
    font-family: var(--font-serif);
    font-size: clamp(25px, 2.5vw, 38px);
    line-height: 1;
}

.article-detail-page__content blockquote {
    margin:
        clamp(45px, 7vw, 90px)
        0;
    padding-left: 28px;
    border-left: 2px solid var(--color-red);
    color: var(--color-blue);
    font-size: clamp(25px, 3vw, 40px);
    font-style: italic;
    line-height: 1.15;
}

.article-detail-page__content a {
    color: var(--color-blue);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Gallery */

.article-detail-page__gallery {
    display: grid;
    max-width: 900px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 45px);
    margin-top: clamp(80px, 10vw, 140px);
}

.article-detail-page__gallery-item {
    margin: 0;
}

.article-detail-page__gallery-item:nth-child(3n) {
    grid-column: 1 / -1;
    width: 75%;
    margin-inline: auto;
}

.article-detail-page__gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.article-detail-page__gallery-item figcaption {
    margin-top: 8px;
    font-size: 13px;
    font-style: italic;
}

/* Next article */

.article-detail-page__next {
    display: flex;
    justify-content: flex-end;
    margin-top: clamp(80px, 10vw, 150px);
    padding-bottom: clamp(90px, 11vw, 170px);
}

.article-detail-page__next a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
}

.article-detail-page__next a span:last-child {
    font-family: var(--font-serif);
    font-size: 30px;
    transition: transform 180ms ease;
}

.article-detail-page__next a:hover span:last-child {
    transform: translateX(5px);
}

/* Related articles */

.article-detail-page__related {
    padding:
        clamp(80px, 10vw, 140px)
        0
        clamp(100px, 13vw, 180px);
    border-top: 1px solid var(--color-black);
}

.article-detail-page__related-header {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: end;
    margin-bottom: clamp(50px, 7vw, 90px);
}

.article-detail-page__related-header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 400;
    line-height: 0.86;
}

.article-detail-page__related-header > a {
    display: inline-flex;
    gap: 9px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    color: var(--color-red);
    font-family: var(--font-display);
    font-size: 10px;
    text-transform: uppercase;
}

.article-detail-page__related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 45px);
}

/* Responsive */

@media (max-width: 950px) {
    .article-detail-page__layout {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .article-detail-page__hero {
        width: 82%;
    }
}

@media (max-width: 750px) {
    .article-detail-page {
        padding-top: 120px;
    }

    .article-detail-page__layout {
        display: flex;
        flex-direction: column;
    }

    .article-detail-page__sidebar {
        padding-right: 0;
    }

    .article-detail-page__main {
        order: 1;
        padding-left: 0;
        border-left: 0;
    }

    .article-detail-page__sidebar {
        order: 2;
        margin-top: 70px;
    }

    .article-detail-page__back {
        justify-content: flex-start;
        margin-bottom: 50px;
    }

    .article-detail-page__sidebar-content {
        gap: 55px;
    }

    .article-detail-page__header h1 {
        font-size: clamp(52px, 15vw, 82px);
    }

    .article-detail-page__hero {
        width: 100%;
    }

    .article-detail-page__hero::after {
        right: -20%;
        width: 45%;
    }

    .article-detail-page__summary {
        max-width: 420px;
    }

    .article-detail-page__gallery {
        grid-template-columns: 1fr;
    }

    .article-detail-page__gallery-item:nth-child(3n) {
        grid-column: auto;
        width: 100%;
    }

    .article-detail-page__related-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-detail-page__related-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   ARTICLES INDEX — EDITORIAL GRID
   ========================================================= */

.articles-page {
    min-height: 100vh;
    padding-top: 200px;
    background: var(--color-beige);
}

.articles-page__filters {
    padding-bottom: clamp(70px, 9vw, 125px);
}

.articles-page__categories {
    display: flex;
    justify-content: space-between;
    gap: 45px;
    align-items: end;
    padding-bottom: 26px;
    border-bottom: 1px dashed rgba(17, 17, 17, 0.65);
}

.articles-page__categories h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(21px, 2vw, 30px);
    font-weight: 400;
    line-height: 1;
}

.articles-page__category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.articles-page__category {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-red);
    border-radius: 999px;
    padding: 7px 22px;
    color: var(--color-red);
    font-family: var(--font-display);
    font-size: clamp(18px, 1.8vw, 27px);
    line-height: 1;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.articles-page__category:hover {
    transform: translateY(-2px);
}

.articles-page__category.is-active {
    background: var(--color-red);
    color: var(--color-beige);
}

.articles-page__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding-top: 38px;
}


/* Grid */

.articles-page__content {
    padding-bottom: clamp(100px, 13vw, 190px);
}

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

.articles-index-card {
    min-width: 0;
    border-right: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
}

.articles-index-card__link {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: clamp(20px, 2.3vw, 36px);
}

.articles-index-card__date {
    display: block;
    margin-bottom: 23px;
    font-family: var(--font-display);
    font-size: 10px;
    line-height: 1;
}

.articles-index-card__image {
    overflow: hidden;
    aspect-ratio: 1.08 / 1;
    margin-bottom: 22px;
    background: rgba(17, 17, 17, 0.06);
}

.articles-index-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition:
        transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 300ms ease;
}

.articles-index-card__link:hover img {
    transform: scale(1.025);
    filter: grayscale(0.35);
}

.articles-index-card__body h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(21px, 2vw, 30px);
    font-weight: 700;
    line-height: 1.1;
}

.articles-index-card__footer {
    margin-top: auto;
    padding-top: 22px;
}

.articles-index-card__labels {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
    padding-top: 15px;
    border-top: 1px dashed rgba(17, 17, 17, 0.65);
}

.articles-index-card__label {
    display: inline-flex;
    min-height: 25px;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.articles-index-card__label--category {
    border: 1px solid var(--color-red);
    color: var(--color-red);
}

.articles-index-card__label--tag {
    border: 1px solid var(--color-blue);
    background: var(--color-blue);
    color: var(--color-beige);
}

.articles-index-card__read {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 17px;
    font-family: var(--font-display);
    font-size: 13px;
}

.articles-index-card__read > span {
    color: var(--color-red);
    font-family: var(--font-display);
    font-size: 18px;
    transition: transform 180ms ease;
}

.articles-index-card__link:hover
.articles-index-card__read > span {
    transform: translate(4px, -4px);
}

/* Card without image */

.articles-index-card--without-image
.articles-index-card__link {
    min-height: 580px;
}

.articles-index-card--without-image
.articles-index-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding-inline: clamp(15px, 3vw, 55px);
}

.articles-index-card--without-image
.articles-index-card__body h2 {
    font-size: clamp(23px, 2.5vw, 38px);
}

.articles-index-card__excerpt {
    max-width: 290px;
    margin:
        clamp(35px, 5vw, 70px)
        auto
        0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

/* Empty state */

.articles-page__empty {
    padding: clamp(80px, 12vw, 170px) 20px;
    border-top: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
    text-align: center;
}

.articles-page__empty h2 {
    margin-bottom: 20px;
    color: var(--color-blue);
    font-family: var(--font-display);
    font-size: clamp(45px, 6vw, 90px);
    font-weight: 400;
    line-height: 0.88;
}

.articles-page__empty a {
    display: inline-block;
    margin-top: 20px;
    border-bottom: 1px solid currentColor;
    color: var(--color-red);
}

/* Pagination */

.articles-page__pagination {
    margin-top: clamp(55px, 7vw, 100px);
}

.articles-page__pagination nav > div:first-child {
    display: none;
}

.articles-page__pagination nav > div:last-child {
    display: flex;
    justify-content: center;
}

.articles-page__pagination nav a,
.articles-page__pagination nav span {
    border: 0;
    background: transparent;
    box-shadow: none;
    font-family: var(--font-display);
    font-size: 12px;
}

.articles-page__pagination nav span[aria-current="page"] span {
    color: var(--color-red);
}

/* Tablet */

@media (max-width: 950px) {
    .articles-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .articles-page__categories {
        align-items: flex-start;
        flex-direction: column;
    }

    .articles-page__category-list {
        justify-content: flex-start;
    }
}

/* Mobile */

@media (max-width: 650px) {
    .articles-page {
        padding-top: 125px;
    }

    .articles-page__categories {
        gap: 28px;
    }

    .articles-page__category-list {
        width: 100%;
    }

    .articles-page__category {
        min-height: 38px;
        padding-inline: 17px;
        font-size: 18px;
    }

    .articles-page__tags {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .articles-page__tags::-webkit-scrollbar {
        display: none;
    }

    .articles-page__grid {
        grid-template-columns: 1fr;
    }

    .articles-index-card--without-image
    .articles-index-card__link {
        min-height: 460px;
    }

    .articles-index-card__image {
        aspect-ratio: 1.15 / 1;
    }
}
/* =========================================================
   MAP PAGE — EDITORIAL LAYOUT
   ========================================================= */

.map-page {
    min-height: 100vh;
    padding-top: clamp(130px, 14vw, 205px);
    background: var(--color-beige);
}

.map-page__header {
    display: grid;
    grid-template-columns: 63% 37%;
    min-height: 185px;
}

.map-page__heading {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding:
        0
        clamp(35px, 5vw, 80px)
        38px;
}

.map-page__heading h1 {
    margin: 0 0 12px;
    color: var(--color-black);
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.045em;
}

.map-page__heading p {
    max-width: 430px;
    margin: 0;
    font-family: var(--font-display);
    font-size: 10px;
    line-height: 1.1;
}

.map-page__layout {
    display: grid;
    grid-template-columns: 63% 37%;
    min-height: min(860px, calc(100vh - 220px));
}

.map-page__map-column {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.map-page__canvas {
    position: absolute;
    inset: 0;
    background: var(--color-beige);
}

.map-page__results {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: var(--color-blue);
    color: var(--color-beige);
}

.map-page__results-inner {
    height: 100%;
    overflow-y: auto;
    padding:
        40px 1px;
    scrollbar-width: thin;
}

.map-page-result {
    border-top: 1px dashed rgba(249, 245, 230, 0.75);
}

.map-page-result:last-child {
    border-bottom: 1px dashed rgba(249, 245, 230, 0.75);
}

.map-page-result__button {
    display: grid;
    width: 100%;
    grid-template-columns: 45px minmax(0, 1fr) 26px;
    gap: 15px;
    align-items: center;
    border: 0;
    padding: 18px 30px;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        padding 180ms ease;
}

.map-page-result.is-active
.map-page-result__button {
    margin-block: 0;
    
    background: var(--color-beige);
    color: var(--color-blue);
}

.map-page-result__number {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 50%;
    background: var(--color-red);
    color: var(--color-beige);
    font-family: var(--font-serif);
    font-size: 19px;
}

.map-page-result__title {
    overflow: hidden;
    font-family: var(--font-serif);
    font-size: clamp(15px, 1.4vw, 21px);
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.map-page-result__arrow {
    font-size: 24px;
    line-height: 1;
    transition: transform 180ms ease;
}

.map-page-result__button:hover
.map-page-result__arrow {
    transform: translate(4px, -4px);
}

.map-page__empty {
    color: rgba(249, 245, 230, 0.7);
    font-size: 15px;
}

/* Article over the map */

.map-article-panel {
    position: absolute;
    z-index: 500;
    inset: 0;
    overflow-y: auto;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-25px);
    transition:
        opacity 260ms ease,
        visibility 260ms ease,
        transform 260ms ease;
}

.map-article-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.map-article-panel__inner {
    width: min(650px, calc(100% - 80px));
    margin:
        clamp(80px, 9vw, 135px)
        auto
        100px;
}

.map-article-panel__close {
    position: absolute;
    z-index: 2;
    top: 35px;
    right: 35px;
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.map-article-panel__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 1px;
    background: var(--color-black);
}

.map-article-panel__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.map-article-panel__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.map-article-panel__date {
    display: block;
    margin-bottom: 38px;
    font-family: var(--font-display);
    font-size: 11px;
}

.map-article-panel h2 {
    max-width: 780px;
    margin-bottom: 38px;
    color: var(--color-black);
    font-family: var(--font-serif);
    font-size: 50px;
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.035em;
}

.map-article-panel__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 50px;
}

.map-article-panel__label {
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    border-radius: 999px;
    padding: 5px 12px;
    font-family: var(--font-serif);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.map-article-panel__label--category {
    border: 1px solid var(--color-red);
    color: var(--color-red);
}

.map-article-panel__label--tag {
    border: 1px solid var(--color-blue);
    background: var(--color-blue);
    color: var(--color-beige);
}

.map-article-panel__image-wrapper {
    width: min(67%, 470px);
    margin-bottom: 60px;
}

.map-article-panel__image {
    width: 100%;
    aspect-ratio: 0.95 / 1;
    object-fit: cover;
    filter: grayscale(1);
}

.map-article-panel__text {
    max-width: 700px;
    margin-bottom: 34px;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}

.map-article-panel__link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    color: var(--color-red);
    font-family: var(--font-display);
    font-size: 10px;
    text-transform: uppercase;
}

/* Leaflet integration */

.map-page .leaflet-control-zoom {
    margin: 0 25px 25px 0;
}

.map-page .travel-map-marker {
    width: 34px;
    height: 34px;
    border: 0;
    background: var(--color-red);
    font-family: var(--font-serif);
    font-size: 16px;
    box-shadow: none;
}

/* Tablet */

@media (max-width: 950px) {
    .map-page__header,
    .map-page__layout {
        grid-template-columns: 58% 42%;
    }

    .map-page__results-inner {
        padding-inline: 25px;
    }

    .map-article-panel__inner {
        width: calc(100% - 60px);
    }
}

/* Mobile */

@media (max-width: 700px) {
    .map-page {
        padding-top: 115px;
    }

    .map-page__header {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .map-page__header-spacer {
        display: none;
    }

    .map-page__heading {
        padding:
            35px
            20px
            40px;
    }

    .map-page__layout {
        display: flex;
        min-height: auto;
        flex-direction: column;
    }

    .map-page__map-column {
        min-height: 62vh;
    }

    .map-page__results {
        min-height: 440px;
    }

    .map-page__results-inner {
        max-height: 480px;
        padding:
            45px
            20px;
    }

    .map-page-result__button {
        grid-template-columns: 40px minmax(0, 1fr) 24px;
    }

    .map-article-panel__inner {
        width: calc(100% - 40px);
        margin-top: 90px;
    }

    .map-article-panel h2 {
        font-size: clamp(45px, 13vw, 68px);
    }

    .map-article-panel__image-wrapper {
        width: 80%;
    }

    .map-article-panel__close {
        top: 20px;
        right: 20px;
    }
}

/* =========================================================
   HOME ADVENTURES / CATEGORIES
   ========================================================= */

.home-adventures {
    position: relative;
    min-height: 920px;
    overflow: hidden;
    padding:
        clamp(85px, 9vw, 145px)
        0
        clamp(75px, 8vw, 125px);
    background: var(--color-white);
    color: var(--color-black);
}

.home-adventures__header {
    position: relative;
    z-index: 3;
    padding-inline: clamp(28px, 5vw, 85px);
}

.home-adventures__header p {
    margin-bottom: 9px;
    font-family: var(--font-display);
   
    line-height: 1;
}

.home-adventures__header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: -0.045em;
}

.home-adventures__stage {
    position: relative;
    width: 100%;
    min-height: 570px;
    margin-top: clamp(55px, 7vw, 105px);
}

/* Ligne interactive */

.home-adventures__line {
    position: absolute;
    z-index: 1;
    top: 70px;
    left: 0;
    width: 100%;
    height: 170px;
    overflow: visible;
    pointer-events: none;
}

.home-adventures__line-path {
    fill: none;
    stroke: var(--color-red);
    stroke-width: 1.3;
    vector-effect: non-scaling-stroke;
}

/* Catégories */

.home-adventure {
    z-index: 2;
    width: 30%;
    position: relative;
    text-align: center;
    padding-top: 123px;
}

.home-adventure__title {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 58px;
    border-radius: 999px;
    padding: 8px 27px 10px;
    background: var(--color-red);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    line-height: 0.92;
    white-space: nowrap;
    transition:
        transform 220ms ease,
        background-color 220ms ease;
}

.home-adventure__title:hover {
    background: var(--color-blue);
    transform: rotate(-1.5deg) translateY(-3px);
}

.home-adventure__eyebrow {
    position: relative;
    z-index: 4;
    margin: 0 0 3px;
    font-family: var(--font-serif);
    font-size: clamp(16px, 1.5vw, 24px);
    font-weight: 700;
    line-height: 1;
}

.home-adventure__text {
    position: absolute;
    z-index: 3;
    max-width: 360px;
    margin:
        clamp(28px, 3vw, 45px)
        0
        0
        clamp(25px, 4vw, 80px);
    font-family: var(--font-serif);
    font-size: clamp(14px, 1.1vw, 17px);
    font-weight: 700;
    line-height: 1.5;
}

.home-adventure__image {
    position: relative;
    z-index: 0;
    display: block;
    overflow: hidden;
    background: #c8d4d1;
}

.home-adventure__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 300ms ease;
}

.home-adventure:hover .home-adventure__image img {
    transform: scale(1.025);
}

.home-adventures article p{position: absolute;top: 0;text-align: center;/* left: 50%; */}

/* Position 1 */



.home-adventure--den-haag .home-adventure__eyebrow {
    width: 180px;
    left: 50%;
    margin-left: -90px;
    top: 40px;
}

.home-adventure--den-haag .home-adventure__title {
    margin-left: 2%;
}

.home-adventure--den-haag .home-adventure__image {
    width: min(70%, 330px);
    aspect-ratio: 0.95 / 1;
    margin:
        -16px
        0
        0
        30%;
}

/* Position 3 */

.home-adventure--netherlands {
    /* top: 20px; */
    /* right: 0; */
    /* width: min(34vw, 590px); */
}

.home-adventure--netherlands .home-adventure__eyebrow {
        font-size: clamp(20px, 2vw, 32px);
    width: 100%;
    top: 78px;
    padding-right: 150px;
}

.home-adventure--netherlands .home-adventure__title {
    margin-left: 2%;
}

.home-adventure--netherlands .home-adventure__image {
    position: absolute;
    top: -105px;
    right: -72px;
    width: 300px;
    height: 300px;
}

.home-adventure--netherlands .home-adventure__text {
    max-width: 300px;
top: 165px
}

/* Phrase finale */

.home-adventures__closing {
    position: relative;
    z-index: 3;
    width: fit-content;
    margin:
        -30px
        8vw
        0
        auto;
    font-family: var(--font-display);
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.home-adventures__closing span {
    color: rgba(17, 17, 17, 0.48);
}

/* Hover global de la zone */

.home-adventures__stage {
    cursor: crosshair;
    display: flex;
}

/* Tablette */

@media (max-width: 1050px) {
    .home-adventures {
        min-height: 860px;
    }

    .home-adventure--admin {
        width: 36vw;
    }

    .home-adventure--den-haag {
        left: 37%;
        width: 36vw;
    }

    .home-adventure--netherlands {
        width: 37vw;
    }

    .home-adventure--netherlands .home-adventure__image {
        opacity: 0.75;
    }
}

/* Mobile */

@media (max-width: 750px) {
    .home-adventures {
        min-height: auto;
        padding-inline: 20px;
    }

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

 

    .home-adventures__stage {
        display: grid;
        min-height: 0;
        gap: 80px;
        margin-top: 70px;
    }

    .home-adventures__line {
        top: 0;
        left: -20px;
        width: calc(100% + 40px);
        height: 100%;
    }

    .home-adventures__point {
        display: none;
    }

    .home-adventure {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .home-adventure__title {
        min-height: 50px;
        padding-inline: 20px;
        font-size: clamp(27px, 8vw, 40px);
        white-space: normal;
    }

    .home-adventure__eyebrow,
    .home-adventure--den-haag .home-adventure__eyebrow,
    .home-adventure--netherlands .home-adventure__eyebrow {
        width: auto;
        margin-left: 0;
    }

    .home-adventure__text,
    .home-adventure--netherlands .home-adventure__text {
        max-width: 360px;
        margin:
            25px
            0
            0
            25px;
    }

    .home-adventure--den-haag .home-adventure__title,
    .home-adventure--netherlands .home-adventure__title {
        margin-left: 0;
    }

    .home-adventure--den-haag .home-adventure__image {
        width: 68%;
        margin:
            -10px
            0
            0
            auto;
    }

    .home-adventure--netherlands {
        padding-bottom: 220px;
    }

    .home-adventure--netherlands .home-adventure__image {
        top: auto;
        right: -20px;
        bottom: 0;
        width: 48%;
        height: 240px;
    }

    .home-adventures__closing {
        margin:
            70px
            0
            0
            auto;
        font-size: clamp(34px, 10vw, 52px);
        text-align: right;
    }
}
/* =========================================================
   MAP PAGE — HEADER + SWITCHER REFINEMENT
   ========================================================= */

.map-page__header {
    display: grid;
    grid-template-columns: 63% 37%;
    min-height: 240px;
    border-bottom: 1px solid var(--color-black);
}

.map-page__header-main,
.map-page__heading {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(34px, 4vw, 62px)
        clamp(35px, 5vw, 80px);
}

.map-page__header-main {
    gap: 24px;
    display: flex;
    /* border-right: 1px dotted var(--color-black); */
    flex-direction: row;
    justify-content: normal;
    align-items: end;
}

.map-page__eyebrow,
.map-page__current-label {
    margin: 0;
    color: var(--color-red);
    font-family: var(--font-display);
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
}

.map-page__header-main h1 {
    margin: 0;
    color: var(--color-black);
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 400;
  
    letter-spacing: -0.055em;
}

.map-page__heading {
    gap: 13px;
}

.map-page__heading h2 {
    margin: 0;
    color: #000;
    font-family: var(--font-serif);
    font-size: clamp(30px, 3vw, 47px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.025em;
}

.map-page__heading > p:last-child {
    max-width: 430px;
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.35;
}

.map-switcher {
    display: inline-grid;
    width: fit-content;
    grid-template-columns: repeat(2, auto);
    gap: 0;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--color-black);
    border-radius: 999px;
    padding: 3px;
    background: var(--color-beige);
}

.map-switcher__link {
    position: relative;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 20px;
    color: var(--color-black);
    font-family: var(--font-display);
    font-size: clamp(14px, 1.35vw, 19px);
    line-height: 1;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.map-switcher__link:hover:not(.is-active) {
    color: var(--color-red);
}

.map-switcher__link.is-active {
    background: var(--color-red);
    color: var(--color-beige);
}

.map-page__results {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
}

.map-page__results-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 17px 30px;
    border-bottom: 1px solid rgba(249, 245, 230, 0.55);
    color: var(--color-beige);
    font-family: var(--font-display);
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
}

.map-page__results-header span:last-child {
    display: grid;
    min-width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 13px;
}

.map-page__results-inner {
    min-height: 0;
}

@media (max-width: 950px) {
    .map-page__header {
        grid-template-columns: 58% 42%;
    }

    .map-page__header-main,
    .map-page__heading {
        padding-inline: 30px;
    }
}

@media (max-width: 700px) {
    .map-page__header {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .map-page__header-main {
        gap: 22px;
        border-right: 0;
        border-bottom: 1px solid var(--color-black);
        padding: 38px 20px 32px;
    }

    .map-page__heading {
        padding: 28px 20px 34px;
    }

    .map-switcher {
        width: 100%;
    }

    .map-switcher__link {
        width: 100%;
        padding-inline: 14px;
    }

    .map-page__results-header {
        padding-inline: 20px;
    }
}
