/* Public event page — marketing mockup layout */
.ep-hero {
    position: relative;
    min-height: min(68vh, 560px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #000;
}

.ep-hero__media,
.ep-hero__fallback {
    position: absolute;
    inset: 0;
}

.ep-hero__media img,
.ep-hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ep-hero__fallback {
    background:
        radial-gradient(circle at 20% 20%, rgba(161, 222, 86, 0.12), transparent 45%),
        linear-gradient(145deg, #050505, #111);
}

.ep-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.92) 100%);
}

.ep-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 5.5rem 1rem 2rem;
}

@media (min-width: 768px) {
    .ep-hero__content {
        padding: 6rem 1.5rem 2.5rem;
    }
}

.ep-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.ep-hero__title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 7vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    text-wrap: balance;
}

.ep-hero__title-accent {
    color: var(--bp-primary);
}

.ep-info-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.95);
}

.ep-info-bar__inner {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .ep-info-bar__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.ep-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.1rem 1rem;
}

@media (min-width: 768px) {
    .ep-info-item:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.ep-info-item__icon {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--bp-primary) 14%, transparent);
    color: var(--bp-primary);
    flex-shrink: 0;
}

.ep-info-item__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.ep-info-item__value {
    margin-top: 0.25rem;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.45;
}

.ep-highlights {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1.25rem 1rem 0;
}

.ep-highlights__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .ep-highlights__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
}

.ep-highlight {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 0.9rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ep-highlight i {
    color: var(--bp-primary);
    font-size: 1.1rem;
}

.ep-highlight span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.35;
}

.ep-register-panel {
    border-radius: 1rem;
    border: 1px solid color-mix(in srgb, var(--bp-primary) 28%, rgba(255,255,255,0.12));
    background: rgba(12, 12, 12, 0.92);
    padding: 1.35rem;
    margin-bottom: 1.25rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

@media (min-width: 768px) {
    .ep-register-panel {
        display: grid;
        grid-template-columns: 1.2fr auto auto;
        align-items: center;
        gap: 1.25rem;
        padding: 1.5rem 1.75rem;
    }
}

.ep-register-panel__copy-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bp-primary);
}

.ep-register-panel__copy-text {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.5;
}

.ep-register-panel__price-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

.ep-register-panel__price {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--bp-primary);
    line-height: 1;
    text-align: center;
}

.ep-register-panel__cta {
    width: 100%;
}

@media (min-width: 768px) {
    .ep-register-panel__cta {
        min-width: 220px;
        width: auto;
    }
}

.ep-register-panel__cta .btn-primary,
.ep-register-panel__cta button {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ep-content-wrap {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1.25rem 1rem 0;
}

@media (min-width: 768px) {
    .ep-content-wrap {
        padding: 1.75rem 1.5rem 0;
    }
}

.ep-site-header {
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ep-site-header__inner {
    max-width: 72rem;
    margin: 0 auto;
    min-height: 4rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ep-site-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
}

.ep-site-header__nav {
    align-items: center;
    gap: 1.5rem;
}

.ep-site-header__nav a {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.15s ease;
}

.ep-site-header__nav a:hover {
    color: var(--bp-primary);
}

.ep-site-header__cta {
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    background: var(--bp-primary);
    color: #111;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ep-site-footer {
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
}

.ep-site-footer__inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1.25rem 1rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .ep-site-footer__inner {
        grid-template-columns: 1fr auto 1fr;
        padding: 1.5rem;
    }
}

.ep-site-footer__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.5rem;
}

.ep-site-footer__social a {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.ep-site-footer__tag {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.ep-site-footer__col--right {
    text-align: left;
}

@media (min-width: 768px) {
    .ep-site-footer__col--right {
        text-align: right;
    }
}

.ep-site-footer__contact {
    color: #fff;
    font-weight: 600;
}

.ep-media-gallery {
    margin-top: 0.5rem;
}

.ep-media-gallery .media-scroll {
    padding-top: 0;
}
