:root {
    --ink: #171512;
    --muted: #77736b;
    --cream: #f5f1e9;
    --paper: #fbfaf7;
    --gold: #c5a46a;
    --line: #ded9ce;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Manrope", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.65;
}

/* Navigation transparente */
.nav {
    height: 82px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(222, 255, 255, 0.12);
}

.brand,
.footer-brand {
    display: grid;
    text-decoration: none;
    color: var(--ink);
    line-height: 0.8;
    letter-spacing: 0.18em;
}

.brand span,
.footer-brand span {
    font-size: 11px;
}

.brand b,
.footer-brand b {
    font-family: var(--serif);
    font-size: 28px;
    letter-spacing: 0.08em;
}

.brand small,
.footer-brand small {
    font-size: 7px;
    letter-spacing: 0.3em;
    margin-top: 7px;
    color: var(--muted);
}

nav {
    display: flex;
    gap: 28px;
}

nav a,
.text-link,
footer a {
    color: inherit;
    text-decoration: none;
    font-size: 13px;
}

.nav nav a {
    color: var(--gold);
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    transition:
        color 0.3s ease
        opacity 0.3s ease;
}

.nav nav a:hover {
    
    color: #ffffff;
}

.nav-cta {
    background: var(--ink);
    color: #fff;
    padding: 12px 18px;
    text-decoration: none;
    font-size: 12px;
}

/* Bouton burger */
.menu {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    font-size: 25px;
    color: var(--gold);
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 94vh;
    position: relative;
    color: white;
    display: flex;
    align-items: flex-end;
    padding: 130px 7vw 7vw;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url("assets/hall-03.jpeg");
    background-size: cover;
    background-position: center;
    filter: saturate(0.88) brightness(0.88);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(10, 9, 7, 0.78),
            rgba(10, 9, 7, 0.25) 60%,
            rgba(10, 9, 7, 0.25)
        ),
        linear-gradient(
            0deg,
            rgba(10, 9, 7, 0.75),
            transparent 50%
        );
}

.hero-content,
.hero-stats {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 760px;
}

.eyebrow,
.section-label {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(60px, 8vw, 112px);
    line-height: 0.83;
    margin: 18px 0 30px;
}

.hero h1 em,
h2 em {
    font-weight: 500;
    color: var(--gold);
    font-style: italic;
}

.hero-copy {
    max-width: 610px;
    font-size: 16px;
    color: #eee;
    margin-bottom: 34px;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 22px;
    text-decoration: none;
    border: 1px solid transparent;
    font: 600 12px var(--sans);
    cursor: pointer;
}

.btn.gold {
    background: var(--gold);
    color: #171512;
}

.btn.ghost {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn.dark {
    background: var(--ink);
    color: #fff;
}

.hero-stats {
    position: absolute;
    right: 7vw;
    bottom: 7vw;
    display: flex;
    gap: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding-top: 16px;
}

.hero-stats div {
    display: grid;
}

.hero-stats strong {
    font-family: var(--serif);
    font-size: 25px;
}

.hero-stats span {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ddd;
}

/* Sections */
.section {
    padding: 110px 7vw;
}

.intro-grid,
.section-head,
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 8vw;
}

.section-label {
    color: var(--muted);
    margin-bottom: 24px;
}

h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 0.95;
    margin: 0 0 25px;
}

p {
    color: var(--muted);
}

.text-link {
    display: inline-block;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    margin-top: 12px;
}

/* Caractéristiques */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--cream);
    padding-top: 70px;
    padding-bottom: 70px;
}

.feature {
    padding: 0 28px;
    border-left: 1px solid var(--line);
}

.feature:first-child {
    border-left: 0;
}

.feature span {
    color: var(--gold);
    font-size: 11px;
}

.feature h3 {
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 600;
    margin: 10px 0;
}

.feature p {
    font-size: 13px;
}

/* Événements */
.events {
    background: #171512;
    color: white;
}

.events .section-label {
    color: #aaa;
}

.events .section-head p {
    color: #aaa;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 55px;
}

.event-card {
    min-height: 470px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.event-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.75),
        transparent 65%
    );
}

.wedding {
    background-image: url("assets/hall-07.jpeg");
}

.corporate {
    background-image: url("assets/hall-08.jpeg");
}

.private {
    background-image: url("assets/hall-06.jpeg");
}

.event-card div {
    position: relative;
    z-index: 1;
}

.event-card span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.event-card h3 {
    font: 600 40px/1 var(--serif);
    margin: 10px 0 22px;
}

.event-card a {
    color: white;
    font-size: 12px;
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
}

/* Citation */
.quote-band {
    padding: 100px 7vw;
    background: var(--gold);
    text-align: center;
}

.quote-band p {
    font: italic 46px/1.05 var(--serif);
    color: var(--ink);
    max-width: 900px;
    margin: auto;
}

/* Packages */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 55px;
}

.package {
    position: relative;
    background: white;
    border: 1px solid var(--line);
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.package.featured {
    background: var(--ink);
    color: white;
    transform: translateY(-14px);
}

.package.featured li {
    border-color: #3b3935;
    color: #ddd;
}

.package-top {
    display: flex;
    justify-content: space-between;
}

.package ul {
    padding: 0;
    margin: 25px 0;
    list-style: none;
    flex: 1;
}

.package li {
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}

.ribbon {
    position: absolute;
    right: 18px;
    top: 18px;
    background: var(--gold);
    color: var(--ink);
    font-size: 8px;
    letter-spacing: 0.15em;
    padding: 6px 9px;
}

.fineprint {
    font-size: 10px;
    margin-top: 20px;
}

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

.gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 45px;
}

.masonry {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1fr;
    grid-auto-rows: 240px;
    gap: 14px;
}

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

.masonry img:nth-child(1) {
    grid-row: span 2;
}

.masonry img:nth-child(4) {
    grid-column: span 2;
}

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

form {
    display: grid;
    gap: 18px;
}

label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

input,
select,
textarea {
    display: block;
    width: 100%;
    margin-top: 7px;
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid #bbb;
    background: transparent;
    font: 14px var(--sans);
    outline: none;
}

.contact-details {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.contact-details p {
    font-size: 13px;
}

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 70px 7vw;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

footer p {
    font-size: 12px;
    color: #999;
}

.copyright {
    grid-column: 1 / -1;
    border-top: 1px solid #292929;
    padding-top: 20px;
    color: #777;
    font-size: 10px;
}

/* WhatsApp */
.floating-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #1fa855;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

/* Logo */
.logo-brand {
    height: 72px;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.logo-brand img {
    height: 62px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: 0;
}

.footer-logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
    background: transparent;
    padding: 0;
}

.intro-photo {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    margin-top: 34px;
    filter: none !important;
    border-radius: 2px;
}

/* Tablettes et téléphones */
@media (max-width: 850px) {
    .nav nav,
    .nav-cta {
        display: none;
    }

    .menu {
        display: block;
        color: var(--gold);
    }

    .hero {
        padding: 120px 6vw 130px;
    }

    .hero h1 {
        font-size: 68px;
    }

    .hero-stats {
        left: 6vw;
        right: auto;
        bottom: 35px;
    }

    .section {
        padding: 80px 6vw;
    }

    .intro-grid,
    .section-head,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .features,
    .event-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 24px 0;
    }

    .package.featured {
        transform: none;
    }

    .masonry {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 190px;
    }

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

    .logo-brand {
        background: transparent;
        padding: 0;
    }

    .logo-brand img {
        height: 58px;
    }

    .intro-photo {
        height: 300px;
    }
}

/* Petits téléphones */
@media (max-width: 520px) {
    .hero h1 {
        font-size: 55px;
    }

    .hero-stats div:nth-child(2) {
        display: none;
    }

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

    .masonry img,
    .masonry img:nth-child(1),
    .masonry img:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
        height: 260px;
    }

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

@media (max-width: 850px) {
    .nav nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 28px 6vw;
        flex-direction: column;
        align-items: center;
        gap: 22px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(197, 164, 106, 0.3);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    }

    .nav nav.open {
        display: flex;
    }

    .nav nav a {
        display: block;
        width: 100%;
        color: var(--gold);
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        padding: 6px 0;
    }

    .menu {
        display: block;
        position: relative;
        z-index: 30;
        padding: 8px;
        background: transparent;
        border: 0;
        color: var(--gold);
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
    }

    .menu.open {
        color: #ffffff;
    }
}
