@font-face {
    font-family: "Neue Haas Grotesk Display";
    src: url("fonts/NeueHaasGroteskDisp-45Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Neue Haas Grotesk Display";
    src: url("fonts/NeueHaasGroteskDisp-55Roman.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Neue Haas Grotesk Display";
    src: url("fonts/NeueHaasGroteskDisp-65Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Neue Haas Grotesk Display";
    src: url("fonts/NeueHaasGroteskDisp-75Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --delicioso: #40352F;
    --delicioso-deep: #2a221e;
    --cloud: #F1F0EC;
    --cloud-dim: rgba(241, 240, 236, 0.7);
    --cloud-soft: rgba(241, 240, 236, 0.45);
    --rubicondo: #BA333A;

    --font-display: "Neue Haas Grotesk Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: var(--font-display);
    color: var(--cloud);
    background-color: var(--delicioso-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100svh;
    position: relative;
}

.bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(20, 15, 13, 0.82) 45%,
            rgba(0, 0, 0, 0.92) 100%
        ),
        url("backNuevo.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: saturate(0.85) blur(2px);
    transform: scale(1.04);
    animation: slowZoom 40s ease-in-out infinite alternate;
}

.bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(186, 51, 58, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.65) 0%, transparent 65%),
        rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

@keyframes slowZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.10); }
}

.grain {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.94  0 0 0 0 0.94  0 0 0 0 0.92  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.stage {
    position: relative;
    min-height: 100svh;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-items: center;
    padding: clamp(28px, 5vw, 56px) clamp(20px, 5vw, 56px);
}

.hero {
    width: 100%;
    max-width: 760px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(28px, 5vh, 48px);
}

.logo {
    width: min(82%, 580px);
    animation: fadeUp 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s both;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55));
}

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: min(50%, 240px);
    animation: fadeUp 1.2s ease 0.6s both;
}

.ornament__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cloud-soft), transparent);
}

.ornament__diamond {
    width: 6px;
    height: 6px;
    background: var(--rubicondo);
    transform: rotate(45deg);
    box-shadow: 0 0 14px rgba(186, 51, 58, 0.55);
}

.coming {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    animation: fadeUp 1.3s ease 0.85s both;
}

.coming__kicker {
    font-family: "Neue Haas Grotesk Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(11px, 1.3vw, 13px);
    line-height: 1;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--cloud-dim);
    padding-left: 0.42em;
}

.coming__title {
    font-family: "Neue Haas Grotesk Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(20px, 3.2vw, 30px);
    line-height: 1.1;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cloud);
    padding-left: 0.24em;
    margin: 0;
}

.bottom {
    width: 100%;
    text-align: center;
    padding-bottom: clamp(8px, 2vh, 24px);
    animation: fadeUp 1.2s ease 1.15s both;
}

.locations {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 10.5px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--cloud-dim);
    padding-left: 0.38em;
}

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

@media (max-width: 480px) {
    .stage {
        padding: 32px 22px;
    }

    .logo {
        width: 90%;
    }

    .coming {
        gap: 12px;
    }

    .coming__kicker {
        font-size: 10px;
        letter-spacing: 0.36em;
        padding-left: 0.36em;
    }

    .coming__title {
        font-size: clamp(15px, 4.6vw, 22px);
        letter-spacing: 0.2em;
        padding-left: 0.2em;
    }

    .ornament {
        gap: 14px;
    }

    .locations {
        font-size: 9.5px;
        letter-spacing: 0.32em;
        padding-left: 0.32em;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}
