:root {
    --black: #09090b;
    --ink: #17131d;
    --muted: #716a78;
    --purple: #6d28d9;
    --purple-dark: #4c1d95;
    --purple-light: #ede9fe;
    --line: #e8e5ec;
    --white: #ffffff;
    --page: #f8f7fa;
    --shadow: 0 18px 50px rgba(28, 17, 39, 0.09);
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--page);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 14px clamp(20px, 5vw, 72px);
    color: var(--white);
    background: var(--black);
}

.brand {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.brand-mark {
    display: block;
    width: 43px;
    height: 43px;
    object-fit: contain;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.header-search,
.back-link {
    color: #d8ccff;
    font-weight: 700;
    text-decoration: none;
}

.header-search:hover,
.back-link:hover {
    color: var(--white);
}

.show-navigation {
    display: flex;
    gap: clamp(18px, 3vw, 38px);
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 8px 20px;
    overflow-x: auto;
    border-bottom: 1px solid #2f2938;
    color: #ddd6e8;
    background: #151219;
    scrollbar-width: none;
}

.show-navigation::-webkit-scrollbar {
    display: none;
}

.show-navigation a {
    flex: 0 0 auto;
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.show-navigation a:hover {
    color: #c4b5fd;
}

main {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.hero {
    position: relative;
    overflow: hidden;
    margin-top: 48px;
    padding: clamp(38px, 7vw, 82px);
    border-radius: 28px;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(167, 139, 250, 0.32), transparent 28%),
        linear-gradient(135deg, #111014 0%, #241536 58%, #4c1d95 100%);
    box-shadow: var(--shadow);
}

.hero h1,
.profile-hero h1 {
    max-width: 830px;
    margin: 8px 0 12px;
    font-size: clamp(40px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero > p {
    max-width: 650px;
    margin: 0;
    color: #ddd6e8;
    font-size: clamp(17px, 2vw, 21px);
}

.eyebrow {
    color: #9f67fa;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero .eyebrow,
.profile-hero .eyebrow {
    color: #c4b5fd;
}

.search-form {
    display: flex;
    max-width: 790px;
    margin-top: 32px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 16px;
    background: var(--white);
}

.search-form input {
    min-width: 0;
    flex: 1;
    padding: 13px 15px;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font: inherit;
    font-size: 17px;
}

.search-form button,
.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 24px;
    border: 0;
    border-radius: 11px;
    color: var(--white);
    background: var(--purple);
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.search-form button:hover,
.button-link:hover {
    background: var(--purple-dark);
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: center;
    margin: 24px 0 56px;
    padding: 22px 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
}

.logo-strip img {
    width: auto;
    height: 58px;
    margin: auto;
    object-fit: contain;
}

.logo-strip a {
    display: grid;
    min-height: 70px;
    place-items: center;
    border-radius: 12px;
    transition: background 160ms ease, transform 160ms ease;
}

.logo-strip a:hover {
    transform: translateY(-2px);
    background: var(--purple-light);
}

.section-heading {
    display: flex;
    gap: 24px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 22px;
}

.section-heading h2,
.intro-panel h2,
.bio-card h2,
.notice h1,
.notice h2 {
    margin: 5px 0 0;
    font-size: clamp(27px, 4vw, 43px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading > span,
.award-total {
    color: var(--muted);
    font-weight: 700;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.result-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--white);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.result-card:hover {
    transform: translateY(-2px);
    border-color: #c4b5fd;
    box-shadow: var(--shadow);
}

.result-avatar,
.profile-monogram {
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--purple);
    font-weight: 900;
}

.result-avatar {
    width: 52px;
    height: 52px;
}

.result-card h3 {
    margin: 0;
    font-size: 18px;
}

.result-card p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.arrow {
    color: var(--purple);
    font-size: 30px;
    line-height: 1;
}

.intro-panel,
.notice,
.bio-card,
.awards-panel {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.intro-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: end;
    margin-bottom: 64px;
    padding: clamp(30px, 5vw, 58px);
}

.intro-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.notice {
    margin: 48px 0;
    padding: 36px;
}

.notice p {
    color: var(--muted);
}

.error-notice {
    border-color: #c4b5fd;
}

.profile-missing {
    text-align: center;
}

.profile-hero {
    margin-top: 48px;
    padding: clamp(32px, 6vw, 68px);
    border-radius: 28px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 20%, rgba(167, 139, 250, 0.3), transparent 30%),
        linear-gradient(135deg, #111014 0%, #301653 100%);
}

.profile-heading {
    display: flex;
    gap: 26px;
    align-items: center;
    margin-top: 44px;
}

.profile-monogram {
    width: clamp(86px, 13vw, 132px);
    height: clamp(86px, 13vw, 132px);
    flex: 0 0 auto;
    font-size: clamp(36px, 6vw, 62px);
}

.profile-hero h1 {
    margin-bottom: 8px;
    font-size: clamp(42px, 7vw, 76px);
}

.profile-hero .award-total {
    margin: 0;
    color: #ddd6e8;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.5fr);
    gap: 24px;
    align-items: start;
    margin: 24px 0 70px;
}

.bio-card,
.awards-panel {
    padding: clamp(24px, 4vw, 38px);
}

.bio-card {
    position: sticky;
    top: 20px;
}

.bio-card p {
    color: #4f4855;
}

.award-list {
    display: grid;
    gap: 12px;
}

.award-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: center;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.award-logo {
    display: grid;
    width: 72px;
    height: 62px;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
    background: #f2eff5;
}

.award-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.award-logo span {
    color: var(--purple);
    font-size: 30px;
}

.award-meta {
    display: flex;
    gap: 10px;
    color: var(--purple);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.award-meta time::before {
    content: "·";
    margin-right: 10px;
}

.award-card h3 {
    margin: 4px 0 0;
    font-size: 18px;
    line-height: 1.35;
}

.award-organizations {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 48px;
    align-items: center;
    padding: 72px 5vw;
    color: var(--white);
    border-top: 1px solid #30303a;
    background: #111116;
}

.award-organizations .eyebrow {
    color: #a78bfa;
}

.award-organizations h2 {
    max-width: 480px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.035em;
}

.footer-logo-rail {
    display: grid;
    grid-template-columns: repeat(6, minmax(74px, 1fr));
    gap: 10px;
}

.footer-logo-rail a {
    display: grid;
    min-height: 96px;
    place-items: center;
    border-bottom: 3px solid var(--purple);
    background: transparent;
    transition: background 160ms ease, border-color 160ms ease;
}

.footer-logo-rail a:hover {
    border-color: #c4b5fd;
    background: rgba(255, 255, 255, 0.04);
}

.footer-logo-rail img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.site-footer {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding: 25px 5vw;
    color: #9a9aa5;
    background: var(--black);
    font-size: 11px;
    letter-spacing: 0.04em;
}

code {
    padding: 2px 6px;
    border-radius: 5px;
    color: var(--purple-dark);
    background: var(--purple-light);
}

@media (max-width: 760px) {
    main {
        width: min(100% - 24px, 1180px);
    }

    .site-header {
        min-height: 66px;
        padding: 11px 14px;
    }

    .brand > span:last-child {
        display: none;
    }

    .hero,
    .profile-hero {
        margin-top: 20px;
        border-radius: 20px;
    }

    .search-form {
        display: grid;
    }

    .search-form button {
        width: 100%;
    }

    .logo-strip {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 38px;
        padding: 18px;
    }

    .logo-strip img {
        height: 46px;
    }

    .result-grid,
    .intro-panel,
    .profile-layout {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    .profile-heading {
        align-items: start;
        flex-direction: column;
    }

    .bio-card {
        position: static;
    }

    .award-card {
        grid-template-columns: 58px 1fr;
    }

    .award-logo {
        width: 58px;
        height: 52px;
    }

    .award-organizations {
        grid-template-columns: 1fr;
    }

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

/* Performer record layout */

.record-page {
    width: 100%;
    margin: 0;
    background: linear-gradient(to bottom, var(--black) 64px, var(--page) 64px);
}

.profile-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.55fr);
    gap: 56px;
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 92px;
}

.profile-card {
    align-self: start;
    padding: 42px;
    border-top: 4px solid var(--purple);
    background: var(--white);
    box-shadow: 0 20px 50px rgba(55, 37, 97, 0.12);
}

.profile-card .profile-monogram {
    display: grid;
    width: 88px;
    height: 88px;
    margin-bottom: 34px;
    place-items: center;
    border-radius: 0;
    color: var(--white);
    background: var(--black);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    font-weight: 400;
}

.record-label {
    margin: 0 0 9px;
    color: var(--purple);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.profile-card h1,
.record-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.profile-card h1 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -0.035em;
}

.profile-bio {
    margin: 28px 0;
    color: #3f3f46;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.75;
    white-space: pre-line;
}

.fact-list {
    margin: 0;
    border-top: 1px solid var(--line);
}

.fact-list div {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.fact-list dt {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
}

.fact-list dd {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    text-align: right;
}

.award-record {
    min-width: 0;
    padding-top: 54px;
}

.record-back-link {
    display: inline-block;
    margin-bottom: 21px;
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.record-back-link:hover {
    color: var(--purple-dark);
}

.record-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 2px solid var(--black);
}

.record-heading .eyebrow {
    color: var(--purple);
}

.record-heading h2 {
    font-size: clamp(35px, 4vw, 58px);
    letter-spacing: -0.03em;
}

.record-total {
    display: flex;
    gap: 6px;
    align-items: baseline;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
}

.record-total strong {
    color: var(--black);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 500;
}

.organization-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 18px 0 10px;
}

.organization-tab {
    display: flex;
    gap: 8px;
    align-items: center;
    min-height: 54px;
    padding: 5px 12px 5px 5px;
    border: 1px solid var(--line);
    background: var(--white);
}

.organization-tab img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.organization-tab span {
    min-width: 20px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.timeline {
    padding-top: 12px;
}

.award-entry {
    display: grid;
    grid-template-columns: 58px 24px 1fr;
    gap: 18px;
    min-height: 128px;
}

.award-entry > time {
    padding-top: 25px;
    color: var(--purple);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 700;
}

.timeline-rule {
    position: relative;
    display: flex;
    justify-content: center;
}

.timeline-rule::before {
    position: absolute;
    inset: 0 auto;
    width: 1px;
    background: var(--line);
    content: "";
}

.timeline-rule span {
    position: relative;
    width: 9px;
    height: 9px;
    margin-top: 31px;
    border: 3px solid var(--page);
    outline: 1px solid var(--purple);
    background: var(--purple);
}

.award-details {
    padding: 22px 0 26px;
    border-bottom: 1px solid var(--line);
}

.award-org {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.award-org img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    background: var(--white);
}

.generic-award-mark {
    color: var(--purple);
    font-size: 20px;
}

/* Award show pages */

.show-page {
    padding: 48px 0 88px;
}

.show-hero {
    display: grid;
    grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
    gap: clamp(34px, 6vw, 78px);
    align-items: center;
    padding: clamp(30px, 6vw, 72px);
    border-radius: 26px;
    color: var(--white);
    background:
        radial-gradient(circle at 16% 18%, rgba(167, 139, 250, 0.25), transparent 30%),
        linear-gradient(135deg, #0f0e12 0%, #241536 58%, #4c1d95 100%);
    box-shadow: var(--shadow);
}

.show-logo-card {
    display: grid;
    min-height: 230px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 4px solid #a78bfa;
    background: rgba(255, 255, 255, 0.05);
}

.show-logo-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.show-introduction h1 {
    margin: 4px 0 15px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 7vw, 78px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.show-summary {
    max-width: 680px;
    margin: 0;
    color: #ddd6e8;
    font-size: 18px;
}

.show-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 30px 0 0;
    background: rgba(255, 255, 255, 0.15);
}

.show-stats div {
    padding: 15px 17px;
    background: rgba(10, 8, 13, 0.45);
}

.show-stats dt {
    color: #b8afc2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.show-stats dd {
    margin: 3px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.latest-winners {
    padding: 62px 0 0;
}

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

.winner-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--white);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.winner-card:hover {
    transform: translateY(-2px);
    border-color: #c4b5fd;
    box-shadow: var(--shadow);
}

.winner-mark {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--white);
    background: var(--black);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.winner-award {
    margin: 0 0 6px;
    color: var(--purple);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.winner-copy h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
}

.winner-copy h3 a {
    text-decoration: none;
}

.winner-copy h3 a:hover {
    color: var(--purple);
}

.winner-details {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.winner-profile-link {
    align-self: center;
    color: var(--purple);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.winner-profile-link span {
    font-size: 18px;
    vertical-align: -1px;
}

.award-details h3 {
    margin: 10px 0 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.25;
}

.award-details p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .profile-shell {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .award-record {
        padding-top: 54px;
    }

    .show-hero,
    .winner-list {
        grid-template-columns: 1fr;
    }

    .show-logo-card {
        min-height: 190px;
    }
}

@media (max-width: 560px) {
    .record-page {
        background: linear-gradient(to bottom, var(--black) 34px, var(--page) 34px);
    }

    .profile-shell {
        width: min(100% - 24px, 1320px);
        padding-bottom: 64px;
    }

    .profile-card {
        padding: 30px 24px;
    }

    .profile-card .profile-monogram {
        width: 70px;
        height: 70px;
        margin-bottom: 26px;
        font-size: 35px;
    }

    .record-heading {
        align-items: center;
    }

    .award-entry {
        grid-template-columns: 48px 18px 1fr;
        gap: 10px;
    }

    .award-details h3 {
        font-size: 18px;
    }

    .award-organizations {
        padding: 58px 20px;
    }

    .footer-logo-rail {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer {
        flex-direction: column;
        padding: 24px 20px;
    }

    .show-page {
        padding-top: 20px;
    }

    .show-hero {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .show-logo-card {
        min-height: 150px;
    }

    .show-logo-card img {
        width: 110px;
        height: 110px;
    }

    .show-stats {
        grid-template-columns: 1fr;
    }

    .winner-card {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 18px;
    }

    .winner-mark {
        width: 44px;
        height: 44px;
    }

    .winner-profile-link {
        grid-column: 2;
        justify-self: start;
    }
}
