/* =========================================
   SPOTLIGHT SOIRÉES — COMING SOON PAGE
   Brand gold sampled from the supplied logo:
   #CFB57B
========================================= */

:root {
    --gold: #cfb57b;
    --gold-dark: #a98c50;
    --ink: #24211d;
    --muted: #746f67;
    --soft: #f5f0e5;
    --white: #ffffff;
    --border: rgba(207, 181, 123, 0.38);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    min-height: 100svh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    color: var(--ink);
    font-family: "Montserrat", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Fine border around the page */
body::before {
    content: "";
    position: fixed;
    inset: 16px;
    z-index: 20;
    pointer-events: none;
    border: 1px solid var(--border);
}

/* Subtle outline circles inspired by a spotlight */
.decor {
    position: fixed;
    z-index: -1;
    border: 1px solid rgba(207, 181, 123, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.decor-one {
    width: 520px;
    height: 520px;
    top: -280px;
    right: -180px;
}

.decor-two {
    width: 430px;
    height: 430px;
    bottom: -250px;
    left: -170px;
}

.coming-soon {
    width: 100%;
    flex: 1;
    display: grid;
    place-items: center;
    padding: 72px 28px 42px;
}

.content {
    width: min(100%, 850px);
    text-align: center;
    animation: reveal 900ms ease both;
}

.brand-logo {
    display: block;
    width: min(100%, 620px);
    height: auto;
    margin: 0 auto 28px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: min(100%, 250px);
    margin: 0 auto 25px;
}

.divider span {
    width: 92px;
    height: 1px;
    background: var(--border);
}

.divider i {
    width: 7px;
    height: 7px;
    display: block;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

.eyebrow {
    margin-bottom: 20px;
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

h1 {
    margin-bottom: 22px;
    color: var(--ink);
    font-family: "Bodoni Moda", Georgia, serif;
    font-size: clamp(2.65rem, 6vw, 5.35rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.intro {
    width: min(100%, 650px);
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(0.92rem, 1.5vw, 1.02rem);
    font-weight: 300;
    line-height: 1.9;
}

.actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
}

.primary-button {
    min-width: 220px;
    padding: 15px 24px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--ink);
    font-size: 0.73rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background-color 250ms ease,
        color 250ms ease,
        transform 250ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 220ms ease,
        border-color 220ms ease;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--gold-dark);
    border-color: var(--gold);
}

.launch-note {
    margin-top: 38px;
    color: var(--gold-dark);
    font-family: "Bodoni Moda", Georgia, serif;
    font-size: 1rem;
    font-style: italic;
    letter-spacing: 0.04em;
}

footer {
    padding: 0 28px 35px;
    text-align: center;
}

footer p {
    color: #8a857d;
    font-size: 0.67rem;
    line-height: 1.7;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    body::before {
        inset: 9px;
    }

    .coming-soon {
        padding: 56px 24px 32px;
    }

    .brand-logo {
        width: min(100%, 430px);
        margin-bottom: 22px;
    }

    .eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.2em;
    }

    h1 {
        font-size: clamp(2.45rem, 13vw, 3.8rem);
        line-height: 1.02;
    }

    .intro {
        line-height: 1.75;
    }

    .actions {
        flex-direction: column;
        gap: 16px;
    }

    .primary-button {
        width: min(100%, 290px);
    }

    footer {
        padding-bottom: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Contact details */
.contact-details {
    margin: 32px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-details a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 220ms ease;
}

.contact-details a:hover,
.contact-details a:focus-visible {
    color: var(--gold-dark);
}

.contact-details a span {
    color: var(--gold-dark);
    font-size: 0.63rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-details i {
    width: 1px;
    height: 22px;
    display: block;
    background: var(--border);
}

@media (max-width: 640px) {
    .contact-details {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .contact-details i {
        width: 48px;
        height: 1px;
    }

    .contact-details a {
        flex-direction: column;
        gap: 5px;
        font-size: 0.76rem;
    }
}
