/* Hallmark · pre-emit critique: P5 H5 E4 S5 R5 V5
 * studied user reference: Design_V2_Award.png · system: design.md
 * Custom electric-blue/magenta photographic marquee, spacious editorial chapters.
 * User-selected gradients, translucent panels and handwritten accents are intentional.
 */
@import url("/assets/fonts.css");
@import url("/tokens.css");
@font-face {
  font-family: Caveat;
  src: url("/assets/caveat.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  overflow-x: clip;
}
body {
  margin: 0;
  overflow-x: clip;
  color: var(--color-ink);
  background: var(--color-paper);
  font: 400 16px/1.55 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow-y: hidden;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button {
  font: inherit;
}
button,
a,
summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: var(--color-transparent);
}
button,
summary {
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
h1,
h2,
h3 {
  min-width: 0;
  overflow-wrap: anywhere;
  font-style: normal;
}
h2 {
  font: 400 var(--text-heading) / 1.04 var(--font-display);
  letter-spacing: -0.045em;
}
h3 {
  font: 800 15px/1.2 var(--font-body);
  letter-spacing: -0.025em;
}
p + p {
  margin-top: 1rem;
}
::selection {
  background: var(--color-pink);
  color: var(--color-white);
}
.wrap {
  width: min(100%, 1600px);
  margin-inline: auto;
  padding-inline: var(--space-gutter);
}
.symbol {
  display: block;
  width: 48px;
  height: 48px;
  fill: currentColor;
  color: var(--color-accent);
  flex-shrink: 0;
}
.eyebrow {
  display: block;
  color: var(--color-violet);
  font-size: 10px;
  letter-spacing: 0.21em;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 3px;
  background: var(--color-pink);
  margin-right: 13px;
  transform: translateY(-1px);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 12px 25px;
  min-height: 48px;
  border: 1px solid var(--color-pink);
  border-radius: var(--radius-button);
  background: linear-gradient(
    160deg,
    var(--color-button-top),
    var(--color-button-bottom)
  );
  box-shadow:
    inset 0 2px 3px var(--color-lilac),
    0 5px 22px var(--color-glow);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform var(--dur-fast),
    box-shadow var(--dur-fast),
    background var(--dur-fast);
}
.button:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 2px 3px var(--color-lilac),
    0 7px 30px var(--color-glow);
}
.button:active {
  transform: translateY(1px);
}
.button > span:last-child {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.button-outline {
  background: var(--color-transparent);
  border-color: var(--color-white);
  box-shadow: inset 0 0 0 1px var(--color-ice);
  font-weight: 600;
}
.button-outline:hover {
  background: var(--color-violet);
}
.button-small {
  font-size: 12px;
  padding: 10px 19px;
  min-height: 38px;
  gap: 14px;
  box-shadow: inset 0 1px 3px var(--color-lilac);
  background: linear-gradient(
    115deg,
    var(--color-button-bottom),
    var(--color-violet)
  );
}
.micro-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  gap: 12px;
  color: var(--color-violet);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.micro-link:hover {
  text-decoration: underline;
}
.skip {
  position: absolute;
  z-index: 100;
  top: -100px;
  left: 20px;
  background: var(--color-white);
  color: var(--color-ink);
  padding: 14px;
}
.skip:focus {
  top: 12px;
}
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: var(--color-white);
}
.header-inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-mark {
  width: 48px;
  height: 60px;
}
.brand-name {
  display: block;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.17;
}
.brand-tag {
  display: none;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.desktop-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
}
.desktop-nav a::after {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-pink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast);
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.header-award {
  font-size: 12px;
  min-height: 44px;
  padding: 11px 24px;
}
.mobile-nav {
  display: none;
  position: relative;
}
.mobile-nav summary {
  list-style: none;
  border: 1px solid var(--color-ice);
  border-radius: 25px;
  padding: 11px 16px;
  white-space: nowrap;
  font-size: 13px;
}
.mobile-nav summary::-webkit-details-marker {
  display: none;
}
.mobile-links {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 250px;
  padding: 14px 22px;
  background: var(--color-deep);
  border: 1px solid var(--color-violet);
  border-radius: 14px;
  box-shadow: 0 15px 35px var(--color-shadow);
}
.mobile-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  text-decoration: none;
  font-size: 14px;
}
.mobile-links a[aria-current="page"] {
  color: var(--color-pink);
}
.hero {
  height: min(46.2vw, 740px);
  min-height: 550px;
  position: relative;
  isolation: isolate;
  color: var(--color-white);
  background: var(--color-blue);
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: clip;
}
.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.hero-copy {
  padding-top: clamp(120px, 8.5vw, 155px);
  position: relative;
}
.hero-kicker {
  display: block;
  letter-spacing: 0.43em;
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 10px;
}
.hero h1 {
  font: 800 clamp(54px, 5.7vw, 92px) / 0.98 var(--font-body);
  letter-spacing: -0.07em;
  margin-left: -3px;
}
.hero-line {
  white-space: nowrap;
}
.hero h1 b {
  color: var(--color-pink);
  font-weight: 800;
  letter-spacing: -0.075em;
  margin-left: -0.04em;
}
.hero-intro {
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.4;
  letter-spacing: 0.005em;
  margin-top: 15px;
  max-width: 43ch;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.hero-actions .button {
  min-height: 54px;
}
.play {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-pink);
  border-radius: 50%;
  font-size: 20px;
}
.hero-actions .button-outline {
  padding: 10px 22px 10px 10px;
  gap: 12px;
}
.hero-values {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}
.hero-values > div {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-right: 19px;
  border-right: 1px solid var(--color-violet);
}
.hero-values > div:last-child {
  border: 0;
}
.hero-values .symbol {
  width: 42px;
  height: 42px;
  color: var(--color-pink);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}
.hero-values span {
  font-size: 12px;
  line-height: 1.4;
}
.hero-signature {
  position: absolute;
  top: 17%;
  text-align: center;
}
.hero-signature > span {
  font-family: var(--font-script);
  font-size: 36px;
  line-height: 1;
  display: block;
  transform: rotate(-12deg);
}
.hero-signature small {
  display: block;
  font-size: 10px;
  line-height: 1.3;
  margin-top: 16px;
}
.marc-signature {
  left: 46%;
}
.jp-signature {
  left: 85%;
  top: 41%;
  color: var(--color-deep);
}
.jp-signature > span {
  font-size: 30px;
}
.hero-motto {
  position: absolute;
  right: 3%;
  top: 15%;
  font: 34px/1.05 var(--font-script);
  transform: rotate(-12deg);
  text-align: center;
}
.hero-motto::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-white);
  margin-top: 9px;
}
.hero-location {
  position: absolute;
  right: 3.5%;
  bottom: 13%;
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1.6;
  color: var(--color-ice);
}
.hero-location span {
  display: block;
  border-top: 1px solid var(--color-ice);
  margin-top: 12px;
  padding-top: 12px;
}
.content-shell {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  padding: 0 30px 14px;
  margin: -54px auto 0;
  display: grid;
  gap: 10px;
}
.home main {
  background: linear-gradient(
    140deg,
    var(--color-lilac),
    var(--color-paper) 45%
  );
}
.panel {
  background: var(--color-panel);
  border: 1px solid var(--color-white);
  border-radius: 18px;
  padding: 16px 20px;
  min-width: 0;
}
.panel p {
  color: var(--color-light-muted);
  font-size: 14px;
  line-height: 1.35;
}
.panel h2 {
  margin-bottom: 12px;
}
.panel .button {
  margin-top: 12px;
}
.winner-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr) minmax(0, 0.53fr);
  gap: 12px;
  align-items: center;
  padding: 24px 20px;
  background: linear-gradient(120deg, var(--color-panel), var(--color-lilac));
  min-height: 202px;
  box-shadow: 0 -2px 18px var(--color-glow);
}
.winner-identity {
  display: flex;
  align-items: center;
  gap: 18px;
}
.award-emblem {
  height: 145px;
  width: 140px;
  flex-shrink: 0;
  border: 3px double var(--color-pink);
  border-top-color: var(--color-transparent);
  border-bottom-color: var(--color-transparent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--color-accent);
}
.award-emblem::before,
.award-emblem::after {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  width: 15px;
  border: 5px dashed var(--color-pink);
  border-top: 0;
  border-bottom: 0;
}
.award-emblem::before {
  left: 7px;
  border-right: 0;
  border-radius: 100% 0 0 100%;
  transform: rotate(-11deg);
}
.award-emblem::after {
  right: 7px;
  border-left: 0;
  border-radius: 0 100% 100% 0;
  transform: rotate(11deg);
}
.award-emblem .symbol {
  width: 75px;
  height: 75px;
  filter: drop-shadow(0 3px 7px var(--color-glow));
}
.award-emblem > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-top: 7px;
}
.winner-identity .eyebrow::before {
  display: none;
}
.winner-identity h2 {
  font-size: clamp(34px, 3.6vw, 55px);
  white-space: nowrap;
  letter-spacing: -0.05em;
  margin-bottom: 3px;
}
.winner-subtitle {
  font-size: 12px !important;
  color: var(--color-ink) !important;
}
.winner-description {
  font-size: 12px !important;
  margin-top: 9px;
  line-height: 1.4 !important;
}
.winner-identity .micro-link {
  font-size: 8px;
  min-height: 29px;
}
.winner-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 24px 6px 16px;
  background: var(--color-panel);
  border: 1px solid var(--color-white);
  border-radius: 16px;
  min-height: 158px;
}
.winner-metrics > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--color-rule);
  text-align: center;
  gap: 4px;
}
.winner-metrics > div:last-child {
  border: 0;
}
.winner-metrics .symbol {
  width: 48px;
  height: 48px;
  margin-bottom: 3px;
  filter: drop-shadow(0 3px 5px var(--color-glow));
}
.winner-metrics strong {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.winner-metrics strong.small-stat {
  font-size: 15px;
  margin-top: 4px;
}
.winner-metrics > div > span {
  font-size: 12px;
  color: var(--color-ink-2);
}
.rating-denominator {
  font-size: 12px;
  font-weight: 500;
}
.presenter {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  min-height: 158px;
  padding: 16px;
  background: var(--color-panel);
  border-radius: 16px;
  border: 1px solid var(--color-white);
  gap: 8px;
}
.presenter small,
.presenter strong,
.presenter div > span {
  display: block;
}
.presenter small {
  font-size: 11px;
  color: var(--color-ink-2);
}
.presenter strong {
  font-size: 18px;
  white-space: nowrap;
  margin: 3px 0;
}
.presenter div > span {
  font-size: 9px;
  white-space: nowrap;
  color: var(--color-ink-2);
}
.jp-portrait {
  width: 82px;
  height: 108px;
  flex-shrink: 0;
  border: 3px solid var(--color-white);
  border-radius: 50%;
  background: url("/assets/hero-v2.webp") 81% 36%/740% auto;
}
.round-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-violet);
  background: var(--color-white);
  border-radius: 50%;
  color: var(--color-violet);
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}
.presenter > .round-arrow {
  position: absolute;
  right: 12px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  font-size: 20px;
}
.presenter:hover .round-arrow {
  background: var(--color-violet);
  color: var(--color-white);
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 10px;
}
.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 16px;
  padding: 14px 14px 14px 24px;
}
.city-card {
  position: relative;
  display: block;
  min-height: 225px;
  overflow: clip;
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-white);
}
.city-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 70% center;
}
.city-card > span {
  position: absolute;
  top: 18%;
  left: 10%;
  font: 34px/1 var(--font-script);
  transform: rotate(-14deg);
}
.city-card > small {
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: 0.2em;
}
.why-panel {
  padding: 14px 16px;
}
.why-panel h2 {
  margin-bottom: 10px;
}
.feature-grid {
  display: grid;
  gap: 8px;
}
.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature {
  min-width: 0;
  background: linear-gradient(130deg, var(--color-paper-2), var(--color-paper));
  border-radius: 10px;
  padding: 15px 12px;
}
.feature .symbol {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
}
.feature h3 {
  margin-bottom: 10px;
}
.feature p {
  font-size: 12px;
  line-height: 1.4;
}
.why-panel .feature {
  padding: 12px 12px 16px;
}
.why-panel .feature .symbol {
  margin-left: 0;
}
.conference-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.5fr) minmax(0, 1.05fr);
  gap: 16px;
  align-items: stretch;
  padding: 16px 10px 12px 24px;
}
.panel-intro {
  min-width: 0;
  align-self: center;
}
.conference-panel .feature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.conference-panel .feature h3 {
  min-height: 36px;
}
.conference-panel .feature .symbol {
  margin-bottom: 15px;
  width: 46px;
  height: 46px;
}
.conference-photo {
  border: 0;
  position: relative;
  overflow: clip;
  background: var(--color-blue);
  border-radius: 12px;
  padding: 0;
  min-height: 235px;
}
.conference-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 300ms;
}
.conference-photo:hover img {
  transform: scale(1.035);
}
.photo-label {
  position: absolute;
  inset: auto 0 0;
  color: var(--color-white);
  background: linear-gradient(
    0deg,
    var(--color-deep),
    var(--color-transparent)
  );
  padding: 40px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-align: left;
}
.photo-label .symbol {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}
.recognition-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 2.4fr);
  gap: 24px;
  padding: 14px 18px 14px 24px;
}
.recognition-panel .feature {
  text-align: center;
  padding-block: 13px;
}
.recognition-panel .feature .symbol {
  width: 36px;
  height: 36px;
  margin-bottom: 9px;
}
.recognition-panel h2 {
  font-size: clamp(26px, 2.3vw, 36px);
}
.recognition-panel .feature h3 {
  font-size: 14px;
}
.recognition-panel .feature p {
  max-width: 20ch;
  margin: auto;
}
.moments-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.75fr);
  gap: 20px;
  padding: 10px 18px 10px 24px;
}
.moments-panel h2,
.legacy-panel h2 {
  font-size: clamp(26px, 2.4vw, 38px);
  margin-bottom: 8px;
}
.moments-panel p,
.legacy-panel p {
  font-size: 12px;
}
.moment-photos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  position: relative;
  align-items: stretch;
}
.moment-photos > button:not(.gallery-next) {
  border: 0;
  padding: 0;
  background: var(--color-blue);
  border-radius: 7px;
  overflow: clip;
  aspect-ratio: 1.65;
}
.moment-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transition: opacity 180ms;
}
.moment-photos button:hover img {
  opacity: 0.78;
}
.moment-photos .gallery-next {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 3px 15px var(--color-shadow);
}
.legacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr) minmax(0, 1.45fr) auto;
  gap: 20px;
  align-items: center;
  padding: 12px 22px 12px 24px;
}
.legacy-winner {
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(115deg, var(--color-paper), var(--color-lilac));
  padding: 14px;
  overflow: clip;
  min-height: 115px;
}
.legacy-winner > div {
  position: relative;
  z-index: 1;
}
.legacy-winner strong {
  display: block;
  font-size: 21px;
  color: var(--color-violet);
  line-height: 1;
  margin-bottom: 10px;
}
.legacy-winner span {
  display: block;
  font-size: 12px;
  font-weight: 800;
}
.legacy-winner small {
  display: block;
  font-size: 10px;
}
.legacy-winner img {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  mask-image: linear-gradient(
    90deg,
    var(--color-transparent),
    var(--color-ink) 50%
  );
}
.nominee-preview {
  border-left: 1px solid var(--color-rule);
  padding: 8px 20px;
}
.nominee-preview .eyebrow {
  font-size: 9px;
  letter-spacing: 0.15em;
}
.nominee-preview .eyebrow::before {
  display: none;
}
.nominee-preview h3 {
  font: 400 25px/1.1 var(--font-display);
  margin-bottom: 8px;
}
.purple-outline {
  color: var(--color-violet);
  border-color: var(--color-violet);
  box-shadow: none;
  font-size: 12px;
  min-height: 40px;
  padding: 10px 20px;
}
.purple-outline:hover {
  color: var(--color-white);
}
.legacy-panel .button {
  margin: 0;
}
.home-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 2.7fr);
  gap: 20px;
  padding: 10px 12px 10px 24px;
}
.home-faq h2 {
  font-size: 32px;
  margin-bottom: 6px;
}
.home-faq .panel-intro p {
  font-size: 11px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.faq-grid details {
  background: var(--color-paper-2);
  border-radius: 9px;
  padding: 12px 14px;
  align-self: start;
}
.faq-grid summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}
.faq-grid summary::-webkit-details-marker {
  display: none;
}
.faq-grid summary > span {
  font-size: 22px;
  color: var(--color-accent);
  font-weight: 400;
}
.faq-grid details[open] summary > span {
  transform: rotate(45deg);
}
.faq-grid details p {
  font-size: 12px;
  line-height: 1.5;
  padding-top: 10px;
  padding-bottom: 8px;
}
.closing-banner {
  background: var(--color-blue) url("/assets/neon-city-v2.webp") center 66% /
    cover;
  color: var(--color-white);
  position: relative;
  isolation: isolate;
  min-height: 190px;
  display: grid;
  align-items: center;
}
.closing-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--color-transparent),
    var(--color-blue) 35%,
    var(--color-transparent)
  );
  opacity: 0.75;
  z-index: -1;
}
.closing-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: center;
  padding-block: 45px;
}
.closing-script {
  font: 36px/1.05 var(--font-script);
  transform: rotate(-12deg);
  padding-right: 12px;
}
.closing-banner h2 {
  font: 800 clamp(25px, 2.5vw, 40px) / 1.1 var(--font-body);
  letter-spacing: -0.055em;
  margin-bottom: 9px;
}
.closing-inner > div > p {
  font-size: 13px;
  line-height: 1.4;
}
.closing-inner .button {
  font-size: 12px;
  min-height: 44px;
  padding: 11px 20px;
  gap: 12px;
}
.footer {
  background: var(--color-deep);
  color: var(--color-white);
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.footer .brand-mark {
  width: 34px;
  height: 43px;
}
.footer .brand-name {
  font-size: 12px;
}
.footer .brand-tag {
  display: block;
  font-size: 5px;
  margin-top: 5px;
  letter-spacing: 0.13em;
}
.footer .brand {
  gap: 12px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 10px;
  white-space: nowrap;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--color-pink);
}
.footer-main > p {
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-left: 1px solid var(--color-violet);
  padding-left: 30px;
}
.footer-main > p span {
  font-size: 8px;
  color: var(--color-ice);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--color-violet);
  padding-block: 10px;
  color: var(--color-ice);
}
.footer-bottom p {
  font-size: 9px;
  margin: 0;
}
/* The same design language continues through the four editorial pages. */
.interior .site-header {
  position: relative;
  background: var(--color-blue);
}
.sub-hero {
  padding: 20px 0 60px;
  color: var(--color-white);
  background: var(--color-blue) url("/assets/neon-city-v2.webp") center 45% /
    cover;
  position: relative;
  isolation: isolate;
}
.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--color-blue) 20%,
    var(--color-transparent)
  );
  z-index: -1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  margin-bottom: 20px;
}
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
}
.sub-hero .eyebrow {
  color: var(--color-white);
}
.sub-hero h1 {
  font: 800 clamp(42px, 5.8vw, 80px) / 1.02 var(--font-body);
  letter-spacing: -0.065em;
  max-width: 20ch;
  margin: 18px 0 24px;
}
.sub-hero .lede {
  max-width: 58ch;
  font-size: 18px;
  line-height: 1.6;
}
.gold {
  color: var(--color-pink);
}
.section {
  padding-block: var(--space-section);
}
.light {
  background: var(--color-paper);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: 7%;
  align-items: start;
}
.article-body {
  max-width: 800px;
  background: var(--color-white);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 45px);
}
.article-body h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 20px;
  max-width: 26ch;
}
.article-body h2:not(:first-child) {
  margin-top: 42px;
}
.article-body h3 {
  font: 400 27px/1.15 var(--font-display);
  margin: 28px 0 14px;
}
.article-body p,
.article-body li {
  color: var(--color-light-muted);
  font-size: 16px;
  line-height: 1.75;
}
.article-body a {
  color: var(--color-accent);
}
.article-body figure {
  margin: 30px 0;
}
.article-body figure img {
  max-height: 620px;
  width: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 12px;
}
.article-body figcaption {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.5;
  margin-top: 10px;
}
.article-body li + li {
  margin-top: 12px;
}
.article-body ul {
  padding-left: 22px;
}
.article-aside {
  position: sticky;
  top: 25px;
  background: var(--color-white);
  border-radius: 14px;
  padding: 24px;
}
.article-aside a {
  display: flex;
  min-height: 48px;
  align-items: center;
  font-size: 13px;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--color-rule);
}
.article-aside a:hover {
  color: var(--color-accent);
}
.article-aside .eyebrow {
  font-size: 9px;
}
.fact-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-rule);
  font-size: 14px;
}
.fact-list dt {
  color: var(--color-muted);
}
.fact-list dd {
  margin: 0;
  font-weight: 700;
}
.nominee-note {
  border-left: 3px solid var(--color-accent);
  background: var(--color-paper-2);
  padding: 18px 22px;
  margin: 25px 0;
}
.nominee-note strong {
  font-size: 12px;
  color: var(--color-accent);
  display: block;
  margin-bottom: 10px;
}
.nominee-note p {
  font-size: 14px;
}
.faq details {
  border-top: 1px solid var(--color-rule);
}
.faq summary {
  min-height: 64px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 700;
}
.faq details p {
  padding-bottom: 24px;
  font-size: 14px;
}
.winner-feature {
  background: var(--color-light);
}
.winner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 7%;
  align-items: center;
}
.winner-photo {
  position: relative;
  max-width: 450px;
}
.winner-photo img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
}
.winner-photo figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  background: var(--color-white);
  border-radius: 20px;
  padding: 8px 14px;
}
.winner-copy h2 {
  font-size: clamp(38px, 4vw, 60px);
  margin: 15px 0 24px;
}
.winner-copy p {
  color: var(--color-light-muted);
  line-height: 1.7;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  background: var(--color-white);
  padding: 22px;
  border-radius: 14px;
  margin: 28px 0;
}
.stats dt {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--color-accent);
}
.stats dt small {
  font-size: 15px;
}
.stats dd {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--color-muted);
}
.winner-source {
  display: block;
  font-size: 12px;
  margin-top: 20px;
  color: var(--color-muted);
}
.conference-band {
  position: relative;
  isolation: isolate;
  color: var(--color-white);
  min-height: 420px;
  display: grid;
  align-items: center;
}
.conference-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.conference-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--color-scrim),
    var(--color-transparent)
  );
  z-index: -1;
}
.conference-band h2 {
  font-size: clamp(40px, 4.5vw, 66px);
  margin: 18px 0;
}
.conference-band .eyebrow {
  color: var(--color-pink);
}
.conference-band p {
  max-width: 45ch;
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 14px;
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
}
.gallery-dialog {
  width: min(1100px, calc(100% - 24px));
  max-height: 94dvh;
  border: 1px solid var(--color-violet);
  background: var(--color-deep);
  color: var(--color-white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 15px 80px var(--color-shadow);
}
.gallery-dialog::backdrop {
  background: var(--color-scrim);
  backdrop-filter: blur(8px);
}
.gallery-head,
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.gallery-head {
  margin-bottom: 16px;
}
.gallery-head h2 {
  font: 700 16px var(--font-body);
  letter-spacing: 0;
}
.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-violet);
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 24px;
}
.icon-button:hover {
  background: var(--color-accent);
}
.gallery-dialog figure img {
  width: 100%;
  height: min(63dvh, 650px);
  object-fit: contain;
}
.gallery-dialog figcaption {
  padding-block: 16px;
  font-size: 13px;
}
.gallery-controls p {
  font-size: 12px;
}
.gallery-controls > div {
  display: flex;
  gap: 10px;
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (min-width: 1600px) {
  .hero-background img {
    object-fit: cover;
  }
  .content-shell {
    margin-top: -60px;
  }
  .hero h1 {
    font-size: 92px;
  }
  .hero-copy {
    padding-top: 150px;
  }
}
@media (max-width: 1250px) and (min-width: 901px) {
  .header-inner {
    gap: 22px;
    height: 85px;
  }
  .brand-name {
    font-size: 16px;
  }
  .brand-mark {
    width: 39px;
    height: 48px;
  }
  .desktop-nav {
    gap: 24px;
  }
  .desktop-nav a {
    font-size: 11px;
  }
  .header-award {
    padding: 10px 15px;
    font-size: 11px;
  }
  .hero {
    min-height: 495px;
  }
  .hero-copy {
    padding-top: 113px;
  }
  .hero h1 {
    font-size: 5.6vw;
  }
  .hero-kicker {
    font-size: 8px;
  }
  .hero-intro {
    font-size: 16px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding-inline: 20px;
    min-height: 46px;
  }
  .hero-values {
    margin-top: 30px;
  }
  .hero-signature > span {
    font-size: 28px;
  }
  .hero-signature small {
    font-size: 8px;
  }
  .hero-motto {
    font-size: 28px;
  }
  .hero-location {
    font-size: 9px;
  }
  .content-shell {
    padding-inline: 22px;
    gap: 8px;
    margin-top: -40px;
  }
  .winner-strip {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr) minmax(0, 0.53fr);
    padding: 20px 16px;
    gap: 9px;
    min-height: 165px;
  }
  .award-emblem {
    width: 100px;
    height: 120px;
  }
  .award-emblem .symbol {
    width: 58px;
    height: 58px;
  }
  .winner-identity {
    gap: 12px;
  }
  .winner-identity h2 {
    font-size: 36px;
  }
  .winner-subtitle,
  .winner-description {
    font-size: 10px !important;
  }
  .winner-metrics {
    min-height: 135px;
    padding: 15px 4px;
  }
  .winner-metrics .symbol {
    width: 40px;
    height: 40px;
  }
  .winner-metrics strong {
    font-size: 21px;
  }
  .winner-metrics strong.small-stat {
    font-size: 12px;
  }
  .winner-metrics > div > span {
    font-size: 10px;
  }
  .presenter {
    padding: 12px;
    min-height: 135px;
  }
  .jp-portrait {
    width: 65px;
    height: 87px;
  }
  .presenter strong {
    font-size: 16px;
  }
  .presenter div > span {
    font-size: 7px;
  }
  .presenter small {
    font-size: 9px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 0.18em;
  }
  .eyebrow::before {
    width: 25px;
    margin-right: 10px;
  }
  .panel p {
    font-size: 12px;
  }
  .panel h2 {
    font-size: 28px;
    margin-bottom: 9px;
  }
  .about-panel {
    padding: 12px 12px 12px 20px;
    gap: 12px;
  }
  .city-card {
    min-height: 208px;
  }
  .city-card > span {
    font-size: 29px;
  }
  .button-small {
    font-size: 10px;
    padding: 9px 13px;
    min-height: 34px;
    gap: 10px;
  }
  .feature h3 {
    font-size: 12px;
  }
  .feature p {
    font-size: 10px;
  }
  .feature .symbol {
    width: 34px;
    height: 34px;
  }
  .feature {
    padding: 12px 9px;
  }
  .why-panel .feature {
    padding: 10px 9px;
  }
  .conference-panel {
    gap: 12px;
    padding: 12px 10px 12px 20px;
  }
  .conference-photo {
    min-height: 210px;
  }
  .conference-panel .feature .symbol {
    width: 38px;
    height: 38px;
  }
  .recognition-panel {
    gap: 18px;
    padding: 12px 16px 12px 20px;
  }
  .recognition-panel .feature h3 {
    font-size: 12px;
  }
  .recognition-panel h2 {
    font-size: 26px;
  }
  .moments-panel,
  .legacy-panel,
  .home-faq {
    padding-left: 20px;
    gap: 14px;
  }
  .legacy-panel {
    grid-template-columns:
      minmax(0, 1fr) minmax(0, 0.85fr) minmax(0, 1.3fr)
      auto;
  }
  .nominee-preview {
    padding: 8px 12px;
  }
  .nominee-preview h3 {
    font-size: 20px;
  }
  .nominee-preview .eyebrow {
    font-size: 8px;
  }
  .legacy-panel .button {
    font-size: 10px;
    padding-inline: 14px;
  }
  .faq-grid summary {
    font-size: 11px;
  }
  .faq-grid details p {
    font-size: 11px;
  }
  .closing-inner {
    gap: 20px;
    padding-inline: 30px;
  }
  .closing-script {
    font-size: 30px;
  }
  .closing-inner .button {
    font-size: 10px;
    padding-inline: 16px;
  }
  .closing-inner > div > p {
    font-size: 11px;
  }
  .footer-main {
    gap: 20px;
  }
  .footer-links {
    gap: 16px;
  }
  .footer-links a {
    font-size: 9px;
  }
}
@media (max-width: 900px) {
  .desktop-nav,
  .header-award {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .header-inner {
    height: 86px;
    gap: 20px;
  }
  .brand-mark {
    width: 36px;
    height: 46px;
  }
  .brand-name {
    font-size: 15px;
  }
  .brand {
    gap: 12px;
  }
  .hero {
    height: auto;
    min-height: 0;
    padding-bottom: 355px;
  }
  .hero-background {
    top: auto;
    height: 380px;
  }
  .hero-background img {
    object-position: 80% bottom;
    object-fit: cover;
  }
  .hero::after {
    position: absolute;
    content: "";
    inset: 0 0 325px;
    z-index: -1;
    background: linear-gradient(
      180deg,
      var(--color-blue) 90%,
      var(--color-transparent)
    );
  }
  .hero-copy {
    padding-top: 110px;
    padding-bottom: 30px;
  }
  .hero h1 {
    font-size: clamp(45px, 7.7vw, 67px);
    max-width: 100%;
  }
  .hero-kicker {
    font-size: 9px;
    letter-spacing: 0.3em;
  }
  .hero-intro {
    font-size: 17px;
    max-width: 42ch;
    margin-top: 18px;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .hero-actions .button {
    font-size: 13px;
    min-height: 48px;
  }
  .hero-values {
    margin-top: 27px;
    gap: 16px;
  }
  .hero-values .symbol {
    width: 34px;
    height: 34px;
  }
  .hero-values > div {
    gap: 12px;
    padding-right: 16px;
  }
  .hero-values span {
    font-size: 11px;
  }
  .hero-signature,
  .hero-motto,
  .hero-location {
    display: none;
  }
  .content-shell {
    padding-inline: 18px;
    margin-top: -25px;
    gap: 12px;
  }
  .winner-strip {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.43fr);
    padding: 22px;
    gap: 16px;
  }
  .winner-identity {
    grid-column: 1/-1;
    justify-content: center;
  }
  .award-emblem {
    width: 105px;
    height: 120px;
  }
  .winner-identity h2 {
    font-size: 44px;
  }
  .winner-metrics {
    min-height: 140px;
  }
  .presenter {
    min-height: 140px;
  }
  .presenter strong {
    font-size: 16px;
  }
  .jp-portrait {
    width: 70px;
    height: 95px;
  }
  .presenter div > span {
    font-size: 8px;
  }
  .intro-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .panel {
    border-radius: 16px;
  }
  .about-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 24px;
    padding: 24px;
  }
  .panel h2 {
    font-size: 34px;
  }
  .panel p {
    font-size: 14px;
    line-height: 1.5;
  }
  .eyebrow {
    font-size: 9px;
  }
  .city-card {
    min-height: 260px;
  }
  .why-panel {
    padding: 24px;
  }
  .feature-grid {
    gap: 10px;
  }
  .feature h3 {
    font-size: 14px;
  }
  .feature p {
    font-size: 12px;
  }
  .why-panel .feature {
    padding: 18px 14px;
  }
  .conference-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 24px;
    gap: 20px;
  }
  .conference-panel .feature-grid {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .conference-photo {
    min-height: 250px;
  }
  .conference-panel .feature {
    padding: 22px 18px;
  }
  .recognition-panel {
    grid-template-columns: minmax(0, 1fr);
    padding: 24px;
    gap: 16px;
  }
  .recognition-panel .feature {
    padding: 18px 14px;
  }
  .recognition-panel .feature p {
    font-size: 12px;
  }
  .moments-panel {
    grid-template-columns: minmax(0, 1fr);
    padding: 22px;
    gap: 15px;
  }
  .moment-photos > button:not(.gallery-next) {
    aspect-ratio: 1.2;
  }
  .legacy-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 24px;
    gap: 18px;
  }
  .legacy-panel .panel-intro {
    grid-column: 1/-1;
  }
  .legacy-winner {
    min-height: 145px;
  }
  .nominee-preview {
    padding-right: 0;
  }
  .legacy-panel > .button {
    grid-column: 1/-1;
    justify-self: start;
  }
  .home-faq {
    grid-template-columns: minmax(0, 1fr);
    padding: 24px;
  }
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .faq-grid summary {
    font-size: 14px;
    min-height: 42px;
  }
  .faq-grid details p {
    font-size: 14px;
  }
  .home-faq .panel-intro p {
    font-size: 13px;
  }
  .closing-inner {
    flex-wrap: wrap;
    justify-content: start;
    padding-block: 40px;
    gap: 22px;
  }
  .closing-script {
    display: none;
  }
  .closing-inner > div {
    width: 100%;
  }
  .closing-banner h2 {
    font-size: 34px;
  }
  .closing-inner .button {
    font-size: 12px;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-main > p {
    display: none;
  }
  .footer-links {
    gap: 8px 20px;
  }
  .footer-links a {
    font-size: 11px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
  .footer-bottom p {
    font-size: 10px;
  }
  .article-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .article-aside {
    position: static;
    grid-row: 1;
    display: flex;
    gap: 5px 20px;
    flex-wrap: wrap;
    padding: 18px 22px;
  }
  .article-aside .eyebrow {
    width: 100%;
    margin-bottom: 0;
  }
  .article-aside a {
    font-size: 12px;
    min-height: 40px;
  }
  .article-body {
    max-width: none;
  }
  .sub-hero h1 {
    font-size: clamp(40px, 7vw, 65px);
  }
  .sub-hero .lede {
    font-size: 16px;
  }
  .winner-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .winner-photo {
    margin: auto;
    width: min(100%, 430px);
  }
  .winner-copy h2 {
    font-size: 42px;
  }
  .conference-band {
    min-height: 360px;
  }
}
@media (max-width: 540px) {
  .header-inner {
    height: 78px;
  }
  .wrap {
    padding-inline: 22px;
  }
  .brand-mark {
    width: 30px;
    height: 40px;
  }
  .brand-name {
    font-size: 13px;
    letter-spacing: 0.07em;
  }
  .mobile-nav summary {
    font-size: 12px;
    padding: 10px 13px;
  }
  .hero {
    padding-bottom: 300px;
  }
  .hero-background {
    height: 330px;
  }
  .hero-background img {
    object-position: 76% bottom;
  }
  .hero::after {
    bottom: 285px;
  }
  .hero-copy {
    padding-top: 99px;
    padding-bottom: 22px;
  }
  .hero-kicker {
    font-size: 7px;
    letter-spacing: 0.23em;
    margin-bottom: 15px;
  }
  .hero h1 {
    font-size: clamp(38px, 9.1vw, 49px);
    letter-spacing: -0.065em;
  }
  .hero-line {
    letter-spacing: -0.065em;
  }
  .hero-intro {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 16px;
    max-width: 35ch;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 11px 18px;
    min-height: 44px;
    gap: 12px;
  }
  .hero-actions .button-outline {
    padding: 9px 15px 9px 9px;
    gap: 8px;
  }
  .play {
    width: 24px;
    height: 24px;
    font-size: 17px;
  }
  .hero-values {
    gap: 9px;
    margin-top: 25px;
  }
  .hero-values > div {
    gap: 8px;
    padding-right: 9px;
  }
  .hero-values .symbol {
    width: 29px;
    height: 29px;
  }
  .hero-values span {
    font-size: 9px;
  }
  .content-shell {
    padding-inline: 12px;
    margin-top: -18px;
    gap: 12px;
  }
  .winner-strip {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 20px 14px;
  }
  .winner-identity {
    gap: 10px;
    justify-content: start;
  }
  .award-emblem {
    width: 66px;
    height: 99px;
    border-width: 2px;
  }
  .award-emblem::before,
  .award-emblem::after {
    display: none;
  }
  .award-emblem .symbol {
    width: 46px;
    height: 46px;
  }
  .award-emblem > span {
    font-size: 9px;
  }
  .winner-identity h2 {
    font-size: 32px;
  }
  .winner-identity .eyebrow {
    font-size: 8px;
    margin-bottom: 5px;
  }
  .winner-subtitle {
    font-size: 10px !important;
    line-height: 1.4 !important;
    max-width: 29ch;
  }
  .winner-description {
    font-size: 10px !important;
    max-width: 31ch;
    line-height: 1.5 !important;
  }
  .winner-description br {
    display: none;
  }
  .winner-identity .micro-link {
    font-size: 7px;
    letter-spacing: 0.12em;
  }
  .winner-metrics {
    padding: 15px 2px;
    min-height: 127px;
  }
  .winner-metrics .symbol {
    width: 36px;
    height: 36px;
  }
  .winner-metrics strong {
    font-size: 22px;
  }
  .winner-metrics strong.small-stat {
    font-size: 12px;
  }
  .winner-metrics > div > span {
    font-size: 9px;
  }
  .rating-denominator {
    font-size: 10px;
  }
  .presenter {
    min-height: 90px;
    padding: 12px 16px;
    justify-content: start;
    gap: 18px;
  }
  .presenter > div {
    order: 2;
  }
  .jp-portrait {
    width: 61px;
    height: 66px;
    order: 1;
    background-position: 81% 34%;
  }
  .presenter > .round-arrow {
    position: static;
    margin-left: auto;
    order: 3;
    width: 32px;
    height: 32px;
  }
  .presenter div > span {
    font-size: 10px;
  }
  .presenter strong {
    font-size: 18px;
  }
  .presenter small {
    font-size: 10px;
  }
  .about-panel,
  .conference-panel {
    grid-template-columns: minmax(0, 1fr);
    padding: 23px 19px;
    gap: 20px;
  }
  .panel h2 {
    font-size: 33px;
  }
  .panel p {
    font-size: 14px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 0.17em;
  }
  .eyebrow::before {
    width: 24px;
    margin-right: 10px;
  }
  .city-card {
    min-height: 205px;
    aspect-ratio: 1.55;
  }
  .city-card > span {
    font-size: 34px;
  }
  .button-small {
    font-size: 11px;
    min-height: 40px;
    padding: 10px 17px;
  }
  .why-panel {
    padding: 23px 19px;
  }
  .four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-panel .feature {
    padding: 18px 14px;
  }
  .feature .symbol {
    width: 40px;
    height: 40px;
  }
  .feature h3 {
    font-size: 14px;
  }
  .feature p {
    font-size: 12px;
  }
  .conference-panel .feature-grid {
    grid-column: auto;
    grid-row: auto;
  }
  .three {
    grid-template-columns: minmax(0, 1fr);
  }
  .conference-panel .feature {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 5px 15px;
    text-align: left;
    padding: 18px;
    align-items: center;
    justify-content: start;
  }
  .conference-panel .feature .symbol {
    grid-row: 1/3;
    margin: 0;
    width: 40px;
    height: 40px;
  }
  .conference-panel .feature h3 {
    min-height: 0;
    margin-bottom: 0;
  }
  .conference-panel .feature h3 br {
    display: none;
  }
  .conference-panel .feature p {
    font-size: 12px;
    grid-column: 2;
  }
  .conference-photo {
    min-height: 230px;
  }
  .recognition-panel {
    padding: 23px 19px;
  }
  .recognition-panel .feature {
    padding: 18px 12px;
  }
  .recognition-panel .feature h3 {
    font-size: 13px;
  }
  .recognition-panel .feature p {
    font-size: 12px;
  }
  .moments-panel {
    padding: 23px 19px;
  }
  .moment-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .moment-photos > button:not(.gallery-next) {
    aspect-ratio: 1.6;
  }
  .moment-photos > button:nth-child(5) {
    display: none;
  }
  .moment-photos .gallery-next {
    top: auto;
    bottom: 9px;
    right: 9px;
    transform: none;
  }
  .legacy-panel {
    padding: 23px 19px;
    grid-template-columns: minmax(0, 1fr);
  }
  .legacy-panel .panel-intro,
  .legacy-panel > .button {
    grid-column: auto;
  }
  .legacy-winner {
    min-height: 136px;
  }
  .legacy-winner img {
    width: 50%;
    object-position: center 15%;
  }
  .legacy-winner strong {
    font-size: 27px;
  }
  .legacy-winner span {
    font-size: 15px;
  }
  .legacy-winner small {
    font-size: 12px;
  }
  .nominee-preview {
    padding: 3px 0 3px 14px;
  }
  .nominee-preview h3 {
    font-size: 25px;
  }
  .home-faq {
    padding: 23px 19px;
  }
  .faq-grid summary {
    font-size: 13px;
  }
  .faq-grid details p {
    font-size: 13px;
  }
  .closing-inner {
    padding: 35px 22px;
    gap: 13px;
  }
  .closing-banner h2 {
    font-size: 32px;
  }
  .closing-inner > div > p {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .closing-inner .button {
    font-size: 11px;
    padding: 11px 16px;
    gap: 12px;
  }
  .footer-main {
    padding-top: 24px;
    padding-bottom: 12px;
  }
  .footer-links {
    gap: 0 18px;
  }
  .footer-links a {
    font-size: 10px;
  }
  .footer-bottom {
    padding-block: 14px;
  }
  .footer-bottom p {
    font-size: 9px;
    line-height: 1.7;
  }
  .sub-hero {
    padding-bottom: 40px;
  }
  .sub-hero h1 {
    font-size: 43px;
  }
  .sub-hero .lede {
    font-size: 15px;
  }
  .breadcrumb {
    font-size: 11px;
  }
  .article-body {
    padding: 24px 20px;
  }
  .article-body h2 {
    font-size: 29px;
  }
  .article-body p,
  .article-body li {
    font-size: 15px;
  }
  .article-body h3 {
    font-size: 25px;
  }
  .article-aside {
    padding: 18px;
  }
  .article-aside a {
    font-size: 11px;
  }
  .fact-list > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
  }
  .stats {
    padding: 18px 13px;
    gap: 10px;
  }
  .stats dt {
    font-size: 30px;
  }
  .stats dt small {
    font-size: 12px;
  }
  .stats dd {
    font-size: 10px;
  }
  .gallery-dialog {
    padding: 14px;
  }
  .gallery-head h2 {
    font-size: 13px;
  }
  .gallery-dialog figcaption {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .wrap {
    padding-inline: 18px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-actions .button {
    font-size: 10px;
    padding-inline: 13px;
  }
  .hero-actions .button-outline {
    padding-left: 7px;
    padding-right: 11px;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-values {
    gap: 7px;
  }
  .hero-values > div {
    gap: 6px;
    padding-right: 7px;
  }
  .hero-values .symbol {
    width: 27px;
    height: 27px;
  }
  .hero-values span {
    font-size: 8px;
  }
  .winner-identity h2 {
    font-size: 28px;
  }
  .award-emblem {
    width: 56px;
  }
  .winner-description {
    font-size: 9px !important;
  }
  .panel h2 {
    font-size: 30px;
  }
  .eyebrow {
    font-size: 7px;
  }
  .closing-banner h2 {
    font-size: 29px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
/* Reference comparison refinements. */
.symbol {
  fill: var(--icon-fill, currentColor);
}
.icon-stop-light {
  stop-color: var(--color-pink);
}
.icon-stop-dark {
  stop-color: var(--color-accent);
}
.city-card {
  background: var(--color-deep);
  min-width: 0;
  width: 100%;
}
.award-emblem {
  border: 0;
}
.award-emblem::before,
.award-emblem::after {
  display: none;
}
.award-emblem .laurel {
  position: absolute;
  inset: -5% 0;
  width: 100%;
  height: 110%;
  object-fit: fill;
}
.award-emblem > .symbol,
.award-emblem > span {
  position: relative;
  z-index: 1;
}
.hero-location {
  padding: 8px 10px;
  background: var(--color-scrim);
  border-left: 1px solid var(--color-violet);
  font-size: 9px;
}
.closing-banner {
  background-position: center bottom;
}
.closing-banner::before {
  background: linear-gradient(
    90deg,
    var(--color-blue),
    var(--color-transparent)
  );
  opacity: 0.9;
}
.closing-inner .button-outline {
  background: var(--color-blue);
}
@media (min-width: 901px) {
  .why-panel .feature p {
    font-size: 12px;
  }
  .conference-panel .feature p {
    font-size: 12px;
  }
  .panel .eyebrow {
    font-size: 9px;
  }
  .about-panel p {
    font-size: 13px;
  }
  .winner-strip {
    padding-block: 18px;
    min-height: 185px;
  }
  .winner-identity h2 {
    font-size: clamp(36px, 3.6vw, 55px);
  }
}
@media (min-width: 901px) and (max-width: 1250px) {
  .header-inner {
    height: 68px;
  }
  .hero {
    min-height: 0;
    height: 45.5vw;
  }
  .hero-copy {
    padding-top: 86px;
  }
  .hero-kicker {
    margin-bottom: 7px;
  }
  .hero h1 {
    font-size: 5.6vw;
  }
  .hero-intro {
    margin-top: 10px;
    line-height: 1.4;
  }
  .hero-actions {
    margin-top: 19px;
  }
  .hero-actions .button {
    min-height: 42px;
    font-size: 11px;
  }
  .hero-values {
    margin-top: 25px;
  }
  .hero-values .symbol {
    width: 32px;
    height: 32px;
  }
  .hero-values span {
    font-size: 10px;
  }
  .hero-values > div {
    gap: 12px;
  }
  .hero-signature {
    top: 17%;
  }
  .hero-motto {
    top: 16%;
    font-size: 24px;
  }
  .jp-signature {
    top: 42%;
  }
  .hero-location {
    font-size: 8px;
    bottom: 12%;
  }
  .content-shell {
    margin-top: -38px;
    gap: 8px;
  }
  .winner-strip {
    padding: 16px;
    min-height: 146px;
  }
  .winner-identity h2 {
    font-size: 35px;
  }
  .winner-description {
    font-size: 9px !important;
    line-height: 1.35 !important;
    margin-top: 6px;
  }
  .winner-subtitle {
    font-size: 9px !important;
  }
  .award-emblem {
    height: 112px;
  }
  .winner-metrics {
    min-height: 117px;
    padding-block: 10px;
  }
  .winner-metrics .symbol {
    width: 36px;
    height: 36px;
  }
  .presenter {
    min-height: 117px;
  }
  .jp-portrait {
    height: 80px;
    width: 60px;
  }
  .panel .eyebrow {
    font-size: 7px;
    letter-spacing: 0.2em;
    margin-bottom: 6px;
  }
  .panel h2 {
    font-size: 26px;
    margin-bottom: 7px;
  }
  .panel p {
    font-size: 10px;
    line-height: 1.35;
  }
  .about-panel {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    padding: 12px 10px 12px 20px;
    gap: 14px;
  }
  .city-card {
    min-height: 180px;
  }
  .city-card > span {
    font-size: 27px;
  }
  .button-small {
    font-size: 9px;
    min-height: 30px;
    padding: 8px 12px;
    gap: 8px;
  }
  .panel .button {
    margin-top: 8px;
  }
  .why-panel {
    padding: 12px 14px;
  }
  .why-panel .feature {
    padding: 10px 9px;
  }
  .feature .symbol {
    width: 32px;
    height: 32px;
    margin-bottom: 7px;
  }
  .feature h3 {
    font-size: 11px;
    margin-bottom: 7px;
  }
  .why-panel .feature p {
    font-size: 9px;
    line-height: 1.4;
  }
  .feature-grid {
    gap: 6px;
  }
  .conference-photo {
    min-height: 174px;
  }
  .conference-panel .feature .symbol {
    width: 35px;
    height: 35px;
    margin-bottom: 12px;
  }
  .conference-panel .feature h3 {
    min-height: 29px;
  }
  .conference-panel .feature p {
    font-size: 9px;
  }
  .recognition-panel .feature {
    padding: 10px 9px;
  }
  .recognition-panel .feature .symbol {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
  }
  .recognition-panel .feature h3 {
    font-size: 10px;
  }
  .recognition-panel .feature p {
    font-size: 9px;
  }
  .recognition-panel h2 {
    font-size: 25px;
  }
  .micro-link {
    font-size: 8px;
    min-height: 29px;
  }
  .moments-panel {
    padding-block: 9px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.8fr);
  }
  .moments-panel h2,
  .legacy-panel h2 {
    font-size: 25px;
  }
  .moment-photos > button:not(.gallery-next) {
    aspect-ratio: 1.6;
  }
  .legacy-panel {
    padding-block: 9px;
    gap: 14px;
  }
  .legacy-winner {
    min-height: 88px;
    padding: 11px;
  }
  .legacy-winner strong {
    font-size: 18px;
    margin-bottom: 7px;
  }
  .legacy-winner span {
    font-size: 10px;
  }
  .legacy-winner small {
    font-size: 8px;
  }
  .nominee-preview h3 {
    font-size: 20px;
  }
  .nominee-preview .eyebrow {
    font-size: 7px;
  }
  .legacy-panel .button {
    min-height: 33px;
    font-size: 9px;
    margin: 0;
  }
  .home-faq {
    padding-block: 9px;
  }
  .home-faq h2 {
    font-size: 25px;
    margin-bottom: 5px;
  }
  .home-faq .panel-intro p {
    font-size: 9px;
  }
  .faq-grid summary {
    font-size: 10px;
    min-height: 34px;
  }
  .faq-grid details {
    padding: 10px 12px;
  }
  .closing-banner {
    min-height: 146px;
  }
  .closing-inner {
    padding-block: 30px;
  }
  .closing-script {
    font-size: 28px;
  }
  .closing-banner h2 {
    font-size: 28px;
  }
  .closing-inner > div > p {
    font-size: 10px;
  }
  .closing-inner .button {
    min-height: 36px;
    font-size: 9px;
  }
  .footer-main {
    padding-block: 12px;
  }
  .footer-bottom {
    padding-block: 8px;
  }
  .footer-bottom p {
    font-size: 8px;
  }
}
@media (max-width: 540px) {
  .city-card {
    aspect-ratio: auto;
  }
  .award-emblem .laurel {
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .award-emblem {
    height: 93px;
  }
  .closing-banner {
    background-position: 70% bottom;
  }
  .closing-banner::before {
    background: linear-gradient(
      90deg,
      var(--color-blue) 35%,
      var(--color-transparent)
    );
  }
}
/* Keep gallery thumbnails inside their tracks at the desktop/mobile boundary. */
.moment-photos > button:not(.gallery-next) {
  position: relative;
  width: 100%;
  min-width: 0;
}
.moment-photos > button:not(.gallery-next) img {
  position: absolute;
  inset: 0;
}
@media (min-width: 901px) {
  .closing-banner {
    background-position: center 58%;
  }
}
.mobile-nav summary > span {
  margin-left: 4px;
}
@media (min-width: 361px) and (max-width: 540px) {
  .hero-actions .button {
    padding-inline: 14px;
  }
  .hero-actions .button-outline {
    padding-left: 8px;
    padding-right: 11px;
  }
}

/* Hallmark · editorial refinement · design-system: design.md
 * pre-emit critique: P5 H5 E4 S5 R5 V5
 * Generous chapter spacing replaces the mockup's compressed information strips. */
.content-shell {
  max-width: 1440px;
  padding: 0 var(--space-gutter) var(--space-chapter);
  gap: var(--space-chapter);
}
.home main {
  background: var(--color-paper);
}
.content-shell .panel {
  padding: var(--space-panel);
  border-radius: 24px;
}
.content-shell .panel p {
  font-size: 15px;
  line-height: 1.7;
}
.content-shell .panel h2 {
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.08;
  margin-bottom: var(--space-md);
}
.content-shell .eyebrow {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}
.content-shell .panel .button {
  margin-top: var(--space-md);
}
.content-shell .winner-strip {
  padding: var(--space-lg);
  gap: var(--space-md);
  margin-bottom: 0;
}
.content-shell .winner-identity h2 {
  font-size: clamp(32px, 3.3vw, 48px);
  margin-bottom: 12px;
}
.content-shell .winner-identity .eyebrow {
  margin-bottom: 8px;
}
.content-shell .winner-subtitle {
  font-size: 12px;
  line-height: 1.6;
}
.content-shell .winner-description {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 12px;
}
.winner-metrics {
  padding-block: var(--space-lg);
}
.intro-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-chapter);
}
.content-shell .about-panel {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: var(--space-chapter);
}
.about-panel > div {
  padding-block: var(--space-md);
}
.about-panel p {
  max-width: 44ch;
}
.city-card {
  min-height: 360px;
}
.city-card > span {
  font-size: clamp(38px, 4.2vw, 60px);
}
.content-shell .why-panel {
  background: none;
  border-color: var(--color-transparent);
  padding-block: 0;
}
.why-panel .feature-grid {
  margin-top: var(--space-lg);
}
.content-shell .feature-grid {
  gap: var(--space-md);
}
.content-shell .feature {
  padding: var(--space-lg) var(--space-md);
  border-radius: 16px;
}
.content-shell .why-panel .feature {
  background: var(--color-white);
}
.content-shell .feature h3 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.content-shell .feature p {
  font-size: 14px;
  line-height: 1.65;
}
.content-shell .feature .symbol {
  width: 42px;
  height: 42px;
  margin-bottom: var(--space-md);
}
.content-shell .conference-panel {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: var(--space-lg) var(--space-xl);
}
.conference-panel > .panel-intro {
  grid-column: 1;
  grid-row: 1;
}
.conference-panel > .feature-grid {
  grid-column: 1;
  grid-row: 2;
}
.conference-panel > .conference-photo {
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 420px;
}
.content-shell .conference-panel .feature {
  background: none;
  padding: var(--space-md) 0 0;
  align-items: flex-start;
  text-align: left;
  justify-content: flex-start;
  border-top: 1px solid var(--color-rule);
  border-radius: 0;
}
.content-shell .conference-panel .feature .symbol {
  margin-left: 0;
  width: 34px;
  height: 34px;
}
.content-shell .conference-panel .feature h3 {
  font-size: 14px;
}
.content-shell .conference-panel .feature p {
  font-size: 13px;
}
.photo-label {
  padding: 60px 24px 24px;
  font-size: 10px;
}
.content-shell .recognition-panel {
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-lg);
}
.recognition-panel .panel-intro {
  max-width: 660px;
}
.content-shell .recognition-panel .feature {
  padding-block: var(--space-lg);
}
.content-shell .moments-panel {
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-lg);
  background: none;
  border-color: var(--color-transparent);
  padding-block: 0;
}
.moment-photos {
  gap: var(--space-sm);
}
.moment-photos > button:not(.gallery-next) {
  aspect-ratio: 0.82;
  border-radius: 14px;
}
.moment-photos > button:nth-child(4) img {
  object-position: 55% center;
}
.moment-photos > button:nth-child(5) img {
  object-position: 72% center;
}
.content-shell .legacy-panel {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: var(--space-lg) var(--space-xl);
}
.legacy-panel > .panel-intro {
  grid-column: 1;
  grid-row: 1;
}
.legacy-panel > .legacy-winner {
  grid-column: 2;
  grid-row: 1 / 4;
  min-height: 300px;
  padding: var(--space-lg);
}
.legacy-panel > .nominee-preview {
  grid-column: 1;
  grid-row: 2;
  padding: 0;
  border: 0;
}
.legacy-panel > .button {
  grid-column: 1;
  grid-row: 3;
  justify-self: start;
  margin-top: 0;
}
.legacy-winner strong {
  font-size: 36px;
  margin-bottom: 24px;
}
.legacy-winner span {
  font-size: 19px;
}
.legacy-winner small {
  font-size: 12px;
  margin-top: 8px;
  display: block;
}
.content-shell .nominee-preview .eyebrow {
  margin-bottom: 12px;
}
.content-shell .home-faq {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: var(--space-chapter);
  background: none;
  border-color: var(--color-transparent);
  padding-block: var(--space-md) 0;
}
.home-faq .panel-intro {
  align-self: start;
}
.faq-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
.faq-grid details {
  background: none;
  border-radius: 0;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-rule);
}
.faq-grid details:first-child {
  border-top: 1px solid var(--color-rule);
}
.faq-grid summary {
  font-size: 15px;
  line-height: 1.5;
}
.content-shell .faq-grid details p {
  font-size: 14px;
  padding: 8px 32px 16px 0;
}
.closing-inner {
  padding-block: var(--space-chapter);
}
.footer-main {
  padding-block: var(--space-lg);
}
.footer-bottom {
  padding-block: var(--space-sm);
}
.sub-hero {
  padding-block: var(--space-lg) var(--space-chapter);
}
.article-body {
  padding: var(--space-panel);
}
.article-body h2:not(:first-child) {
  margin-top: var(--space-xl);
}

@media (min-width: 901px) and (max-width: 1250px) {
  .content-shell .winner-strip {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
  .winner-identity {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .winner-metrics {
    grid-column: 2;
    grid-row: 1;
  }
  .presenter {
    grid-column: 2;
    grid-row: 2;
    min-height: 96px;
  }
  .presenter .jp-portrait {
    width: 60px;
    height: 60px;
  }
  .presenter > .round-arrow {
    position: static;
  }
  .content-shell .winner-strip .winner-metrics {
    padding-block: var(--space-md);
  }
  .content-shell .conference-panel {
    gap: var(--space-lg);
  }
  .content-shell .conference-panel .three {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-sm);
  }
  .content-shell .conference-panel .feature {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px 16px;
  }
  .content-shell .conference-panel .feature .symbol {
    grid-row: 1 / 3;
    margin: 0;
  }
  .content-shell .conference-panel .feature h3 {
    min-height: 0;
    margin: 0;
  }
  .content-shell .conference-panel .feature p {
    grid-column: 2;
  }
}
@media (max-width: 900px) {
  .content-shell .winner-strip {
    padding: var(--space-panel);
  }
  .content-shell .about-panel {
    gap: var(--space-lg);
  }
  .content-shell .about-panel > div {
    padding: 0;
  }
  .city-card {
    min-height: 320px;
  }
  .content-shell .four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-shell .conference-panel {
    grid-template-columns: minmax(0, 1fr);
  }
  .conference-panel > .panel-intro,
  .conference-panel > .feature-grid,
  .conference-panel > .conference-photo {
    grid-column: auto;
    grid-row: auto;
  }
  .conference-panel > .conference-photo {
    min-height: 360px;
  }
  .content-shell .home-faq {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
  }
  .content-shell .legacy-panel {
    gap: var(--space-lg);
  }
  .moment-photos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .moment-photos > button:not(.gallery-next) {
    aspect-ratio: 1;
  }
  .moment-photos > button:nth-child(n + 4):not(.gallery-next) {
    aspect-ratio: 1.4;
  }
  .moment-photos .gallery-next {
    right: -8px;
  }
}
@media (max-width: 540px) {
  .content-shell {
    padding-inline: 14px;
  }
  .content-shell .panel {
    border-radius: 20px;
  }
  .content-shell .panel h2 {
    font-size: 34px;
  }
  .content-shell .panel p {
    font-size: 14px;
    line-height: 1.7;
  }
  .content-shell .about-panel {
    grid-template-columns: minmax(0, 1fr);
  }
  .city-card {
    min-height: 260px;
    aspect-ratio: auto;
  }
  .content-shell .feature-grid {
    gap: 12px;
  }
  .content-shell .feature {
    padding: 24px 16px;
  }
  .content-shell .feature h3 {
    font-size: 14px;
  }
  .content-shell .feature p {
    font-size: 12px;
    line-height: 1.65;
  }
  .content-shell .conference-panel .feature {
    padding-block: var(--space-md);
  }
  .conference-panel > .conference-photo {
    min-height: 300px;
  }
  .content-shell .legacy-panel {
    grid-template-columns: minmax(0, 1fr);
  }
  .legacy-panel > .panel-intro,
  .legacy-panel > .legacy-winner,
  .legacy-panel > .nominee-preview,
  .legacy-panel > .button {
    grid-column: auto;
    grid-row: auto;
  }
  .legacy-panel > .legacy-winner {
    min-height: 240px;
    padding: var(--space-md);
  }
  .moment-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .moment-photos > button:nth-child(n + 4):not(.gallery-next) {
    aspect-ratio: 1;
  }
  .moment-photos > button:nth-child(5) {
    grid-column: 1 / -1;
    aspect-ratio: 2.1 !important;
  }
  .content-shell .winner-description,
  .content-shell .winner-subtitle {
    font-size: 12px;
  }
  .content-shell .winner-identity h2 {
    font-size: 36px;
  }
  .closing-inner {
    padding-block: var(--space-chapter);
    gap: var(--space-md);
  }
  .content-shell .panel .button-small {
    font-size: 10px;
    padding-inline: 14px;
  }
  .faq-grid summary {
    font-size: 14px;
  }
}
@media (min-width: 901px) and (max-width: 1250px) {
  .hero {
    height: max(490px, 48vw);
  }
  .jp-signature {
    display: none;
  }
}
@media (min-width: 541px) and (max-width: 900px) {
  .moment-photos {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .moment-photos > button:not(.gallery-next) {
    grid-column: span 2;
  }
  .moment-photos > button:nth-child(n + 4):not(.gallery-next) {
    grid-column: span 3;
    aspect-ratio: 1.6;
  }
}
@media (max-width: 540px) {
  .hero-copy {
    padding-top: 115px;
    padding-bottom: 32px;
  }
}

/* Supplied skyline and award portrait: independently composed hero layers. */
.hero-background img {
  object-position: center bottom;
}
.hero-award-photo {
  position: absolute;
  z-index: -1;
  right: 13%;
  bottom: 0;
  height: calc(100% - 110px);
  width: auto;
  max-width: 48%;
  object-fit: contain;
  object-position: center bottom;
}
.hero .marc-signature { left: 46%; top: 20%; }
.hero .jp-signature { left: auto; right: 2%; top: 48%; }
.hero .hero-motto { right: 2%; top: 20%; font-size: clamp(24px, 2.1vw, 34px); }
@media (min-width: 901px) and (max-width: 1250px) {
  .hero-award-photo { right: 5%; height: calc(100% - 90px); max-width: 46%; }
  .hero .marc-signature { display: none; }
  .hero .hero-motto { right: 3%; top: 18%; font-size: 22px; }
}
@media (max-width: 900px) {
  .hero { padding-bottom: 430px; }
  .hero-background { inset: 0; height: auto; }
  .hero-background img { object-position: 65% bottom; }
  .hero::after { inset: 0 0 380px; }
  .hero-award-photo { height: 430px; max-width: 94%; right: 50%; transform: translateX(50%); }
}
@media (max-width: 540px) {
  .hero { padding-bottom: 330px; }
  .hero::after { bottom: 300px; }
  .hero-award-photo { height: 330px; max-width: 100%; }
}
