@font-face {
    font-family: 'P22 Typewriter';
    src: url('../../font/p22-typewriter_Eouoc/P22 Typewriter/P22 Typewriter Regular/P22 Typewriter Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ClickClack';
    src: url('../../font/ClickClack (RUS BY hidsky41)/ClickClack.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'EB Garamond';
    src: url('../../font/EB_Garamond,Fredoka/EB_Garamond/static/EBGaramond-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'EB Garamond';
    src: url('../../font/EB_Garamond,Fredoka/EB_Garamond/static/EBGaramond-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'EB Garamond';
    src: url('../../font/EB_Garamond,Fredoka/EB_Garamond/static/EBGaramond-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'JohnDoe';
    src: url('../../font/johndoe-regular_kTHuK/JohnDoe Regular/JohnDoe Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --vert-foret: #2B2816;
    --ancien-grimoir: #e0cea5;
    --feu-camp: #af6743;
    --bougie: #edca69;
    --arbre: #4d3c29;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--vert-foret);
    color: var(--ancien-grimoir);
    font-family: 'EB Garamond', serif;
    overflow-x: hidden;
}

h1, h4, .btn-primary {
    font-family: 'P22 Typewriter', 'Courier New', monospace;
}

h2, h3 {
    font-family: 'ClickClack', 'Courier New', serif;
}

.logo {
    font-family: 'JohnDoe', serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 100%);
    padding: 0 50px;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1000;
    overflow: hidden;
    transition: transform 0.35s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

main:not(.accueil-main) {
    padding-top: 80px;
}

.logo {
    color: var(--bougie);
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    color: #e8dfc8;
    text-decoration: none;
    font-size: 15px;
    font-family: 'P22 Typewriter', 'Courier New', monospace;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

nav a:hover {
    color: var(--bougie);
}

.btn-nav {
    border: 1px solid var(--bougie);
    color: var(--bougie) !important;
    padding: 9px 24px;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease !important;
    text-shadow: none !important;
}

.btn-nav:hover {
    background-color: var(--bougie);
    color: var(--arbre) !important;
}

.nav-prenom {
    color: var(--bougie) !important;
}

.nav-hoodie-link {
    display: inline-flex;
    align-items: center;
    margin-left: -20px;
}

.nav-hoodie {
    height: 32px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.btn-primary {
    background-color: var(--bougie);
    color: var(--arbre);
    text-decoration: none;
    padding: 16px 44px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.btn-primary:hover {
    background-color: var(--feu-camp);
    color: var(--ancien-grimoir);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    margin-top: 30px;
    color: var(--bougie);
    text-decoration: none;
    font-family: 'P22 Typewriter', monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--bougie);
    padding-bottom: 3px;
    transition: color 0.3s, border-color 0.3s;
}
.btn-secondary:hover {
    color: var(--feu-camp);
    border-color: var(--feu-camp);
}

.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(43,40,22,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.4s ease-out forwards;
    animation-delay: 0.8s;
    padding: 0 20px;
}

.hero-eyebrow {
    font-family: 'P22 Typewriter', monospace;
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--bougie);
    margin: 0 0 20px 0;
    opacity: 0.85;
}

.hero-title {
    font-family: 'P22 Typewriter', monospace;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    color: #fff;
    margin: 0 0 45px 0;
    letter-spacing: 4px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 2s;
}
.scroll-arrow {
    width: 22px;
    height: 22px;
    border-right: 2px solid var(--bougie);
    border-bottom: 2px solid var(--bougie);
    transform: rotate(45deg);
    animation: bounce 1.5s infinite;
}
@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50%       { transform: rotate(45deg) translateY(6px); }
}

.section-story {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    box-sizing: border-box;
}

.story-inner {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.section-story.reverse .story-inner {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1 1 400px;
}

.story-text h2 {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.25;
    margin: 0 0 25px 0;
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--ancien-grimoir);
    margin: 0;
}

.story-image {
    flex: 1 1 400px;
    text-align: center;
}

.story-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
}

.story-block {
    max-width: 1100px;
    width: 100%;
}

.story-divider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 5px;
    margin-top: -35px;
    margin-bottom: 30px;
    background: url('/view/img/line.svg?v=2') no-repeat center / 100% 100%;
}

.story-heading {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.25;
    margin: 0 0 40px 0;
}

.story-orn {
    float: left;
    height: 60px;
    width: auto;
    margin: 4px 18px 6px 0;
}

.section-features {
    background-color: var(--arbre);
    padding: 100px 40px;
    text-align: center;
}

.features-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.section-features h2 {
    font-family: 'P22 Typewriter', monospace;
    color: var(--feu-camp);
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin: 0 0 45px 0;
    letter-spacing: 2px;
}

.features-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: url('/view/img/halfpaper.webp') no-repeat center / 100% 100%;
    padding: 50px 70px;
    box-sizing: border-box;
}

.features-band h2 {
    margin: 0 0 40px 0;
    color: #2e2114;
}

.features-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-item {
    flex: 1 1 160px;
    max-width: 200px;
}

.feature-item img {
    width: 65px;
    height: auto;
    margin-bottom: 18px;
    opacity: 1;
}

.feature-item h4 {
    color: #2e2114;
    font-size: 1rem;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
}

.feature-item p {
    color: #4d3c29;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.section-booking {
    background: #080808 url('/view/img/background.png') no-repeat center / 100% 100%;
    padding: 35px 20px 45px;
}

.booking-parchment {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.booking-parchment-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.booking-parchment-inner {
    position: relative;
    z-index: 1;
    padding: 55px 60px 65px;
}

.booking-title {
    text-align: center;
    margin-bottom: 28px;
}

.booking-title h2 {
    font-family: 'P22 Typewriter', monospace;
    color: #2b2410;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    margin: 0 0 10px 0;
    letter-spacing: 5px;
}

.booking-title p {
    color: #5a4a2e;
    font-size: 0.95rem;
    margin: 0;
    font-family: 'EB Garamond', serif;
}

.date-nav {
    display: flex;
    align-items: stretch;
    margin: 0 auto 25px;
    max-width: 460px;
    border: 1px solid rgba(43,36,16,0.45);
    border-radius: 4px;
    background: rgba(255,250,235,0.30);
}

.date-btn {
    background: transparent;
    border: none;
    border-right: 1px solid rgba(43,36,16,0.3);
    color: #2b2410;
    width: 50px;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    font-family: 'P22 Typewriter', monospace;
}

.date-btn:last-child {
    border-right: none;
    border-left: 1px solid rgba(43,36,16,0.3);
}

.date-btn:hover { background: rgba(43,36,16,0.12); }

.date-display {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    color: #2b2410;
    font-family: 'P22 Typewriter', monospace;
    font-size: 1rem;
    text-transform: capitalize;
}

.cal-icon { height: 24px; width: auto; opacity: 0.85; }

.booking-grid {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
}

.room-column {
    flex: 1;
    border: 1px solid rgba(43,36,16,0.4);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255,250,235,0.22);
}

.room-header {
    text-align: center;
    padding: 16px 10px;
    border-bottom: 1px solid rgba(43,36,16,0.3);
    background: rgba(43,36,16,0.10);
}

.room-name {
    font-family: 'P22 Typewriter', monospace;
    color: #2b2410;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

.room-players {
    color: #5a4a2e;
    font-size: 0.82rem;
    margin-top: 5px;
    font-family: 'EB Garamond', serif;
}

.time-slot {
    border-top: 1px solid rgba(43,36,16,0.18);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'P22 Typewriter', monospace;
    font-size: 1rem;
}

.time-slot.complet {
    color: rgba(43,36,16,0.38);
}

.time-slot.available {
    padding: 0;
}

.slot-link {
    color: #2b2410;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: bold;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.slot-link:hover {
    background-color: var(--feu-camp);
    color: #fff;
}

@media (max-width: 768px) {
    .booking-parchment-inner { padding: 35px 18px 40px; }
}

.fade-in-overlay {
    position: fixed;
    inset: 0;
    background-color: #000;
    z-index: 9999;
    pointer-events: none;
    animation: fadeOutOverlay 1.8s ease-in-out forwards;
}

@keyframes fadeOutOverlay {
    0%   { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

@keyframes fadeInUp {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    header {
        padding: 10px 16px;
        height: auto;
        min-height: 0;
        flex-direction: column;
        gap: 8px;
        overflow: visible;
    }
    nav {
        justify-content: center;
        gap: 10px 14px;
    }
    nav a { font-size: 12px; letter-spacing: 1.5px; }
    .btn-nav { padding: 6px 14px; }
    .logo { justify-content: center; font-size: 15px; gap: 8px; }
    .logo-img { height: 44px; }
    .nav-hoodie { height: 24px; }

    main:not(.accueil-main) { padding: 120px 16px 40px; }

    .hero-title { letter-spacing: 2px; }
    .hero-eyebrow { font-size: 0.8rem; letter-spacing: 3px; }

    .section-story {
        padding: 50px 20px;
        min-height: auto;
    }
    .story-inner,
    .section-story.reverse .story-inner {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }
    .story-text h2 { text-align: center; }
    .story-heading { text-align: center; }
    .story-orn { float: none; display: block; margin: 0 auto 12px; }
    .story-text p { font-size: 1.05rem; line-height: 1.7; }

    .section-features { padding: 50px 20px; }

    .section-concept-timeline { padding: 120px 20px 50px; }
    .section-title { font-size: 1.6rem; }
    .timeline-item p { font-size: 0.95rem; }
    .timeline-item { column-gap: 14px; }
    .timeline-icon { height: 50px; }
    .timeline-list { padding-left: 18px; }

    .section-clique,
    .section-accommodation { padding: 50px 20px; }
    .inclus-heading h3 { letter-spacing: 2px; }
    .inclus-icon { width: 34px; }

    .btn-primary { padding: 14px 28px; font-size: 14px; letter-spacing: 2px; }

    .auth-card { padding: 40px 26px 34px; }

    .horaires-grid { flex-direction: column; gap: 20px; }
    .horaire-sep { display: none; }
}

.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal {
    background-color: var(--arbre);
    border: 2px solid var(--bougie);
    border-radius: 8px;
    padding: 35px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.custom-modal-overlay.active .custom-modal {
    transform: scale(1);
}

.custom-modal h3 {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.custom-modal p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--ancien-grimoir);
    margin-bottom: 30px;
}

.custom-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.custom-modal-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-family: 'P22 Typewriter', monospace;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.custom-modal-btn-confirm {
    background-color: var(--feu-camp);
    color: var(--ancien-grimoir);
}

.custom-modal-btn-confirm:hover {
    background-color: var(--bougie);
    color: var(--arbre);
}

.custom-modal-btn-cancel {
    background-color: #555;
    color: #ccc;
}

.custom-modal-btn-cancel:hover {
    background-color: #777;
}

.section-concept-timeline {
    background-color: var(--vert-foret);
    padding: 80px 40px;
    border-left: 3px solid var(--bougie);
}

.concept-timeline-inner {
    max-width: 850px;
    margin: 0 auto;
}

.section-title {
    font-family: 'P22 Typewriter', monospace;
    color: #fff;
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    font-weight: bold;
}

.concept-subtitle {
    color: var(--bougie);
    font-size: 1rem;
    font-style: italic;
    margin: 5px 0 40px;
    letter-spacing: 1px;
}

.timeline-list {
    margin: 40px 0;
    padding-left: 30px;
    background: url('/view/img/verticalline.png') left top / 7px 100% no-repeat;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 22px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(237,202,105,0.2);
}

.timeline-icon {
    grid-row: 1 / span 2;
    align-self: start;
    height: 64px;
    width: auto;
    margin-top: 2px;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-label {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    font-size: 1.05rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.timeline-item p {
    color: var(--ancien-grimoir);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

.timeline-separator {
    text-align: center;
    margin-top: 50px;
}

.section-clique {
    background-color: var(--vert-foret);
    padding: 60px 40px;
}

.clique-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.clique-label {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    opacity: 0.7;
}

.clique-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.clique-image {
    flex: 1 1 350px;
    min-height: 400px;
}

.clique-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid var(--bougie);
    border-radius: 4px;
}

.clique-text {
    flex: 1 1 350px;
}

.inclus-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.inclus-icon {
    width: 42px;
    height: auto;
    flex-shrink: 0;
}

.inclus-heading h3 {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.parchment-box {
    position: relative;
}

.parchment-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 1;
}

.parchment-content {
    position: relative;
    z-index: 2;
    padding: 38px 40px;
}

.parchment-content p {
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.section-accommodation {
    background-color: var(--arbre);
    padding: 60px 40px;
}

.accommodation-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.accommodation-label {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    opacity: 0.7;
}

.accommodation-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.accommodation-text {
    flex: 1 1 350px;
}

.accommodation-image {
    flex: 1 1 350px;
    min-height: 400px;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid var(--bougie);
    border-radius: 4px;
}

.section-features {
    background-color: var(--vert-foret);
    padding: 60px 40px;
    text-align: center;
}

.features-grid-bottom {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    flex-wrap: wrap;
    background: url('/view/img/halfpaper.webp') no-repeat center / 100% 100%;
    padding: 50px 70px;
    box-sizing: border-box;
}

.feature-item-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.feature-icon-bottom {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bottom img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.feature-item-bottom p {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.features-label {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin: 0;
}

.feature-collective {
    position: relative;
}

.feature-collective .features-label {
    position: absolute;
    bottom: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .clique-content,
    .accommodation-content {
        flex-direction: column;
        gap: 30px;
    }

    .clique-image,
    .accommodation-image,
    .clique-text,
    .accommodation-text {
        flex: 1 1 100%;
    }

    .features-grid-bottom {
        gap: 30px 20px;
    }

    .feature-collective .features-label {
        position: static;
        transform: none;
        margin-bottom: 10px;
    }
}

.auth-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 160px);
    padding: 50px 20px;
    box-sizing: border-box;
}

.auth-card {
    position: relative;
    width: 100%;
    max-width: 430px;
    padding: 50px 44px 42px;
    background: linear-gradient(170deg, rgba(77,60,41,0.55) 0%, rgba(43,40,22,0.65) 100%);
    border: 1px solid rgba(237,202,105,0.35);
    border-radius: 6px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.55), inset 0 0 70px rgba(0,0,0,0.28);
}

.auth-card::before {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px solid rgba(237,202,105,0.13);
    border-radius: 3px;
    pointer-events: none;
}

.auth-title {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    text-align: center;
    font-size: 1.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.auth-subtitle {
    text-align: center;
    color: #a89070;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-style: italic;
    margin: 0 0 34px;
}

.auth-field {
    margin-bottom: 20px;
}

.auth-field label {
    display: block;
    font-family: 'P22 Typewriter', monospace;
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--bougie);
    opacity: 0.8;
    margin-bottom: 8px;
}

.auth-input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 15px;
    background-color: rgba(0,0,0,0.25);
    border: 1px solid rgba(224,206,165,0.22);
    border-radius: 4px;
    color: var(--ancien-grimoir);
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.auth-input::placeholder {
    color: rgba(224,206,165,0.4);
    font-style: italic;
}

.auth-input:focus {
    outline: none;
    border-color: var(--bougie);
    background-color: rgba(0,0,0,0.35);
    box-shadow: 0 0 0 1px rgba(237,202,105,0.25), 0 0 18px rgba(237,202,105,0.18);
}

.auth-input:-webkit-autofill,
.auth-input:-webkit-autofill:hover,
.auth-input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--ancien-grimoir);
    -webkit-box-shadow: 0 0 0 1000px rgba(43,40,22,0.95) inset;
    caret-color: var(--ancien-grimoir);
}

.auth-submit {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    background-color: var(--bougie);
    color: var(--arbre);
    border: none;
    border-radius: 4px;
    font-family: 'P22 Typewriter', monospace;
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.auth-submit:hover {
    background-color: var(--feu-camp);
    color: var(--ancien-grimoir);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 30px 0 20px;
}
.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(224,206,165,0.18);
}
.auth-divider span {
    color: var(--bougie);
    opacity: 0.6;
    font-size: 0.9rem;
}

.auth-footer {
    text-align: center;
    margin: 0;
    color: var(--ancien-grimoir);
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--bougie);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.auth-footer a:hover {
    color: var(--feu-camp);
    border-color: var(--feu-camp);
}

.site-footer {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: var(--arbre);
    color: var(--ancien-grimoir);
    padding: 45px 70px;
    font-family: 'P22 Typewriter', 'Courier New', monospace;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo {
    width: 120px;
    height: auto;
}

.footer-contact {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bougie);
    font-size: 1.05rem;
}

.footer-orn {
    height: 22px;
    width: auto;
}

.footer-divider {
    align-self: center;
    width: auto;
    height: 200px;
}

.footer-right {
    flex: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 45px;
}

.footer-links {
    display: flex;
    gap: 90px;
}

.footer-col {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col a {
    color: var(--ancien-grimoir);
    text-decoration: none;
    font-size: 1.15rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--bougie);
}

.footer-socials {
    display: flex;
    gap: 18px;
}

.footer-social {
    width: 42px;
    height: 42px;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-social:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 35px 30px;
    }

    .footer-divider {
        display: none;
    }

    .footer-links {
        gap: 50px;
    }
}

.section-temoignages {
    background-color: var(--vert-foret);
    padding: 90px 30px 100px;
    text-align: center;
}

.temoignages-title {
    font-family: 'P22 Typewriter', monospace;
    color: var(--ancien-grimoir);
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    letter-spacing: 4px;
    margin: 0 0 60px 0;
}

.temoignages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 45px;
    max-width: 1000px;
    margin: 0 auto;
}

.temoignage-card {
    position: relative;
    flex: 0 1 440px;
    min-height: 300px;
}

.temoignage-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.temoignage-card-inner {
    position: relative;
    z-index: 1;
    padding: 50px 55px;
    text-align: left;
    color: #2e2114;
}

.temoignage-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.temoignage-avatar {
    width: 48px;
    height: auto;
}

.temoignage-id {
    display: flex;
    flex-direction: column;
}

.temoignage-nom {
    font-family: 'P22 Typewriter', monospace;
    font-weight: bold;
    font-size: 1.15rem;
    letter-spacing: 1px;
    color: #241a0e;
    text-transform: uppercase;
}

.temoignage-sous {
    font-family: 'P22 Typewriter', monospace;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #6b5a3e;
    text-transform: uppercase;
}

.temoignage-message {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #2e2114;
}

.temoignage-stars {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
    gap: 6px;
}

.temoignage-stars img {
    width: 20px;
    height: 20px;
}

.temoignages-vide {
    font-family: 'EB Garamond', serif;
    font-size: 1.15rem;
    color: var(--ancien-grimoir);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
}

.temoignages-cta {
    margin-top: 70px;
    display: flex;
    justify-content: center;
}

.temoignage-banner {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 60px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.temoignage-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.temoignage-banner span {
    position: relative;
    z-index: 1;
    font-family: 'P22 Typewriter', monospace;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: #2e2114;
    text-transform: uppercase;
}

.temoignage-banner:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .section-temoignages { padding: 60px 18px 70px; }
    .temoignages-grid { gap: 30px; }
    .temoignage-card { flex: 1 1 100%; }
    .temoignage-card-inner { padding: 40px 38px; }
}

.section-infos {
    background-color: var(--vert-foret);
    padding: 80px 40px 100px;
}

.infos-inner {
    display: flex;
    align-items: stretch;
    gap: 45px;
    max-width: 860px;
    margin: 0 auto;
}

.infos-line {
    flex: 0 0 3px;
    background: url('/view/img/linevertical.svg?v=2') no-repeat center / 100% 100%;
}

.infos-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.infos-item {
    margin: 0;
    font-family: 'EB Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--ancien-grimoir);
}

.infos-label {
    color: var(--bougie);
}

.infos-note {
    max-width: 720px;
    margin: 45px auto 0;
    text-align: center;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ancien-grimoir);
    opacity: 0.8;
}

.infos-cta {
    margin-top: 45px;
    display: flex;
    justify-content: center;
}

.infos-reserver {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 75px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.infos-reserver-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.infos-reserver span {
    position: relative;
    z-index: 1;
    font-family: 'P22 Typewriter', monospace;
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: #2e2114;
}

.infos-reserver:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .section-infos { padding: 60px 20px 70px; }
    .infos-inner { gap: 25px; }
    .infos-item { font-size: 1.05rem; }
}

.section-features-band {
    padding-top: 0;
    padding-bottom: 0;
}

.contact-hero {
    position: relative;
    height: 58vh;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
    z-index: 0;
}

.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(43,40,22,0.7) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    font-family: 'P22 Typewriter', monospace;
    color: #fff;
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: 4px;
    margin: 0 0 14px 0;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}

.contact-hero-content p {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.95rem;
    margin: 0;
}

.infos-pratiques {
    background-color: var(--vert-foret);
    padding: 70px 40px;
}

.infos-pratiques-title {
    text-align: center;
    font-family: 'P22 Typewriter', monospace;
    color: var(--ancien-grimoir);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    letter-spacing: 4px;
    margin: 0 0 50px 0;
}

.infos-pratiques-inner {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.infos-coord {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 26px;
    flex: 1 1 300px;
}

.infos-coord li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--bougie);
    font-family: 'P22 Typewriter', monospace;
    font-size: 1rem;
}

.coord-icon {
    height: 32px;
    width: auto;
}

.infos-map {
    flex: 0 1 360px;
}

.infos-map img {
    width: 100%;
    height: auto;
    border: 1px solid var(--feu-camp);
}

.contact-form-section {
    background-color: var(--vert-foret);
    padding: 10px 20px 90px;
}

.contact-flash {
    max-width: 700px;
    margin: 0 auto 25px;
    text-align: center;
    padding: 16px;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'EB Garamond', serif;
}

.contact-flash.ok { background-color: rgba(45,106,45,0.9); color: #fff; }
.contact-flash.ko { background-color: rgba(106,45,45,0.9); color: #fff; }

.contact-parchment {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.contact-parchment-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.contact-parchment-inner {
    position: relative;
    z-index: 1;
    padding: 60px 70px 70px;
}

.contact-form-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}

.contact-form-icon {
    height: 38px;
    width: auto;
}

.contact-form-heading h2 {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: 2px;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-row .cfield-wrap {
    flex: 1;
}

.cfield-wrap label {
    display: block;
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.cfield {
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.cfield-nom,
.cfield-prenom { aspect-ratio: 264 / 96; }

.cfield-nom { background-image: url('/view/img/contact/nom.svg'); }
.cfield-prenom { background-image: url('/view/img/contact/prenom.svg'); }
.cfield-adress { aspect-ratio: 802 / 111; background-image: url('/view/img/contact/adress.svg'); }
.cfield-tel { aspect-ratio: 799 / 108; background-image: url('/view/img/contact/telephone.svg'); }
.cfield-msg { aspect-ratio: 798 / 248; background-image: url('/view/img/contact/message.svg'); }

.cfield input,
.cfield textarea {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #2e2114;
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    padding: 0 40px;
    box-sizing: border-box;
}

.cfield textarea {
    resize: none;
    padding: 32px 48px;
    line-height: 1.5;
}

.cfield input::placeholder,
.cfield textarea::placeholder { color: #6b5a3e; }

.contact-send {
    align-self: center;
    margin-top: 18px;
    position: relative;
    width: 240px;
    aspect-ratio: 340 / 94;
    background: url('/view/img/contact/send.svg') no-repeat center / 100% 100%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.contact-send span {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 1.1rem;
    letter-spacing: 3px;
}

.contact-send:hover {
    transform: translateY(-3px);
}

.contact-cta {
    background-color: var(--vert-foret);
    padding: 0 20px 90px;
    display: flex;
    justify-content: center;
}

.contact-page .section-booking {
    background: url('/view/img/background.png') no-repeat center / 100% 100%;
}

.cnx-page {
    background-color: #2b2816;
    padding: 70px 20px 90px;
}
.cnx-block { margin: 0 auto; }

.cnx-heading {
    text-align: center;
    font-family: 'P22 Typewriter', monospace;
    color: #e0cea5;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    letter-spacing: 3px;
    margin: 0 0 26px;
}

.cnx-parchment-login { max-width: 540px; }
.cnx-parchment-login .contact-parchment-inner { padding: 45px 50px 50px; }

.cnx-ou {
    max-width: 420px;
    margin: 26px auto 34px;
    text-align: center;
    font-family: 'P22 Typewriter', monospace;
    color: #af6743;
    font-size: 1.6rem;
    letter-spacing: 3px;
}
.cnx-ou::before {
    content: '';
    display: block;
    height: 2px;
    width: 75%;
    background: #af6743;
    margin: 0 auto 16px;
}

.profil-infos { margin-top: 60px; text-align: center; }
.profil-infos-watermark {
    display: block;
    font-family: 'P22 Typewriter', monospace;
    color: rgba(196, 181, 131, 0.45);
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.profil-infos-title {
    font-family: 'P22 Typewriter', monospace;
    color: #e0cea5;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    letter-spacing: 3px;
    margin: 0 0 24px;
}

.profil-parchment { max-width: 760px; }

.profil-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    text-align: left;
}
.profil-id-col {
    flex: 0 0 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.profil-id-icon { width: 78px; height: auto; margin-bottom: 4px; }
.profil-fields-col {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profil-field { display: flex; align-items: center; gap: 14px; }
.profil-field label {
    flex: 0 0 130px;
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.82rem;
    letter-spacing: 1px;
}
.profil-field .cfield { flex: 1 1 auto; }

.cfield-naissance { aspect-ratio: 460 / 48; background-image: url('/view/img/profile/naissance.svg'); }
.cfield-mailtel   { aspect-ratio: 432 / 52; background-image: url('/view/img/profile/mailoutelephone.svg'); }
.cfield-nomequipe { width: 165px; aspect-ratio: 195 / 44; background-image: url('/view/img/profile/nomprenomequipe.svg'); }
.cfield-nomequipe input { padding: 0 16px; font-size: 0.95rem; }

.profil-actions {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.profil-action-btn {
    position: relative;
    width: 240px;
    aspect-ratio: 315 / 93;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.15s ease;
}
.profil-btn-modif { background-image: url('/view/img/profile/modifierprofile.svg'); }
.profil-btn-deco  { background-image: url('/view/img/profile/deconnexion.svg'); }
.profil-action-btn span {
    font-family: 'P22 Typewriter', monospace;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
}
.profil-btn-modif span { color: #2e2114; }
.profil-btn-deco span { color: #f2e8d2; }
.profil-action-btn:hover { transform: translateY(-3px); }

.profil-temoignage { margin-top: 50px; }
.profil-temoignage-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: url('/view/img/halfpaper.webp') no-repeat center / 100% 100%;
    padding: 46px 30px 54px;
    text-align: center;
}
.profil-temoignage-text {
    font-family: 'EB Garamond', serif;
    color: #2e2114;
    font-size: clamp(1.05rem, 2.4vw, 1.3rem);
    line-height: 1.7;
    margin: 0 0 26px;
}
.profil-temoignage-text strong { color: #af6743; font-weight: bold; }
.profil-exp-btn {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 347 / 105;
    margin: 0 auto;
    background: url('/view/img/profile/monexperience.svg') no-repeat center / 100% 100%;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
}
.profil-exp-btn span {
    font-family: 'P22 Typewriter', monospace;
    color: #f2e8d2;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}
.profil-exp-btn:hover { transform: translateY(-3px); }

.profil-temoignage-form {
    display: none;
    background-color: #4d3c29;
    padding: 30px;
    border-radius: 8px;
    margin-top: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.profil-temoignage-form.is-open { display: block; }
.profil-temoignage-label {
    display: block;
    color: #edca69;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: 'P22 Typewriter', monospace;
}
.profil-temoignage-form textarea {
    width: 100%;
    padding: 12px;
    background-color: #3a2d20;
    border: 1px solid #5a4a35;
    color: #e0cea5;
    border-radius: 5px;
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    box-sizing: border-box;
    resize: vertical;
}
.profil-temoignage-submit {
    margin-top: 15px;
    background-color: #edca69;
    color: #4d3c29;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'P22 Typewriter', monospace;
    font-size: 14px;
    font-weight: bold;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}
.rating-label {
    font-family: 'P22 Typewriter', monospace;
    color: #edca69;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.rating-stars { display: flex; gap: 8px; }
.rating-star {
    width: 28px;
    height: 28px;
    cursor: pointer;
    filter: invert(86%) sepia(28%) saturate(560%) hue-rotate(354deg) brightness(95%);
    opacity: 0.3;
    transition: opacity 0.12s ease, transform 0.12s ease;
}
.rating-star.active { opacity: 1; }
.rating-star:hover { transform: scale(1.15); }
.profil-comments { margin-top: 30px; border-top: 1px solid #5a4a35; padding-top: 25px; }
.profil-comments-title {
    color: #c4b583;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.profil-comment {
    background-color: #3a2d20;
    padding: 15px 18px;
    border-radius: 6px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}
.profil-comment p { margin: 0; color: #e0cea5; font-size: 0.95rem; flex: 1; }
.profil-badge {
    color: #e0cea5;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    white-space: nowrap;
    font-family: 'P22 Typewriter', monospace;
}

@media (max-width: 768px) {
    .profil-grid { flex-direction: column; align-items: center; }
    .profil-id-col { flex: 0 0 auto; }
    .profil-field { flex-direction: column; align-items: flex-start; gap: 6px; }
    .profil-field label { flex: none; }
}

@media (max-width: 768px) {
    .infos-pratiques-inner { flex-direction: column; }
    .infos-map { flex: 1 1 100%; max-width: 360px; }
    .form-row { flex-direction: column; gap: 22px; }
    .contact-parchment-inner { padding: 40px 30px 50px; }
}

.resa-page {
    background-color: #2b2816;
    color: #e0cea5;
}

.resa-intro {
    text-align: center;
    padding: 70px 20px 40px;
}
.resa-intro h1 {
    font-family: 'P22 Typewriter', monospace;
    color: #e0cea5;
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    letter-spacing: 3px;
    margin: 0;
}
.resa-intro-sub {
    font-family: 'P22 Typewriter', monospace;
    color: #c4b583;
    letter-spacing: 4px;
    margin: 6px 0 12px;
}
.resa-intro-brand {
    font-family: 'P22 Typewriter', monospace;
    color: #edca69;
    letter-spacing: 2px;
    margin: 0 0 22px;
}
.resa-intro-text {
    font-family: 'EB Garamond', serif;
    color: #cbbd97;
    max-width: 720px;
    margin: 6px auto;
    line-height: 1.5;
}
.resa-intro-text strong { color: #e0cea5; }

.resa-form-section {
    padding: 10px 20px 70px;
}
.resa-parchment {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.resa-parchment-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}
.resa-parchment-inner {
    position: relative;
    z-index: 1;
    padding: 60px 64px 70px;
}

.resa-watermark {
    display: block;
    text-align: right;
    font-family: 'P22 Typewriter', monospace;
    color: rgba(77, 60, 41, 0.4);
    letter-spacing: 2px;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.resa-heading-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}
.resa-heading-orn { height: 46px; width: auto; }

.resa-heading {
    font-family: 'P22 Typewriter', monospace;
    color: #2b2410;
    font-size: clamp(1.4rem, 4vw, 2rem);
    letter-spacing: 2px;
    margin: 0;
}

.resa-form { display: block; }

.resa-label {
    display: block;
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    letter-spacing: 1px;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.resa-field {
    position: relative;
    display: inline-block;
    line-height: 0;
}
.resa-field-bg {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.resa-field input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    box-sizing: border-box;
    padding: 0 18px;
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    color: #2e2114;
    text-align: center;
}
.resa-field input::placeholder { color: rgba(46, 33, 20, 0.4); }
.resa-field input[type=number]::-webkit-inner-spin-button { display: none; }

.resa-top {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-bottom: 26px;
}
.resa-top-col { flex: 1 1 280px; }
.resa-field-equipe { width: 100%; }
.resa-date-row { display: flex; gap: 12px; align-items: flex-end; }
.resa-field-day, .resa-field-month { width: 72px; }
.resa-field-year { width: 150px; }

.resa-nb-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 34px;
}
.resa-nb-row .resa-label { margin-bottom: 0; }
.resa-field-nb { width: 72px; flex: 0 0 auto; }

.resa-players { display: flex; flex-direction: column; gap: 16px; margin-bottom: 34px; }
.resa-player-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.resa-player-id {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 42px;
}
.resa-player-icon { height: 40px; width: auto; }
.resa-player-num {
    font-family: 'P22 Typewriter', monospace;
    color: #4d3c29;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-top: 2px;
}
.resa-field-group { display: flex; flex-direction: column; gap: 5px; }
.resa-group-name { flex: 1 1 220px; }
.resa-group-email { flex: 1 1 180px; }
.resa-field-group .resa-field { width: 100%; }
.resa-field-label {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.72rem;
    letter-spacing: 1px;
}

.resa-option { margin-bottom: 26px; }
.resa-option-q {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    letter-spacing: 1px;
    margin: 0 0 12px;
}
.resa-choices { display: flex; gap: 36px; }
.resa-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.resa-choice-label {
    font-family: 'P22 Typewriter', monospace;
    color: #4d3c29;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.resa-choice input { position: absolute; opacity: 0; pointer-events: none; }
.resa-box {
    width: 50px;
    height: 44px;
    background: url('/view/img/reservation/costumesvideo.svg') no-repeat center / contain;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease;
}
.resa-choice:hover .resa-box { transform: scale(1.05); }
.resa-choice input:checked + .resa-box::after {
    content: '\2715';
    color: #3a2d1a;
    font-size: 1.6rem;
    line-height: 1;
}

.resa-submit {
    position: relative;
    display: block;
    width: 230px;
    margin: 40px auto 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.resa-submit-bg { display: block; width: 100%; height: auto; }
.resa-submit span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.resa-alt { text-align: center; max-width: 760px; margin: 50px auto 0; }
.resa-ou {
    font-family: 'P22 Typewriter', monospace;
    color: #edca69;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin: 30px 0;
    position: relative;
}
.resa-ou::before {
    content: '';
    display: block;
    width: 60%;
    height: 1px;
    background: #5a4a35;
    margin: 0 auto 22px;
}
.resa-alt-title {
    font-family: 'P22 Typewriter', monospace;
    color: #c4b583;
    letter-spacing: 2px;
    margin: 0 0 10px;
}
.resa-alt-info {
    font-family: 'P22 Typewriter', monospace;
    color: #edca69;
    letter-spacing: 2px;
    font-size: 1.15rem;
    margin: 0;
}

.resa-horaires { padding: 0; }
.resa-horaires-band {
    position: relative;
    background: url('/view/img/background.png') no-repeat center / 100% 100%;
    padding: 40px 30px 50px;
    text-align: center;
}
.resa-horaires-clock {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: auto;
}
.resa-horaires-titlerow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}
.resa-horaires-titlerow .resa-horaires-clock {
    position: static;
    transform: none;
    width: 50px;
}
.resa-horaires-titlerow .resa-horaires-title {
    margin: 0;
}
.resa-horaires-title {
    font-family: 'P22 Typewriter', monospace;
    color: #2b2410;
    letter-spacing: 3px;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin: 0 0 24px;
}
.resa-horaires-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.resa-horaires-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.resa-horaires-day {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    letter-spacing: 1px;
}
.resa-horaires-hours {
    font-family: 'P22 Typewriter', monospace;
    color: #4d3c29;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .resa-parchment-inner { padding: 45px 26px 55px; }
    .resa-top { flex-direction: column; }
    .resa-horaires-clock { display: none; }
    .resa-horaires-grid { gap: 30px; }
}

.mentions-page {
    background-color: #2b2816;
}

.mentions-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 90px;
}

.mentions-title {
    text-align: center;
    font-family: 'P22 Typewriter', monospace;
    color: #e0cea5;
    font-size: clamp(1.7rem, 4.5vw, 2.4rem);
    letter-spacing: 4px;
    margin: 0 0 50px;
}

.mentions-block {
    margin-bottom: 48px;
}

.mentions-block h2 {
    font-family: 'P22 Typewriter', monospace;
    color: #e0cea5;
    font-size: clamp(1.05rem, 2.6vw, 1.4rem);
    letter-spacing: 2px;
    margin: 0 0 18px;
}

.mentions-line {
    font-family: 'EB Garamond', serif;
    color: #f2e8d2;
    font-size: 0.95rem;
    margin: 0 0 10px;
    line-height: 1.5;
}

.mentions-line span {
    color: #edca69;
}

.mentions-line a {
    color: #f2e8d2;
    text-decoration: underline;
}

.mentions-para {
    font-family: 'EB Garamond', serif;
    color: #f2e8d2;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.gestion-page {
    background-color: #2b2816;
    min-height: 100vh;
    padding: 60px 20px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.gestion-title {
    text-align: center;
    font-family: 'P22 Typewriter', monospace;
    color: #f2e8d2;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    letter-spacing: 4px;
    margin: 0 0 50px;
}

.gestion-section {
    max-width: 820px;
    margin: 0 auto 60px;
}

.gestion-section-title {
    font-family: 'P22 Typewriter', monospace;
    color: #e0cea5;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    letter-spacing: 2px;
    margin: 0 0 26px;
}

.gestion-vide {
    font-family: 'EB Garamond', serif;
    color: #c4b583;
    font-size: 1.05rem;
}

.gestion-date {
    font-family: 'P22 Typewriter', monospace;
    color: #edca69;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 0 8px 14px;
}

.gestion-entry { margin-bottom: 30px; }
.gestion-hidden { display: none; }

.gestion-card {
    position: relative;
    background-color: #ecdfb9;
    border: 2px solid #3a2d1a;
    border-radius: 14px;
    padding: 22px 26px 60px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.gestion-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(58, 45, 26, 0.35);
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.gestion-team {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gestion-team-icon { width: 46px; height: auto; }

.gestion-team-name {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: underline;
}

.gestion-dossier-btn {
    position: relative;
    width: 150px;
    aspect-ratio: 340 / 94;
    background: url('/view/img/smallpaper.webp') no-repeat center / 100% 100%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    transition: transform 0.15s ease;
}

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

.gestion-dossier-btn span {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.55rem;
    letter-spacing: 1px;
}

.gestion-card-body {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.gestion-chef-icon { width: 40px; height: auto; margin-top: 2px; }

.gestion-chef {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.92rem;
    margin: 0 0 8px;
}

.gestion-participants-label {
    font-family: 'P22 Typewriter', monospace;
    color: #af6743;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.gestion-participants ul {
    margin: 6px 0 0;
    padding-left: 18px;
    list-style: none;
}

.gestion-participants li {
    font-family: 'EB Garamond', serif;
    color: #2e2114;
    font-size: 0.95rem;
    line-height: 1.5;
}

.gestion-dossier {
    display: none;
    margin-top: 16px;
    border-top: 1px dashed rgba(58, 45, 26, 0.4);
    padding-top: 14px;
}

.gestion-dossier.is-open { display: block; }

.gestion-dossier p,
.gestion-dossier li {
    font-family: 'EB Garamond', serif;
    color: #2e2114;
    font-size: 0.95rem;
    margin: 0 0 5px;
}

.gestion-dossier ul { margin: 0; padding-left: 22px; }

.gestion-card-actions {
    position: absolute;
    right: 18px;
    bottom: 12px;
}

.gestion-suppr,
.gestion-suivi {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    aspect-ratio: 315 / 93;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.gestion-suppr { background-image: url('/view/img/profile/deconnexion.svg'); }
.gestion-suivi { background-image: url('/view/img/profile/modifierprofile.svg'); }

.gestion-suppr:hover,
.gestion-suivi:hover { transform: translateY(-2px); }

.gestion-suppr span {
    font-family: 'P22 Typewriter', monospace;
    color: #3a1d12;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
}

.gestion-suivi span {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.68rem;
    letter-spacing: 1px;
}

.gestion-voirplus-wrap {
    text-align: center;
    margin-top: 34px;
}

.gestion-voirplus {
    background-color: #edca69;
    color: #2e2114;
    border: none;
    border-radius: 6px;
    padding: 14px 48px;
    cursor: pointer;
    font-family: 'P22 Typewriter', monospace;
    font-size: 0.95rem;
    letter-spacing: 2px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    transition: transform 0.15s ease;
}

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

.gestion-comments {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.gestion-comment {
    position: relative;
    flex: 0 1 340px;
}

.gestion-comment-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.gestion-comment-inner {
    position: relative;
    z-index: 1;
    padding: 36px 34px 30px;
}

.gestion-comment-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.gestion-comment-icon { width: 26px; height: auto; }

.gestion-comment-nom {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.gestion-comment-msg {
    font-family: 'EB Garamond', serif;
    color: #2e2114;
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 10px;
}

.gestion-comment-date {
    font-family: 'P22 Typewriter', monospace;
    color: rgba(46, 33, 20, 0.55);
    font-size: 0.7rem;
    margin: 0 0 6px;
}

.gestion-comment-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.gestion-flag {
    width: 26px;
    height: 20px;
    border: 1px solid #2e2114;
    border-radius: 3px;
    cursor: pointer;
    transition: transform 0.12s ease;
}

.gestion-flag:hover { transform: scale(1.15); }
.gestion-flag-ok { background-color: #2d6a2d; }
.gestion-flag-ko { background-color: #a8322f; }

.gestion-logout {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.gestion-logout-name {
    font-family: 'P22 Typewriter', monospace;
    color: #f2e8d2;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.gestion-logout-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    aspect-ratio: 307 / 93;
    background: url('/view/img/profile/deconnexion.svg') no-repeat center / 100% 100%;
    text-decoration: none;
    transition: transform 0.15s ease;
}

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

.gestion-logout-btn span {
    font-family: 'P22 Typewriter', monospace;
    color: #f2e8d2;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

@media (max-width: 700px) {
    .gestion-card { padding: 18px 18px 64px; }
    .gestion-card-top { flex-direction: column; }
    .gestion-comments { flex-direction: column; }
    .gestion-comment { flex: 1 1 auto; }
}

.nav-connected {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: transform 0.15s ease;
}

.nav-connected:hover { transform: scale(1.08); }

.nav-connected img {
    width: 44px;
    height: 44px;
    display: block;
}

.agent-popup {
    display: none;
    position: fixed;
    top: 84px;
    right: 24px;
    width: 250px;
    background-color: #ecdfb9;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 26px 24px 24px;
    z-index: 2000;
    text-align: center;
}

.agent-popup.is-open { display: block; }

.agent-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: #2e2114;
    font-size: 1rem;
    cursor: pointer;
}

.agent-popup-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 2px solid #af6743;
    border-radius: 50%;
    margin-bottom: 10px;
}

.agent-popup-avatar img { width: 40px; height: auto; }

.agent-popup-title {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0;
}

.agent-popup-sub {
    font-family: 'P22 Typewriter', monospace;
    color: rgba(46, 33, 20, 0.55);
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 2px 0 14px;
}

.agent-popup-links {
    display: flex;
    flex-direction: column;
}

.agent-popup-links a {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    text-decoration: none;
    font-size: 0.92rem;
    letter-spacing: 2px;
    padding: 12px 0;
    border-bottom: 1px solid #af6743;
    transition: opacity 0.15s ease;
}

.agent-popup-links a:first-child { border-top: 1px solid #af6743; }
.agent-popup-links a:hover { opacity: 0.6; }

.agent-popup-logout {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    aspect-ratio: 307 / 93;
    margin: 18px auto 0;
    background: url('/view/img/profile/deconnexion.svg') no-repeat center / 100% 100%;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.agent-popup-logout:hover { transform: translateY(-2px); }

.agent-popup-logout span {
    font-family: 'P22 Typewriter', monospace;
    color: #f2e8d2;
    font-size: 0.68rem;
    letter-spacing: 2px;
}

.score-page { background-color: #2b2816; }

.score-section { padding: 60px 20px 70px; }

.score-title {
    text-align: center;
    font-family: 'P22 Typewriter', monospace;
    color: #f2e8d2;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    letter-spacing: 4px;
    margin: 0 0 40px;
}

.score-parchment { max-width: 640px; }

.score-inner { padding: 50px 50px 55px; }

.score-team-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 34px;
}

.score-team-icon { width: 48px; height: auto; margin-top: 14px; }

.score-team-field { flex: 1 1 auto; }

.score-label {
    display: block;
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.score-box {
    position: relative;
    line-height: 0;
}

.score-box-bg {
    display: block;
    width: 100%;
    height: auto;
}

.score-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 22px;
    font-family: 'EB Garamond', serif;
    color: #2e2114;
    font-size: 1.05rem;
    line-height: 1;
}

.score-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.score-row .score-label {
    flex: 0 0 auto;
    margin-bottom: 0;
}

.score-box-small { flex: 1 1 auto; }

.avis-page {
    background-color: #2b2816;
    min-height: 70vh;
    padding-bottom: 80px;
}

.avis-inner {
    max-width: 760px;
    margin: 40px auto 0;
    padding: 0 20px;
}

@media (max-width: 600px) {
    .agent-popup { right: 10px; }
    .score-inner { padding: 40px 26px; }
    .score-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .score-box-small { width: 100%; }
}

.resa-mini-ico {
    width: 20px;
    height: auto;
    flex: 0 0 auto;
}

.resa-field-heure { width: 150px; flex: 0 0 auto; }

.resa-field select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    box-sizing: border-box;
    padding: 0 14px;
    font-family: 'P22 Typewriter', monospace;
    font-size: 0.95rem;
    color: #2e2114;
    text-align: center;
    text-align-last: center;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.resa-field select option {
    background-color: #ecdfb9;
    color: #2e2114;
}

.equipe-page {
    background-color: #2b2816;
    min-height: 80vh;
    padding: 50px 20px 80px;
}

.equipe-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.equipe-page-title {
    font-family: 'P22 Typewriter', monospace;
    color: #edca69;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin: 0 0 40px;
}

.equipe-section-title {
    font-family: 'P22 Typewriter', monospace;
    color: #e0cea5;
    font-size: 1.4rem;
    margin: 0 0 25px;
}

.equipe-bloc { margin-bottom: 55px; }

.equipe-heading {
    text-align: center;
    font-family: 'P22 Typewriter', monospace;
    color: #f2e8d2;
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin: 36px 0 24px;
}

.equipe-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
}

.equipe-membres-card {
    flex: 1 1 300px;
    max-width: 360px;
    background-color: #ecdfb9;
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.equipe-membre-row {
    display: flex;
    align-items: flex-end;
    gap: 14px;
}

.equipe-membre-ico { width: 34px; height: auto; flex: 0 0 auto; }

.equipe-membre-line {
    flex: 1 1 auto;
    border-bottom: 1.5px solid #af6743;
    font-family: 'EB Garamond', serif;
    color: #2e2114;
    font-size: 1rem;
    padding-bottom: 3px;
    min-height: 1.3em;
}

.equipe-code-card {
    flex: 0 1 230px;
    background-color: #ecdfb9;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.equipe-code-titre {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin: 0;
}

.equipe-code-box {
    width: 100%;
    border: 1.5px solid #2e2114;
    border-radius: 6px;
    background-color: #f2e8d2;
    padding: 14px 10px;
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 1.05rem;
    letter-spacing: 2px;
    box-sizing: border-box;
}

.equipe-copier {
    background-color: #af6743;
    color: #f2e8d2;
    border: none;
    border-radius: 4px;
    padding: 10px 26px;
    cursor: pointer;
    font-family: 'P22 Typewriter', monospace;
    font-size: 0.78rem;
    letter-spacing: 2px;
    transition: transform 0.15s ease;
}

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

.equipe-vide {
    background-color: #4d3c29;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: 'EB Garamond', serif;
    color: #e0cea5;
    font-size: 1.15rem;
    margin-bottom: 50px;
}

.equipe-vide-btn {
    display: inline-block;
    margin-top: 18px;
    background-color: #edca69;
    color: #4d3c29;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: 'P22 Typewriter', monospace;
    font-size: 15px;
}

.rejoindre-wrap { max-width: 560px; text-align: center; }

.rejoindre-card {
    background-color: #ecdfb9;
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.rejoindre-ico { width: 60px; height: auto; }

.rejoindre-texte {
    font-family: 'EB Garamond', serif;
    color: #2e2114;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.rejoindre-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.rejoindre-input {
    width: 220px;
    border: 1.5px solid #2e2114;
    border-radius: 6px;
    background-color: #f2e8d2;
    padding: 14px 10px;
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 1.05rem;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    outline: none;
}

.rejoindre-btn { padding: 12px 40px; }

@media (max-width: 600px) {
    .equipe-cards { flex-direction: column; align-items: center; }
    .equipe-membres-card, .equipe-code-card { width: 100%; max-width: 360px; flex: 1 1 auto; }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    transition: background-color 600000s 0s, color 600000s 0s;
}

.cfield input:-webkit-autofill,
.resa-field input:-webkit-autofill,
.rejoindre-input:-webkit-autofill {
    -webkit-text-fill-color: #2e2114;
    caret-color: #2e2114;
}

.agent-popup-close img {
    width: 18px;
    height: auto;
    display: block;
}

.temoignages-carousel {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 1080px;
    margin: 0 auto;
}

.temoignages-carousel .temoignages-grid {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    max-width: none;
    margin: 0;
    padding: 10px 0;
    scrollbar-width: none;
}

.temoignages-carousel .temoignages-grid::-webkit-scrollbar { display: none; }

.temoignages-carousel .temoignage-card {
    flex: 0 0 calc((100% - 60px) / 3);
    scroll-snap-align: start;
}

.temoignages-carousel .temoignage-card-inner {
    padding: 38px 38px;
}

.temoignages-carousel .temoignage-message {
    font-size: 1rem;
}

.temo-nav {
    flex: 0 0 auto;
    background: none;
    border: none;
    color: var(--ancien-grimoir);
    font-size: 2.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 6px;
    transition: transform 0.15s ease, opacity 0.15s ease;
    opacity: 0.8;
}

.temo-nav:hover { opacity: 1; transform: scale(1.2); }

@media (max-width: 768px) {
    .temoignages-carousel .temoignage-card {
        flex: 0 0 100%;
    }
}

.nav-admin-name {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    font-size: 0.95rem;
    margin-right: 10px;
}

.adm-section {
    max-width: 900px;
    margin: 0 auto 70px;
}

.adm-section-title {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin: 0 0 6px 0;
}

.adm-section-sub {
    font-family: 'P22 Typewriter', monospace;
    color: var(--ancien-grimoir);
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0.8;
    margin: 0 0 30px 0;
}

.adm-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.adm-stat {
    flex: 1 1 150px;
    max-width: 200px;
    border: 2px solid var(--ancien-grimoir);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.adm-stat-num {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    font-size: 2.4rem;
    line-height: 1;
}

.adm-stat-label {
    font-family: 'P22 Typewriter', monospace;
    color: var(--ancien-grimoir);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    line-height: 1.5;
}

.adm-table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

.adm-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-family: 'P22 Typewriter', monospace;
    font-size: 0.85rem;
}

.adm-table thead tr { background-color: var(--feu-camp); }

.adm-table th {
    color: #2e2114;
    text-align: left;
    padding: 12px 14px;
    letter-spacing: 1.5px;
    font-weight: normal;
    white-space: nowrap;
}

.adm-table tbody tr {
    background-color: var(--ancien-grimoir);
    border-bottom: 1px solid #c4b583;
}

.adm-table td {
    color: #2e2114;
    padding: 12px 12px;
    vertical-align: middle;
}

.adm-table th:nth-child(1), .adm-table td:nth-child(1) { width: 12%; }
.adm-table th:nth-child(2), .adm-table td:nth-child(2) { width: 16%; }
.adm-table th:nth-child(3), .adm-table td:nth-child(3) { width: 24%; overflow-wrap: anywhere; }
.adm-table th:nth-child(4), .adm-table td:nth-child(4) { width: 9%;  text-align: center; }
.adm-table th:nth-child(5), .adm-table td:nth-child(5) { width: 13%; }
.adm-table th:nth-child(6), .adm-table td:nth-child(6) { width: 26%; }

.adm-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
}

.adm-btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    font-family: 'P22 Typewriter', monospace;
    font-size: 0.62rem;
    letter-spacing: 1px;
    padding: 7px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.adm-btn-dossier {
    background-color: #2e2114;
    color: var(--bougie);
}

.adm-btn-suppr {
    background-color: var(--feu-camp);
    color: #2e2114;
}

.adm-messages {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.adm-message {
    background-color: var(--ancien-grimoir);
    border-radius: 6px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.adm-message-info { flex: 1 1 300px; }

.adm-message-head {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.adm-message-date {
    margin-left: 14px;
    font-size: 0.75rem;
    color: #6b5a3e;
}

.adm-message-text {
    font-family: 'EB Garamond', serif;
    color: #2e2114;
    font-size: 1.05rem;
    margin: 0;
    border: 1px solid #6b5a3e;
    border-radius: 4px;
    padding: 10px 14px;
}

.adm-message-actions {
    display: flex;
    gap: 10px;
}

.adm-dossier {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.adm-dossier-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.adm-score-card {
    background-color: var(--ancien-grimoir);
    border: 3px solid var(--bougie);
    border-radius: 20px;
}

.adm-dossier-inner {
    position: relative;
    z-index: 1;
    padding: 55px 60px 60px;
}

.adm-dossier-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.adm-dossier-team-icon {
    width: 46px;
    height: auto;
}

.adm-dossier-head h2 {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    letter-spacing: 1.5px;
    margin: 0;
}

.adm-fiche {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.adm-fiche-icon {
    width: 42px;
    height: auto;
}

.adm-fiche-fields { flex: 1; }

.adm-fiche-role {
    font-family: 'P22 Typewriter', monospace;
    color: var(--feu-camp);
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin: 0 0 14px 0;
}

.adm-fiche-box {
    border: 2px solid #2e2114;
    border-radius: 16px;
    padding: 18px 22px;
}

.adm-field {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.adm-fiche-box .adm-field:last-child { margin-bottom: 0; }

.adm-field-label {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    min-width: 110px;
}

.adm-field-value {
    font-family: 'EB Garamond', serif;
    color: #2e2114;
    font-size: 1rem;
    border: 1px solid #6b5a3e;
    border-radius: 3px;
    padding: 5px 12px;
    min-width: 180px;
}

.adm-dossier-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 10px;
}

.adm-retour-wrap {
    text-align: center;
    margin-top: 40px;
}

.adm-retour {
    display: inline-block;
    font-family: 'P22 Typewriter', monospace;
    background-color: var(--bougie);
    color: #2e2114;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 13px 55px;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

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

.adm-score-entry { margin-bottom: 45px; }

.adm-score-date {
    font-family: 'P22 Typewriter', monospace;
    color: var(--ancien-grimoir);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 0 14px 0;
}

.adm-score-head {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.adm-score-equipe,
.adm-score-chef {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 1px solid #6b5a3e;
    padding-bottom: 2px;
}

.adm-score-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.adm-score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.adm-score-row label {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.adm-score-row input {
    font-family: 'EB Garamond', serif;
    color: #2e2114;
    font-size: 1rem;
    background: transparent;
    border: 1px solid #6b5a3e;
    border-radius: 3px;
    padding: 6px 12px;
    width: 220px;
    outline: none;
}

.adm-score-save {
    align-self: flex-end;
    margin-top: 8px;
}

.adm-band {
    background-color: var(--arbre);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 25px 45px;
    margin: auto calc(50% - 50vw) 0;
    width: 100vw;
    box-sizing: border-box;
}

.adm-band-logo {
    width: 75px;
    height: auto;
}

.adm-band-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.adm-band-name {
    font-family: 'P22 Typewriter', monospace;
    color: var(--ancien-grimoir);
    font-size: 1rem;
    letter-spacing: 1px;
}

.adm-band-logout {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 38px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.adm-band-logout-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.adm-band-logout span {
    position: relative;
    z-index: 1;
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.adm-band-logout:hover { transform: translateY(-2px); }

@media (max-width: 768px) {
    .adm-stats { gap: 16px; }
    .adm-stat { flex: 1 1 calc(50% - 16px); }
    .adm-dossier-inner { padding: 40px 30px 45px; }
    .adm-score-row input { width: 100%; }
    .adm-band { flex-direction: column; padding: 25px 20px; }
}

/* ===================== TARIFS ===================== */
.tarifs-page {
    background-color: var(--vert-foret);
}

.tarifs-intro {
    max-width: 820px;
    margin: 0 auto;
    padding: 70px 24px 20px;
    text-align: center;
}

.tarifs-intro-title {
    font-family: 'P22 Typewriter', monospace;
    color: var(--ancien-grimoir);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    letter-spacing: 4px;
    margin: 0 0 24px;
}

.tarifs-intro-text {
    font-family: 'EB Garamond', serif;
    color: #f2e8d2;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 auto 40px;
    max-width: 680px;
}

.tarifs-intro-text strong {
    color: var(--bougie);
}

.tarifs-price-highlight {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 10px 14px;
    padding: 26px 44px;
    border: 1px solid rgba(237, 202, 105, 0.4);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
}

.tarifs-price-value {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    letter-spacing: 2px;
}

.tarifs-price-unit {
    font-family: 'P22 Typewriter', monospace;
    color: var(--ancien-grimoir);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.tarifs-price-note {
    flex-basis: 100%;
    font-family: 'EB Garamond', serif;
    color: #cdbf9c;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.tarifs-formules {
    padding: 50px 40px 20px;
}

.tarifs-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.tarifs-card {
    flex: 1 1 280px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    padding: 40px 32px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(237, 202, 105, 0.25);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.tarifs-card:hover {
    transform: translateY(-6px);
    border-color: rgba(237, 202, 105, 0.55);
}

.tarifs-card.featured {
    border-color: var(--bougie);
    background: rgba(175, 103, 67, 0.14);
}

.tarifs-card-tag {
    align-self: flex-start;
    font-family: 'P22 Typewriter', monospace;
    color: var(--arbre);
    background: var(--bougie);
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 18px;
}

.tarifs-card-title {
    font-family: 'ClickClack', 'Courier New', serif;
    color: var(--bougie);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 0 0 12px;
}

.tarifs-card-desc {
    font-family: 'EB Garamond', serif;
    color: #d8cba8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 22px;
    min-height: 44px;
}

.tarifs-card-price {
    font-family: 'EB Garamond', serif;
    color: var(--ancien-grimoir);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(237, 202, 105, 0.2);
}

.tarifs-card-price span {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.tarifs-card-list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.tarifs-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'EB Garamond', serif;
    color: #f2e8d2;
    font-size: 0.95rem;
    line-height: 1.4;
}

.tarifs-li-orn {
    width: 16px;
    height: auto;
    flex-shrink: 0;
}

.tarifs-card-cta {
    text-align: center;
    text-decoration: none;
    font-family: 'P22 Typewriter', monospace;
    letter-spacing: 2px;
    font-size: 0.85rem;
    padding: 14px 20px;
    border-radius: 4px;
    border: 1px solid var(--bougie);
    color: var(--bougie);
    transition: background-color 0.25s ease, color 0.25s ease;
}

.tarifs-card-cta:hover {
    background-color: var(--bougie);
    color: var(--arbre);
}

.tarifs-card.featured .tarifs-card-cta {
    background-color: var(--bougie);
    color: var(--arbre);
}

.tarifs-card.featured .tarifs-card-cta:hover {
    background-color: var(--feu-camp);
    color: var(--ancien-grimoir);
    border-color: var(--feu-camp);
}

.tarifs-options-section {
    padding: 60px 0 20px;
}

.tarifs-offres {
    padding: 60px 40px 70px;
    text-align: center;
}

.tarifs-offres-title {
    font-family: 'P22 Typewriter', monospace;
    color: var(--ancien-grimoir);
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    letter-spacing: 4px;
    margin: 0 0 45px;
}

.tarifs-offres-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
}

.tarifs-offre {
    flex: 1 1 240px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 34px 26px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(237, 202, 105, 0.22);
    border-radius: 8px;
}

.tarifs-offre-label {
    font-family: 'P22 Typewriter', monospace;
    color: var(--ancien-grimoir);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.tarifs-offre-price {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    font-size: 2.6rem;
    letter-spacing: 1px;
    line-height: 1;
}

.tarifs-offre-sub {
    font-family: 'EB Garamond', serif;
    color: #cdbf9c;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .tarifs-formules { padding: 40px 24px 10px; }
    .tarifs-card { max-width: 100%; }
    .tarifs-price-highlight { padding: 22px 28px; }
}

/* ===== FAQ ===== */
.faq-page {
    background-color: var(--vert-foret);
}

.faq-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 90px;
}

.faq-title {
    text-align: center;
    font-family: 'P22 Typewriter', monospace;
    color: var(--ancien-grimoir);
    font-size: clamp(1.7rem, 4.5vw, 2.4rem);
    letter-spacing: 4px;
    margin: 0 0 18px;
}

.faq-intro {
    text-align: center;
    font-family: 'EB Garamond', serif;
    color: #cdbf9c;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 55px;
}

.faq-block {
    margin-bottom: 46px;
}

.faq-block-title {
    font-family: 'P22 Typewriter', monospace;
    color: var(--bougie);
    font-size: clamp(1.05rem, 2.6vw, 1.4rem);
    letter-spacing: 2px;
    margin: 0 0 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(237, 202, 105, 0.22);
}

.faq-item {
    border: 1px solid rgba(237, 202, 105, 0.18);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.18);
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item[open] {
    border-color: rgba(237, 202, 105, 0.45);
    background: rgba(0, 0, 0, 0.28);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    font-family: 'P22 Typewriter', monospace;
    color: var(--ancien-grimoir);
    font-size: 0.95rem;
    letter-spacing: 1px;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--bougie);
}

.faq-item[open] summary {
    color: var(--bougie);
}

.faq-item summary::after {
    content: '+';
    flex: 0 0 auto;
    font-family: 'P22 Typewriter', monospace;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--bougie);
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    font-family: 'EB Garamond', serif;
    color: #f2e8d2;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    padding: 0 24px 22px;
}

.faq-cta {
    text-align: center;
    margin-top: 70px;
}

.faq-cta p {
    font-family: 'P22 Typewriter', monospace;
    color: var(--ancien-grimoir);
    letter-spacing: 2px;
    font-size: 1rem;
    margin: 0 0 20px;
}

.faq-cta-link {
    display: inline-block;
    font-family: 'P22 Typewriter', monospace;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--bougie);
    border: 1px solid var(--bougie);
    border-radius: 4px;
    padding: 12px 30px;
    transition: background 0.25s ease, color 0.25s ease;
}

.faq-cta-link:hover {
    background-color: var(--bougie);
    color: var(--arbre);
}

@media (max-width: 768px) {
    .faq-content { padding: 45px 18px 70px; }
    .faq-item summary { padding: 16px 18px; font-size: 0.9rem; }
    .faq-item p { padding: 0 18px 18px; }
}

/* ===== Réservation confirmée ===== */
.resa-confirm-page {
    padding: 70px 20px 90px;
}

.resa-confirm-page .resa-parchment {
    animation: resaConfirmIn 0.6s ease both;
}

@keyframes resaConfirmIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.resa-confirm-inner {
    text-align: center;
}

.resa-confirm-seal {
    width: 66px;
    height: 66px;
    margin: 4px auto 14px;
    border-radius: 50%;
    border: 2px solid #4d3c29;
    background: rgba(77, 60, 41, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resa-confirm-seal img {
    width: 34px;
    height: 34px;
    opacity: 0.85;
}

.resa-confirm-title {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 0 0 10px;
}

.resa-confirm-sub {
    font-family: 'EB Garamond', serif;
    color: #4d3c29;
    font-size: 1.15rem;
    line-height: 1.5;
    margin: 0 auto 30px;
    max-width: 460px;
}

.resa-confirm-sub strong {
    color: #2e2114;
}

.resa-confirm-recap {
    max-width: 460px;
    margin: 0 auto 32px;
    text-align: left;
}

.resa-confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 11px 4px;
    border-bottom: 1px dashed rgba(77, 60, 41, 0.35);
}

.resa-confirm-key {
    font-family: 'P22 Typewriter', monospace;
    color: #6b5536;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.resa-confirm-val {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 1.05rem;
    font-weight: bold;
    text-align: right;
}

.resa-confirm-code {
    max-width: 420px;
    margin: 0 auto 32px;
    background: #ecdfb9;
    border-radius: 14px;
    padding: 26px 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.resa-confirm-code-label {
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    margin: 0 0 14px;
}

.resa-confirm-code-box {
    border: 1.5px solid #2e2114;
    border-radius: 6px;
    background: #f2e8d2;
    padding: 16px 10px;
    margin-bottom: 16px;
    font-family: 'P22 Typewriter', monospace;
    color: #2e2114;
    font-size: 1.5rem;
    letter-spacing: 4px;
}

.resa-confirm-code-hint {
    font-family: 'EB Garamond', serif;
    color: #6b5536;
    font-size: 0.95rem;
    line-height: 1.45;
    margin: 16px 0 0;
}

.resa-confirm-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.resa-confirm-home {
    font-family: 'P22 Typewriter', monospace;
    color: #6b5536;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.resa-confirm-home:hover {
    color: #2e2114;
    border-color: #2e2114;
}

@media (max-width: 600px) {
    .resa-confirm-title { font-size: 1.5rem; }
    .resa-confirm-code-box { font-size: 1.2rem; letter-spacing: 2px; }
    .resa-confirm-row { flex-direction: column; gap: 2px; }
    .resa-confirm-val { text-align: left; }
}
