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

:root {
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --green-dark: #3d4a38;
    --green-mid: #556b4a;
    --terracotta: #b85c38;
    --gold: #c9a96e;
    --text-dark: #2a2218;
    --text-mid: #5a5040;
    --text-light: #8a7e6e;
    --border: #ddd5c5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: var(--warm-white);
    color: var(--text-dark);
    font-weight: 300;
}




/* ── SECTION BASE ── */
section {
    padding: 96px 24px;
}

.section-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.section-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
}

.section-rule::before,
.section-rule::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--terracotta);
    opacity: 0.6;
}

.section-rule-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--terracotta);
    opacity: 0.7;
}


/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 8, 5, 0.93);
    align-items: center;
    justify-content: center;
}

#lightbox.open {
    display: flex;
}

#lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

#lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* ── INFOS PRATIQUES ── */
#infos {
    background: var(--green-dark);
    padding: 80px 24px;
}

#infos .section-title {
    color: #fff;
}

#infos .section-rule::before,
#infos .section-rule::after {
    background: var(--gold);
}

#infos .section-rule-dot {
    background: var(--gold);
}

.infos-grid {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 56px;
    align-items: start;
}

.infos-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.infos-block h3 {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.infos-block p,
.infos-block address {
    font-size: 0.9rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.72);
    font-style: normal;
}

.infos-block strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.infos-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;

}

.infos-phone-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.72);
}

.infos-map h3 {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.infos-map-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.infos-map-placeholder:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
}

.infos-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s;
}

.infos-contact-link:hover {
    color: var(--gold);
}

.infos-socials {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.infos-socials a {
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s;
    display: flex;
}

.infos-socials a:hover {
    color: var(--gold);
}


/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

