:root {
    --ink: #111111;
    --soft-ink: #1a1a1a;
    --paper: #f2efe7;
    --paper-2: #e7e1d7;
    --muted: #77736c;
    --line: rgba(17,17,17,.16);
    --aqua: #44f2df;
    --sunset: #ff7657;
    --white: #ffffff;
    --max: 1460px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

button,
input {
    font: inherit;
}

.shell {
    width: min(calc(100% - 56px), var(--max));
    margin: 0 auto;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(17,17,17,.96);
    backdrop-filter: blur(18px);
}

.header-grid {
    min-height: 88px;
    display: grid;
    grid-template-columns: 230px 1fr;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.brand-logo {
    width: 178px;
    filter: brightness(0) invert(1);
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
}

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

.main-nav .nav-join {
    padding: 13px 19px;
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: white;
}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 83% 18%,
            rgba(68,242,223,.18),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #111111 0%,
            #171717 55%,
            #211815 100%
        );
    color: var(--white);
}

.hero::after {
    content: "";
    position: absolute;
    right: -10vw;
    bottom: -35%;
    width: 54vw;
    height: 54vw;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255,118,87,.22),
            transparent 68%
        );
    pointer-events: none;
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(
            rgba(255,255,255,.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.03) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.45fr .55fr;
    gap: 90px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 90px;
}

.kicker,
.section-kicker,
.success-kicker {
    margin: 0 0 24px;
    color: var(--aqua);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.hero h1,
.section h2,
.city-section h2,
.community-section h2 {
    margin: 0;
    font-size: clamp(58px, 8.5vw, 132px);
    font-weight: 800;
    line-height: .86;
    letter-spacing: -.065em;
}

.hero-copy {
    max-width: 680px;
    margin: 38px 0 0;
    color: rgba(255,255,255,.67);
    font-size: clamp(18px, 1.5vw, 23px);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 42px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.button-dark {
    background: var(--ink);
    color: white;
}

.hero .button-dark {
    background: var(--paper);
    color: var(--ink);
}

.button-outline {
    border-color: rgba(255,255,255,.28);
    background: transparent;
    color: white;
}

.button-aqua {
    background: var(--aqua);
    color: var(--ink);
}

.hero-side {
    align-self: end;
    padding: 30px 0 15px 35px;
    border-left: 1px solid rgba(255,255,255,.18);
}

.hero-side .city-label {
    color: var(--aqua);
    font-size: clamp(72px, 9vw, 130px);
    font-weight: 900;
    line-height: .8;
    letter-spacing: -.08em;
}

.hero-side p {
    max-width: 340px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.55);
    font-size: 15px;
    line-height: 1.7;
}


/* GENERAL SECTIONS */

.section {
    padding: 120px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.section-heading.compact {
    margin-bottom: 48px;
}

.section-heading h2 {
    font-size: clamp(48px, 6vw, 92px);
}

.section-intro {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}


/* FEATURED EVENT */

.featured-event {
    border-top: 1px solid var(--line);
}

.featured-empty {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 45px 0;
}

.featured-label {
    margin: 0 0 15px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.featured-empty h3 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(40px, 6vw, 86px);
    line-height: .95;
    letter-spacing: -.05em;
}

.featured-empty p:not(.featured-label) {
    max-width: 540px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.text-link {
    margin-top: 10px;
    font-weight: 800;
    text-decoration: none;
}

.featured-live {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 500px;
    color: inherit;
    text-decoration: none;
}

.featured-image {
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background:
        linear-gradient(
            135deg,
            rgba(68,242,223,.55),
            rgba(255,118,87,.5)
        ),
        var(--soft-ink);
    background-position: center;
    background-size: cover;
}

.featured-image span {
    padding: 10px 13px;
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.featured-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 46px;
    background: var(--paper-2);
}

.featured-copy h3 {
    margin: 0;
    font-size: clamp(42px, 5vw, 78px);
    line-height: .92;
    letter-spacing: -.055em;
}

.featured-copy p {
    max-width: 500px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.featured-copy strong {
    margin-top: 22px;
}


/* PICKS */

.picks-section {
    background: var(--ink);
    color: white;
}

.picks-section .section-intro {
    color: rgba(255,255,255,.52);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,.16);
}

.event-placeholder,
.event-card {
    min-height: 390px;
    padding: 28px;
    border-right: 1px solid rgba(255,255,255,.16);
}

.event-placeholder:last-child,
.event-card:nth-child(3n) {
    border-right: 0;
}

.event-placeholder {
    display: flex;
    flex-direction: column;
}

.event-placeholder span {
    color: var(--aqua);
    font-size: 11px;
    font-weight: 800;
}

.event-placeholder strong {
    margin-top: auto;
    font-size: 28px;
    line-height: 1.05;
}

.event-placeholder p {
    color: rgba(255,255,255,.48);
    line-height: 1.6;
}

.event-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    color: white;
    text-decoration: none;
}

.event-card-image {
    min-height: 260px;
    background:
        linear-gradient(
            135deg,
            rgba(68,242,223,.4),
            rgba(255,118,87,.38)
        ),
        #262626;
    background-position: center;
    background-size: cover;
}

.event-card-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px;
}

.event-card-copy span {
    color: var(--aqua);
    font-size: 10px;
    font-weight: 800;
}

.event-card-copy h3 {
    margin: 28px 0 10px;
    font-size: 30px;
    line-height: .98;
}

.event-card-copy p {
    color: rgba(255,255,255,.5);
    line-height: 1.55;
}

.event-card-copy strong {
    margin-top: auto;
    padding-top: 25px;
    font-size: 12px;
}


/* CITY */

.city-section {
    padding: 130px 0;
    background:
        linear-gradient(
            115deg,
            rgba(255,118,87,.15),
            transparent 34%
        ),
        var(--paper-2);
}

.city-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: end;
}

.city-section h2 {
    font-size: clamp(56px, 7vw, 104px);
}

.city-copy {
    max-width: 600px;
}

.city-copy p {
    margin: 0 0 26px;
    color: #5f5a54;
    font-size: clamp(18px, 1.4vw, 22px);
    line-height: 1.65;
}


/* ORGANIZERS */

.organizer-section {
    background: var(--aqua);
}

.organizer-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
}

.organizer-section .section-kicker {
    color: var(--ink);
}

.organizer-section h2 {
    font-size: clamp(55px, 7vw, 102px);
}

.organizer-panel {
    align-self: end;
    max-width: 600px;
}

.organizer-panel p {
    font-size: 17px;
    line-height: 1.65;
}

.organizer-lead {
    font-size: clamp(20px, 1.7vw, 25px) !important;
}

.organizer-panel .button {
    margin-top: 22px;
    background: var(--ink);
    color: white;
}

.organizer-note {
    margin-top: 18px;
    font-size: 12px !important;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* COMMUNITY */

.community-section {
    padding: 130px 0;
    background: var(--paper);
}

.community-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.community-section h2 {
    font-size: clamp(58px, 7vw, 105px);
}

.community-copy {
    max-width: 520px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.community-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.community-benefits span {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.join-panel {
    padding: 38px;
    border-radius: 22px;
    background: white;
    box-shadow:
        0 30px 80px rgba(0,0,0,.08);
}

.form-heading {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 34px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--line);
}

.form-heading span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.form-heading strong {
    font-size: 19px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label,
.interest-fieldset legend {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.form-field input {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid #cbc6bc;
    border-radius: 9px;
    background: #faf8f3;
    outline: none;
}

.form-field input:focus {
    border-color: var(--ink);
}

.interest-fieldset {
    margin: 28px 0 0;
    padding: 0;
    border: 0;
}

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

.interest-option {
    position: relative;
}

.interest-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.interest-option span {
    display: inline-flex;
    padding: 10px 13px;
    border: 1px solid #cbc6bc;
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
}

.interest-option input:checked + span {
    border-color: var(--ink);
    background: var(--ink);
    color: white;
}

.consent-group {
    margin-top: 30px;
}

.consent-row {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 11px;
    margin-top: 15px;
    color: #5e5952;
    font-size: 13px;
    line-height: 1.5;
}

.consent-row input {
    margin-top: 3px;
}

.honeypot-field {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.join-submit {
    width: 100%;
    margin-top: 30px;
}

.submit-loading {
    display: none;
}

.join-submit.is-loading .submit-label {
    display: none;
}

.join-submit.is-loading .submit-loading {
    display: inline;
}

.form-message {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.5;
}

.form-message.error {
    color: #a52c20;
}

.form-privacy {
    margin: 18px 0 0;
    color: #888178;
    font-size: 11px;
    line-height: 1.55;
}

.join-success {
    padding: 20px 5px;
}

.join-success h3 {
    margin: 0;
    font-size: clamp(36px, 5vw, 58px);
    line-height: .96;
    letter-spacing: -.045em;
}

.join-success p:not(.success-kicker) {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.join-success .button-outline {
    margin-top: 14px;
    border-color: var(--ink);
    color: var(--ink);
}


/* FOOTER */

.site-footer {
    padding: 60px 0;
    background: var(--ink);
    color: white;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
}

.footer-logo {
    width: 190px;
    filter: brightness(0) invert(1);
}

.site-footer p,
.footer-meta {
    color: rgba(255,255,255,.48);
    font-size: 12px;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 9px;
    text-align: right;
}

.footer-meta a {
    color: white;
    text-decoration: none;
}


/* RESPONSIVE */

@media (max-width: 980px) {

    .shell {
        width: min(calc(100% - 34px), var(--max));
    }

    .header-grid {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 103;
    }

    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 102;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        opacity: 0;
        background: var(--ink);
        transition: .2s ease;
    }

    .main-nav.open {
        visibility: visible;
        opacity: 1;
    }

    .main-nav a {
        font-size: 24px;
    }

    .hero-grid,
    .section-heading,
    .city-grid,
    .organizer-grid,
    .community-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .hero-grid {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-side {
        align-self: auto;
        padding-left: 0;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,.18);
        border-left: 0;
    }

    .featured-live {
        grid-template-columns: 1fr;
    }

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

    .event-placeholder:nth-child(2n),
    .event-card:nth-child(2n) {
        border-right: 0;
    }

    .organizer-panel,
    .city-copy {
        max-width: 760px;
    }

}


@media (max-width: 620px) {

    .shell {
        width: min(calc(100% - 26px), var(--max));
    }

    .site-header .header-grid {
        min-height: 74px;
    }

    .brand-logo {
        width: 145px;
    }

    .hero h1 {
        font-size: clamp(52px, 17vw, 84px);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .section,
    .community-section,
    .city-section {
        padding: 85px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .featured-empty {
        min-height: 340px;
    }

    .featured-image {
        min-height: 330px;
    }

    .featured-copy {
        padding: 30px 22px;
    }

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

    .event-placeholder,
    .event-card {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.16);
    }

    .join-panel {
        padding: 24px 18px;
        border-radius: 16px;
    }

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

    .form-field-full {
        grid-column: auto;
    }

    .form-heading {
        flex-direction: column;
        gap: 8px;
    }

    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-meta {
        text-align: left;
    }

}


/* ==================================================
   HOUSE NATION MIAMI V2.1
   Smaller Header Logo
   ================================================== */

.brand-logo {
    width: 140px;
}

@media (max-width: 620px) {

    .brand-logo {
        width: 120px;
    }

}


/* ==================================================
   HOUSE NATION MIAMI V2.2
   Smaller Footer Logo
   ================================================== */

.footer-logo {
    width: 145px;
}

@media (max-width: 620px) {

    .footer-logo {
        width: 125px;
    }

}


/* ==================================================
   HOUSE NATION MIAMI V2.3
   Discovery + Picks + Organizers Refinement
   ================================================== */


/* --------------------------------------------------
   DISCOVERY SECTION
   -------------------------------------------------- */

.discovery-section {
    position: relative;
    overflow: hidden;
    background: var(--paper);
}

.discovery-section::before {
    content: "MIAMI";
    position: absolute;
    right: -2vw;
    top: 80px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(17,17,17,.035);
    font-size: clamp(150px, 22vw, 360px);
    font-weight: 900;
    line-height: .75;
    letter-spacing: -.08em;
    pointer-events: none;
    user-select: none;
}

.discovery-section .shell {
    position: relative;
    z-index: 2;
}


/* Featured empty state */

.featured-empty {
    position: relative;
    min-height: 500px;
    padding: 58px;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(68,242,223,.3),
            transparent 26%
        ),
        radial-gradient(
            circle at 72% 90%,
            rgba(255,118,87,.26),
            transparent 30%
        ),
        #161616;
    color: white;
}

.featured-empty::before {
    content: "HOUSE NATION";
    position: absolute;
    right: 38px;
    top: 32px;
    color: rgba(255,255,255,.16);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.featured-empty::after {
    content: "HN";
    position: absolute;
    right: -15px;
    bottom: -55px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.08);
    font-size: clamp(180px, 25vw, 390px);
    font-weight: 900;
    line-height: .7;
    letter-spacing: -.1em;
    pointer-events: none;
}

.featured-empty .featured-label {
    position: relative;
    z-index: 2;
    width: fit-content;
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--aqua);
    color: var(--ink);
}

.featured-empty h3 {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin-top: auto;
    color: white;
}

.featured-empty p:not(.featured-label) {
    position: relative;
    z-index: 2;
    max-width: 570px;
    color: rgba(255,255,255,.58);
}

.featured-empty .text-link {
    position: relative;
    z-index: 2;
    width: fit-content;
    color: var(--aqua);
}


/* Live featured event */

.featured-live {
    overflow: hidden;
    border-radius: 24px;
    background: var(--paper-2);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.featured-live:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 75px rgba(0,0,0,.12);
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.38),
            transparent 48%
        );
    pointer-events: none;
}

.featured-image span {
    position: relative;
    z-index: 2;
}

.featured-copy strong {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink);
}


/* --------------------------------------------------
   HOUSE NATION PICKS
   -------------------------------------------------- */

.picks-section {
    position: relative;
    overflow: hidden;
}

.picks-section::after {
    content: "PICKS";
    position: absolute;
    left: -20px;
    bottom: -55px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.04);
    font-size: clamp(170px, 24vw, 380px);
    font-weight: 900;
    line-height: .72;
    letter-spacing: -.08em;
    pointer-events: none;
}

.picks-section .shell {
    position: relative;
    z-index: 2;
}

.event-grid {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
}

.event-placeholder,
.event-card {
    position: relative;
    overflow: hidden;
    transition:
        background .28s ease,
        transform .28s ease;
}

.event-placeholder::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 0;
    background:
        linear-gradient(
            135deg,
            rgba(68,242,223,.13),
            rgba(255,118,87,.08)
        );
    transition: height .3s ease;
}

.event-placeholder:hover::before {
    height: 100%;
}

.event-placeholder > * {
    position: relative;
    z-index: 2;
}

.event-placeholder:hover {
    background: rgba(255,255,255,.025);
}

.event-placeholder strong {
    max-width: 270px;
    font-size: clamp(27px, 2.6vw, 40px);
    letter-spacing: -.035em;
}

.event-card {
    transition:
        transform .28s ease,
        background .28s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    background: #181818;
}

.event-card-image {
    position: relative;
    overflow: hidden;
    transition: transform .45s ease;
}

.event-card:hover .event-card-image {
    transform: scale(1.025);
}

.event-card-copy h3 {
    font-size: clamp(28px, 2.8vw, 40px);
    letter-spacing: -.035em;
}

.event-card-copy strong {
    color: var(--aqua);
}


/* --------------------------------------------------
   ORGANIZER SECTION
   -------------------------------------------------- */

.organizer-section {
    position: relative;
    overflow: hidden;
    padding-top: 145px;
    padding-bottom: 145px;
}

.organizer-section::before {
    content: "SUBMIT";
    position: absolute;
    left: -28px;
    bottom: -48px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(17,17,17,.08);
    font-size: clamp(170px, 24vw, 370px);
    font-weight: 900;
    line-height: .7;
    letter-spacing: -.08em;
    pointer-events: none;
}

.organizer-section .shell {
    position: relative;
    z-index: 2;
}

.organizer-panel {
    padding: 42px;
    border: 1px solid rgba(17,17,17,.18);
    border-radius: 22px;
    background: rgba(255,255,255,.24);
    backdrop-filter: blur(12px);
}

.organizer-panel .button {
    min-height: 56px;
    padding-left: 28px;
    padding-right: 28px;
    transition:
        transform .2s ease,
        background .2s ease;
}

.organizer-panel .button:hover {
    transform: translateY(-2px);
    background: #000;
}

.organizer-note {
    opacity: .62;
}


/* --------------------------------------------------
   SECTION HEADINGS
   -------------------------------------------------- */

.section-heading h2,
.organizer-section h2 {
    text-wrap: balance;
}

.section-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    background: currentColor;
}


/* --------------------------------------------------
   MOBILE
   -------------------------------------------------- */

@media (max-width: 620px) {

    .discovery-section::before,
    .picks-section::after,
    .organizer-section::before {
        display: none;
    }

    .featured-empty {
        min-height: 440px;
        padding: 30px 24px;
        border-radius: 17px;
    }

    .featured-empty::after {
        right: -18px;
        bottom: -25px;
        font-size: 190px;
    }

    .featured-live,
    .event-grid,
    .organizer-panel {
        border-radius: 17px;
    }

    .organizer-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .organizer-panel {
        padding: 27px 22px;
    }

}


.featured-copy .featured-meta {
    margin: 18px 0 0;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .11em;
    text-transform: uppercase;
}


.event-card-copy .event-card-meta {
    margin: 0 0 12px;
    color: rgba(255,255,255,.78);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .09em;
    text-transform: uppercase;
}


/* --------------------------------------------------
   UNIFORM EVENT DISCOVERY CARDS
   -------------------------------------------------- */

/*
 * Every non-hero event uses the same card proportions
 * regardless of provider or editorial source.
 */

.event-card {
    min-height: 560px;
}

.event-card-image {
    min-height: 0;
    aspect-ratio: 16 / 9;
}


/* South Florida discovery grid */

.discovery-event-grid {
    margin-top: 28px;
    border-color: var(--line);
    background: var(--paper);
}

.discovery-event-grid .event-card {
    color: var(--ink);
    background: var(--paper);
    border-color: var(--line);
}

.discovery-event-grid .event-card:hover {
    background: var(--paper-2);
}

.discovery-event-grid .event-card-copy {
    min-height: 300px;
}

.discovery-event-grid .event-card-copy span {
    color: var(--aqua);
}

.discovery-event-grid .event-card-copy h3 {
    color: var(--ink);
}

.discovery-event-grid .event-card-copy p {
    color: var(--muted);
}

.discovery-event-grid .event-card-copy .event-card-meta {
    color: var(--ink);
}

.discovery-event-grid .event-card-copy strong {
    color: var(--ink);
}


/* Keep Picks using the same physical card dimensions */

.picks-section .event-card {
    min-height: 560px;
}

.picks-section .event-card-image {
    aspect-ratio: 16 / 9;
}


/* Tablet */

@media (max-width: 900px) {

    .event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-card:nth-child(3n) {
        border-right:
            1px solid rgba(255,255,255,.16);
    }

    .event-card:nth-child(2n) {
        border-right: 0;
    }

    .discovery-event-grid .event-card:nth-child(3n) {
        border-right: 1px solid var(--line);
    }

    .discovery-event-grid .event-card:nth-child(2n) {
        border-right: 0;
    }

}


/* Mobile */

@media (max-width: 640px) {

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

    .event-card,
    .picks-section .event-card {
        min-height: auto;
        border-right: 0;
    }

    .event-card-image {
        aspect-ratio: 16 / 9;
    }

    .event-card-copy,
    .discovery-event-grid .event-card-copy {
        min-height: 280px;
    }

}


/* --------------------------------------------------
   EVENT IMAGE FIT BY SOURCE
   -------------------------------------------------- */

/*
 * External provider artwork is usually landscape
 * and should fill the card.
 */

.event-card-ticketmaster .event-card-image {
    background-size: cover;
    background-position: center;
}


/*
 * Manual / organizer artwork is often a portrait flyer.
 * Show the full creative instead of aggressively cropping it.
 */

.event-card-manual .event-card-image {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #111;
}


/*
 * Generic fallback for future non-Ticketmaster providers.
 */

.event-card:not(.event-card-ticketmaster):not(.event-card-manual)
.event-card-image {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #111;
}

/* --------------------------------------------------
   BALANCED FINAL EVENT ROW
   -------------------------------------------------- */

/*
 * Desktop discovery grid:
 * when exactly two cards remain in the final row,
 * switch those final two into an intentional 50/50 row.
 */

@media (min-width: 901px) {

    .discovery-event-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .discovery-event-grid .event-card {
        grid-column: span 2;
        width: auto;
        justify-self: stretch;
    }

    .discovery-event-grid
        .event-card:nth-last-child(2):nth-child(3n + 1),
    .discovery-event-grid
        .event-card:nth-last-child(2):nth-child(3n + 1)
        + .event-card {
        grid-column: span 3;
    }

}

