:root {
  --ink: #122033;
  --muted: #5e6876;
  --line: #d9e2e8;
  --paper: #f7f9f6;
  --white: #ffffff;
  --blue: #145ea8;
  --blue-dark: #0e416f;
  --gold: #f1b82d;
  --green: #2f7d55;
  --red: #c84630;
  --shadow: 0 20px 60px rgba(18, 32, 51, 0.16);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.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: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(12, 25, 38, 0.56);
  color: var(--white);
  box-shadow: 0 10px 32px rgba(18, 32, 51, 0.12);
  backdrop-filter: blur(18px);
}

.header-identity {
  display: inline-flex;
  min-width: 128px;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  width: 74px;
  height: 34px;
  align-items: center;
  text-decoration: none;
  opacity: 0.82;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-link {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: var(--white);
  opacity: 0.86;
  text-decoration: none;
}

.brand:hover,
.brand:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  opacity: 1;
  outline: none;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-nav .nav-action {
  margin-left: 8px;
  background: var(--gold);
  color: #231700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 25, 38, 0.88), rgba(12, 25, 38, 0.48) 48%, rgba(12, 25, 38, 0.06)),
    linear-gradient(0deg, rgba(12, 25, 38, 0.68), rgba(12, 25, 38, 0.05) 42%);
}

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin: 0 auto;
  padding: 146px 0 12vh;
}

.hero-region-mark {
  width: clamp(282px, 41vw, 437px);
  margin-bottom: 28px;
  padding: clamp(14px, 2vw, 20px);
  border: 2px solid rgba(241, 184, 45, 0.82);
  border-radius: 8px;
  background: rgba(7, 26, 51, 0.9);
  box-shadow: 0 24px 80px rgba(7, 26, 51, 0.38);
}

.hero-region-mark img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 30px;
}

.button,
.feature-panel button,
.role-detail a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
.feature-panel button,
.role-detail a {
  background: var(--gold);
  color: #241800;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 30px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.season-calendar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.registration-section {
  background: var(--white);
}

.registration-panel {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf7;
}

.registration-copy {
  max-width: 760px;
}

.registration-copy p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.05rem;
}

.registration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.registration-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.registration-contacts a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid #dfe8e5;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.registration-contacts a:hover,
.registration-contacts a:focus-visible {
  border-color: rgba(3, 40, 80, 0.34);
  outline: none;
}

.registration-contacts span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.registration-contacts strong {
  overflow-wrap: anywhere;
  font-size: 0.96rem;
}

.registration-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid #dfe8e5;
  border-radius: 8px;
  background: #dfe8e5;
}

.registration-stats div {
  min-height: 92px;
  padding: 14px;
  background: var(--white);
}

.registration-stats span,
.registration-stats strong {
  display: block;
}

.registration-stats span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.registration-stats strong {
  line-height: 1.2;
}

.button.quiet {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.season-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-panel,
.program-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-panel {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.feature-panel.accent {
  border-color: transparent;
  background: var(--blue);
  color: var(--white);
}

.feature-panel.accent p {
  color: rgba(255, 255, 255, 0.8);
}

.feature-panel a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.feature-panel.accent a,
.feature-panel.accent button {
  color: #231700;
}

.feature-panel button {
  margin-top: auto;
}

.season-list {
  width: 100%;
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.season-list li {
  display: grid;
  gap: 4px;
  padding: 11px 0;
  border-top: 1px solid #dfe8e5;
}

.feature-panel.accent .season-list li {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.season-list span,
.season-list strong {
  display: block;
}

.season-list span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-panel.accent .season-list span {
  color: rgba(255, 255, 255, 0.7);
}

.season-list strong {
  line-height: 1.25;
}

.season-list.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px 10px;
}

.season-list.compact li {
  min-height: 42px;
}

.panel-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: #eef4f8;
  color: var(--blue);
  font-weight: 950;
}

.feature-panel.accent .panel-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.programs {
  background: var(--white);
  padding-top: clamp(46px, 6vw, 78px);
  padding-bottom: clamp(50px, 6vw, 82px);
}

.programs .section-heading {
  width: min(1180px, 100%);
  max-width: none;
  margin-bottom: 22px;
}

.programs h2 {
  max-width: 900px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.94;
}

.program-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.program-layout {
  display: block;
}

.volunteer-content p {
  margin-top: 18px;
  font-size: 1.05rem;
}

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

.program-list article {
  min-height: 154px;
  padding: 20px;
}

.program-list img {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  object-fit: contain;
}

.program-list article:first-child img {
  width: 56px;
  height: 56px;
}

.program-list h3 {
  font-size: 1.15rem;
}

.program-list p {
  margin: 8px 0 0;
  line-height: 1.5;
}

.divisions {
  background: #edf3f2;
}

.division-selector,
.division-panel {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.division-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.division-pill {
  display: inline-grid;
  min-width: 74px;
  min-height: 54px;
  place-items: center;
  border: 1px solid #cddbd7;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}

.division-pill.active,
.division-pill:hover,
.division-pill:focus-visible {
  border-color: transparent;
  background: var(--gold);
  color: #241800;
  outline: none;
}

.division-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1.3fr);
  gap: clamp(18px, 4vw, 48px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid #cddbd7;
  border-radius: 8px;
  background: var(--white);
}

.division-panel h3 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
}

.division-birthdates {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 850;
}

.division-panel-copy p:not(.eyebrow):not(.division-birthdates) {
  margin-top: 18px;
  font-size: 1.08rem;
}

.division-panel-details {
  display: grid;
  gap: 14px;
}

.division-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.division-detail-grid > div {
  min-height: 230px;
  padding: 20px;
  border: 1px solid #dfe8e5;
  border-radius: 8px;
  background: #f8fbf7;
}

.division-detail-grid > div > span,
.division-detail-grid > div > strong {
  display: block;
}

.division-detail-grid > div > span {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.division-detail-grid > div > strong {
  font-size: 1.12rem;
  line-height: 1.25;
}

.division-detail-grid > div > p {
  margin: 12px 0 0;
  line-height: 1.5;
}

.division-coaches {
  display: grid;
  align-content: start;
  gap: 14px;
}

.coach-pie {
  width: min(104px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #f8fbf7 0 43%, transparent 44%),
    conic-gradient(var(--blue) 0 var(--head-share), var(--gold) var(--head-share) 100%);
}

.coach-pie strong {
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(18, 32, 51, 0.1);
}

.coach-groups {
  display: grid;
  gap: 8px;
}

.coach-group-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: center;
}

.coach-mini-pie {
  width: 24px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 var(--head-share), var(--gold) var(--head-share) 100%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.75);
}

.coach-group-row p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.coach-group-row strong,
.coach-group-row span {
  display: block;
}

.coach-group-row strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.coach-group-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.coach-counts {
  display: grid;
  gap: 8px;
}

.coach-counts p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.coach-counts strong {
  display: inline;
  color: var(--ink);
  font-size: 1rem;
}

.coach-key {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.coach-key.head {
  background: var(--blue);
}

.coach-key.assistant {
  background: var(--gold);
}

.division-capacity strong {
  color: var(--green);
}

.division-facility a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 950;
  text-decoration: none;
}

.division-facility a:hover,
.division-facility a:focus-visible {
  color: var(--green);
  outline: none;
}

.division-facility-map {
  display: block;
  overflow: hidden;
  border: 1px solid #dfe8e5;
  border-radius: 8px;
  background: #f8fbf7;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.division-facility-map:hover,
.division-facility-map:focus-visible {
  border-color: rgba(3, 40, 80, 0.35);
  box-shadow: 0 18px 42px rgba(6, 29, 58, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.division-facility-map figure {
  margin: 0;
}

.division-facility-map img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #e7ece7;
}

.division-facility-map figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.35;
}

.volunteer {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--blue-dark);
  color: var(--white);
}

.volunteer-content {
  max-width: 720px;
}

.volunteer p {
  color: rgba(255, 255, 255, 0.78);
}

.role-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.role {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.role.active,
.role:hover,
.role:focus-visible {
  background: var(--gold);
  color: #231700;
  outline: none;
}

.role-detail {
  grid-column: 1 / -1;
  min-height: 210px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.coach-trend {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.coach-trend span,
.coach-trend strong {
  display: block;
}

.coach-trend > div:first-child span {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.coach-trend > div:first-child strong {
  color: var(--white);
  font-size: 1.1rem;
}

.coach-trend svg {
  width: 100%;
  min-height: 180px;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.head-line {
  stroke: var(--gold);
}

.assistant-line {
  stroke: #9fd7ca;
}

.head-point,
.assistant-point {
  stroke: var(--blue-dark);
  stroke-width: 2;
}

.head-point {
  fill: var(--gold);
}

.assistant-point {
  fill: #9fd7ca;
}

.chart-labels text {
  fill: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  text-anchor: middle;
}

.coach-trend-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coach-trend-legend p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 850;
}

.safety-mark {
  grid-column: 2;
  justify-self: end;
  width: min(260px, 100%);
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.safety-mark img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 70px);
  background: var(--ink);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
  outline: none;
}

.admin-page {
  min-height: 100vh;
  background: #edf3f2;
}

.admin-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 0;
}

.admin-header {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 36px);
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--white);
}

.admin-header h1 {
  max-width: none;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.admin-header p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.admin-brand {
  display: block;
  padding: 10px;
  border: 1px solid rgba(241, 184, 45, 0.62);
  border-radius: 8px;
  background: rgba(5, 20, 40, 0.45);
}

.admin-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.admin-summary article,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-summary article {
  min-height: 158px;
  padding: 20px;
}

.admin-summary span {
  display: block;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-summary strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1;
}

.admin-summary p {
  margin: 12px 0 0;
  line-height: 1.4;
}

.admin-panel {
  margin-top: 18px;
  overflow: hidden;
}

.admin-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.admin-panel-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.admin-panel-heading > p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e5ece9;
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-table td.numeric,
.admin-table th:nth-child(n + 5) {
  text-align: right;
}

.admin-table tbody tr:hover {
  background: #f8fbf7;
}

.admin-table .is-inactive {
  color: #7a8490;
  background: #fbfbfa;
}

.admin-division-name {
  color: var(--ink);
  font-weight: 950;
}

.admin-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.admin-status.active {
  background: #e6f3ec;
  color: var(--green);
}

.admin-status.inactive {
  background: #eef1f4;
  color: #637082;
}

.email-page {
  min-height: 100vh;
  background: #edf3f2;
}

.email-shell {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px) 0;
}

.email-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.email-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.email-meta strong {
  color: var(--ink);
}

.email-report {
  display: grid;
  gap: 14px;
}

.email-report-hero {
  padding: clamp(24px, 5vw, 32px);
  border: 1px solid rgba(241, 184, 45, 0.5);
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--white);
}

.email-report-hero h1 {
  max-width: none;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.email-report-hero p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.55;
}

.email-report-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.email-report-card.soft {
  background: #f8fbf7;
}

.email-report-card h2 {
  font-size: clamp(1.45rem, 3vw, 1.8rem);
}

.email-report-card p {
  margin: 12px 0 18px;
}

.email-report-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.admin-email-button {
  background: var(--blue-dark);
  color: var(--white);
}

.email-note {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.email-report-footer p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.email-report-footer p:last-child {
  color: var(--ink);
}

@media (max-width: 860px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 58px;
    right: 18px;
    display: none;
    width: min(310px, calc(100vw - 36px));
    gap: 4px;
    padding: 10px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
    padding: 14px 12px;
    border-radius: 6px;
    border-bottom: 1px solid #edf3f2;
  }

  .site-nav .nav-action {
    margin-left: 0;
    margin-top: 6px;
    justify-content: center;
    border-bottom: 0;
    text-align: center;
  }

  .admin-header {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .admin-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(12, 25, 38, 0.88), rgba(12, 25, 38, 0.24)),
      linear-gradient(90deg, rgba(12, 25, 38, 0.72), rgba(12, 25, 38, 0.12));
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .season-grid,
  .program-layout,
  .division-panel,
  .volunteer {
    grid-template-columns: 1fr;
  }

  .program-list {
    grid-template-columns: 1fr;
  }

  .division-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .volunteer {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .safety-mark {
    grid-column: auto;
    justify-self: start;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .admin-header {
    grid-template-columns: 1fr;
  }

  .admin-brand {
    width: min(150px, 58vw);
  }

  .admin-summary {
    grid-template-columns: 1fr;
  }

  .admin-panel-heading {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 54px;
    padding: 8px 16px;
  }

  .hero-region-mark {
    width: min(340px, 84vw);
  }

  h1 {
    font-size: 3rem;
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .button,
  .feature-panel button {
    width: 100%;
  }

  .section {
    padding: 58px 18px;
  }

  .feature-panel,
  .program-list article {
    min-height: auto;
  }

  .role-board {
    grid-template-columns: 1fr;
  }

  .registration-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .registration-contacts {
    grid-template-columns: 1fr;
  }

  .season-list.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .division-detail-grid {
    grid-template-columns: 1fr;
  }

  .division-pill {
    min-width: 64px;
    min-height: 48px;
  }

  .role-detail {
    grid-column: auto;
  }

}
