:root {
  --navy: #08294f;
  --navy-deep: #041c37;
  --blue: #0877d8;
  --blue-dark: #075fae;
  --sky: #eef7ff;
  --mist: #f6f9fc;
  --line: #dce6ef;
  --muted: #60758a;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 18px 50px rgba(8, 41, 79, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; min-height: 100vh; color: var(--navy); background: var(--white); font-family: var(--sans); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(8, 119, 216, .35); outline-offset: 3px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; line-height: 1.06; letter-spacing: -.025em; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; background: white; padding: 12px 18px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }
.shell { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.section { padding: 92px 0; }
.eyebrow { margin: 0 0 14px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-light { color: #a9d7ff; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.site-header { position: relative; z-index: 20; height: 76px; background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(220,230,239,.75); }
.header-inner { width: min(1380px, calc(100% - 40px)); height: 100%; margin: auto; display: flex; align-items: center; gap: 28px; }
.brand { width: 72px; display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 60px; height: 60px; object-fit: contain; }
.brand-word { display: inline-block; color: var(--navy); font-family: var(--serif); font-size: 24px; font-weight: 700; letter-spacing: .08em; line-height: 1; }
.brand-sub { padding-left: 9px; border-left: 1px solid var(--line); color: var(--muted); font-size: 7px; font-weight: 700; letter-spacing: .1em; line-height: 1.25; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 19px; flex: 1; }
.main-nav a { position: relative; padding: 29px 0 25px; color: #52687c; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--blue); transition: right .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.account-link { font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.button { display: inline-flex; min-height: 46px; padding: 0 24px; align-items: center; justify-content: center; border: 1px solid var(--blue); border-radius: 0; color: white; background: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: background .2s, transform .2s, box-shadow .2s; }
.button:hover { background: var(--blue-dark); box-shadow: 0 10px 24px rgba(8,119,216,.22); transform: translateY(-1px); }
.button-small { min-height: 36px; padding: 0 15px; font-size: 9px; }
.button-light { border-color: white; color: var(--navy); background: white; }
.button-wide { width: 100%; margin-top: 8px; }
.menu-button { display: none; border: 0; background: transparent; }
.mobile-nav-only { display: none; }

.hero-carousel { position: relative; width: 100%; height: clamp(550px, 43vw, 720px); overflow: hidden; color: white; background: var(--navy-deep); cursor: grab; touch-action: pan-y; }
.hero-carousel:active { cursor: grabbing; }
.hero-track { width: 100%; height: 100%; display: flex; transition: transform .8s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.hero-slide { position: relative; min-width: 100%; height: 100%; overflow: hidden; user-select: none; }
.hero-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: var(--desktop-focus, 50%) center; pointer-events: none; transform: scale(1.002); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,19,37,.91) 0%, rgba(2,19,37,.66) 34%, rgba(2,19,37,.12) 70%, rgba(2,19,37,.05) 100%); }
.hero-copy { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.hero-copy h1 { max-width: 660px; margin-bottom: 20px; font-size: clamp(42px, 4.1vw, 68px); }
.hero-season { margin-bottom: 4px; color: #c2d6e8; font-family: var(--serif); font-size: 20px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; }
.hero-date { margin-bottom: 34px; font-size: 17px; }
.carousel-controls { position: absolute; z-index: 5; right: max(3vw, 32px); bottom: 28px; display: flex; align-items: center; background: rgba(3,24,47,.78); backdrop-filter: blur(8px); }
.carousel-controls button { width: 50px; height: 50px; border: 0; color: white; background: transparent; font-size: 20px; transition: background .2s; }
.carousel-controls button:hover { background: rgba(255,255,255,.14); }
.carousel-controls span { min-width: 74px; color: #a9bfd3; text-align: center; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.carousel-controls b { color: white; font-size: 13px; }
.carousel-dots { position: absolute; z-index: 5; left: max(3vw, 32px); bottom: 47px; display: flex; gap: 8px; }
.carousel-dots button { width: 42px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.45); transition: width .25s, background .25s; }
.carousel-dots button.active { width: 68px; background: white; }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 80px; align-items: end; margin-bottom: 42px; }
.section-heading h2 { max-width: 690px; margin: 0; font-size: clamp(34px, 3.3vw, 50px); }
.section-heading > p { margin: 0 0 5px; color: var(--muted); }
.portal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.portal-section { padding: 38px 0 36px; }
.portal-card { min-width: 0; border: 1px solid var(--line); background: white; transition: transform .25s, box-shadow .25s; }
.portal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.portal-card img { width: 100%; aspect-ratio: 1.8 / 1; object-fit: cover; }
.portal-copy { min-height: 134px; display: grid; grid-template-columns: 1fr auto; padding: 22px; align-content: start; }
.portal-copy strong { grid-column: 1; font-size: 13px; letter-spacing: .03em; text-transform: uppercase; }
.portal-copy small { grid-column: 1; margin-top: 7px; color: var(--muted); font-size: 11px; }
.portal-copy i { grid-row: 1 / 3; grid-column: 2; align-self: end; color: var(--blue); font-style: normal; }
.section-rule { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.section-rule::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.section-rule .eyebrow { margin: 0; }
.section-rule > span { order: 3; color: #8aa0b5; font-size: 9px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; }
.category-section { padding-top: 25px; }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-card { min-height: 220px; padding: 24px 20px 18px; display: grid; grid-template-rows: 62px auto 1fr auto; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; transition: background .2s, color .2s; }
.category-card:hover { background: var(--sky); }
.category-art { width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid #c8d9e7; border-radius: 50%; color: var(--navy); background: #f7fbff; transition: color .2s, border-color .2s, background .2s; }
.category-art svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.category-card:hover .category-art { border-color: var(--blue); color: white; background: var(--blue); }
.category-card strong { margin-top: 13px; font-family: var(--serif); font-size: 19px; font-weight: 600; line-height: 1.18; }
.category-card small { margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.category-card i { display: flex; gap: 7px; align-items: center; justify-self: end; color: var(--blue); font-size: 12px; font-style: normal; }
.category-card i span { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.category-manifesto { min-height: 190px; padding: 30px 26px; display: grid; align-content: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.category-manifesto span { color: #8ca0b4; font-size: 9px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.category-manifesto strong { margin-top: 9px; font-family: var(--serif); font-size: 20px; font-weight: 500; }

.journey { position: relative; min-height: 355px; overflow: hidden; background: var(--sky); }
.journey > img { position: absolute; right: 0; bottom: 0; width: 68%; height: 100%; object-fit: cover; opacity: .35; -webkit-mask-image: linear-gradient(90deg, transparent, black 26%); mask-image: linear-gradient(90deg, transparent, black 26%); }
.journey-inner { position: relative; z-index: 1; padding: 60px 0; }
.journey-steps { width: 74%; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 28px; align-items: center; }
.journey-steps article b { color: var(--blue); font-size: 29px; }
.journey-steps h3 { margin: 4px 0 8px; font-family: var(--serif); font-size: 18px; }
.journey-steps p { margin: 0; color: var(--muted); font-size: 11px; }
.journey-steps > i { color: var(--blue); font-style: normal; }
.scholarship { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: center; }
.scholarship h2 { max-width: 600px; font-size: clamp(36px, 4vw, 55px); }
.scholarship > div > p:last-child { max-width: 580px; color: var(--muted); }
.scholarship-panel { padding: 42px; display: grid; gap: 16px; border-left: 4px solid var(--blue); background: var(--mist); }
.scholarship-panel span { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.scholarship-panel strong { padding-bottom: 14px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 19px; font-weight: 500; }
.scholarship-panel a { margin-top: 8px; color: var(--blue); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.closing-cta { padding: 62px max(7vw, 40px); display: flex; align-items: center; justify-content: space-between; gap: 50px; color: white; background: var(--navy); }
.closing-cta h2 { margin: 0 0 12px; font-size: clamp(32px, 3.5vw, 50px); }
.closing-cta p:last-child { margin: 0; color: #b9cde0; }

.site-footer { padding: 72px max(4vw, 32px) 30px; color: white; background: var(--navy-deep); }
.footer-top { width: min(1180px, 100%); margin: auto; display: grid; grid-template-columns: 1.4fr .7fr .8fr 1.1fr; gap: 70px; }
.brand-word-light { color: white; font-size: 32px; }
.footer-top h3 { margin: 0 0 20px; color: #97b3cc; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.footer-top a { display: block; margin: 8px 0; color: #d5e0ea; font-size: 13px; }
.footer-top p { color: #b3c6d8; font-size: 13px; }
.muted-light { margin-top: 28px; font-family: var(--serif); font-style: italic; }
.newsletter { display: flex; border-bottom: 1px solid #6b839a; }
.newsletter input { width: 100%; padding: 10px 0; border: 0; color: white; background: transparent; }
.newsletter button { border: 0; color: #a9d7ff; background: transparent; font-weight: 800; }
.social-row { width: min(1180px, 100%); margin: 52px auto 0; padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-top: 1px solid rgba(255,255,255,.13); }
.social-row > span { color: #97b3cc; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-links a { min-height: 42px; padding: 7px 12px 7px 8px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.17); color: #d5e0ea; }
.social-links a:hover { border-color: #7dc3fa; color: white; }
.social-links b { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-deep); background: white; font-family: var(--sans); font-size: 12px; }
.social-links small { font-size: 10px; font-weight: 700; }
.footer-bottom { width: min(1180px, 100%); margin: 60px auto 0; padding-top: 24px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.13); color: #819ab1; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.page-hero { padding: 108px 0 92px; background: linear-gradient(120deg, white 0 63%, var(--sky) 63% 100%); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 850px; margin-bottom: 26px; font-size: clamp(48px, 6vw, 82px); }
.page-hero .shell > p:last-child { max-width: 720px; margin: 0; color: var(--muted); font-size: 18px; }
.editorial-grid { display: grid; grid-template-columns: 260px 1fr; gap: 90px; }
.editorial-grid aside { align-self: start; padding: 26px; border-top: 3px solid var(--blue); background: var(--mist); }
.editorial-grid aside p { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.editorial-grid aside strong { display: block; margin-bottom: 28px; font-family: var(--serif); font-size: 23px; font-weight: 500; }
.editorial-grid aside a { color: var(--blue); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.prose-cards article { padding: 0 0 40px; margin-bottom: 40px; display: grid; grid-template-columns: 64px 1fr; gap: 28px; border-bottom: 1px solid var(--line); }
.prose-cards article > span { color: #9fc8ea; font-family: var(--serif); font-size: 28px; }
.prose-cards h2 { margin: 0 0 12px; font-size: 34px; }
.prose-cards p { max-width: 700px; margin: 0; color: var(--muted); }
.regulation-library { padding-top: 82px; }
.regulation-document-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.regulation-document-card { min-height: 340px; padding: 34px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); color: var(--navy); background: linear-gradient(145deg, white 60%, var(--sky)); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.regulation-document-card:hover { transform: translateY(-4px); border-color: #8eb9dc; box-shadow: var(--shadow); }
.document-card-top, .document-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.document-card-top > span { color: #9fc8ea; font-family: var(--serif); font-size: 28px; }
.document-card-top b { color: var(--blue); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.regulation-document-card h2 { max-width: 520px; margin: 52px 0 14px; font-size: clamp(28px, 3vw, 40px); line-height: 1.08; }
.regulation-document-card p { max-width: 560px; margin: 0; color: var(--muted); font-size: 16px; }
.document-card-bottom { padding-top: 28px; margin-top: 36px; border-top: 1px solid var(--line); }
.document-card-bottom small { min-width: 0; overflow: hidden; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.document-card-bottom strong { flex: 0 0 auto; color: var(--blue); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.regulation-note { max-width: 850px; margin: 34px 0 0; color: var(--muted); font-size: 15px; }
.about-hero h1 { max-width: 940px; }
.about-intro { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(60px, 9vw, 140px); align-items: start; }
.about-intro h2 { max-width: 570px; margin: 12px 0 0; font-size: clamp(40px, 4.6vw, 66px); line-height: 1.02; }
.about-intro-copy { padding-top: 28px; border-top: 1px solid var(--navy); }
.about-intro-copy p { max-width: 680px; margin: 0 0 22px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.about-intro-copy .button { margin-top: 14px; }
.about-values { padding: 88px 0 96px; background: var(--mist); }
.about-values-intro { max-width: 650px; margin: 0 0 46px; color: var(--muted); font-family: var(--serif); font-size: 26px; line-height: 1.35; }
.about-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #b9cbd9; border-bottom: 1px solid #b9cbd9; }
.about-value-grid article { min-height: 245px; padding: 35px 40px 38px 0; }
.about-value-grid article + article { padding-left: 40px; border-left: 1px solid #b9cbd9; }
.about-value-grid span { color: var(--blue); font-family: var(--serif); font-size: 22px; }
.about-value-grid h3 { margin: 45px 0 12px; font-size: 29px; }
.about-value-grid p { margin: 0; color: var(--muted); }
.about-categories .section-heading { margin-bottom: 54px; }
.about-category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.about-category-grid article { min-height: 280px; padding: 42px; border: 1px solid var(--line); background: linear-gradient(145deg, white 55%, var(--sky)); }
.about-category-grid h3 { max-width: 500px; margin-top: 58px; font-size: clamp(26px, 2.7vw, 38px); line-height: 1.3; }
.about-process { padding: 92px 0; background: var(--navy); color: white; }
.about-process .section-rule { border-color: rgba(255,255,255,.25); }
.about-process .section-rule > span { color: #9db4ca; }
.about-stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 20px; border-top: 1px solid rgba(255,255,255,.22); }
.about-stage-grid article { min-height: 260px; padding: 38px 40px 35px 0; }
.about-stage-grid article + article { padding-left: 40px; border-left: 1px solid rgba(255,255,255,.22); }
.about-stage-grid b { color: #69b8f5; font-family: var(--serif); font-size: 34px; font-weight: 500; }
.about-stage-grid h3 { margin: 42px 0 13px; color: white; font-size: 29px; }
.about-stage-grid p { margin: 0; color: #b8cadd; }
.remote-note { display: grid; grid-template-columns: 230px 1fr; gap: 35px; margin-top: 24px; padding: 30px 35px; border: 1px solid rgba(255,255,255,.24); }
.remote-note strong { color: #9fd5ff; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.remote-note p, .schedule-note { margin: 0; color: #c5d4e2; }
.schedule-note { margin-top: 22px; font-size: 13px; }
.about-judging { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(55px, 9vw, 135px); align-items: start; }
.about-judging-copy h2 { max-width: 630px; margin: 12px 0 25px; font-size: clamp(39px, 4.4vw, 62px); line-height: 1.05; }
.about-judging-copy > p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 18px; }
.about-judging ul { padding: 0; margin: 30px 0 0; list-style: none; }
.about-judging li { position: relative; padding: 16px 0 16px 26px; border-bottom: 1px solid var(--line); }
.about-judging li::before { content: ""; position: absolute; left: 0; top: 24px; width: 8px; height: 8px; border: 2px solid var(--blue); border-radius: 50%; }
.about-judging aside { padding: 42px; border-top: 4px solid var(--blue); background: var(--mist); }
.about-judging aside h3 { margin: 10px 0 18px; font-size: 32px; }
.about-judging aside p:last-child { margin-top: 30px; color: var(--muted); font-size: 14px; }
.about-beyond { padding: 98px 0; color: white; background: linear-gradient(115deg, #041c37, #0b3f70); }
.about-beyond .shell { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(60px, 9vw, 140px); }
.about-beyond .eyebrow { grid-column: 1 / -1; }
.about-beyond h2 { margin: 0; color: white; font-size: clamp(42px, 5.2vw, 72px); line-height: 1.03; }
.about-beyond div > div p { margin: 0 0 24px; color: #c1d3e4; font-size: 17px; line-height: 1.75; }
.about-page .closing-cta a:not(.button) { color: white; text-decoration: underline; text-underline-offset: 4px; }
.schedule-hero h1 { max-width: 940px; }
.schedule-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 135px); align-items: start; }
.schedule-intro h2 { max-width: 520px; margin: 12px 0 0; font-size: clamp(42px, 4.8vw, 66px); }
.schedule-intro > div:last-child { padding-top: 25px; border-top: 1px solid var(--navy); }
.schedule-intro > div:last-child p { margin: 0 0 21px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.schedule-intro strong { color: var(--navy); }
.schedule-cycle { padding: 90px 0 100px; border-top: 1px solid var(--line); }
.schedule-cycle + .schedule-cycle { background: var(--mist); }
.schedule-cycle-heading { margin-bottom: 42px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.schedule-cycle-heading h2 { margin: 0; font-size: clamp(42px, 4.8vw, 65px); }
.schedule-cycle-heading > p { margin: 0 0 8px; color: var(--blue); font-family: var(--serif); font-size: 22px; font-style: italic; }
.schedule-cycle-layout { display: grid; grid-template-columns: minmax(330px, .85fr) minmax(0, 1.15fr); gap: clamp(50px, 7vw, 100px); align-items: start; }
.schedule-cycle-layout figure { position: sticky; top: 28px; margin: 0; }
.schedule-cycle-layout figure::after { content: ""; position: absolute; right: -15px; bottom: -15px; width: 42%; height: 42%; z-index: -1; background: var(--sky); }
.schedule-cycle-layout img { width: 100%; aspect-ratio: 707 / 1000; object-fit: contain; background: var(--navy-deep); }
.schedule-stage-list { border-top: 1px solid var(--navy); }
.schedule-stage-list article { padding: 34px 0; display: grid; grid-template-columns: 62px 1fr; gap: 22px; border-bottom: 1px solid var(--line); }
.schedule-stage-list article > span { padding-top: 2px; color: #9fc8ea; font-family: var(--serif); font-size: 25px; }
.schedule-stage-list h3 { margin: 0 0 8px; font-size: clamp(25px, 2.3vw, 33px); line-height: 1.16; }
.schedule-stage-date { margin: 0 0 15px !important; color: var(--blue) !important; font-size: 12px !important; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.schedule-stage-list p { margin: 0; color: var(--muted); }
.schedule-stage-list strong, .schedule-stage-list small { display: block; }
.schedule-stage-list strong { margin-top: 18px; color: var(--navy); font-size: 14px; }
.schedule-stage-list small { margin-top: 9px; color: var(--muted); font-size: 12px; }
.schedule-global-visual { position: relative; min-height: 500px; display: grid; align-items: end; overflow: hidden; color: white; background: var(--navy-deep); }
.schedule-global-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,24,47,.9), rgba(3,24,47,.05) 76%); }
.schedule-global-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.schedule-global-visual > div { position: relative; z-index: 1; padding-bottom: 58px; }
.schedule-global-visual h2 { max-width: 850px; margin: 0; font-size: clamp(40px, 5vw, 68px); }
.schedule-table-wrap { overflow-x: auto; border-top: 1px solid var(--navy); }
.schedule-overview table { width: 100%; min-width: 760px; border-collapse: collapse; text-align: left; }
.schedule-overview th, .schedule-overview td { padding: 24px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.schedule-overview thead th { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.schedule-overview tbody th { width: 35%; font-family: var(--serif); font-size: 18px; font-weight: 600; }
.schedule-overview tbody td { color: var(--muted); font-size: 14px; }
.schedule-notes { padding: 90px 0 100px; background: var(--sky); }
.schedule-note-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #b9cbd9; }
.schedule-note-grid article { padding: 38px 42px 42px 0; border-bottom: 1px solid #b9cbd9; }
.schedule-note-grid article:nth-child(even) { padding-left: 42px; border-left: 1px solid #b9cbd9; }
.schedule-note-grid article:last-child { grid-column: 1 / -1; }
.schedule-note-grid article > span { color: var(--blue); font-family: var(--serif); font-size: 21px; }
.schedule-note-grid h3 { margin: 24px 0 11px; font-size: 24px; }
.schedule-note-grid p { max-width: 720px; margin: 0; color: var(--muted); }
.schedule-page .closing-cta a:not(.button) { color: white; text-decoration: underline; text-underline-offset: 4px; }
.jury-directory { padding-bottom: 70px; }
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 58px 24px; }
.person-card { min-width: 0; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.people-grid img { width: 100%; aspect-ratio: 1 / 1; margin-bottom: 22px; object-fit: cover; filter: saturate(.78); transition: filter .3s, transform .4s; }
.person-card:hover img { filter: saturate(1); transform: translateY(-4px); }
.people-grid h2 { margin-bottom: 8px; font-size: 29px; }
.person-card > p:not(.eyebrow) { min-height: 40px; margin: 0 0 17px; color: var(--muted); font-size: 12px; }
.profile-link { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.source-note { margin: 54px 0 0; padding: 18px 22px; color: var(--muted); background: var(--mist); font-size: 11px; }
.source-note a { color: var(--blue); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.artist-profile { padding: 80px 0; display: grid; grid-template-columns: minmax(360px, .9fr) 1.1fr; gap: clamp(55px, 8vw, 120px); align-items: center; }
.artist-portrait { position: relative; background: var(--sky); }
.artist-portrait::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1; border: 1px solid #bcd9ef; }
.artist-portrait img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; filter: saturate(.82); }
.artist-back { margin-bottom: 62px; }
.artist-intro h1 { margin-bottom: 13px; font-size: clamp(58px, 7vw, 96px); }
.artist-institution { max-width: 600px; margin-bottom: 35px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.artist-summary { max-width: 650px; margin: 0; color: var(--muted); font-family: var(--serif); font-size: clamp(24px, 2.3vw, 34px); line-height: 1.35; }
.artist-body { display: grid; grid-template-columns: 260px 1fr; gap: 95px; border-top: 1px solid var(--line); }
.artist-body aside { align-self: start; padding: 28px; border-top: 3px solid var(--blue); background: var(--mist); }
.artist-body aside span { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 17px; }
.artist-body article { max-width: 760px; }
.artist-body h2 { margin-bottom: 30px; font-size: clamp(38px, 4vw, 56px); }
.artist-body article > p:not(.eyebrow):not(.source-note) { color: #405b75; font-size: 18px; line-height: 1.8; }
.artist-body .source-note { margin-top: 42px; }
.artist-next { padding: 62px max(7vw, 40px); display: flex; align-items: center; justify-content: space-between; gap: 50px; color: white; background: var(--navy); }
.artist-next h2 { max-width: 760px; margin: 0; font-size: clamp(32px, 3.5vw, 50px); }
.text-button { padding: 0; border: 0; color: var(--blue); background: transparent; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.quote-band { padding: 88px 10%; text-align: center; background: var(--sky); }
.quote-band blockquote { max-width: 900px; margin: 0 auto 24px; font-family: var(--serif); font-size: clamp(30px, 4vw, 50px); line-height: 1.2; }
.quote-band p { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.result-search { display: grid; grid-template-columns: 1fr 2fr; gap: 90px; align-items: end; }
.result-search h2 { font-size: 38px; }
.result-search > div p { color: var(--muted); }
.result-search form { display: grid; grid-template-columns: 1fr 1fr 1.2fr auto; gap: 12px; align-items: end; }
label { display: grid; gap: 8px; color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: .05em; }
label > span { color: #8ca0b4; font-weight: 500; }
input, select, textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #cbd9e5; border-radius: 0; color: var(--navy); background: white; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); outline: 2px solid rgba(8,119,216,.11); }
.results-list { padding-top: 20px; }
.results-list > article { display: grid; grid-template-columns: 220px 1fr 1fr; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); }
.results-list article > span { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.results-list h2, .results-list p { margin: 0; }
.results-list h2 { font-size: 27px; }
.results-list p { color: var(--muted); }
.privacy-note { margin-top: 34px; padding: 18px 22px; color: var(--muted); background: var(--mist); font-size: 12px; }
.privacy-note a { color: var(--blue); font-weight: 800; }
.newsroom { padding-top: 54px; }
.news-feature { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(360px, .8fr); min-height: 530px; margin-bottom: 84px; background: var(--mist); }
.news-feature > img { width: 100%; height: 100%; min-height: 530px; object-fit: cover; }
.news-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 58px; }
.news-feature-copy h2 { margin: 8px 0 18px; font-size: clamp(34px, 3.2vw, 52px); line-height: 1.04; }
.news-feature-copy > p:not(.eyebrow):not(.news-date) { color: var(--muted); }
.news-date { margin: 0 0 30px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.text-link { align-self: flex-start; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid var(--blue); color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.text-link span { margin-left: 6px; }
.news-archive { border-top: 1px solid var(--navy); }
.news-row { display: grid; grid-template-columns: 170px minmax(0, 1fr) 52px; gap: 35px; align-items: start; padding: 38px 0; border-bottom: 1px solid var(--line); }
.news-row > time { padding-top: 6px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.news-row .eyebrow { margin-bottom: 10px; }
.news-row h2 { max-width: 850px; margin: 0 0 10px; font-size: clamp(25px, 2.4vw, 36px); line-height: 1.14; }
.news-row h2 a { transition: color .2s ease; }
.news-row h2 a:hover { color: var(--blue); }
.news-row div > p:not(.eyebrow) { max-width: 820px; margin: 0; color: var(--muted); }
.news-arrow { display: grid; width: 44px; height: 44px; border: 1px solid var(--line); place-items: center; color: var(--blue); transition: color .2s ease, background .2s ease, border-color .2s ease; }
.news-arrow:hover { border-color: var(--blue); color: white; background: var(--blue); }
.news-article-header { padding: 80px 0 62px; }
.news-back { margin-bottom: 54px; }
.news-article-header h1 { max-width: 1000px; margin: 10px 0 26px; font-size: clamp(45px, 5.5vw, 78px); }
.news-article-lead { max-width: 780px; margin: 0 0 26px; color: var(--muted); font-family: var(--serif); font-size: clamp(21px, 2vw, 29px); line-height: 1.42; }
.news-article-header time { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.news-article-visual { margin: 0; }
.news-article-visual img { width: 100%; height: clamp(420px, 53vw, 760px); object-fit: cover; }
.news-article-visual figcaption { padding-top: 13px; color: var(--muted); font-size: 11px; }
.news-article-body { max-width: 900px; padding-top: 78px; padding-bottom: 105px; }
.news-article-body section + section { margin-top: 60px; padding-top: 55px; border-top: 1px solid var(--line); }
.news-article-body h2 { margin-bottom: 25px; font-size: clamp(31px, 3.2vw, 45px); }
.news-article-body p { color: #405b75; font-family: var(--serif); font-size: 19px; line-height: 1.85; }
.news-article-body p + p { margin-top: 24px; }
.news-next h2 { max-width: 820px; font-size: clamp(28px, 3vw, 44px); }
.contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.contact-line { padding: 0 0 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.contact-line span { display: block; margin-bottom: 7px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-line a { font-family: var(--serif); font-size: 22px; }
.contact-line p { margin: 0; color: var(--muted); }
.form-card { padding: 42px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card label, .auth-card label, .application-card label { margin-bottom: 20px; }

.auth-layout { min-height: 100vh; display: grid; grid-template-columns: 1.15fr .85fr; }
.auth-visual { position: relative; min-height: 720px; overflow: hidden; color: white; background: var(--navy); }
.auth-visual > img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.auth-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,28,55,.92), rgba(4,28,55,.08) 75%); }
.auth-visual > div { position: absolute; z-index: 1; left: 8%; right: 8%; bottom: 9%; }
.auth-visual h1 { max-width: 650px; margin-bottom: 20px; font-size: clamp(46px, 5vw, 76px); }
.auth-visual p:last-child { max-width: 620px; color: #d3e1ee; font-size: 18px; }
.auth-form { display: grid; place-items: center; padding: 50px; background: var(--mist); }
.auth-card { width: min(470px, 100%); padding: 46px; background: white; box-shadow: var(--shadow); }
.back-link { display: inline-block; margin-bottom: 55px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.auth-card h2 { margin-bottom: 34px; font-size: 39px; }
.auth-note { margin: -16px 0 28px; color: var(--muted); line-height: 1.7; }
.account-auth-form { display: grid; }
.account-auth-form label > span { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 500; }
.auth-message { margin: 0 0 22px; padding: 14px 16px; border-left: 3px solid #16805a; color: #145e45; background: #edf8f3; font-size: 12px; line-height: 1.55; }
.auth-message-error { border-left-color: #b73535; color: #7e2626; background: #fff0f0; }
.auth-assurance { margin-top: 22px; display: grid; gap: 8px; color: var(--muted); font-size: 11px; }
.auth-assurance span::first-letter { color: var(--blue); }
.signout-link { margin-top: 18px; display: block; color: var(--muted); text-align: center; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.signout-button { width: 100%; padding: 6px; border: 0; background: transparent; }
.check { display: flex !important; grid-template-columns: none; gap: 10px; align-items: flex-start; font-size: 11px; font-weight: 500; line-height: 1.45; }
.check input { width: 17px; min-height: 17px; margin: 1px 0 0; flex: 0 0 auto; }
.form-meta { display: flex; justify-content: space-between; align-items: center; }
.form-meta .check { margin: 0; }
.demo-button { width: 100%; min-height: 46px; margin-top: 12px; border: 1px solid var(--line); color: var(--navy); background: white; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.switch-auth { margin: 26px 0 0; color: var(--muted); text-align: center; font-size: 12px; }
.switch-auth a { color: var(--blue); font-weight: 800; }

.apply-page { min-height: 100vh; background: var(--mist); }
.apply-top { height: 70px; padding: 0 max(3vw, 24px); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); background: white; }
.apply-top > div { display: flex; gap: 18px; align-items: center; }
.apply-brand { padding-right: 18px; border-right: 1px solid var(--line); font-family: var(--serif); font-size: 24px; font-weight: 800; letter-spacing: .1em; }
.apply-top span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.apply-shell { width: min(1120px, calc(100% - 48px)); margin: auto; padding: 60px 0 90px; display: grid; grid-template-columns: 250px 1fr; gap: 50px; }
.stepper { margin: 26px 0 50px; padding: 0; list-style: none; }
.stepper li { position: relative; min-height: 58px; display: flex; gap: 13px; align-items: start; color: #90a2b4; }
.stepper li::after { content: ""; position: absolute; top: 28px; bottom: 2px; left: 14px; width: 1px; background: var(--line); }
.stepper li:last-child::after { display: none; }
.stepper li span { position: relative; z-index: 1; width: 29px; height: 29px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #b8c7d4; border-radius: 50%; background: var(--mist); font-size: 10px; font-weight: 800; }
.stepper li small { margin-top: 5px; font-weight: 800; }
.stepper li.current, .stepper li.done { color: var(--blue); }
.stepper li.current span, .stepper li.done span { border-color: var(--blue); color: white; background: var(--blue); }
.support-note { padding: 22px; border-top: 2px solid var(--blue); background: white; }
.support-note p { margin: 8px 0; color: var(--muted); font-size: 11px; }
.support-note a { color: var(--blue); font-size: 11px; font-weight: 800; }
.application-card { padding: 50px 58px; background: white; box-shadow: 0 8px 35px rgba(8,41,79,.07); }
.step-label { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.application-card h1 { margin-bottom: 16px; font-size: 48px; }
.form-intro { margin-bottom: 32px; color: var(--muted); }
.application-card fieldset { min-width: 0; padding: 0; margin: 0 0 26px; border: 0; }
.application-card legend { margin-bottom: 13px; color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: .05em; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.choice { position: relative; display: block !important; margin: 0 !important; }
.choice input { position: absolute; top: 17px; left: 16px; width: 17px; min-height: 17px; }
.choice span { min-height: 120px; padding: 18px 17px 18px 46px; display: block; border: 1px solid var(--line); color: var(--navy); }
.choice input:checked + span { border: 2px solid var(--blue); background: var(--sky); }
.choice strong, .choice small { display: block; }
.choice small { margin-top: 8px; color: var(--muted); line-height: 1.45; }
.fee-note, .payment-box { margin: 28px 0; padding: 24px; display: grid; grid-template-columns: 1fr auto; gap: 4px 20px; background: var(--sky); }
.fee-note span { font-size: 12px; font-weight: 800; }
.fee-note strong, .payment-box > strong { grid-row: 1 / 3; grid-column: 2; align-self: center; font-family: var(--serif); font-size: 26px; }
.fee-note small, .payment-box small { color: var(--muted); }
.checkout-assurance { margin: -10px 0 25px; padding: 15px 18px; display: flex; gap: 12px; align-items: flex-start; border: 1px solid #cce7dc; color: #245946; background: #f2fbf7; }
.checkout-assurance > span { width: 22px; height: 22px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; color: white; background: #16805a; font-size: 11px; font-weight: 800; }
.checkout-assurance p, .payment-warning p { margin: 0; font-size: 11px; line-height: 1.55; }
.payment-warning { margin: -10px 0 25px; padding: 17px 19px; border-left: 3px solid #c87912; color: #765015; background: #fff8e8; }
.payment-warning strong { display: block; margin-bottom: 4px; font-size: 12px; }
.field-help { margin-top: -4px; color: var(--muted); font-size: 11px; }
.secondary-button { min-height: 43px; padding: 0 18px; border: 1px solid #b9cad9; color: var(--navy); background: white; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.link-button { display: inline-flex; align-items: center; }
.form-actions { margin-top: 38px; padding-top: 28px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); }
.consent-list { display: grid; gap: 20px; }
.consent-list .check { padding: 18px; margin: 0; border: 1px solid var(--line); }
.review-list { border-top: 1px solid var(--line); }
.review-list > div { padding: 17px 0; display: grid; grid-template-columns: 160px 1fr; border-bottom: 1px solid var(--line); }
.review-list span { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }

.account-page { padding: 58px 0 100px; background: var(--mist); }
.account-shell { width: min(1200px, calc(100% - 48px)); margin: auto; display: grid; grid-template-columns: 250px 1fr; gap: 34px; }
.profile-shell { width: min(1060px, calc(100% - 48px)); margin: auto; }
.profile-heading { margin-bottom: 30px; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; }
.profile-heading h1 { max-width: 720px; margin-bottom: 16px; font-size: clamp(42px, 5vw, 64px); }
.profile-heading p:last-child { max-width: 720px; color: var(--muted); }
.secure-account { min-width: 260px; padding: 20px; border-top: 3px solid var(--blue); background: white; }
.secure-account span, .secure-account strong { display: block; }
.secure-account span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.secure-account strong { margin-top: 6px; font-size: 12px; overflow-wrap: anywhere; }
.profile-form { background: white; }
.profile-form fieldset, .admin-upload-form fieldset { padding: 28px 0 6px; margin: 10px 0 22px; border: 0; border-top: 1px solid var(--line); }
.profile-form legend { padding: 0 14px 0 0; font-family: var(--serif); font-size: 24px; font-weight: 600; }
.account-nav { align-self: start; padding: 26px 0; background: white; }
.user-chip { padding: 0 22px 24px; margin-bottom: 15px; display: flex; gap: 12px; align-items: center; border-bottom: 1px solid var(--line); }
.user-chip > span { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: white; background: var(--blue); font-family: var(--serif); }
.user-chip strong, .user-chip small { display: block; }
.user-chip strong { font-size: 12px; }
.user-chip small { max-width: 150px; overflow: hidden; color: var(--muted); font-size: 9px; text-overflow: ellipsis; }
.account-nav > a, .account-nav > button { width: 100%; padding: 12px 22px; display: block; border: 0; border-left: 3px solid transparent; color: var(--muted); background: transparent; text-align: left; font-size: 12px; font-weight: 800; }
.account-nav > a.current { border-left-color: var(--blue); color: var(--blue); background: var(--sky); }
.account-nav > button { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.account-content { min-width: 0; padding: 42px; background: white; }
.account-heading { margin-bottom: 34px; display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.account-heading h1 { margin: 0 0 7px; font-size: 46px; }
.account-heading p:last-child { margin: 0; color: var(--muted); }
.status-overview { margin-bottom: 25px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.status-overview > div { min-height: 105px; padding: 23px; border-right: 1px solid var(--line); }
.status-overview > div:last-child { border: 0; }
.status-overview span, .application-row > div > span { display: block; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.status-overview strong { display: block; margin-top: 9px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.application-row { padding: 26px; display: grid; grid-template-columns: 1.5fr .8fr .7fr auto; gap: 25px; align-items: center; border: 1px solid var(--line); }
.application-row h2 { margin: 10px 0 4px; font-size: 26px; }
.application-row p { margin: 0; color: var(--muted); font-size: 12px; }
.application-row > div > strong { font-size: 12px; }
.application-primary-action { justify-self: end; }
.related-entry-actions { grid-column: 1 / -1; padding-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; border-top: 1px solid var(--line); }
.related-entry-actions .secondary-button { min-height: 38px; }
.status-pill { display: inline-flex !important; width: fit-content; padding: 5px 9px; border-radius: 20px; color: #066241 !important; background: #e5f7f0; font-size: 9px !important; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.status-pill.payment-required { color: #8a5500 !important; background: #fff1d5; }
.text-link { color: var(--blue); font-size: 11px; font-weight: 800; white-space: nowrap; }
.muted-link { color: var(--muted); }
.application-list, .document-list { display: grid; gap: 14px; }
.empty-account-card { min-height: 330px; padding: 48px; display: grid; align-content: center; justify-items: start; border: 1px solid var(--line); background: linear-gradient(135deg, white, var(--mist)); }
.empty-account-card h2 { margin-bottom: 14px; font-size: 34px; }
.empty-account-card > p:not(.eyebrow) { max-width: 610px; color: var(--muted); }
.empty-account-card .button, .empty-account-card .secondary-button { margin-top: 15px; }
.document-row { padding: 24px; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; border: 1px solid var(--line); }
.document-row h2 { margin: 0 0 6px; font-size: 24px; }
.document-row p, .document-row small { display: block; margin: 0; color: var(--muted); }
.document-row p { font-size: 12px; }
.document-row small { margin-top: 5px; font-size: 10px; }
.pdf-mark { width: 52px; height: 62px; display: grid; place-items: center; color: white; background: var(--navy); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.admin-upload-form { margin-bottom: 30px; background: var(--mist); box-shadow: none; }
.admin-upload-form > button { margin-top: 6px; }
.admin-payment-panel { margin-bottom: 34px; padding: 30px; border: 1px solid var(--line); background: #f7fbff; }
.admin-panel-heading { display: flex; justify-content: space-between; gap: 28px; align-items: flex-start; }
.admin-panel-heading h2 { margin: 3px 0 8px; font-size: 32px; }
.admin-panel-heading p:last-child { max-width: 620px; margin: 0; color: var(--muted); font-size: 12px; }
.connection-status { padding: 7px 10px; border-radius: 20px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.connection-status.connected { color: #066241; background: #e5f7f0; }
.connection-status.not-connected { color: #8a5500; background: #fff1d5; }
.payment-settings-form { margin-top: 26px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) auto; gap: 14px; align-items: end; }
.payment-settings-form label { margin: 0; color: var(--navy); font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.payment-settings-form input { margin-top: 8px; }
.payment-settings-form .button { min-height: 47px; }
.admin-payment-note { margin: 16px 0 0; color: #066241; font-size: 11px; }
.admin-payment-note.warning { color: #8a5500; }
.admin-table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.admin-table { width: 100%; min-width: 780px; border-collapse: collapse; text-align: left; }
.admin-table th, .admin-table td { padding: 17px 15px; border-bottom: 1px solid var(--line); vertical-align: top; }
.admin-table th { color: var(--muted); background: var(--mist); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.admin-table td { font-size: 12px; }
.admin-table td small { margin-top: 5px; display: block; color: var(--muted); font-size: 9px; }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-records-section { margin-top: 36px; }
.admin-records-heading { margin-bottom: 18px; }
.admin-records-heading h2 { margin: 4px 0 8px; font-size: 32px; }
.admin-records-heading p:last-child { margin: 0; color: var(--muted); font-size: 12px; }
.admin-records { display: grid; gap: 12px; }
.admin-record { border: 1px solid var(--line); background: white; }
.admin-record[open] { border-color: #a9c4da; box-shadow: 0 14px 34px rgba(17, 42, 67, .08); }
.admin-record summary { padding: 20px; display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 24px; align-items: center; cursor: pointer; list-style: none; }
.admin-record summary::-webkit-details-marker { display: none; }
.admin-record summary::after { content: "+"; margin-left: 8px; color: var(--blue); font-size: 24px; line-height: 1; }
.admin-record[open] summary::after { content: "−"; }
.admin-record summary > div { min-width: 0; }
.admin-record summary strong, .admin-record summary span, .admin-record summary small { display: block; }
.admin-record summary > div > span:not(.status-pill), .admin-record summary small { color: var(--muted); font-size: 10px; }
.admin-record summary > div > strong { margin-top: 4px; font-size: 13px; }
.admin-record summary .status-pill { margin-bottom: 6px; }
.admin-record-body { padding: 0 24px 26px; display: grid; gap: 26px; border-top: 1px solid var(--line); }
.admin-record-body section { padding-top: 24px; }
.admin-record-body h3 { margin: 0 0 15px; color: var(--blue); font-family: var(--sans); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.admin-detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px 24px; }
.admin-detail-grid span, .admin-long-field > span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.admin-detail-grid strong { display: block; font-size: 12px; overflow-wrap: anywhere; }
.admin-long-field { margin-top: 18px; padding: 16px; background: var(--mist); }
.admin-long-field p { margin: 0; font-size: 12px; line-height: 1.65; white-space: pre-wrap; }
.admin-video-list { margin: 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.admin-video-list li { padding: 13px 15px; display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 16px; border: 1px solid var(--line); align-items: center; }
.admin-video-list a { color: var(--blue); font-size: 12px; font-weight: 800; }
.admin-video-list small { color: var(--muted); font-size: 10px; overflow-wrap: anywhere; }
.admin-empty-detail { padding: 20px; color: var(--muted); border: 1px solid var(--line); font-size: 12px; }
.payment-action { min-width: 128px; white-space: nowrap; }
.payment-notice { margin-bottom: 26px; padding: 18px 21px; border-left: 3px solid #c87912; color: #765015; background: #fff8e8; }
.payment-notice p { margin: 5px 0 0; font-size: 12px; line-height: 1.55; }
.payment-result-page { min-height: 70vh; padding: 90px 24px; display: grid; place-items: center; background: var(--mist); }
.payment-result-card { width: min(680px, 100%); min-height: 430px; padding: 58px; display: grid; align-content: center; justify-items: start; background: white; box-shadow: var(--shadow); }
.payment-result-card h1 { max-width: 560px; margin: 8px 0 17px; font-size: clamp(42px, 5vw, 62px); }
.payment-result-card > p:not(.eyebrow) { max-width: 540px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.payment-result-card .button { margin-top: 28px; }
.payment-spinner { width: 42px; height: 42px; margin-bottom: 28px; border: 3px solid #dce7f0; border-top-color: var(--blue); border-radius: 50%; animation: payment-spin .8s linear infinite; }
.payment-success-mark { width: 52px; height: 52px; margin-bottom: 25px; display: grid; place-items: center; border-radius: 50%; color: white; background: #16805a; font-size: 25px; }
.payment-confirmation-details { width: 100%; margin-top: 28px; padding: 20px 0; display: grid; grid-template-columns: 150px 1fr; gap: 9px 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.payment-confirmation-details span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.payment-confirmation-details strong { font-size: 12px; }
.payment-status-actions { display: flex; gap: 12px; align-items: center; }
@keyframes payment-spin { to { transform: rotate(360deg); } }
.button:disabled, .secondary-button:disabled { cursor: not-allowed; opacity: .55; transform: none; box-shadow: none; }
.timeline-card { margin-top: 25px; padding: 28px; border: 1px solid var(--line); }
.timeline-card h2 { font-size: 27px; }
.timeline-card ol { padding: 0; margin: 0; list-style: none; }
.timeline-card li { display: grid; grid-template-columns: 18px 1fr auto; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.timeline-card li:last-child { border: 0; }
.timeline-card li > span { width: 9px; height: 9px; margin-top: 6px; border-radius: 50%; background: #42aa83; }
.timeline-card li.pending > span { background: #c2ced9; }
.timeline-card strong, .timeline-card small { display: block; }
.timeline-card small, .timeline-card time { color: var(--muted); font-size: 10px; }
.score-hero { margin-bottom: 24px; padding: 36px; display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 44px; color: white; background: var(--navy); }
.score-hero > div { border-right: 1px solid rgba(255,255,255,.22); }
.score-hero small { color: #a9c3da; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.score-hero strong { display: block; font-family: var(--serif); font-size: 60px; font-weight: 500; line-height: 1; }
.score-hero strong span { color: #9eb4c8; font-size: 20px; }
.score-hero p { margin: 10px 0 0; color: #a9d7ff; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.score-hero blockquote { margin: 0; font-family: var(--serif); font-size: 23px; line-height: 1.4; }
.score-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.score-grid article { padding: 24px; border: 1px solid var(--line); }
.score-grid span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.score-grid strong { display: block; margin: 8px 0; font-family: var(--serif); font-size: 37px; font-weight: 500; }
.score-grid strong small { color: var(--muted); font-size: 14px; }
.score-grid p { margin: 0; color: var(--muted); font-size: 11px; }
.jury-feedback { margin-top: 24px; padding: 32px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; background: var(--sky); }
.jury-feedback h2 { font-size: 28px; }
.jury-feedback > p { margin: 0; color: #405d78; }
.download-row { margin-top: 25px; display: flex; gap: 12px; }
.empty-state { min-height: 65vh; padding: 90px 24px; display: grid; place-content: center; text-align: center; }
.empty-state h1 { font-size: 52px; }
.empty-state p:not(.eyebrow) { color: var(--muted); }
.empty-account { min-height: 500px; display: grid; place-content: center; justify-items: start; }
.empty-account h1 { font-size: 48px; }
.empty-account > p:not(.eyebrow) { max-width: 560px; color: var(--muted); }

.archive-preview-section { padding-top: 72px; }
.archive-preview-heading, .archive-season-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(45px, 8vw, 120px); align-items: end; margin-bottom: 42px; }
.archive-preview-heading h2, .archive-season-heading h2 { max-width: 720px; margin: 0; font-size: clamp(37px, 4vw, 58px); }
.archive-preview-heading > div:last-child > p, .archive-season-heading > p { margin: 0 0 17px; color: var(--muted); font-size: 16px; }
.archive-preview-heading .text-link { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.archive-preview-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 280px; gap: 16px; }
.archive-preview-grid .archive-featured-card { grid-column: span 2; grid-row: span 2; }
.archive-media-card { min-width: 0; overflow: hidden; display: grid; grid-template-rows: minmax(0, 1fr) auto; border: 1px solid var(--line); background: white; }
.archive-media-card > button, .archive-video-frame { position: relative; width: 100%; height: 100%; min-height: 0; padding: 0; overflow: hidden; border: 0; background: #071c32; }
.archive-media-card > button img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, opacity .25s ease; }
.archive-media-card > button:hover img { transform: scale(1.025); opacity: .9; }
.archive-media-copy { min-height: 92px; padding: 17px 18px 19px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.archive-media-copy span { margin-bottom: 6px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.archive-media-copy strong { font-family: var(--serif); font-size: 18px; font-weight: 500; line-height: 1.25; }
.archive-media-copy small { margin-top: 5px; color: var(--muted); font-size: 12px; }
.archive-play { position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.82); border-radius: 50%; color: white; background: rgba(4,28,55,.8); font-size: 20px; transform: translate(-50%, -50%); transition: background .2s, transform .2s; }
.archive-video-facade:hover .archive-play { background: var(--blue); transform: translate(-50%, -50%) scale(1.05); }
.archive-video-frame iframe { width: 100%; height: 100%; display: block; border: 0; }
.newsroom-subnav { min-height: 66px; display: flex; align-items: stretch; gap: 36px; border-bottom: 1px solid var(--line); }
.newsroom-subnav a { padding: 23px 0 18px; border-bottom: 3px solid transparent; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.newsroom-subnav a:hover, .newsroom-subnav a.active { border-bottom-color: var(--blue); color: var(--blue); }
.archive-hero { background: linear-gradient(120deg, white 0 58%, var(--sky) 58% 100%); }
.archive-season-nav { min-height: 80px; display: flex; align-items: center; gap: 28px; border-bottom: 1px solid var(--line); }
.archive-season-nav span { margin-right: auto; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.archive-season-nav a { padding: 7px 0; border-bottom: 1px solid transparent; color: var(--navy); font-size: 14px; font-weight: 700; }
.archive-season-nav a:hover { border-bottom-color: var(--blue); color: var(--blue); }
.archive-seasons { overflow: hidden; }
.archive-season { scroll-margin-top: 24px; }
.archive-season + .archive-season { border-top: 1px solid var(--line); }
.archive-season:nth-child(even) { position: relative; isolation: isolate; }
.archive-season:nth-child(even)::before { content: ""; position: absolute; z-index: -1; inset: 0 calc((100vw - 100%) / -2); background: var(--mist); }
.archive-media-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.archive-media-grid .archive-media-card > button, .archive-media-grid .archive-video-frame { aspect-ratio: 16 / 10; }
.archive-media-grid .archive-featured-card { grid-column: span 2; }
.archive-media-grid .archive-featured-card > button, .archive-media-grid .archive-featured-card .archive-video-frame { aspect-ratio: 2 / 1; }
.archive-media-grid .archive-media-copy { min-height: 112px; }
.archive-lightbox { width: min(1180px, calc(100% - 40px)); max-width: none; max-height: calc(100vh - 40px); padding: 0; overflow: visible; border: 0; color: white; background: var(--navy-deep); box-shadow: 0 30px 90px rgba(0,0,0,.4); }
.archive-lightbox::backdrop { background: rgba(0,12,24,.86); backdrop-filter: blur(4px); }
.archive-lightbox img { width: 100%; max-height: calc(100vh - 130px); object-fit: contain; background: #020c16; }
.archive-lightbox p { min-height: 70px; margin: 0; padding: 22px 26px; color: #d4e2ee; font-family: var(--serif); font-size: 17px; }
.archive-lightbox-close { position: absolute; z-index: 2; right: 12px; top: 12px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: white; background: rgba(2,12,22,.72); font-size: 28px; line-height: 1; }

.toast { position: fixed; z-index: 1000; right: 24px; bottom: 24px; max-width: 380px; padding: 16px 20px; color: white; background: var(--navy-deep); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(15px); transition: .25s; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .main-nav { gap: 12px; }
  .main-nav a { font-size: 8px; }
  .brand { width: 64px; }
  .brand-sub { display: none; }
  .header-actions .account-link { display: none; }
  .hero-carousel { height: 620px; }
}

@media (max-width: 900px) {
  .shell { width: min(100% - 36px, 720px); }
  .section { padding: 65px 0; }
  .site-header { height: 68px; }
  .header-inner { width: calc(100% - 28px); }
  .brand img { width: 52px; height: 52px; }
  .menu-button { width: 46px; height: 46px; margin-left: auto; display: grid; place-content: center; gap: 4px; }
  .menu-button span { width: 21px; height: 2px; display: block; background: var(--navy); }
  .menu-button b { position: absolute; width: 1px; height: 1px; overflow: hidden; }
  .main-nav { position: absolute; left: 0; right: 0; top: 68px; padding: 20px 24px 30px; display: none; align-items: stretch; background: white; box-shadow: var(--shadow); }
  .main-nav.open { display: grid; grid-template-columns: 1fr 1fr; }
  .main-nav a { padding: 10px 0; font-size: 10px; }
  .main-nav a::after { display: none; }
  .main-nav .mobile-nav-only { display: block; color: var(--blue); }
  .header-actions { gap: 8px; }
  .hero-carousel { height: 600px; }
  .hero-copy { left: 50%; right: auto; top: auto; bottom: 72px; width: min(100% - 56px, 720px); transform: translateX(-50%); }
  .hero-copy h1 { font-size: 45px; }
  .hero-shade { background: linear-gradient(0deg, rgba(2,19,37,.93), rgba(2,19,37,.05) 80%); }
  .section-heading, .scholarship { grid-template-columns: 1fr; gap: 30px; }
  .portal-grid { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .journey-steps { width: 100%; gap: 15px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .editorial-grid { grid-template-columns: 1fr; gap: 45px; }
  .editorial-grid aside { display: none; }
  .regulation-document-grid { grid-template-columns: 1fr; }
  .regulation-document-card { min-height: 300px; }
  .about-intro, .about-judging, .about-beyond .shell { grid-template-columns: 1fr; gap: 44px; }
  .about-intro-copy { padding-top: 25px; }
  .about-value-grid { grid-template-columns: 1fr; }
  .about-value-grid article { min-height: 0; padding: 30px 0; }
  .about-value-grid article + article { padding-left: 0; border-top: 1px solid #b9cbd9; border-left: 0; }
  .about-value-grid h3 { margin-top: 25px; }
  .about-stage-grid { grid-template-columns: 1fr; }
  .about-stage-grid article { min-height: 0; padding: 30px 0; }
  .about-stage-grid article + article { padding-left: 0; border-top: 1px solid rgba(255,255,255,.22); border-left: 0; }
  .about-stage-grid h3 { margin-top: 22px; }
  .schedule-intro { grid-template-columns: 1fr; gap: 40px; }
  .schedule-cycle { padding: 70px 0 80px; }
  .schedule-cycle-layout { grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: 45px; }
  .schedule-cycle-layout figure { position: static; }
  .schedule-cycle-layout img { aspect-ratio: 3 / 4; }
  .schedule-stage-list article { grid-template-columns: 45px 1fr; gap: 15px; }
  .schedule-note-grid { grid-template-columns: 1fr; }
  .schedule-note-grid article, .schedule-note-grid article:nth-child(even) { padding: 32px 0; border-left: 0; }
  .schedule-note-grid article:last-child { grid-column: auto; }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .artist-profile { padding: 55px 0 80px; grid-template-columns: minmax(280px, .8fr) 1.2fr; gap: 55px; }
  .artist-back { margin-bottom: 38px; }
  .artist-body { grid-template-columns: 220px 1fr; gap: 50px; }
  .result-search { grid-template-columns: 1fr; gap: 30px; }
  .result-search form { grid-template-columns: 1fr 1fr; }
  .news-feature { grid-template-columns: 1fr; }
  .news-feature > img { height: 430px; min-height: 0; }
  .news-row { grid-template-columns: 145px minmax(0, 1fr) 44px; gap: 24px; }
  .archive-preview-heading, .archive-season-heading { grid-template-columns: 1fr; gap: 22px; }
  .archive-preview-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 270px; }
  .archive-preview-grid .archive-featured-card { grid-column: span 2; grid-row: auto; }
  .archive-media-grid { grid-template-columns: 1fr 1fr; }
  .archive-media-grid .archive-featured-card { grid-column: span 2; }
  .news-article-header { padding: 60px 0 50px; }
  .news-article-body { padding-top: 60px; padding-bottom: 80px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-visual { min-height: 440px; }
  .auth-form { padding: 40px 24px; }
  .apply-shell, .account-shell { grid-template-columns: 1fr; }
  .apply-shell > aside { display: none; }
  .profile-heading { grid-template-columns: 1fr; gap: 20px; }
  .secure-account { width: 100%; }
  .account-nav { display: grid; grid-template-columns: 1fr 1fr; }
  .account-nav .user-chip { grid-column: 1 / -1; }
  .status-overview { grid-template-columns: 1fr; }
  .status-overview > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .application-row { grid-template-columns: 1fr 1fr; }
  .application-primary-action { justify-self: start; }
  .admin-record summary { grid-template-columns: 1fr 1fr auto; }
  .admin-detail-grid { grid-template-columns: 1fr 1fr; }
  .payment-settings-form { grid-template-columns: 1fr 1fr; }
  .payment-settings-form .button { align-self: end; }
  .document-row { grid-template-columns: auto 1fr; }
  .document-row .button { grid-column: 1 / -1; }
  .score-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .header-actions .button { display: none; }
  .brand { width: auto; }
  .hero-carousel { height: calc(100svh - 68px); min-height: 560px; max-height: 720px; }
  .hero-slide > img { object-position: var(--mobile-focus, var(--desktop-focus, 50%)) center; }
  .hero-copy { bottom: 90px; width: calc(100% - 44px); }
  .hero-copy h1 { font-size: 36px; }
  .hero-date { font-size: 14px; }
  .carousel-controls { right: 18px; bottom: 20px; }
  .carousel-controls button { width: 45px; height: 45px; }
  .carousel-controls span { min-width: 62px; }
  .carousel-dots { left: 18px; bottom: 41px; }
  .carousel-dots { gap: 7px; }
  .carousel-dots button { width: 8px; height: 8px; border: 1px solid rgba(255,255,255,.88); border-radius: 50%; background: transparent; }
  .carousel-dots button.active { width: 24px; border-radius: 8px; background: white; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .portal-grid { grid-template-columns: 1fr; }
  .portal-card { display: grid; grid-template-columns: 42% 58%; }
  .portal-card img { height: 100%; aspect-ratio: auto; }
  .portal-copy { min-height: 130px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-card { min-height: 180px; }
  .section-rule > span { display: none; }
  .journey { min-height: 600px; }
  .journey > img { width: 100%; height: 45%; opacity: .45; -webkit-mask-image: linear-gradient(0deg, black, transparent); mask-image: linear-gradient(0deg, black, transparent); }
  .journey-steps { display: grid; grid-template-columns: 1fr; gap: 18px; }
  .journey-steps > i { display: none; }
  .journey-steps article { padding-left: 18px; border-left: 2px solid #a5cdec; }
  .scholarship { gap: 20px; }
  .scholarship-panel { padding: 28px; }
  .closing-cta { padding: 50px 24px; display: block; }
  .closing-cta .button { margin-top: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; }
  .social-row { align-items: flex-start; flex-direction: column; }
  .social-links { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .social-links a { margin: 0; }
  .footer-bottom { display: grid; }
  .page-hero { padding: 72px 0 65px; background: linear-gradient(135deg, white, var(--sky)); }
  .page-hero h1 { font-size: 46px; }
  .about-intro h2, .about-judging-copy h2 { font-size: 40px; }
  .about-intro-copy p { font-size: 16px; }
  .about-values, .about-process, .about-beyond { padding: 66px 0; }
  .about-values-intro { font-size: 22px; }
  .about-category-grid { grid-template-columns: 1fr; }
  .about-category-grid article { min-height: 220px; padding: 30px 24px; }
  .about-category-grid h3 { margin-top: 38px; font-size: 27px; }
  .remote-note { grid-template-columns: 1fr; gap: 12px; padding: 26px 22px; }
  .about-judging aside { padding: 30px 24px; }
  .about-beyond h2 { font-size: 42px; }
  .schedule-intro h2 { font-size: 42px; }
  .schedule-intro > div:last-child p { font-size: 16px; }
  .schedule-cycle { padding: 58px 0 65px; }
  .schedule-cycle-heading { display: block; margin-bottom: 30px; }
  .schedule-cycle-heading > p { margin-top: 12px; font-size: 18px; }
  .schedule-cycle-layout { grid-template-columns: 1fr; gap: 40px; }
  .schedule-cycle-layout img { width: min(100%, 420px); height: auto; aspect-ratio: 707 / 1000; margin: 0 auto; }
  .schedule-stage-list article { padding: 29px 0; }
  .schedule-global-visual { min-height: 390px; }
  .schedule-global-visual > div { padding-bottom: 42px; }
  .schedule-global-visual h2 { font-size: 40px; }
  .schedule-overview .section-heading { margin-bottom: 28px; }
  .schedule-notes { padding: 62px 0 70px; }
  .schedule-note-grid h3 { font-size: 22px; }
  .people-grid { grid-template-columns: 1fr; }
  .jury-directory { padding-top: 54px; }
  .person-card > p:not(.eyebrow) { min-height: 0; }
  .artist-profile { width: calc(100% - 36px); padding: 34px 0 60px; grid-template-columns: 1fr; gap: 48px; }
  .artist-portrait { width: calc(100% - 18px); }
  .artist-back { margin-bottom: 38px; }
  .artist-intro h1 { font-size: 54px; }
  .artist-body { grid-template-columns: 1fr; gap: 50px; }
  .artist-body article > p:not(.eyebrow):not(.source-note) { font-size: 16px; }
  .artist-next { padding: 50px 24px; display: block; }
  .artist-next .button { margin-top: 28px; }
  .newsroom { padding-top: 40px; }
  .news-feature { min-height: 0; margin-bottom: 60px; }
  .news-feature > img { height: 260px; }
  .news-feature-copy { padding: 30px 24px 36px; }
  .news-feature-copy h2 { font-size: 34px; }
  .news-date { margin-bottom: 22px; }
  .news-row { grid-template-columns: 1fr 44px; gap: 12px 18px; padding: 30px 0; }
  .news-row > time { grid-column: 1 / -1; }
  .news-row h2 { font-size: 27px; }
  .newsroom-subnav { width: calc(100% - 36px); gap: 22px; overflow-x: auto; }
  .newsroom-subnav a { flex: 0 0 auto; white-space: nowrap; }
  .archive-preview-section { padding-top: 52px; }
  .archive-preview-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .archive-preview-grid .archive-featured-card { grid-column: auto; }
  .archive-preview-grid .archive-media-card > button, .archive-preview-grid .archive-video-frame { height: auto; aspect-ratio: 16 / 10; }
  .archive-season-nav { min-height: 70px; gap: 22px; overflow-x: auto; }
  .archive-season-nav span { display: none; }
  .archive-season-nav a { flex: 0 0 auto; white-space: nowrap; }
  .archive-season-heading h2 { font-size: 38px; }
  .archive-media-grid { grid-template-columns: 1fr; }
  .archive-media-grid .archive-featured-card { grid-column: auto; }
  .archive-media-grid .archive-featured-card > button, .archive-media-grid .archive-featured-card .archive-video-frame { aspect-ratio: 16 / 10; }
  .archive-lightbox { width: calc(100% - 20px); }
  .news-article-header { padding: 42px 0; }
  .news-back { margin-bottom: 34px; }
  .news-article-header h1 { font-size: 42px; }
  .news-article-lead { font-size: 20px; }
  .news-article-visual img { height: 62vw; min-height: 250px; max-height: 420px; }
  .news-article-body { padding: 52px 18px 70px; }
  .news-article-body section + section { margin-top: 42px; padding-top: 38px; }
  .news-article-body p { font-size: 17px; line-height: 1.75; }
  .field-row, .choice-grid { grid-template-columns: 1fr; }
  .results-list > article { grid-template-columns: 1fr; gap: 6px; }
  .result-search form { grid-template-columns: 1fr; }
  .form-card, .auth-card, .application-card, .account-content { padding: 28px 22px; }
  .auth-visual { min-height: 360px; }
  .auth-visual h1 { font-size: 44px; }
  .auth-form { padding: 0; }
  .auth-card { width: 100%; }
  .back-link { margin-bottom: 36px; }
  .apply-top span { display: none; }
  .apply-shell { width: calc(100% - 24px); padding-top: 20px; }
  .application-card h1 { font-size: 40px; }
  .review-list > div { grid-template-columns: 1fr; gap: 5px; }
  .account-shell { width: calc(100% - 20px); }
  .profile-shell { width: calc(100% - 20px); }
  .account-nav { grid-template-columns: 1fr 1fr; }
  .account-heading { align-items: start; flex-direction: column; }
  .application-row { grid-template-columns: 1fr; }
  .application-primary-action { justify-self: stretch; }
  .application-primary-action .button { width: 100%; }
  .related-entry-actions { flex-direction: column; }
  .related-entry-actions .secondary-button { width: 100%; }
  .admin-panel-heading { flex-direction: column; }
  .payment-settings-form { grid-template-columns: 1fr; }
  .payment-result-card { min-height: 380px; padding: 38px 26px; }
  .payment-confirmation-details { grid-template-columns: 1fr; gap: 5px; }
  .payment-confirmation-details strong + span { margin-top: 10px; }
  .payment-status-actions { align-items: stretch; flex-direction: column; }
  .document-row { grid-template-columns: 1fr; }
  .document-row .button { grid-column: auto; }
  .empty-account-card { padding: 32px 24px; }
  .profile-heading h1 { font-size: 42px; }
  .admin-content { padding-left: 16px; padding-right: 16px; }
  .admin-record summary { grid-template-columns: 1fr auto; gap: 14px; }
  .admin-record summary > div:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
  .admin-record summary > div:nth-child(3) { grid-column: 1; grid-row: 3; }
  .admin-record summary::after { grid-column: 2; grid-row: 1; }
  .admin-record-body { padding-left: 18px; padding-right: 18px; }
  .admin-detail-grid { grid-template-columns: 1fr; }
  .admin-video-list li { grid-template-columns: 1fr; gap: 4px; }
  .score-hero { grid-template-columns: 1fr; }
  .score-hero > div { padding-bottom: 25px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .jury-feedback { grid-template-columns: 1fr; gap: 5px; }
  .download-row { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-track, .people-grid img { transition: none; }
}
