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

:root {
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-dim: #8A6F32;
    --gold-pale: rgba(201,168,76,0.08);
    --black: #080808;
    --charcoal: #111111;
    --charcoal-mid: #181818;
    --charcoal-card: #1E1E1E;
    --charcoal-hover: #252525;
    --off-white: #F0EBE0;
    --text-body: #D4CCB8;
    --text-muted: #9A9080;
    --border: #2A2720;
    --border-gold: rgba(201,168,76,0.15);
    --serif: 'Oranienbaum',Georgia,serif;
    --sans: 'Roboto',system-ui,sans-serif;
    --nav-h: 72px;
}

body.light-mode {
    --black: #F5F0E8;
    --charcoal: #FAF7F2;
    --charcoal-mid: #F0EBE0;
    --charcoal-card: #EAE4D8;
    --charcoal-hover: #E2DBD0;
    --off-white: #1A1208;
    --text-body: #3A3020;
    --text-muted: #7A6A50;
    --border: #D8CFC0;
    --border-gold: rgba(160,120,40,0.25);
    --gold: #9A7430;
    --gold-light: #B08840;
    --gold-dim: #7A5E28;
    --gold-pale: rgba(160,120,40,0.10);
}

body.light-mode #nav {
    background: rgba(250,247,242,.92)!important;
    border-bottom-color: rgba(160,120,40,.18);
}

body.light-mode #nav.solid {
    background: rgba(250,247,242,.99)!important;
}

body.light-mode .nav-brand-name {
    color: #1A1208;
}

body.light-mode .stat-box,body.light-mode .jury-card {
    background: #F0EBE0;
}

body.light-mode .jury-avatar,body.light-mode footer {
    background: #EAE4D8;
}

body.light-mode #heroBgCanvas {
    opacity: .3;
}

body.light-mode .hero-bg {
    background: linear-gradient(175deg,#F0EBE0 0%,#F5F0E8 55%,#EAE4D8 100%);
}

body.light-mode .hero-title-sub {
    color: rgba(26,18,8,.45);
}

body.light-mode .cta-glow {
    background: radial-gradient(ellipse 65% 80% at 50% 50%,rgba(160,120,40,.07) 0%,transparent 70%);
}

body.light-mode .faq-body p {
    color: #3A3020;
}

body.light-mode .footer-copy,body.light-mode .footer-auth {
    color: #9A8870;
}

body.light-mode .nav-drawer {
    background: rgba(250,247,242,.98);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--charcoal);
    color: var(--text-body);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px,5vw,64px);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.eyebrow-text {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(32px,4.5vw,54px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--off-white);
    letter-spacing: .01em;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.gold-rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 28px 0;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 14px 36px;
    text-decoration: none;
    cursor: pointer;
    transition: background .22s,border-color .22s,transform .18s,box-shadow .22s;
    white-space: nowrap;
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(201,168,76,.22);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(201,168,76,.3);
    padding: 14px 36px;
    text-decoration: none;
    cursor: pointer;
    transition: border-color .22s,color .22s,transform .18s;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.nav-cta {
    font-size: 10px;
    padding: 11px 22px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .75s ease,transform .75s ease;
}

.reveal.on {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .12s;
}

.reveal-delay-2 {
    transition-delay: .24s;
}

.reveal-delay-3 {
    transition-delay: .36s;
}

#nav {
    /* position:fixed; */
    inset: 0 0 auto 0;
    z-index: 900;
    height: 100px;
    display:flex;
    align-items: center;
    padding: 0 clamp(16px,4vw,56px);
    background: rgba(8,8,8,.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,.1);
    transition: background .3s;
    gap: 24px;
}

#nav.solid {
    background: rgba(8,8,8,.97);
    position: fixed;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-badge {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 17px;
    color: var(--gold);
}

.nav-brand-text {
    line-height: 1.15;
}

.nav-brand-name {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--off-white);
    letter-spacing: .08em;
    display: block;
}

.nav-brand-sub {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
}

.nav-links-wrap {
    display: flex;
    align-items: center;
    gap: 36px;
    /* margin-left:auto; */
    justify-content: center;
    padding: 20px;
    margin: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-body);
    text-decoration: none;
    transition: color .2s;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .28s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: transform .3s,opacity .3s;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.nav-drawer {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    z-index: 890;
    background: rgba(8,8,8,.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.4,0,.2,1);
    border-top: 1px solid var(--border-gold);
}

.nav-drawer.open {
    transform: translateX(0);
}

.nav-drawer a {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-body);
    text-decoration: none;
    transition: color .2s;
}

.nav-drawer a:hover {
    color: var(--gold);
}

#hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-h) + 60px) clamp(20px,6vw,80px) 80px;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(175deg,#090909 0%,#101010 55%,#0b0b0b 100%);
    pointer-events: none;
}

#heroBgCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-geo {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-geo svg {
    position: absolute;
    opacity: .055;
}

.geo-1 {
    width: min(880px,90vw);
    height: min(880px,90vw);
    top: -15%;
    left: -15%;
    animation: geoFloat 16s ease-in-out infinite;
}

.geo-2 {
    width: min(600px,70vw);
    height: min(600px,70vw);
    bottom: -10%;
    right: -8%;
    animation: geoFloat 22s ease-in-out 4s infinite reverse;
}

@keyframes geoFloat {
    0%,100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-28px) rotate(2.5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 1s ease .25s forwards;
}

.hero-eyebrow-line {
    width: 44px;
    height: 1px;
    background: var(--gold-dim);
}

.hero-eyebrow-label {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(54px,10vw,108px);
    font-weight: 400;
    line-height: .9;
    color: var(--off-white);
    letter-spacing: -.01em;
    margin-bottom: 4px;
    opacity: 0;
    animation: fadeUp 1s ease .4s forwards;
}

.hero-title-em {
    color: var(--gold);
    font-style: italic;
}

.hero-title-sub {
    display: block;
    font-family: var(--serif);
    font-size: clamp(32px,6vw,64px);
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(240,235,224,.72);
    margin-top: 8px;
    opacity: 0;
    animation: fadeUp 1s ease .55s forwards;
}

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 36px auto;
    opacity: 0;
    animation: fadeUp .9s ease .7s forwards;
}

.orn-line {
    width: 72px;
    height: 1px;
}

.orn-line.l {
    background: linear-gradient(90deg,transparent,var(--gold-dim));
}

.orn-line.r {
    background: linear-gradient(90deg,var(--gold-dim),transparent);
}

.orn-diamond {
    width: 7px;
    height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.hero-subtitle {
    font-family: var(--serif);
    font-size: clamp(17px,2.4vw,22px);
    font-weight: 400;
    font-style: italic;
    color: var(--text-body);
    letter-spacing: .02em;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeUp .9s ease .85s forwards;
}

.hero-tagline {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 52px;
    opacity: 0;
    animation: fadeUp .9s ease .95s forwards;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .9s ease 1.05s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn .8s ease 1.8s forwards;
}

.hero-scroll-label {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-bar {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg,var(--gold-dim),transparent);
    animation: scrollPulse 2.2s ease infinite;
}

#about,#categories {
    background: var(--black);
    padding: clamp(72px,10vw,130px) 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px,7vw,100px);
    align-items: center;
}

.about-body {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 36px;
}

.about-body p+p {
    margin-top: 18px;
}

.about-body strong {
    color: var(--off-white);
    font-weight: 400;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-gold);
    border: 1px solid var(--border-gold);
}

.stat-box {
    background: var(--charcoal-mid);
    padding: clamp(28px,4vw,44px) clamp(20px,3vw,36px);
    text-align: center;
    transition: background .25s;
}

.stat-box:hover {
    background: var(--charcoal-card);
}

.stat-n {
    font-family: var(--serif);
    font-size: clamp(38px,5vw,54px);
    font-weight: 400;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-l {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

#jury,#faq {
    background: var(--charcoal);
    padding: clamp(72px,10vw,130px) 0;
    overflow: hidden;
}

.jury-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: clamp(36px,5vw,60px);
}

.jury-controls {
    display: flex;
    gap: 10px;
}

.jury-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(201,168,76,.28);
    background: transparent;
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s,border-color .2s;
    font-family: monospace;
}

.jury-btn:hover {
    background: var(--gold-pale);
    border-color: var(--gold);
}

.jury-overflow {
    overflow: hidden;
}

.jury-track {
    display: flex;
    gap: clamp(12px,2vw,20px);
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
}

.jury-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 200px;
    background: var(--charcoal-mid);
    border: 1px solid var(--border-gold);
    padding: clamp(24px,3vw,36px) clamp(16px,2vw,28px);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color .28s,background .28s,transform .28s;
}

.jury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,transparent,var(--gold-dim),transparent);
    opacity: 0;
    transition: opacity .28s;
}

.jury-card:hover {
    border-color: rgba(201,168,76,.32);
    background: var(--charcoal-card);
    transform: translateY(-4px);
}

.jury-card:hover::before {
    opacity: 1;
}

.jury-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: var(--charcoal-card);
    border: 1.5px solid rgba(201,168,76,.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.jury-initials {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--gold);
}

.jury-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--off-white);
    margin-bottom: 5px;
    line-height: 1.2;
}

.jury-role {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.jury-org {
    font-family: var(--serif);
    font-size: 13px;
    font-style: italic;
    color: var(--gold);
}

.cat-header,.faq-header {
    text-align: center;
    margin-bottom: clamp(44px,6vw,72px);
}

.cat-header .eyebrow,.faq-header .eyebrow {
    justify-content: center;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(min(100%,320px),1fr));
    gap: 1px;
    background: rgba(201,168,76,.07);
}

.cat-card {
    background: var(--charcoal-mid);
    padding: clamp(32px,4vw,48px) clamp(24px,3vw,40px);
    position: relative;
    overflow: hidden;
    transition: background .28s,transform .28s;
    cursor: default;
}

.cat-card:hover {
    background: var(--charcoal-card);
    transform: translateY(-2px);
}

.cat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,transparent,rgba(201,168,76,.28),transparent);
    opacity: 0;
    transition: opacity .28s;
}

.cat-card:hover::after {
    opacity: 1;
}

.cat-num {
    font-family: var(--serif);
    font-size: clamp(48px,6vw,64px);
    font-weight: 400;
    color: rgba(201,168,76,.07);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
    user-select: none;
    transition: color .28s;
}

.cat-card:hover .cat-num {
    color: rgba(201,168,76,.12);
}

.cat-icon-wrap {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(201,168,76,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: border-color .28s;
}

.cat-card:hover .cat-icon-wrap {
    border-color: rgba(201,168,76,.38);
}

.cat-icon-wrap svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cat-title {
    font-family: var(--serif);
    font-size: clamp(18px,2.2vw,22px);
    font-weight: 400;
    color: var(--off-white);
    margin-bottom: 10px;
    line-height: 1.25;
}

.cat-desc {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

.cat-tag {
    display: inline-block;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-dim);
    border: 1px solid rgba(201,168,76,.18);
    padding: 4px 10px;
}

.faq-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.faq-list {
    border-top: 1px solid var(--border-gold);
}

.faq-item {
    border-bottom: 1px solid var(--border-gold);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(20px,3vw,26px) 0;
    text-align: left;
}

.faq-q-text {
    font-family: var(--serif);
    font-size: clamp(17px,2.2vw,20px);
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.35;
    transition: color .2s;
    flex: 1;
}

.faq-btn:hover .faq-q-text {
    color: var(--gold-light);
}

.faq-btn.open .faq-q-text {
    color: var(--gold);
}

.faq-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border: 1px solid rgba(201,168,76,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    font-style: normal;
    transition: transform .32s,background .22s;
    margin-top: 2px;
}

.faq-btn.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold-pale);
}

.faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .42s cubic-bezier(.4,0,.2,1),padding .32s;
    padding-bottom: 0;
}

.faq-body.open {
    max-height: 320px;
    padding-bottom: 24px;
}

.faq-body p {
    font-family: var(--sans);
    font-size: 14.5px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.85;
}

#cta {
    background: var(--black);
    padding: clamp(72px,10vw,120px) clamp(20px,6vw,80px);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 80% at 50% 50%,rgba(201,168,76,.048) 0%,transparent 70%);
    pointer-events: none;
}

.cta-eyebrow {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--serif);
    font-size: clamp(32px,5.5vw,60px);
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-title em {
    font-style: italic;
    color: var(--gold);
}

.cta-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 440px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

footer {
    background: var(--black);
    padding: clamp(56px,8vw,80px) 0 36px;
    border-top: 1px solid rgba(201,168,76,.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(32px,5vw,60px);
    padding-bottom: clamp(40px,5vw,56px);
    border-bottom: 1px solid var(--border-gold);
    margin-bottom: clamp(24px,3vw,36px);
}

.footer-brand-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.85;
    margin-top: 18px;
    max-width: 280px;
}

.footer-col-title {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-body);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact-info p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-body);
    margin-bottom: 7px;
    line-height: 1.7;
}

.footer-contact-info a {
    color: var(--gold);
    text-decoration: none;
    transition: color .2s;
}

.footer-contact-info a:hover {
    color: var(--gold-light);
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.soc {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201,168,76,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    text-decoration: none;
    transition: border-color .2s,color .2s;
}

.soc:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 11px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: .04em;
}

.footer-auth {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

#floatNominate {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 800;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease,transform .4s ease;
}

#floatNominate.visible {
    opacity: 1;
    pointer-events: auto;
}

.float-btn-inner {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 13px;
    position: relative;
    transition: background .22s,box-shadow .22s,transform .22s;
    box-shadow: -4px 0 24px rgba(201,168,76,.18);
}

.float-btn-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold-dim);
    transition: width .22s;
}

.float-btn-inner:hover {
    background: var(--gold-light);
    transform: translateX(-3px);
    box-shadow: -8px 0 32px rgba(201,168,76,.28);
}

.float-btn-inner:hover::before {
    width: 3px;
}

.float-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: .65;
    }
}

@keyframes scrollPulse {
    0%,100% {
        opacity: .3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.12);
    }
}

#themeToggle {
    position: fixed;
    right: 0;
    bottom: 32px;
    z-index: 800;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 14px 0 12px;
    height: 44px;
    width: auto;
    background: var(--charcoal-card);
    border: 1px solid var(--border-gold);
    border-right: none;
    border-radius: 4px 0 0 4px;
    cursor: pointer;
    transition: background .25s,border-color .25s,transform .22s,box-shadow .25s;
    box-shadow: -3px 0 14px rgba(0,0,0,.28);
}

#themeToggle:hover {
    background: var(--charcoal-hover);
    border-color: var(--gold);
    transform: translateX(-3px);
    box-shadow: -6px 0 20px rgba(0,0,0,.35);
}

.theme-icon {
    font-size: 17px;
    line-height: 1;
    pointer-events: none;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
    display: block;
    color: var(--gold);
}

.theme-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    pointer-events: none;
    white-space: nowrap;
}

#themeToggle:hover .theme-icon {
    transform: rotate(22deg) scale(1.1);
}

@media(max-width: 1100px) {
    .jury-card {
        flex:0 0 calc(33.33% - 14px);
    }
}

@media(max-width: 860px) {
    :root {
        --nav-h:64px;
    }

    .nav-links-wrap .nav-links,.nav-links-wrap .btn-gold {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links-wrap {
        gap: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .jury-card {
        flex: 0 0 calc(50% - 10px);
    }

    .section-title {
        font-size: clamp(28px,5vw,44px);
    }

    .cat-desc,.about-body {
        font-size: 14px;
    }

    #floatNominate {
        display: flex;
    }

    .float-btn-inner {
        padding: 16px 11px;
        font-size: 9px;
        letter-spacing: .18em;
    }

    .float-diamond {
        width: 6px;
        height: 6px;
    }
}

@media(max-width: 600px) {
    .hero-title {
        line-height:.95;
        font-size: clamp(44px,12vw,72px);
    }

    .hero-title-sub {
        letter-spacing: .06em;
        font-size: clamp(24px,7vw,42px);
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-tagline {
        font-size: 11px;
        letter-spacing: .18em;
    }

    .hero-eyebrow-label {
        font-size: 9px;
        letter-spacing: .18em;
    }

    .section-title {
        font-size: clamp(26px,7vw,38px);
    }

    .eyebrow-text {
        font-size: 9px;
    }

    .stat-n {
        font-size: clamp(32px,8vw,48px);
    }

    .stat-l {
        font-size: 10px;
    }

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

    .cat-title {
        font-size: 18px;
    }

    .cat-desc {
        font-size: 13.5px;
        line-height: 1.7;
    }

    .jury-card {
        flex: 0 0 min(280px,80vw);
    }

    .jury-name {
        font-size: 16px;
    }

    .faq-q-text {
        font-size: 16px;
    }

    .faq-body p {
        font-size: 13.5px;
    }

    .cta-title {
        font-size: clamp(26px,7vw,40px);
    }

    .cta-sub {
        font-size: 13px;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-col-title,.footer-links a,.footer-contact-info p,.footer-brand-desc {
        font-size: 13px;
    }

    .cta-btns,.hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn-gold,.btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: 11px;
    }

    .hero-ctas .btn-gold,.hero-ctas .btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    #themeToggle {
        height: 38px;
        padding: 0 11px 0 10px;
        gap: 6px;
        bottom: 24px;
    }

    .theme-icon {
        font-size: 15px;
    }

    .theme-label {
        font-size: 8px;
    }
}
@media (max-width: 576px) {

    #hero {
    min-height: 70svh;
    }
}
@media(max-width: 380px) {
    .nav-badge {
        width:32px;
        height: 32px;
        font-size: 15px;
    }

    .hero-ornament {
        gap: 10px;
    }

    .orn-line {
        width: 40px;
    }

    .hero-title {
        font-size: clamp(38px,11vw,60px);
    }

    .section-title {
        font-size: clamp(22px,7vw,32px);
    }
}
