:root {
  --accent: #f15a24;
  --accent-hover: #c44712;
  --year: #c42d7a;
  --ink: #222;
  --muted: #6d6d6d;
  --bg: #fff;
  --card: #ffffff;
  --line: #ececec;
  --navy: #1b2744;
  --navy-hover: #243456;
  --on-accent: #fff;
  --paper: #fff;
  --fill: #eee;
  --fill-warm: #faf8f7;
  --fill-warm-border: #eee4df;
  --quote: #fff8f4;
  --quote-border: #f3d8cc;
  --kicker: #9a9a9a;
  --error: #a31b1b;
  --tab-idle: #555;
  --tab-border: #ccc;
  --subnav: #444;
  --meta-dot: #c4c4c4;
  --shadow: rgba(20, 2, 20, 0.04);
  --radius: 3px;
  --max: 58rem;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --display: "Oswald", Impact, sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --accent-hover: #ff7a45;
  --ink: #f0ece8;
  --muted: #b3a8a2;
  --bg: #161218;
  --card: #221c24;
  --line: #3d353c;
  --navy: #5a7198;
  --navy-hover: #6d85ad;
  --paper: #221c24;
  --fill: #2c262c;
  --fill-warm: #241c22;
  --fill-warm-border: #3d3236;
  --quote: #2a1f24;
  --quote-border: #4a3330;
  --kicker: #b3a8a2;
  --error: #f07171;
  --tab-idle: #c8bbb6;
  --tab-border: #5a4e52;
  --subnav: #c8c0bc;
  --meta-dot: #6a6460;
  --shadow: rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html {
  color-scheme: light;
  background: var(--bg);
  accent-color: var(--accent);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
}

img { max-width: 100%; height: auto; }
a { color: var(--accent); }
a:hover { color: var(--accent-hover); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.masthead {
  color: #fff;
  background:
    radial-gradient(ellipse 90% 140% at 50% -30%, #d41a72 0%, rgba(120, 10, 70, 0.55) 38%, transparent 62%),
    radial-gradient(ellipse 70% 90% at 100% 120%, #3a0738 0%, transparent 55%),
    linear-gradient(180deg, #2a0528 0%, #140214 100%);
}

.masthead-inner {
  max-width: 92rem;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  text-decoration: none;
  order: 1;
}

.brand:hover { color: #fff; }

.brand img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 210, 80, 0.35));
}

.brand-text {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-text-short {
  display: none;
}

.masthead-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  order: 2;
}

.tool-link {
  display: none;
}

.masthead-tools .tool-btn {
  display: none;
}

.tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #fff;
  text-decoration: none;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.tool-btn:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.external-icon {
  width: 0.78rem;
  height: 0.78rem;
  flex-shrink: 0;
}

.year-select select {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  background-color: var(--accent);
  border: 0;
  border-radius: var(--radius);
  padding: 0.5rem 1.65rem 0.5rem 0.7rem;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 13px) 50%, calc(100% - 8px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.theme-toggle {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
}

.theme-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon,
.theme-toggle .icon-system {
  display: none;
}

html[data-theme-pref="light"] .theme-toggle .icon-sun,
html:not([data-theme-pref])[data-theme="light"] .theme-toggle .icon-sun {
  display: block;
}

html[data-theme-pref="dark"] .theme-toggle .icon-moon,
html:not([data-theme-pref])[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}

html[data-theme-pref="system"] .theme-toggle .icon-system,
html:not([data-theme-pref]):not([data-theme]) .theme-toggle .icon-system {
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .theme-toggle[data-tip]::after {
    content: attr(data-tip);
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    z-index: 30;
    width: max-content;
    max-width: min(16rem, 70vw);
    padding: 0.4rem 0.55rem;
    border-radius: var(--radius);
    background: #1b1b1b;
    color: #fff;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.15rem);
    transition: opacity 0.12s ease, transform 0.12s ease, visibility 0.12s;
    pointer-events: none;
  }

  .theme-toggle[data-tip]:hover::after,
  .theme-toggle[data-tip]:focus-visible::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav-toggle {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  margin: 0 auto;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.site-header.nav-open .nav-toggle-bars { background: transparent; }
.site-header.nav-open .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.site-header.nav-open .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.nav {
  display: none;
  width: 100%;
  order: 3;
  background: transparent;
}

.site-header.nav-open .nav,
.nav.open {
  display: block;
  max-height: min(75vh, calc(100dvh - 4.5rem));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.1rem;
  padding: 0.35rem 0 0.85rem;
}

.nav-primary {
  display: none !important;
}

.nav a, .nav-item > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-decoration: none;
  color: #fff;
  background: none;
  border: 0;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55rem 0.1rem;
  cursor: pointer;
}

.nav a:hover, .nav-item > button:hover { color: #ffd7c4; }
.nav a.active, .nav-item > button.active { color: var(--accent); }

.nav a .external-icon {
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  vertical-align: -0.08em;
}

.nav-panels {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.nav-group-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  color: #fff;
  background: none;
  border: 0;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 0.1rem;
  cursor: pointer;
}

.nav-group-toggle:hover { color: #ffd7c4; }

.nav-group.is-open > .nav-group-toggle {
  color: var(--accent);
}

.nav-group-caret {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.15s ease;
  margin-top: -0.2rem;
}

.nav-group.is-open .nav-group-caret {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
}

.nav-group-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.05rem;
  padding: 0.15rem 0 0.55rem;
}

.nav-group-links[hidden] {
  display: none;
}

.nav-group-links > a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.88);
}

.nav-results-leaves {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.05rem;
}

.nav-years {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.nav-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.35rem 0.55rem;
  color: #fff;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-year:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.nav a.nav-year.active,
.nav-year.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.desktop-chrome {
  display: none;
}

@media (min-width: 1100px) {
  .desktop-chrome.is-visible {
    display: block;
  }
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .masthead-inner { padding: 0.55rem 0.85rem; }
  .brand-text-full { display: none; }
  .brand-text-short { display: inline; }
}

@media (min-width: 1100px) {
  .nav-toggle { display: none; }
  .masthead-tools .tool-btn { display: inline-flex; }
  .nav-panels { display: none; }
  .nav a.nav-primary { display: inline-flex !important; }
  .masthead-inner {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .nav, .site-header.nav-open .nav {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    flex: none;
    order: 2;
    min-width: 0;
    max-height: none;
    overflow: visible;
  }
  .masthead-tools { order: 3; margin-left: auto; }
  .nav-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.1rem 1.35rem;
    padding: 0;
  }
  .nav a, .nav-item > button {
    padding: 0.85rem 0;
    font-size: 0.72rem;
    white-space: nowrap;
  }
  .nav a.active, .nav-item > button.active {
    box-shadow: inset 0 -2px 0 var(--accent);
  }
}

.results-bar {
  background: var(--bg);
  color: var(--ink);
  border-bottom: 3px solid var(--year, #c2185b);
}

.results-bar-inner {
  max-width: 92rem;
  margin: 0 auto;
  padding: 0.55rem 1.25rem 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.year-tabs,
.results-subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 0.15rem 0.2rem;
}

.year-tabs a,
.results-subnav a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius);
}

.year-tabs a {
  font-size: 0.92rem;
  color: var(--tab-accent, var(--tab-idle));
  border: 2px solid var(--tab-accent, var(--tab-border));
  background: transparent;
}

.year-tabs a:hover {
  color: var(--tab-accent, var(--accent));
  background: color-mix(in srgb, var(--tab-accent, var(--accent)) 12%, var(--paper));
}

.year-tabs a.active {
  background: var(--tab-accent, var(--accent));
  border-color: var(--tab-accent, var(--accent));
  color: var(--on-accent);
}

.year-tabs a.active:hover { color: var(--on-accent); }

.results-subnav {
  border-top: 1px solid var(--line);
  padding-top: 0.35rem;
}

.results-subnav a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--subnav);
}

.results-subnav a .external-icon {
  width: 0.75em;
  height: 0.75em;
}

.section-bar {
  border-bottom-color: var(--accent);
}

.section-bar .results-subnav {
  border-top: 0;
  padding-top: 0;
}

.section-bar .results-subnav a:hover,
.section-bar .results-subnav a.active {
  color: var(--accent);
}

.section-bar .results-subnav a.active {
  box-shadow: inset 0 -2px 0 var(--accent);
}

.results-subnav a:hover { color: var(--year, var(--accent)); }

.results-subnav a.active {
  color: var(--year, var(--accent));
  box-shadow: inset 0 -2px 0 var(--year, var(--accent));
  border-radius: 0;
}

@media (min-width: 900px) {
  .results-bar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .year-tabs {
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.25rem 0.35rem;
  }
  .results-bar:not(.section-bar) .results-subnav {
    border-top: 0;
    padding-top: 0;
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.15rem 0.45rem;
  }
  .section-bar .results-bar-inner {
    flex-direction: column;
    justify-content: center;
  }
  .section-bar .results-subnav {
    justify-content: center;
    width: 100%;
  }
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.page-hero {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid color-mix(in srgb, var(--year) 28%, var(--line));
}

.award-logo {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

.page-hero h1 { margin-bottom: 0.35rem; }
.page-hero p { margin: 0; }

.year-mark {
  color: var(--year);
}

.watch-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--year, var(--accent));
  color: var(--on-accent);
  text-decoration: none;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  margin: 0.2rem 0 0;
}

.watch-live:hover { color: var(--on-accent); background: color-mix(in srgb, var(--year, var(--accent)) 82%, black); }
.watch-live .external-icon { width: 0.85rem; height: 0.85rem; }

.map-google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  margin: 0.25rem 0 1.5rem;
}

.map-google-link:hover { color: var(--on-accent); background: var(--accent-hover); }
.map-google-link .external-icon { width: 0.85rem; height: 0.85rem; }

.map-embed {
  display: block;
  width: 100%;
  min-height: 28rem;
  height: 70vh;
  border: 0;
  margin: 0;
  background: var(--fill);
}

body.is-google-map main,
body.is-leaflet-map main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

body.is-google-map,
body.is-leaflet-map {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.is-google-map #app,
body.is-leaflet-map #app {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100vh;
}

body.is-google-map .site-header,
body.is-leaflet-map .site-header,
body.is-google-map .site-footer,
body.is-leaflet-map .site-footer {
  flex-shrink: 0;
}

.map-page-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0.75rem;
  width: 100%;
}

.map-page-intro h1 {
  margin-bottom: 0.4rem;
}

.map-page-copy {
  margin-bottom: 0.5rem;
}

body.is-google-map .map-embed {
  flex: none;
  width: min(100%, 64rem);
  height: 36rem;
  min-height: 28rem;
  margin: 0 auto 2.5rem;
}

.map-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 28rem;
}

body.is-leaflet-map header.toolbar {
  position: relative;
  z-index: 5;
  padding: 0.65rem 1.25rem;
  background: var(--card);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  font-family: var(--sans);
}

body.is-leaflet-map .toolbar__toggle {
  display: none;
}

body.is-leaflet-map .toolbar__section select {
  font-family: var(--sans);
  font-size: 0.92rem;
  border-radius: var(--radius);
  border-color: var(--line);
  background: var(--card);
  color: var(--ink);
}

body.is-leaflet-map .toolbar__section select:focus {
  outline: 2px solid color-mix(in srgb, var(--year) 45%, var(--paper));
  border-color: var(--year);
}

body.is-leaflet-map p#status {
  color: var(--muted);
}

.map-canvas {
  flex: 1;
  position: relative;
  min-height: 24rem;
}

@media (max-width: 640px) {
  .page-hero { flex-direction: row; align-items: center; text-align: left; gap: 0.85rem; }
  .award-logo { width: 4.25rem; height: 4.25rem; }
}

.kicker {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--kicker);
  font-weight: 500;
}

h1 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.12;
  margin: 0.2rem 0 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.season-timeline {
  margin: 0 0 2rem;
  padding: 1.35rem 1.25rem 1.45rem;
  background:
    linear-gradient(135deg, rgba(241, 90, 36, 0.08) 0%, rgba(196, 45, 122, 0.06) 55%, transparent 100%),
    var(--fill-warm);
  border: 1px solid var(--fill-warm-border);
  border-radius: var(--radius);
}

.season-timeline-heading {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.season-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  counter-reset: none;
  position: relative;
}

.season-step {
  position: relative;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.season-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  margin-bottom: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
}

.season-month {
  margin: 0 0 0.15rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--year);
}

.season-title {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.season-detail {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted);
}

.season-timeline-more {
  margin: 1rem 0 0;
  text-align: right;
  font-size: 0.95rem;
}

.season-timeline-more a {
  font-weight: 650;
  text-decoration: none;
}

.season-timeline-more a:hover {
  text-decoration: underline;
}

.home-body > .season-timeline {
  margin-top: 0;
  margin-bottom: 1.35rem;
}

.season-timeline--dates {
  padding: 1rem 1.1rem 1.1rem;
  background: var(--quote);
  border-color: var(--quote-border);
}

.season-timeline--dates .season-timeline-heading {
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--kicker);
}

.season-timeline--dates .season-timeline-list {
  gap: 0.85rem 1.4rem;
}

.season-timeline--dates .season-month {
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
}

.season-timeline--dates .season-title {
  margin-bottom: 0.25rem;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.season-timeline--dates .season-detail {
  font-size: 0.85rem;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .season-timeline {
    padding: 1.1rem 1rem 1.2rem;
  }

  .season-timeline-list {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .season-step + .season-step {
    padding-top: 1.15rem;
    border-top: 1px solid var(--fill-warm-border);
  }

  .season-timeline--dates .season-step + .season-step {
    border-top-color: var(--line);
  }
}

.prose :is(p, ul, li) { margin: 0 0 0.9rem; }
.prose ul { padding-left: 1.2rem; }
.prose a .external-icon {
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  vertical-align: -0.12em;
  margin-left: 0.2em;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 46rem;
}

.faq-category h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  padding-bottom: 0.35rem;
  border-bottom: 3px solid var(--accent);
  width: fit-content;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  border-radius: var(--radius);
}

.faq-item[open] {
  border-left-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 4%, var(--card));
}

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 650;
  line-height: 1.35;
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-item > summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 500;
  margin-left: 0.75rem;
}

.faq-item[open] > summary::after {
  content: "–";
  color: var(--accent);
}

.faq-body {
  padding: 1rem 1rem 1rem;
  border-top: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
}

.faq-body :is(p, ul):last-child { margin-bottom: 0; }

.intro-aside,
.award-note,
.footnotes {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
}

.intro-aside {
  display: block;
  margin-top: 0.45rem;
}

.prose p.intro-aside {
  margin: 0.45rem 0 0.9rem;
}

.footnotes {
  margin-top: 0.85rem;
}

.footnotes p {
  margin: 0 0 0.5rem;
}

.footnotes p:last-child {
  margin-bottom: 0;
}
body.is-home main {
  max-width: none;
  padding: 0;
}

.home-hero {
  color: #fff;
  text-align: center;
  background:
    radial-gradient(ellipse 90% 140% at 50% -30%, #d41a72 0%, rgba(120, 10, 70, 0.55) 38%, transparent 62%),
    radial-gradient(ellipse 70% 90% at 100% 120%, #3a0738 0%, transparent 55%),
    linear-gradient(180deg, #2a0528 0%, #140214 100%);
  padding: 1.9rem 1.25rem 2.25rem;
}

.home-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.home-logo {
  width: min(15.5rem, 60vw);
  height: auto;
  filter: drop-shadow(0 0 28px rgba(255, 210, 80, 0.35));
}

.home-wordmark {
  font-family: var(--display);
  font-size: clamp(2.1rem, 6.5vw, 3.7rem);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0.28rem 0 0.2rem;
  line-height: 1;
}

.home-tagline {
  margin: 0 auto;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.03rem;
}

.home-hero-cta {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.78rem 1.45rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-size: clamp(0.96rem, 2.3vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}

.home-hero-cta:hover {
  color: var(--on-accent);
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.home-hero .social-links {
  justify-content: center;
  margin-top: 0.9rem;
  gap: 0.4rem;
}

.home-hero .social-links-labeled a {
  padding: 0.35rem 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.home-hero .social-links svg {
  width: 0.95rem;
  height: 0.95rem;
}

.home-hero .social-links a {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.home-hero .social-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
}

.home-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.65rem 1.25rem 4rem;
}

.home-ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
}

.home-body > .prose {
  margin-bottom: 1.5rem;
}

.home-body > .prose p:last-child {
  margin-bottom: 0;
}

.home-cta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem 1.15rem;
  box-shadow: 0 8px 24px var(--shadow);
}

.home-cta:hover {
  color: inherit;
  border-color: var(--accent);
}

.home-cta strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.home-cta > span:not(.kicker):not(.home-cta-action) {
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
}

.home-cta-action {
  margin-top: 0.65rem;
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
}

a.home-cta:hover .home-cta-action { background: var(--accent-hover); color: var(--on-accent); }

.home-cta-navy .home-cta-action { background: var(--navy); }
.home-cta-navy:hover { border-color: var(--navy); }
.home-cta-navy:hover .home-cta-action { background: var(--navy-hover); }

@media (min-width: 800px) {
  .home-ctas { grid-template-columns: repeat(3, 1fr); }
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}

.stat {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid var(--line);
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.25rem;
}

.toolbar input, .toolbar select {
  font: inherit;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--ink);
  min-width: 12rem;
}

.list, .people {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.person-card .card-body {
  border-top: 0;
  padding: 1rem;
}

.person-card-body {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.person-photo {
  width: 6.5rem;
  height: 6.5rem;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--fill);
  flex-shrink: 0;
}

.person-copy {
  min-width: 0;
  flex: 1;
}

.person-copy :is(p, ul):last-child {
  margin-bottom: 0;
}

@media (max-width: 560px) {
  .person-card-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.list + .prose {
  margin-top: 1.25rem;
}

.card, details.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
}

details.card[open] {
  overflow: visible;
}

details.card > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 650;
  line-height: 1.35;
}

details.card > summary::-webkit-details-marker { display: none; }

details.card > summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 500;
  margin-left: 0.75rem;
}

details.card[open] > summary::after {
  content: "–";
  color: var(--year, var(--accent));
}

.card-body {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--line);
}

.card-body ul {
  margin: 0.35rem 0 0.75rem;
  padding-left: 1.2rem;
}

.winner-title {
  margin: 0;
  padding: 0.7rem 1rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: normal;
  background: var(--year);
  color: #fff;
}

.winner-title a {
  color: inherit;
  text-decoration: none;
}

.winner-title a:hover {
  color: inherit;
  text-decoration: underline;
}

.winner-rank {
  color: inherit;
  font-variant-numeric: tabular-nums;
}

.winner-layout {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1.15rem;
  align-items: start;
}

.winner-layout:has(.winner-media) {
  grid-template-columns: 9rem 1fr;
}

.winner-media {
  grid-column: 1;
  grid-row: 1 / span 8;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 9rem;
}

.winner-layout:has(.winner-media) .winner-byline,
.winner-layout:has(.winner-media) .winner-details,
.winner-layout:has(.winner-media) .winner-blurb {
  grid-column: 2;
}

.winner-byline {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.winner-details {
  margin-top: 0.7rem;
  min-width: 0;
}

.winner-blurb {
  margin-top: 0.7rem;
  min-width: 0;
}

.winner-facts {
  margin: 0;
  line-height: 1.45;
}

.winner-facts + .winner-facts {
  margin-top: 0.12rem;
}

.winner-experiences {
  margin: 0;
  padding-left: 1.15rem;
}

.winner-experiences li + li {
  margin-top: 0.2rem;
}

.winner-quote,
.winner-description {
  margin: 0;
  padding: 0;
  border: 0;
}

.winner-facts + .award-note {
  margin-top: 0.7rem;
}

.winner-quote p {
  margin: 0;
  font-style: italic;
  line-height: 1.5;
}

.winner-quote footer {
  margin-top: 0.3rem;
  font-style: normal;
}

.winner-description {
  font-style: italic;
  line-height: 1.5;
}

.winner-card {
  overflow: hidden;
  border: none;
}

.winner-card .card-body {
  border-top: 0;
  border-left: 2px solid color-mix(in srgb, var(--year) 55%, var(--paper));
  border-right: 2px solid color-mix(in srgb, var(--year) 55%, var(--paper));
  border-bottom: 2px solid color-mix(in srgb, var(--year) 55%, var(--paper));
  padding-top: 1rem;
  padding-bottom: 1.15rem;
}

.winner-card .winner-layout {
  padding-top: 0;
}

.winner-photo-link {
  display: block;
}

.winner-photo-link img,
.winner-media img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  background: var(--fill);
}

.winner-photo-link:hover img,
.winner-photo-link:focus-visible img {
  opacity: 0.85;
}

@media (max-width: 640px) {
  .winner-layout {
    column-gap: 0.85rem;
  }

  .winner-layout:has(.winner-media) {
    grid-template-columns: 5.5rem 1fr;
  }

  .winner-media {
    max-width: 5.5rem;
  }

  .winner-details {
    margin-top: 0.55rem;
  }

  .winner-layout:has(.winner-media) .winner-blurb {
    grid-column: 1 / -1;
  }
}

.muted { color: var(--muted); font-size: 0.92rem; }

.award-note p {
  margin: 0 0 0.4rem;
}

.award-note p:last-child {
  margin-bottom: 0;
}

.award-note strong {
  font-weight: 600;
  font-style: italic;
}
.winner { font-weight: 700; }

table.data {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  font-size: 0.92rem;
}

table.data th, table.data td {
  text-align: left;
  padding: 0.45rem 0.5rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

table.data th {
  background: var(--accent);
  color: #fff;
  position: sticky;
  top: var(--header-height, 0px);
  z-index: 1;
}

body.is-results main > h1,
body.is-results .map-page-intro h1 {
  padding-bottom: 0.55rem;
  border-bottom: 2px solid color-mix(in srgb, var(--year) 28%, var(--line));
}

body.is-results table.data th {
  background: var(--year);
}

@media (max-width: 700px) {
  .table-scroll {
    overflow-x: auto;
  }
  .table-scroll table.data th {
    top: 0;
  }
}

body.is-results .list > .card {
  overflow: hidden;
}

body.is-results .toolbar input:focus,
body.is-results .toolbar select:focus {
  outline: 2px solid color-mix(in srgb, var(--year) 45%, var(--paper));
  border-color: var(--year);
}

body.is-results .map-google-link {
  background: var(--year);
}

body.is-results .map-google-link:hover {
  background: color-mix(in srgb, var(--year) 82%, black);
  color: #fff;
}

body.is-results .category-section h2 {
  color: var(--year);
}

.logo-year h2, h2 {
  margin: 1.5rem 0 0.6rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.past-people {
  margin-bottom: 1rem;
}

.category-section + .category-section {
  margin-top: 2.25rem;
}

.phase1-legend {
  margin: 0 0 0.85rem;
  max-width: none;
  background: color-mix(in srgb, var(--year, var(--accent)) 5%, var(--card));
  border: 1px solid var(--line);
  border-left: 3px solid var(--year, var(--accent));
  border-radius: var(--radius);
}

.phase1-legend > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.7rem 1rem;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  user-select: none;
}

.phase1-legend > summary::-webkit-details-marker { display: none; }

.phase1-legend > summary::after {
  content: "+";
  float: right;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--year, var(--accent));
}

.phase1-legend[open] > summary::after {
  content: "–";
}

.phase1-legend-body {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--line);
}

.phase1-legend ul {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 0.3rem 1rem;
}

.phase1-legend li {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 0.4rem;
  align-items: start;
  font-size: 0.88rem;
  line-height: 1.35;
}

.phase1-legend-symbol {
  text-align: center;
  font-size: 1rem;
  line-height: 1.35;
}

.phase1-legend-note {
  margin: 0.85rem 0 0;
}

.nominee-toolbar {
  align-items: center;
  margin: 0.75rem 0 0.65rem;
}

.nominee-toolbar .category-count {
  margin: 0;
  margin-left: auto;
}

.category-results:has(.nominee-table) {
  margin-top: 0.15rem;
}

.nominee-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: visible;
  background: var(--card);
}

.nominee-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nominee {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(3.25rem, auto);
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  margin: 0;
  padding: 0.32rem 0.55rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  line-height: 1.3;
  position: relative;
}

.nominee:hover,
.nominee:has(.has-tip:focus-visible) {
  z-index: 5; /* above sticky .nominee-head so tip can clear it */
}

.nominee-table.no-tags .nominee {
  grid-template-columns: minmax(0, 1fr) minmax(3.25rem, auto);
}

.nominee-list .nominee:last-child {
  border-bottom: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}

.has-tip {
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .has-tip[data-tip]::after {
    content: attr(data-tip);
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.4rem);
    top: auto;
    z-index: 6;
    width: max-content;
    max-width: min(18rem, 70vw);
    padding: 0.4rem 0.55rem;
    border-radius: var(--radius);
    background: #1b1b1b;
    color: #fff;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.15rem);
    transition: opacity 0.12s ease, transform 0.12s ease, visibility 0.12s;
    pointer-events: none;
  }

  .has-tip[data-tip]:hover::after,
  .has-tip[data-tip]:focus-visible::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nominee-head {
  position: sticky;
  top: var(--header-height, 0px);
  z-index: 4;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: var(--year, var(--accent));
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.nominee.is-finalist {
  background: color-mix(in srgb, var(--year, var(--accent)) 7%, transparent);
}

.nominee-main {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.45rem;
}

.nominee-name {
  font-weight: 500;
  color: var(--ink);
}

.nominee-head .nominee-name {
  font-weight: 600;
  color: #fff;
}

.nominee.is-finalist .nominee-name {
  font-weight: 700;
  color: var(--year, var(--accent));
}

.nominee-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.4rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.nominee-meta > *::before {
  content: "·";
  margin-right: 0.4rem;
  color: var(--meta-dot);
}

.nominee-tags,
.nominee-tags-label {
  justify-self: end;
  text-align: right;
  min-width: 0;
}

.nominee-tags {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.08rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  line-height: 1;
  min-height: 1em;
}

.nominee-tags-label,
.nominee-count-label {
  color: #fff;
}

.nominee-count,
.nominee-count-label {
  justify-self: end;
  text-align: right;
}

.nominee-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.55rem;
  padding: 0.08rem 0.35rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--year, var(--accent)) 12%, var(--fill));
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.nominee-count.is-empty {
  visibility: hidden;
}

.nominee.is-finalist .nominee-count:not(.is-empty) {
  background: color-mix(in srgb, var(--year, var(--accent)) 18%, var(--paper));
  color: color-mix(in srgb, var(--year, var(--accent)) 72%, black);
}

@media (max-width: 560px) {
  .nominee {
    grid-template-columns: minmax(0, 1fr) auto minmax(3.25rem, auto);
    gap: 0.2rem 0.45rem;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }

  .nominee-count-label {
    font-size: 0.7rem;
  }

  .nominee-table.no-tags .nominee {
    grid-template-columns: minmax(0, 1fr) minmax(3.25rem, auto);
  }
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.logo-row a { display: block; width: min(14rem, 45%); }

.status { color: var(--muted); padding: 1rem 0; }
.error { color: var(--error); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 1.25rem 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
}

.footer-inner p { margin: 0; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 2.15rem;
  height: 2.15rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.social-links a:hover { color: var(--accent); border-color: var(--accent); }

.social-links svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.social-links-labeled a {
  width: auto;
  height: auto;
  padding: 0.55rem 0.9rem;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

.contact-form-card {
  max-width: 36rem;
  margin-top: 0;
}

.contact-form-card .card-body {
  padding: 1.25rem;
}

.contact-category-list {
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.contact-category-list li {
  margin-bottom: 0.35rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.contact-field {
  display: grid;
  gap: 0.35rem;
}

.contact-field label {
  font-weight: 650;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--ink);
}

.contact-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.contact-check input {
  width: auto;
}

.contact-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.contact-error {
  margin: 0;
  color: var(--error);
  font-size: 0.92rem;
}

.contact-actions {
  margin-top: 0.25rem;
}

.contact-submit {
  appearance: none;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 650;
  padding: 0.6rem 1.1rem;
}

.contact-submit:hover {
  filter: brightness(0.95);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}
