@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
    --white: #ffffff;
    --cream: #fffaf1;
    --orange: #f59c06;
    --orange-deep: #d98603;
    --blue: #36a9e1;
    --blue-deep: #2489bd;
    --pink: #e71e77;
    --pink-deep: #c11762;
    --ink: #233240;
    --ink-soft: #5a6773;
    --ink-faint: #8b96a0;
    --line: #e7ddcb;
    --radius-lg: 28px;
    --radius-md: 18px;
    --wrap: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Bricolage Grotesque', 'Public Sans', sans-serif;
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

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

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

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

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 32px;
}

@media(prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    white-space: nowrap;
}

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

.btn:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 20px -8px rgba(245, 156, 6, 0.65);
}

.btn-orange:hover {
    background: var(--orange-deep);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn-outline-ink {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-outline-ink:hover {
    background: var(--ink);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--pink-deep);
}

.btn-white:hover {
    background: #fff0f6;
}

/* ---------- nav ---------- */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 26px 0 0;
}

.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.01em;
}

.brand-text span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    opacity: 0.92;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: opacity .15s, border-color .15s;
}

.nav-links a:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.6);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-burger {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
}

/* ---------- hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    padding-bottom: 0;
}

.hero-media {
    position: relative;
    height: min(92vh, 780px);
    min-height: 560px;
    width: 100%;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 42%;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 26, 33, 0.42) 0%, rgba(20, 26, 33, 0.08) 30%, rgba(20, 26, 33, 0.10) 55%, rgba(21, 22, 26, 0.72) 100%);
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 0 88px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.hero-badge svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(34px, 5.4vw, 66px);
    font-weight: 800;
    line-height: 1.04;
    max-width: 900px;
    margin: 0 auto;
    text-wrap: balance;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(16px, 1.6vw, 19px);
    max-width: 560px;
    margin: 22px auto 34px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ridge {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    margin-top: -2px;
}

/* ---------- section basics ---------- */
section {
    padding: 100px 0;
}

.eyebrow-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.eyebrow-row .rule {
    width: 38px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.eyebrow-row span {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-soft);
}

.section-head {
    max-width: 640px;
}

.section-head h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    line-height: 1.12;
}

.section-head p {
    color: var(--ink-soft);
    font-size: 17.5px;
    margin-top: 14px;
}

/* ---------- about ---------- */
.about {
    background: var(--white);
}

.about-copy {
    max-width: 900px;
    margin-top: 52px;
}

.about-copy p {
    color: var(--ink-soft);
    font-size: 17px;
    margin-bottom: 16px;
    max-width: 66ch;
}

.about-copy p:last-of-type {
    margin-bottom: 0;
}

.about-inline-image {
    float: right;
    width: min(34%, 330px);
    margin: 0 0 22px 48px;
}

.about-inline-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.about-inline-image figcaption {
    margin-top: 9px;
    color: var(--ink-faint);
    font-size: 13px;
    line-height: 1.35;
}

.stat-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.stat-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.stat-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef3dc;
    color: var(--orange-deep);
}

.stat-icon svg {
    width: 22px;
    height: 22px;
}

.stat-item:nth-child(2) .stat-icon {
    background: #e6f6fd;
    color: var(--blue-deep);
}

.stat-item:nth-child(3) .stat-icon {
    background: #fdeaf2;
    color: var(--pink-deep);
}

.stat-text strong {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
}

.stat-text span {
    color: var(--ink-soft);
    font-size: 15px;
}

/* ---------- pouffi easter egg ---------- */
.pouffi-landscape {
    position: relative;
    isolation: isolate;
    height: clamp(210px, 25vw, 290px);
    margin-top: 64px;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #aee7ff 0%, #dff5ff 74%, #f2fbff 100%);
    transition: background 0.8s ease;
}

.pouffi-landscape::before {
    position: absolute;
    z-index: -1;
    top: 18%;
    right: 12%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: transparent;
    content: '';
    opacity: 0;
    box-shadow: 38px 26px 0 1px #fff, 108px -10px 0 #fff, 154px 50px 0 1px #fff, 230px 7px 0 #fff, 294px 42px 0 1px #fff, 350px -6px 0 #fff, 415px 26px 0 1px #fff;
    transition: opacity 0.8s ease;
}

.pouffi-landscape.is-night {
    background: linear-gradient(180deg, #10233f 0%, #285174 74%, #6f9a9a 100%);
}

.pouffi-landscape.is-night::before {
    opacity: 0.9;
}

.pouffi-sun {
    position: absolute;
    z-index: 3;
    top: 24px;
    left: 28px;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffd35c;
    box-shadow: 0 0 0 8px rgba(255, 211, 92, 0.24), 0 0 28px rgba(255, 211, 92, 0.75);
    cursor: default;
    transition: background 0.5s ease, box-shadow 0.5s ease, transform 0.2s ease;
}

.pouffi-sun:not(:disabled) {
    cursor: pointer;
}

.pouffi-sun:not(:disabled):hover {
    transform: scale(1.08);
}

.pouffi-sun:focus-visible,
.pouffi-sheep:focus-visible,
.pouffi-crane:focus-visible {
    outline: 3px solid var(--ink);
    outline-offset: 4px;
}

.pouffi-landscape.is-night .pouffi-sun {
    background: #f4f6f7;
    box-shadow: 0 0 0 8px rgba(244, 246, 247, 0.12), 0 0 28px rgba(244, 246, 247, 0.55);
}

.pouffi-mountains {
    position: absolute;
    right: -5%;
    bottom: 23%;
    left: -5%;
    z-index: 0;
    height: 54%;
    clip-path: polygon(0 100%, 0 72%, 9% 42%, 17% 69%, 29% 20%, 40% 72%, 53% 30%, 62% 68%, 73% 17%, 84% 66%, 94% 35%, 100% 60%, 100% 100%);
    background: #8fc4d1;
    opacity: 0.75;
    transition: background 0.8s ease;
}

.pouffi-mountains-near {
    right: -8%;
    bottom: 20%;
    left: -8%;
    z-index: 1;
    height: 38%;
    clip-path: polygon(0 100%, 0 65%, 14% 30%, 26% 75%, 40% 14%, 53% 70%, 66% 34%, 80% 70%, 92% 20%, 100% 65%, 100% 100%);
    background: #5c9b91;
    opacity: 0.78;
}

.pouffi-landscape.is-night .pouffi-mountains-far {
    background: #315574;
}

.pouffi-landscape.is-night .pouffi-mountains-near {
    background: #264d55;
}

.pouffi-grass {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    height: 24%;
    background: linear-gradient(180deg, #77bd57 0%, #4d9c44 100%);
    transition: background 0.8s ease;
}

.pouffi-grass::before {
    position: absolute;
    top: -12px;
    right: 0;
    left: 0;
    height: 18px;
    background: repeating-linear-gradient(105deg, transparent 0 11px, #77bd57 12px 15px, transparent 16px 26px);
    content: '';
}

.pouffi-landscape.is-night .pouffi-grass {
    background: linear-gradient(180deg, #497e4c 0%, #2f6337 100%);
}

.pouffi-sheep {
    position: absolute;
    z-index: 3;
    right: clamp(20px, 7vw, 84px);
    bottom: 7%;
    width: clamp(165px, 17vw, 255px);
    aspect-ratio: 1.555;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.pouffi-sheep-state {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(5px) scale(0.97);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.pouffi-sheep[data-state='walking'] .pouffi-sheep-walk,
.pouffi-sheep[data-state='alert'] .pouffi-sheep-sat,
.pouffi-sheep[data-state='blink'] .pouffi-sheep-blink {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pouffi-landscape.is-night .pouffi-sheep-state {
    opacity: 0;
}

.pouffi-landscape.is-night .pouffi-sheep-happy {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pouffi-sheep:hover {
    transform: translateY(-3px);
}

.pouffi-crane {
    position: absolute;
    z-index: 3;
    bottom: 0%;
    left: clamp(18px, 7vw, 84px);
    width: clamp(200px, 26vw, 320px);
    aspect-ratio: 1.35;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: scaleX(-1);
    transition: transform 0.25s ease;
}

.pouffi-crane img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    rotate: 10deg;
}

.pouffi-crane:hover,
.pouffi-crane:focus-visible {
    transform: translateY(-3px) scaleX(-1);
}

.pouffi-crane.is-flying {
    animation: pouffi-crane-flight 1.9s ease-in forwards;
    pointer-events: none;
}

@keyframes pouffi-crane-flight {
    to {
        opacity: 0;
        transform: translate(72vw, -400px) scaleX(-1) rotate(8deg) scale(3);
    }
}

.pouffi-dialog {
    width: min(92vw, 440px);
    padding: 0;
    border: 0;
    border-radius: var(--radius-md);
    box-shadow: 0 24px 80px rgba(25, 42, 57, 0.32);
}

.pouffi-dialog::backdrop {
    background: rgba(16, 35, 63, 0.66);
    backdrop-filter: blur(4px);
}

.pouffi-form {
    display: grid;
    gap: 14px;
    padding: 34px;
}

.pouffi-dialog-sheep {
    display: block;
    width: min(100%, 220px);
    height: auto;
    margin: -8px auto 0;
}

.pouffi-form h2 {
    font-size: 25px;
    line-height: 1.2;
}

.pouffi-form .btn {
    justify-content: center;
    margin-top: 4px;
}

.objective-block {
    margin-top: 64px;
    padding: 40px;
    background: var(--cream);
    border-radius: var(--radius-md);
}

.objective-copy h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.objective-copy p {
    max-width: 72ch;
    color: var(--ink-soft);
    font-size: 16px;
    margin: 0 0 16px;
}

.objective-block .btn {
    margin-top: 12px;
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.ca-block {
    margin-top: 80px;
}

.ca-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.ca-head h3 {
    font-size: 22px;
    font-weight: 800;
}

.ca-head p {
    color: var(--ink-soft);
    font-size: 15px;
    max-width: 44ch;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.board-card {
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px;
}

.board-card .avatar {
    width: 44px;
    height: 44px;
    font-size: 15px;
}

.board-card strong {
    display: block;
    font-size: 15px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

.board-card span {
    font-size: 13px;
    color: var(--ink-soft);
}

/* ---------- sejours ---------- */
.sejours {
    background: var(--cream);
}

.stay-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 116px;
    gap: 12px;
    margin-top: 48px;
}

.stay-gallery-item {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--ink);
}

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

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

.stay-gallery-item::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(20, 30, 39, .78));
    pointer-events: none;
}

.stay-gallery-item figcaption {
    position: absolute;
    z-index: 1;
    right: 14px;
    bottom: 11px;
    left: 14px;
    color: var(--white);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.stay-gallery-wide {
    grid-column: span 2;
}

.stay-gallery-tall {
    grid-row: span 2;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.concept-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 30px 26px;
}

.concept-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.concept-icon svg {
    width: 25px;
    height: 25px;
}

.concept-card:nth-child(1) .concept-icon {
    background: var(--orange);
}

.concept-card:nth-child(2) .concept-icon {
    background: var(--pink);
}

.concept-card:nth-child(3) .concept-icon {
    background: var(--blue);
}

.concept-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.concept-card p {
    color: var(--ink-soft);
    font-size: 15.5px;
}

.report-block {
    margin-top: 96px;
}

.timeline-scenes {
    display: grid;
    grid-template-columns: 1.05fr .8fr 1.15fr;
    gap: 14px;
    margin-bottom: 42px;
}

.timeline-scenes figure {
    position: relative;
    height: 178px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--ink);
}

.timeline-scenes figure::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(20, 30, 39, .78));
}

.timeline-scenes img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-scenes figcaption {
    position: absolute;
    z-index: 1;
    right: 16px;
    bottom: 13px;
    left: 16px;
    color: var(--white);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.report-head {
    max-width: 820px;
    margin: 0 auto 48px;
    padding-bottom: 26px;
    border-bottom: 2px solid var(--ink);
    text-align: center;
}

.report-kicker {
    display: inline-block;
    color: var(--pink-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.report-head h3 {
    margin-top: 10px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.06;
    text-wrap: balance;
}

.report-dek {
    max-width: 650px;
    margin: 18px auto 0;
    color: var(--ink-soft);
    font-size: 19px;
    line-height: 1.45;
}

.report-byline {
    margin-top: 18px;
    color: var(--ink-faint);
    font-size: 13px;
    font-weight: 700;
}

.report-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 245px;
    gap: 58px;
    max-width: 990px;
    margin: 0 auto;
}

.report-copy {
    max-width: 690px;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.72;
}

.report-copy p {
    margin-bottom: 20px;
}

.report-copy strong {
    color: var(--ink);
    font-weight: 800;
}

.report-lead::first-letter {
    float: left;
    margin: 5px 9px 0 0;
    color: var(--orange-deep);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 62px;
    font-weight: 800;
    line-height: .72;
}

.report-copy h4 {
    margin: 34px 0 8px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.2;
}

.report-note {
    margin: 30px 0;
    padding: 20px 22px;
    border-left: 5px solid var(--blue);
    background: #eaf7fc;
    color: var(--ink);
}

.report-note span,
.report-facts-title {
    display: block;
    margin-bottom: 5px;
    color: var(--blue-deep);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.report-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.report-facts {
    align-self: start;
    padding: 22px;
    border-top: 8px solid var(--orange);
    background: var(--cream);
}

.report-facts-title {
    margin-bottom: 13px;
    color: var(--ink);
    font-size: 20px;
}

.report-facts div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 8px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.report-facts strong {
    color: var(--pink-deep);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
}

.report-facts span {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.35;
}

.centre-block {
    margin-top: 96px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
    background: var(--ink);
    border-radius: var(--radius-lg);
    padding: 52px;
    color: var(--white);
}

.centre-copy p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    margin-top: 14px;
    max-width: 48ch;
}

.centre-copy .btn {
    margin-top: 26px;
}

.centre-art-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.centre-art {
    position: relative;
    height: 260px;
}

.centre-art svg {
    width: 100%;
    height: 100%;
}

/* ---------- tarifs ---------- */
.tarifs {
    padding: 0;
}

.tarifs-banner {
    background: linear-gradient(120deg, var(--pink) 0%, #f0447f 45%, var(--orange) 130%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 88px 0 64px;
}

.tarifs-banner .wrap {
    position: relative;
    z-index: 2;
}

.tarifs-copy {
    max-width: 640px;
}

.tarifs-copy h2 {
    color: var(--white);
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 800;
}

.tarifs-copy p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    margin-top: 16px;
    max-width: 56ch;
}

.tarifs-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.tarifs-price {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 15px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 18px;
    border-radius: 999px;
}

.tarifs-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.tarifs-note {
    margin-top: 20px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
}

.tarifs-details {
    background: var(--cream);
    padding: 80px 0;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 44px;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 32px 30px;
}

.price-card-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.price-card-head h3 {
    font-size: 19px;
    font-weight: 700;
}

.price-tag {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 26px;
}

.price-card.juillet .price-tag {
    color: var(--orange-deep);
}

.price-card.aout .price-tag {
    color: var(--pink);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-list li {
    display: flex;
    gap: 10px;
    font-size: 15px;
    color: var(--ink-soft);
}

.price-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--blue-deep);
}

.price-fine {
    margin-top: 22px;
    font-size: 14px;
    color: var(--ink-faint);
    max-width: 80ch;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 24px;
}

.payment-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px;
}

.payment-item .stat-icon {
    margin-bottom: 14px;
}

.payment-item strong {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    margin-bottom: 6px;
}

.payment-item span {
    color: var(--ink-soft);
    font-size: 14.5px;
}

.aid-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.aid-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}

.aid-item strong {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15.5px;
}

.aid-item span {
    color: var(--ink-soft);
    font-size: 14px;
}

.aid-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--ink-faint);
}

.tarifs-contact {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 32px;
}

.tarifs-contact p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.82);
}

.tarifs-contact strong {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 17px;
    color: var(--white);
    margin-bottom: 4px;
}

/* ---------- footer ---------- */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.86);
    padding-top: 0;
}

.footer-top {
    padding: 80px 0 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
    gap: 40px;
}

.footer-brand .brand-text strong {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    margin-top: 16px;
    max-width: 34ch;
}

.footer-col h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    transition: color .15s;
}

.footer-link:hover {
    color: var(--white);
}

.footer-link svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    opacity: 0.85;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 22px;
}

.footer-legal a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ---------- responsive ---------- */
@media(max-width:980px) {
    .pouffi-landscape {
        height: 240px;
    }

    .objective-block {
        padding: 30px;
    }

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

    .about-inline-image {
        width: min(38%, 280px);
        margin-left: 30px;
    }

    .concept-grid {
        grid-template-columns: 1fr;
    }

    .stay-gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 128px;
    }

    .centre-block {
        grid-template-columns: 1fr;
        padding: 38px;
    }

    .centre-art {
        order: -1;
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1/-1;
    }

    .timeline-scenes {
        grid-template-columns: repeat(3, 1fr);
    }

    .report-layout {
        grid-template-columns: minmax(0, 1fr) 210px;
        gap: 32px;
    }

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

    .price-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .aid-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:760px) {
    .nav-links {
        display: none;
    }

    .nav-links.is-open {
        display: flex;
        position: absolute;
        top: 64px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        background: #233240;
        border-radius: 16px;
    }

    .nav-burger {
        display: block;
    }

    section {
        padding: 72px 0;
    }

    .wrap {
        padding: 0 22px;
    }

    .hero-content {
        padding-bottom: 56px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 26px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-inline-image {
        float: none;
        width: 100%;
        max-width: 330px;
        margin: 30px 0;
    }

    .timeline-scenes {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 34px;
    }

    .timeline-scenes figure {
        height: 180px;
    }

    .stay-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 10px;
        margin-top: 36px;
    }

    .stay-gallery-wide {
        grid-column: span 2;
    }

    .stay-gallery-tall {
        grid-row: span 1;
    }

    .report-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .report-facts {
        order: -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 16px;
    }

    .report-facts-title {
        grid-column: 1 / -1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .board-grid {
        grid-template-columns: 1fr;
    }

    .tarifs-banner .wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .tarifs-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .tarifs-actions {
        width: 100%;
    }

    .tarifs-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .tarifs-details {
        padding: 56px 0;
    }
}
