:root {
    --ink: #120f13;
    --night: #181017;
    --burgundy: #7d1f2f;
    --red: #d7353f;
    --cream: #fff7ed;
    --champagne: #e3c58b;
    --blue: #14365f;
    --mist: #f4eee8;
    --muted: #746a66;
    --white: #fff;
    --shadow: 0 24px 70px rgba(18, 15, 19, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}

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

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

.topbar {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 9px 20px;
    color: var(--white);
    background: linear-gradient(90deg, var(--blue), var(--burgundy));
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.header {
    position: sticky;
    z-index: 10;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px clamp(20px, 5vw, 72px);
    background: rgba(255, 247, 237, .9);
    border-bottom: 1px solid rgba(125, 31, 47, .14);
    backdrop-filter: blur(18px);
}

.brand {
    display: grid;
    gap: 2px;
}
.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
}

    .brand strong {
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(22px, 3vw, 34px);
        line-height: 1;
        letter-spacing: .02em;
    }

    .brand span {
        color: var(--burgundy);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .24em;
        text-transform: uppercase;
    }

.nav {
    display: flex;
    gap: clamp(14px, 2.4vw, 34px);
    color: #3e3432;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

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

.menu-toggle {
    display: none;
    position: relative;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border: 1px solid rgba(18, 15, 19, .28);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

    .menu-toggle span {
        position: absolute;
        left: 13px;
        width: 20px;
        height: 2px;
        background: currentColor;
        transition: transform .2s ease, opacity .2s ease, top .2s ease;
    }

        .menu-toggle span:nth-child(1) {
            top: 16px;
        }

        .menu-toggle span:nth-child(2) {
            top: 23px;
        }

        .menu-toggle span:nth-child(3) {
            top: 30px;
        }

.header.menu-open .menu-toggle span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
}

.header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.header.menu-open .menu-toggle span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

    .btn:hover {
        transform: translateY(-2px);
        background: transparent;
        color: var(--ink);
    }

    .btn.light {
        border-color: rgba(255, 255, 255, .7);
        background: var(--white);
        color: var(--ink);
    }

        .btn.light:hover {
            background: transparent;
            color: var(--white);
        }

    .btn.ghost {
        background: transparent;
        color: var(--ink);
        border-color: rgba(18, 15, 19, .28);
    }

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

.hero {
    position: relative;
    min-height: 88vh;
    display: grid;
    align-items: center;
    padding: 84px clamp(20px, 5vw, 72px) 64px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(90deg, rgba(18, 15, 19, .88) 0%, rgba(18, 15, 19, .67) 42%, rgba(18, 15, 19, .1) 100%), url("/img/hero-paris-dance.webp") center / cover no-repeat;
}

.hero-inner {
    width: min(760px, 100%);
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--champagne);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: .98;
    font-weight: 700;
}

h1 {
    max-width: 730px;
    font-size: clamp(52px, 8vw, 60px);
}

.hero-copy {
    max-width: 620px;
    margin: 26px 0 34px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(17px, 2vw, 21px);
}

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

.quick-info {
    position: absolute;
    right: clamp(20px, 5vw, 72px);
    bottom: 32px;
    display: grid;
    grid-template-columns: repeat(3, minmax(110px, 1fr));
    width: min(520px, calc(100% - 40px));
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(14px);
}

    .quick-info div {
        padding: 18px;
        border-right: 1px solid rgba(255, 255, 255, .14);
    }

        .quick-info div:last-child {
            border-right: 0;
        }

    .quick-info strong {
        display: block;
        color: var(--champagne);
        font-family: Georgia, "Times New Roman", serif;
        font-size: 30px;
        line-height: 1;
    }

    .quick-info span {
        display: block;
        margin-top: 6px;
        color: rgba(255, 255, 255, .82);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

.section {
    padding: clamp(70px, 9vw, 122px) clamp(20px, 5vw, 72px);
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 520px);
    gap: 32px;
    align-items: end;
    margin-bottom: 42px;
}

    .section-head h2 {
        font-size: clamp(38px, 5vw, 42px);
    }

    .section-head p {
        margin: 0;
        color: var(--muted);
        font-size: clamp(10px, 5vw, 25px);
    }

.events {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.event-card {
    display: grid;
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

    .event-card img {
        width: 100%;
        aspect-ratio: 1.25 / 1;
        object-fit: cover;
    }

.event-body {
    display: grid;
    gap: 18px;
    padding: 26px;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    padding: 7px 10px;
    color: var(--burgundy);
    background: #f7e7e2;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.event-body h3 {
    font-size: 31px;
    line-height: 1.08;
}

.event-body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.view-details-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding-top: 4px;
}

.price {
    display: grid;
    gap: 1px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

    .price strong {
        color: var(--ink);
        font-size: 22px;
        line-height: 1;
    }

.why {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(18, 15, 19, .12);
    padding: 1px;
}

.why-item {
    min-height: 190px;
    padding: 28px;
    background: var(--mist);
}

    .why-item strong {
        display: block;
        margin-bottom: 12px;
        font-size: 15px;
        font-weight: 900;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

    .why-item p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
    }

.about {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(280px, .96fr);
    gap: clamp(34px, 6vw, 84px);
    align-items: center;
    background: #fbefe6;
}

    .about h2 {
        font-size: clamp(38px, 5vw, 52px);
    }

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

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.about-note {
    padding: 20px;
    background: rgba(255, 255, 255, .72);
    border-left: 3px solid var(--burgundy);
}

    .about-note strong {
        display: block;
        margin-bottom: 6px;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .about-note span {
        color: var(--muted);
        font-size: 14px;
    }

.about-visual {
    position: relative;
    min-height: 560px;
}

    .about-visual img {
        width: 88%;
        height: 520px;
        object-fit: cover;
        box-shadow: var(--shadow);
    }

        .about-visual img:last-child {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 54%;
            height: 250px;
            border: 10px solid #fbefe6;
        }

.viewdetailsing {
    display: grid;
    grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr);
    gap: clamp(32px, 6vw, 82px);
    align-items: center;
    color: var(--white);
    background: var(--night);
}

.viewdetails img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.viewdetails h2 {
    font-size: clamp(38px, 5vw, 72px);
}

.viewdetails p {
    color: rgba(255, 255, 255, .78);
}

.partners {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.partner-link {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
}

    .partner-link strong {
        font-size: 16px;
    }

    .partner-link span {
        color: var(--champagne);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

.newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
    gap: 34px;
    align-items: center;
    background: linear-gradient(90deg, rgba(125, 31, 47, .96), rgba(20, 54, 95, .86)), url("img/event-festival.png") center / cover no-repeat;
    color: var(--white);
}

    .newsletter h2 {
        font-size: clamp(38px, 5vw, 72px);
    }

    .newsletter p {
        max-width: 680px;
        color: rgba(255, 255, 255, .82);
    }

.form {
    display: grid;
    gap: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(14px);
}

    .form input {
        width: 100%;
        min-height: 50px;
        padding: 0 14px;
        border: 1px solid rgba(255, 255, 255, .24);
        background: rgba(255, 255, 255, .92);
        color: var(--ink);
        font: inherit;
    }

    .form small {
        color: rgba(255, 255, 255, .68);
        font-size: 12px;
    }

.contact {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
    gap: clamp(30px, 6vw, 76px);
    align-items: start;
    background: var(--white);
}

    .contact h2 {
        font-size: clamp(38px, 5vw, 52px);
    }

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

.contact-details {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.contact-card {
    padding: 20px;
    background: var(--mist);
    border-left: 3px solid var(--blue);
}

    .contact-card span {
        display: block;
        color: var(--muted);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

    .contact-card strong,
    .contact-card a {
        display: block;
        margin-top: 5px;
        font-size: 17px;
    }

.contact-form {
    display: grid;
    gap: 14px;
    padding: clamp(22px, 4vw, 34px);
    background: var(--night);
    color: var(--white);
    box-shadow: var(--shadow);
}

    .contact-form .field-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        min-height: 50px;
        padding: 0 14px;
        border: 1px solid rgba(255, 255, 255, .2);
        background: rgba(255, 255, 255, .94);
        color: var(--ink);
        font: inherit;
    }

    .contact-form textarea {
        min-height: 138px;
        padding-top: 14px;
        resize: vertical;
    }

    .contact-form small {
        color: rgba(255, 255, 255, .68);
        font-size: 12px;
    }

.footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 32px clamp(20px, 5vw, 72px);
    color: #d8cbc6;
    background: var(--ink);
    font-size: 13px;
}

#formResult {
    display: block;
    margin-top: 14px;
    font-size: 13px;
}

.spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,.6);
    border-top-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-left: 8px;
    animation: spin .7s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-success {
    color: #2e7d32;

}

.form-error {
    color: #d32f2f;
}

@media (max-width: 1020px) {
    .header {
        flex-wrap: wrap;
        gap: 14px;
    }

    .nav {
        order: 4;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        gap: 0;
        padding: 0;
        border-top: 0 solid rgba(125, 31, 47, .14);
        transition: max-height .25s ease, padding .25s ease, border-width .25s ease;
    }

        .nav a {
            padding: 15px 0;
            border-bottom: 1px solid rgba(125, 31, 47, .12);
        }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .header.menu-open .nav {
        max-height: 420px;
        padding-top: 8px;
        border-top-width: 1px;
    }

    .hero {
        min-height: 780px;
    }

    .quick-info {
        left: 20px;
        right: 20px;
    }

    .section-head,
    .events,
    .why,
    .about,
    .ticketing,
    .newsletter,
    .contact {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: auto;
    }

        .about-visual img,
        .about-visual img:last-child {
            position: static;
            width: 100%;
            height: auto;
            min-height: 300px;
            border: 0;
        }

            .about-visual img:last-child {
                margin-top: 16px;
            }

    .ticketing img {
        min-height: 380px;
    }
}

@media (max-width: 620px) {
    .topbar {
        display: none;
    }

    .header {
        align-items: flex-start;
    }

        .header .btn {
            min-height: 42px;
            padding: 0 14px;
        }

    .hero {
        min-height: 720px;
        padding-top: 64px;
    }

    .hero-actions,
    .ticket-row {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .quick-info {
        grid-template-columns: 1fr;
    }

        .quick-info div {
            border-right: 0;
            border-bottom: 1px solid rgba(255, 255, 255, .14);
        }

    .about-grid,
    .contact-form .field-row {
        grid-template-columns: 1fr;
    }

    .footer {
        flex-direction: column;
    }
}
