@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@500;600;700&family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
    --ink: #071c54;
    --paper: #fffdf8;
    --soft: #eef5ff;
    --panel: rgba(255, 255, 255, 0.94);
    --muted: #5f6880;
    --line: rgba(7, 28, 84, 0.18);
    --gold: #d6a33a;
    --gold-soft: #f4df97;
    --coffee: #0a317f;
    --clay: #0d5cab;
    --blue: #071c54;
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(7, 28, 84, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(13, 92, 171, 0.12), transparent 32rem),
        linear-gradient(180deg, #fffdf8 0%, #edf5ff 44%, #fffdf8 100%);
}

.site-header {
    min-height: 86px;
    padding: 10px max(24px, calc((100vw - 1220px) / 2));
    background: rgba(255, 253, 248, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    min-width: 220px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow: hidden;
}

.brand-logo {
    width: 230px;
    height: 76px;
    object-fit: cover;
    object-position: center 49%;
}

.brand-tagline {
    display: block;
    margin-top: 4px;
    padding-left: 8px;
    color: #0d5cab;
    font-size: 0.66rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-footer .brand-tagline {
    margin-top: 6px;
    color: #77bfff;
}

.site-nav {
    gap: 4px;
}

.site-nav a {
    padding: 10px 11px;
    color: #13346f;
    font-size: 0.88rem;
    font-weight: 800;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: #e5eefc;
}

.site-nav .nav-cta {
    background: var(--gold);
    color: #071c54;
    box-shadow: 0 12px 24px rgba(7, 28, 84, 0.18);
}

.hero {
    min-height: calc(100vh - 86px);
    padding: 78px max(24px, calc((100vw - 1220px) / 2)) 116px;
    background:
        radial-gradient(circle at 75% 44%, rgba(214, 163, 58, 0.18), transparent 22rem),
        linear-gradient(135deg, #071c54 0%, #0a317f 58%, #0d5cab 100%);
}

.hero::after {
    background:
        linear-gradient(90deg, rgba(7, 28, 84, 0.99) 0%, rgba(7, 28, 84, 0.95) 44%, rgba(13, 92, 171, 0.62) 68%, rgba(13, 92, 171, 0.28) 100%),
        linear-gradient(0deg, rgba(7, 28, 84, 0.36), transparent 42%);
}

.hero-media img {
    object-position: right center;
}

.hero-media-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: max(24px, calc((100vw - 1220px) / 2));
}

.hero-media-logo img {
    width: min(46vw, 560px);
    height: min(46vw, 560px);
    object-fit: cover;
    object-position: center 49%;
    opacity: 0.9;
    filter: drop-shadow(0 28px 60px rgba(214, 163, 58, 0.2));
}

.hero-copy {
    margin-left: 0;
}

.eyebrow {
    min-height: 28px;
    margin-bottom: 14px;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(214, 163, 58, 0.14);
    color: var(--gold);
    font-size: 0.74rem;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.65rem, 6vw, 5.35rem);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(1.85rem, 3vw, 3rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.hero p,
.page-hero p {
    max-width: 700px;
    font-size: 1.08rem;
}

.btn {
    min-height: 48px;
    padding: 13px 18px;
}

.btn-primary {
    background: var(--gold);
    color: #071c54;
    box-shadow: 0 14px 26px rgba(7, 28, 84, 0.18);
}

.stats-row {
    width: min(1220px, calc(100% - 32px));
    margin: -58px auto 72px;
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--line);
    box-shadow: var(--shadow);
}

.stats-row div {
    padding: 26px;
}

.stats-row strong {
    color: var(--coffee);
    font-size: 1.9rem;
}

.stats-row span,
.category-card p,
.post-card p,
.profile-card p,
.values-grid p,
.info-panel p,
.quick-nominate p {
    color: var(--muted);
}

.section,
.form-section,
.article,
.page-hero,
.filter-bar {
    width: min(1220px, calc(100% - 32px));
}

.section,
.form-section,
.article {
    margin-bottom: 86px;
}

.section-header {
    margin-bottom: 26px;
}

.section-header a,
.category-card a,
.post-card a,
.footer-admin {
    color: var(--gold);
}

.category-grid,
.profile-grid,
.post-grid,
.values-grid {
    gap: 20px;
}

.category-card,
.profile-card,
.post-card,
.values-grid article,
.info-panel,
.quick-nominate,
.site-form,
.empty-state {
    border-color: var(--line);
    background: var(--panel);
    box-shadow: 0 12px 30px rgba(7, 28, 84, 0.08);
}

.category-card,
.values-grid article,
.info-panel,
.quick-nominate,
.site-form,
.empty-state {
    padding: 26px;
}

.category-card {
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--coffee), var(--clay));
}

.category-card span,
.profile-card small {
    color: var(--clay);
}

.section-band {
    padding: 76px max(16px, calc((100vw - 1220px) / 2));
    background:
        linear-gradient(135deg, #eaf3ff, #fff8e7);
}

.profile-card img,
.post-card img {
    height: 250px;
}

.profile-card div,
.post-card div {
    padding: 20px;
}

.profile-card strong {
    color: var(--blue);
}

.split-section {
    gap: 28px;
}

.steps {
    gap: 16px;
}

.steps div {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.steps span {
    width: 48px;
    height: 48px;
    background: var(--coffee);
}

.quick-nominate {
    background:
        linear-gradient(145deg, rgba(214, 163, 58, 0.16), rgba(255, 255, 255, 0.94));
}

.page-hero {
    padding: 86px 0 30px;
}

.page-hero-luxe {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: none;
    margin: 0 0 72px;
    padding: 104px max(24px, calc((100vw - 1220px) / 2)) 92px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(125deg, rgba(7, 28, 84, 0.98) 0%, rgba(7, 28, 84, 0.92) 50%, rgba(13, 92, 171, 0.86) 100%),
        repeating-linear-gradient(108deg, rgba(240, 215, 139, 0.12) 0 1px, transparent 1px 86px);
}

.page-hero-luxe::after {
    content: "";
    position: absolute;
    inset: auto max(24px, calc((100vw - 1220px) / 2)) 0 auto;
    width: min(420px, 45vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.page-hero-luxe .eyebrow {
    border: 1px solid rgba(240, 215, 139, 0.28);
    background: rgba(217, 167, 47, 0.12);
    color: var(--gold-soft);
}

.page-hero-luxe h1 {
    max-width: 920px;
    color: var(--white);
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.page-hero-luxe p {
    max-width: 760px;
    color: #eadfc9;
}

.gallery-strip img {
    height: 320px;
}

input,
select,
textarea {
    border-color: var(--line);
    padding: 13px 14px;
}

.site-footer {
    padding: 54px max(24px, calc((100vw - 1220px) / 2));
    background: #071c54;
}

.site-footer p,
.site-footer a {
    color: #e5d9c5;
}

.brand-logo-footer {
    width: 280px;
    height: 126px;
    max-width: 100%;
    object-fit: cover;
    object-position: center 49%;
}

.filter-bar-inline {
    width: 100%;
    margin: 0 0 24px;
}

.partner-cta-compact {
    margin-top: -28px;
}

.winners-grid article {
    min-height: 390px;
}

@media (max-width: 960px) {
    .site-header {
        padding: 10px 16px;
    }

    .brand {
        min-width: 172px;
    }

    .brand-logo {
        width: 172px;
        height: 68px;
    }

    .brand-tagline {
        margin-top: 2px;
        padding-left: 6px;
        font-size: 0.52rem;
    }

    .site-nav {
        top: 78px;
        background: rgba(255, 253, 248, 0.98);
    }

    .menu-button {
        position: absolute;
        top: 22px;
        right: 16px;
        display: grid;
        place-items: center;
        margin-left: auto;
        border: 0;
        background: var(--gold);
        box-shadow: 0 10px 22px rgba(214, 163, 58, 0.26);
    }

    .menu-button span {
        width: 20px;
        margin: 2px 0;
        background: #071c54;
    }

    .hero {
        min-height: 70vh;
        padding: 66px 16px 92px;
    }

    .hero-media-logo {
        justify-content: center;
        padding: 0;
        opacity: 0.22;
    }

    .hero-media-logo img {
        width: 92vw;
        height: 92vw;
    }

    .stats-row {
        margin-top: -38px;
    }

    .section-band {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 560px) {
    h1 {
        max-width: 100%;
        font-size: 2.08rem;
        line-height: 1.05;
    }

    .hero p,
    .page-hero p {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .hero-actions {
        display: grid;
        width: 100%;
    }

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

    .stats-row div {
        padding: 20px;
    }
}

/* Homepage awards experience */
:root {
    --ink: #071c54;
    --paper: #fbfaf5;
    --soft: #eaf3ff;
    --panel: rgba(255, 255, 255, 0.95);
    --muted: #5f6880;
    --line: rgba(7, 28, 84, 0.14);
    --gold: #d9a72f;
    --gold-soft: #f0d78b;
    --coffee: #0a317f;
    --clay: #0d5cab;
    --blue: #071c54;
    --white: #ffffff;
    --charcoal: #071c54;
    --shadow: 0 24px 70px rgba(7, 28, 84, 0.16);
}

body {
    background: linear-gradient(180deg, #fbfaf5 0%, #edf5ff 42%, #fbfaf5 100%);
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

h1,
h2 {
    font-family: "Cormorant", Georgia, serif;
    font-weight: 700;
}

.site-header {
    min-height: 92px;
    background: rgba(251, 250, 245, 0.9);
}

.brand-logo {
    width: 254px;
    height: 82px;
}

.brand-tagline {
    margin-top: 4px;
}

.site-nav a {
    text-transform: uppercase;
    font-size: 0.76rem;
}

.site-nav .nav-cta {
    color: #071c54;
}

.home-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(620px, 82svh, 760px);
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(115deg, rgba(7, 28, 84, 0.98) 0%, rgba(7, 28, 84, 0.9) 45%, rgba(13, 92, 171, 0.68) 100%),
        repeating-linear-gradient(108deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 72px);
}

.home-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    padding: min(8vw, 120px);
    object-fit: contain;
    object-position: right center;
    opacity: 0.08;
    filter: none;
}

.home-hero__inner {
    width: min(1220px, calc(100% - 48px));
    min-height: inherit;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 38px;
    align-items: center;
    padding: 70px 0 96px;
}

.home-hero__copy {
    max-width: 760px;
}

.home-hero h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(3.4rem, 8vw, 7.6rem);
    line-height: 0.86;
    text-transform: uppercase;
}

.home-hero p {
    max-width: 660px;
    color: #f0e9dc;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.home-hero__showpiece {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
}

.home-hero__showpiece::before,
.home-hero__showpiece::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(240, 215, 139, 0.42);
}

.home-hero__showpiece::before {
    inset: 42px 44px 76px 16px;
}

.home-hero__showpiece::after {
    inset: 76px 8px 34px 68px;
    background: rgba(217, 167, 47, 0.08);
}

.home-hero__showpiece > img {
    position: relative;
    z-index: 1;
    width: min(470px, 88%);
    height: 300px;
    object-fit: cover;
    object-position: center 49%;
    border: 1px solid rgba(240, 215, 139, 0.4);
    background: var(--white);
    box-shadow: 0 32px 80px rgba(7, 28, 84, 0.32);
}

.hero-gallery-frame > .hero-gallery-logo {
    padding: 34px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.96);
}

.hero-gallery-frame > .hero-gallery-photo {
    width: min(315px, 76%);
    height: auto;
    aspect-ratio: 53 / 75;
    object-fit: cover;
    object-position: top center;
}

.hero-card-stack {
    min-height: 520px;
}

.hero-card-stack > img {
    position: absolute;
    width: min(250px, 38vw);
    height: auto;
    aspect-ratio: 53 / 75;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    background: #071c54;
}

.hero-card-stack > img:nth-child(1) {
    left: 10%;
    top: 58px;
    z-index: 1;
    transform: rotate(-8deg);
}

.hero-card-stack > img:nth-child(2) {
    left: 34%;
    top: 6px;
    z-index: 2;
    transform: rotate(2deg);
}

.hero-card-stack > img:nth-child(3) {
    right: 8%;
    top: 84px;
    z-index: 1;
    transform: rotate(8deg);
}

.event-ticket {
    position: absolute;
    right: 0;
    bottom: 18px;
    z-index: 2;
    width: min(310px, 76%);
    padding: 20px;
    border: 1px solid rgba(240, 215, 139, 0.46);
    border-radius: 8px;
    background: rgba(7, 28, 84, 0.86);
    backdrop-filter: blur(16px);
    box-shadow: 0 22px 55px rgba(7, 28, 84, 0.28);
}

.event-ticket span,
.event-ticket small {
    display: block;
    color: #e8dac0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.event-ticket strong {
    display: block;
    margin: 6px 0 4px;
    color: var(--gold-soft);
    font-family: "Cormorant", Georgia, serif;
    font-size: 2rem;
    line-height: 1;
}

.stats-row {
    width: min(1220px, calc(100% - 32px));
    margin: -46px auto 76px;
    background: rgba(255, 255, 255, 0.98);
}

.stats-row strong {
    font-family: "Cormorant", Georgia, serif;
    font-size: clamp(2rem, 3vw, 2.85rem);
}

.mission-band,
.nomination-suite,
.gallery-feature,
.partner-cta {
    width: 100%;
    margin-bottom: 86px;
}

.mission-band {
    padding: 88px max(24px, calc((100vw - 1220px) / 2));
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 28, 84, 0.98), rgba(13, 92, 171, 0.9)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 96px);
}

.mission-band__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
    gap: 34px;
    align-items: end;
}

.mission-band h2,
.gallery-feature h2,
.partner-cta h2,
.nomination-suite h2 {
    color: inherit;
}

.mission-band p {
    max-width: 640px;
    margin-bottom: 0;
    color: #e8dac0;
    font-size: 1.12rem;
}

.mission-points {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mission-points span {
    min-height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(240, 215, 139, 0.34);
    border-radius: 8px;
    color: var(--gold-soft);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.section-header-centered {
    justify-content: center;
    text-align: center;
}

.section-header-centered h2 {
    max-width: 760px;
}

.section-header > div {
    min-width: 0;
}

.section-header h2 {
    overflow-wrap: anywhere;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.audience-card {
    position: relative;
    min-height: 355px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 38px rgba(7, 28, 84, 0.07);
}

.category-track + .category-track {
    margin-top: 36px;
}

.category-track__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.category-track__header h3 {
    margin-bottom: 0;
    color: var(--blue);
    font-family: "Cormorant", Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 1;
}

.category-track__header span {
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.audience-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(90deg, var(--gold), var(--coffee), var(--clay));
}

.audience-card h3 {
    font-size: 1.42rem;
}

.audience-card p,
.audience-card li {
    color: var(--muted);
}

.audience-card ul {
    margin: 14px 0 22px;
}

.audience-card li + li {
    margin-top: 8px;
}

.audience-card a {
    margin-top: auto;
    color: var(--gold);
    font-weight: 900;
}

.category-grid-featured {
    grid-template-columns: repeat(4, 1fr);
}

.category-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.category-card h3 {
    min-height: 58px;
}

.category-card a {
    margin-top: auto;
}

.profile-showcase {
    padding-top: 86px;
    padding-bottom: 86px;
    color: var(--white);
    background: linear-gradient(135deg, #071c54 0%, #0a317f 54%, #0d5cab 100%);
}

.profile-showcase .section-header a,
.profile-showcase .eyebrow,
.profile-showcase h2 {
    color: var(--gold-soft);
}

.profile-showcase .profile-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.profile-showcase .profile-card {
    border-color: rgba(240, 215, 139, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.profile-showcase .profile-card img {
    height: 255px;
}

.profile-showcase .profile-card p,
.profile-showcase .profile-card strong {
    color: #e8dac0;
}

.ssma-card-wall {
    margin-top: -18px;
}

.ssma-card-wall-full {
    margin-top: 0;
    padding: 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 226, 0.96));
    box-shadow: 0 18px 48px rgba(7, 28, 84, 0.08);
}

.ssma-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    min-width: 0;
}

.ssma-card-grid-full {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ssma-card-grid article {
    position: relative;
    overflow: hidden;
    min-width: 0;
    min-height: 360px;
    border-radius: 8px;
    background: #071c54;
    box-shadow: 0 14px 38px rgba(7, 28, 84, 0.12);
}

.ssma-card-grid-full article {
    min-height: 430px;
}

.ssma-card-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.ssma-card-grid div {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    border: 1px solid rgba(240, 215, 139, 0.25);
    border-radius: 8px;
    color: var(--white);
    background: rgba(7, 28, 84, 0.78);
    backdrop-filter: blur(10px);
}

.ssma-card-grid strong,
.ssma-card-grid span {
    display: block;
}

.ssma-card-grid span {
    color: var(--gold-soft);
    font-weight: 800;
}

.nomination-suite {
    padding: 90px max(24px, calc((100vw - 1220px) / 2));
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(7, 28, 84, 0.98), rgba(13, 92, 171, 0.9)),
        repeating-linear-gradient(108deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 84px);
}

.nomination-suite__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.62fr);
    gap: 34px;
    align-items: start;
}

.nomination-copy {
    max-width: 760px;
}

.nomination-copy .steps div {
    border-color: rgba(240, 215, 139, 0.24);
    background: rgba(255, 255, 255, 0.06);
}

.nomination-copy .steps p {
    color: #eadfc9;
}

.nomination-copy .steps span {
    background: var(--gold);
    color: #071c54;
}

.nomination-suite .quick-nominate {
    border-color: rgba(240, 215, 139, 0.34);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
}

.nomination-suite .quick-nominate .eyebrow {
    color: var(--gold);
}

.winner-board {
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 241, 226, 0.96));
    box-shadow: 0 18px 48px rgba(7, 28, 84, 0.08);
}

.winner-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.winner-list article {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    align-items: center;
    min-height: 82px;
    padding: 16px;
    border: 1px solid rgba(7, 28, 84, 0.1);
    border-radius: 8px;
    background: var(--white);
}

.winner-list span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #071c54;
    color: var(--gold-soft);
    font-weight: 900;
}

.winner-list strong,
.winner-list small {
    display: block;
}

.winner-list small {
    color: var(--muted);
}

.winner-list em {
    color: var(--gold);
    font-style: normal;
    font-weight: 900;
}

.gallery-feature {
    display: grid;
    grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
    gap: 24px;
    align-items: stretch;
    padding: 92px max(24px, calc((100vw - 1220px) / 2));
    color: var(--white);
    background: #071c54;
}

.gallery-feature__copy {
    align-self: center;
    max-width: 470px;
}

.gallery-feature__copy p {
    color: #e8dac0;
}

.gallery-feature__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 12px;
}

.gallery-feature figure {
    position: relative;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--charcoal);
}

.gallery-feature figure:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-feature figure:nth-child(2) {
    grid-column: span 2;
}

.gallery-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.86;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-feature figure:hover img {
    transform: scale(1.04);
    opacity: 1;
}

.gallery-feature figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px;
    color: var(--white);
    background: linear-gradient(0deg, rgba(7, 28, 84, 0.76), transparent);
}

.gallery-feature figcaption strong,
.gallery-feature figcaption span {
    display: block;
}

.gallery-feature figcaption span {
    color: #e8dac0;
    font-size: 0.85rem;
}

.gallery-feature .empty-state {
    min-height: 210px;
    display: grid;
    place-items: center;
    color: var(--ink);
}

.home-media {
    width: 100%;
    margin-bottom: 86px;
    padding: 92px max(24px, calc((100vw - 1220px) / 2));
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 28, 84, 0.98), rgba(13, 92, 171, 0.9)),
        repeating-linear-gradient(108deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 84px);
}

.home-media__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.home-media__header h2 {
    color: var(--white);
}

.media-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(240, 215, 139, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.media-controls button {
    min-width: 44px;
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--white);
    background: transparent;
    font-weight: 900;
    cursor: pointer;
}

.media-controls button:hover,
.media-controls button.is-active {
    color: #071c54;
    background: var(--gold);
}

.home-media__panel {
    display: none;
    grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
    gap: 28px;
    align-items: start;
}

.home-media__panel.is-active {
    display: grid;
}

.home-media__copy {
    position: sticky;
    top: 116px;
    max-width: 420px;
}

.home-media__copy h3 {
    color: var(--white);
    font-family: "Cormorant", Georgia, serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1;
}

.home-media__copy p {
    color: #e8dac0;
}

.home-media__links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.home-media__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-media .post-card {
    border-color: rgba(240, 215, 139, 0.22);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.home-media .post-card h3,
.home-media .post-card p {
    color: var(--white);
}

.home-media .post-card p {
    color: #e8dac0;
}

.home-media .gallery-feature__grid {
    min-height: 432px;
}

.post-grid {
    grid-template-columns: repeat(3, 1fr);
}

.post-card img {
    height: 270px;
}

.partner-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 86px max(24px, calc((100vw - 1220px) / 2));
    color: var(--white);
    background: linear-gradient(135deg, rgba(13, 92, 171, 0.94), rgba(7, 28, 84, 0.98));
}

.partner-cta div {
    max-width: 830px;
}

.partner-cta p {
    max-width: 760px;
    color: #e8dac0;
}

.partner-cta .btn {
    flex: 0 0 auto;
}

@media (max-width: 1100px) {
    .profile-showcase .profile-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-grid-featured {
        grid-template-columns: repeat(2, 1fr);
    }

    .ssma-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .site-header {
        min-height: 82px;
    }

    .brand-logo {
        width: 176px;
        height: 68px;
    }

    .brand-tagline {
        margin-top: 2px;
        font-size: 0.52rem;
    }

    .site-nav {
        top: 78px;
    }

    .menu-button {
        position: fixed;
        top: 19px;
        right: auto;
        left: calc(100vw - 60px);
        z-index: 9999;
        display: grid !important;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(7, 28, 84, 0.1);
        background: var(--gold) !important;
        opacity: 1;
        visibility: visible;
    }

    .menu-button span {
        display: block;
        width: 20px;
        height: 2px;
        margin: 2px 0;
        background: #071c54;
    }

    .home-hero {
        min-height: auto;
    }

    .home-hero__inner {
        width: min(680px, calc(100vw - 32px));
        grid-template-columns: 1fr;
        padding: 62px 0 86px;
    }

    .home-hero h1 {
        font-size: clamp(3rem, 13vw, 5.4rem);
    }

    .home-hero__showpiece {
        min-height: 320px;
    }

    .home-hero__showpiece:not(.hero-card-stack) > img {
        width: min(460px, 94%);
        height: 245px;
    }

    .hero-card-stack {
        min-height: 430px;
    }

    .hero-card-stack > img {
        width: min(210px, 45vw);
    }

    .hero-card-stack > img:nth-child(1) {
        left: 6%;
        top: 70px;
    }

    .hero-card-stack > img:nth-child(2) {
        left: 30%;
        top: 18px;
    }

    .hero-card-stack > img:nth-child(3) {
        right: 4%;
        top: 92px;
    }

    .mission-band__inner,
    .nomination-suite__inner,
    .gallery-feature,
    .home-media__panel {
        grid-template-columns: 1fr;
    }

    .mission-points,
    .audience-grid,
    .winner-list,
    .post-grid {
        grid-template-columns: 1fr;
    }

    .gallery-feature__copy {
        max-width: 720px;
    }

    .partner-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-media__header {
        align-items: start;
        flex-direction: column;
    }

    .home-media__copy {
        position: static;
        max-width: 720px;
    }

    .home-media__cards {
        grid-template-columns: 1fr;
    }

    .page-hero-luxe h1 {
        max-width: 13ch;
    }

    .page-hero-luxe p {
        max-width: 28ch;
    }

    .section-header h2 {
        max-width: 15ch;
    }
}

@media (max-width: 640px) {
    .home-hero__inner {
        width: calc(100vw - 28px);
        padding-top: 42px;
    }

    .home-hero h1 {
        max-width: 7.3ch;
        font-size: clamp(2.95rem, 13vw, 3.55rem);
        line-height: 0.92;
    }

    .page-hero-luxe h1 {
        max-width: 10ch;
        font-size: clamp(1.95rem, 8.5vw, 2.35rem);
        line-height: 1.06;
    }

    .page-hero-luxe p {
        max-width: 25ch;
    }

    .ssma-card-wall-full .section-header h2 {
        max-width: 13ch;
        font-size: 1.68rem;
        line-height: 1.12;
    }

    .home-hero__showpiece::before,
    .home-hero__showpiece::after {
        display: none;
    }

    .event-ticket {
        left: 0;
        right: auto;
        width: min(100%, 292px);
    }

    .stats-row,
    .category-grid-featured,
    .profile-showcase .profile-grid,
    .ssma-card-grid,
    .gallery-feature__grid {
        grid-template-columns: 1fr;
    }

    .mission-points {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-band,
    .nomination-suite,
    .gallery-feature,
    .home-media,
    .partner-cta,
    .page-hero-luxe {
        padding-left: 16px;
        padding-right: 16px;
    }

    .media-controls {
        width: 100%;
        justify-content: space-between;
        overflow-x: auto;
    }

    .audience-card,
    .winner-board,
    .ssma-card-wall-full {
        padding: 22px;
    }

    .winner-list article {
        grid-template-columns: 44px 1fr;
    }

    .winner-list em {
        grid-column: 2;
    }

    .gallery-feature__grid {
        grid-auto-rows: 260px;
    }

    .hero-card-stack {
        min-height: 520px;
    }

    .hero-card-stack > img {
        width: min(230px, 70vw);
    }

    .hero-card-stack > img:nth-child(1) {
        left: -2%;
        top: 42px;
    }

    .hero-card-stack > img:nth-child(2) {
        left: 23%;
        top: 16px;
    }

    .hero-card-stack > img:nth-child(3) {
        right: -3%;
        top: 72px;
    }

    .ssma-card-grid article {
        width: min(100%, 270px);
        min-height: 0;
        aspect-ratio: 53 / 75;
        margin: 0 auto;
    }

    .gallery-feature figure:first-child,
    .gallery-feature figure:nth-child(2) {
        grid-column: auto;
        grid-row: auto;
    }
}
