:root {
  --red: #c8102e;
  --red-dark: #960c22;
  --ink: #151515;
  --muted: #626262;
  --paper: #ffffff;
  --soft: #f4f2ef;
  --line: #dedbd6;
  --gold: #f2c14e;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(21, 21, 21, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
button, input { font: inherit; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: white;
  background: var(--ink);
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }
.wrap { width: min(1160px, calc(100% - 2rem)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: white;
  background: rgba(15, 15, 15, .96);
  border-bottom: 3px solid var(--red);
}
.nav-row { min-height: 76px; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; font-weight: 900; letter-spacing: -.02em; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid white;
  font-size: .78rem;
  letter-spacing: .04em;
}
.brand small { display: block; color: #c9c9c9; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.brand-logo { width: 48px; height: 48px; display: block; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: .82rem; margin-left: auto; }
.nav-links a { text-decoration: none; color: #efefef; font-size: .78rem; font-weight: 750; white-space: nowrap; }
.nav-links a:hover, .nav-links a:focus-visible { color: white; text-decoration: underline; text-underline-offset: .3rem; }
.nav-dropdown { position: relative; }
.nav-dropdown summary { display: flex; align-items: center; gap: .35rem; color: #efefef; cursor: pointer; font-size: .78rem; font-weight: 750; list-style: none; white-space: nowrap; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary:hover, .nav-dropdown summary:focus-visible { color: white; text-decoration: underline; text-underline-offset: .3rem; }
.nav-dropdown summary span { transition: transform .18s ease; }
.nav-dropdown[open] summary span { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; z-index: 20; top: calc(100% + 1rem); left: -.8rem; width: max-content; min-width: 210px; padding: .45rem; display: grid; background: #151515; border: 1px solid #444; border-top: 4px solid var(--red); border-radius: 0 0 8px 8px; box-shadow: var(--shadow); }
.nav-dropdown-menu a { padding: .7rem .8rem; border-radius: 5px; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus-visible { background: var(--red-dark); text-decoration: none; }
.button, .nav-links .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  padding: .72rem 1.05rem;
  color: white;
  background: var(--red);
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button:hover, .button:focus-visible { background: var(--red-dark); }
.button.secondary { color: var(--ink); background: white; border: 1px solid var(--line); }
.button.secondary:hover, .button.secondary:focus-visible { background: var(--soft); }
.button[aria-disabled="true"] { opacity: .62; cursor: not-allowed; }
.nav-toggle { display: none; margin-left: auto; padding: .6rem; color: white; background: transparent; border: 1px solid #555; border-radius: .5rem; }
.hero {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(200, 16, 46, .45), transparent 26rem),
    linear-gradient(125deg, #0d0d0d 25%, #292929 100%);
}
.hero-grid { min-height: 590px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 4rem; padding-block: 5rem; }
.eyebrow { margin: 0 0 .8rem; color: var(--red); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero .eyebrow { color: #ff5570; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 760px; margin: 0; font-size: clamp(3rem, 7vw, 6.4rem); text-transform: uppercase; }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { margin: 0; font-size: 1.25rem; }
.hero-copy { max-width: 640px; margin: 1.35rem 0 0; color: #d9d9d9; font-size: 1.12rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.hero-card {
  position: relative;
  padding: 2rem;
  color: var(--ink);
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; background: var(--red); border-radius: var(--radius) 0 0 var(--radius); }
.status { display: inline-flex; align-items: center; gap: .5rem; color: var(--red-dark); font-weight: 900; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.status::before { content: ""; width: .62rem; height: .62rem; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(242,193,78,.2); }
.hero-card h2 { margin-top: .75rem; font-size: 2rem; }
.hero-card p { color: var(--muted); }
.mini-list { padding: 0; margin: 1.5rem 0 0; list-style: none; }
.mini-list li { padding: .8rem 0; border-top: 1px solid var(--line); font-weight: 700; }
.section { padding-block: 5rem; }
.section.soft { background: var(--soft); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2rem; }
.section-heading p { max-width: 570px; margin: 0; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { padding: 1.5rem; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.card-number { display: grid; place-items: center; width: 2.4rem; height: 2.4rem; margin-bottom: 1rem; color: white; background: var(--red); border-radius: 50%; font-weight: 900; }
.card p { color: var(--muted); }
.notice { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.2rem; background: #fff8e7; border: 1px solid #ead398; border-radius: 14px; }
.notice strong { display: block; }
.notice p { margin: .2rem 0 0; color: #68572b; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.quick-link { min-height: 150px; padding: 1.3rem; display: flex; flex-direction: column; justify-content: space-between; background: var(--ink); color: white; border-radius: var(--radius); text-decoration: none; }
.quick-link:hover, .quick-link:focus-visible { background: var(--red-dark); }
.quick-link span { color: #cfcfcf; font-size: .88rem; }
.news-section { background: var(--paper); }
.news-slider { max-width: 1200px; margin-inline: auto; }
.news-stage { overflow: hidden; background: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); }
.news-loading { min-height: 400px; display: grid; place-items: center; margin: 0; color: white; }
.news-slide { position: relative; overflow: hidden; aspect-ratio: 1200 / 675; min-height: 360px; color: white; background: #202020; }
.news-slide img { width: 100%; height: 100%; display: block; object-fit: cover; }
.news-slide::after { content: ""; position: absolute; inset: 25% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.92)); pointer-events: none; }
.news-caption { position: absolute; z-index: 1; inset: auto 0 0; max-width: 850px; padding: clamp(1.25rem, 4vw, 3rem); }
.news-caption h3 { font-size: clamp(1.55rem, 3.4vw, 3rem); }
.news-caption p { max-width: 680px; margin: .6rem 0; color: #e2e2e2; }
.news-caption .news-date { margin: 0 0 .4rem; color: #ff9bac; font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.news-caption a { font-weight: 850; text-underline-offset: .25rem; }
.slider-controls { display: flex; justify-content: center; align-items: center; gap: 1rem; padding-top: 1rem; }
.slider-button, .slider-dots button { border: 0; cursor: pointer; }
.slider-button { width: 44px; height: 44px; color: white; background: var(--ink); border-radius: 50%; font-weight: 900; }
.slider-button:hover, .slider-button:focus-visible { background: var(--red); }
.slider-dots { display: flex; gap: .5rem; }
.slider-dots button { width: .72rem; height: .72rem; padding: 0; background: #b8b8b8; border-radius: 50%; }
.slider-dots button[aria-current="true"] { background: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.2); }
.news-more { margin: 1.25rem 0 0; text-align: center; }
.news-archive { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 430px)); justify-content: center; gap: 1.25rem; }
.news-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 10px 28px rgba(21,21,21,.08); }
.news-card > a { height: 100%; display: flex; flex-direction: column; color: var(--ink); text-decoration: none; }
.news-card > a:hover h2, .news-card > a:focus-visible h2 { color: var(--red-dark); text-decoration: underline; text-underline-offset: .2em; }
.news-card img { width: 100%; height: auto; aspect-ratio: 16 / 9; display: block; object-fit: cover; background: var(--soft); }
.news-card-copy { padding: 1.25rem; }
.news-card-copy .news-date { margin: 0 0 .5rem; color: var(--red-dark); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.archive-tools { margin-bottom: 2rem; padding: 1.4rem; background: white; border: 1px solid var(--line); border-top: 5px solid var(--red); border-radius: 10px; box-shadow: 0 10px 28px rgba(21,21,21,.06); }
.archive-tools > label { display: block; margin-bottom: .55rem; font-weight: 900; }
.archive-search-row { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: .65rem; }
.archive-search-row input { min-width: 0; width: 100%; padding: .8rem .9rem; color: var(--ink); background: white; border: 1px solid #999; border-radius: 8px; font: inherit; }
.archive-summary { margin-bottom: 1.1rem; display: flex; justify-content: space-between; align-items: end; gap: 1rem; border-bottom: 2px solid var(--ink); }
.archive-summary h2 { margin: 0; padding-bottom: .65rem; }
.archive-summary p { margin: 0; padding-bottom: .65rem; color: var(--muted); font-weight: 750; }
.archive-actions { padding-top: 2rem; text-align: center; }
.archive-empty { grid-column: 1 / -1; }
.news-card-copy h2 { font-size: 1.5rem; }
.news-card-copy > p:last-child { color: var(--muted); }
.article-hero h1 { max-width: 950px; font-size: clamp(2.3rem, 6vw, 4.5rem); }
.article-body { max-width: 850px; font-size: 1.08rem; }
.article-body > p, .article-body > div { margin-block: 1.2rem; }
.article-body img { width: 100%; height: auto; display: block; margin: 1.5rem auto; border-radius: 8px; }
.article-body h2, .article-body h3 { margin-top: 2rem; }
.article-body a { color: var(--red-dark); font-weight: 750; }
.page-hero { padding-block: 4.5rem; color: white; background: linear-gradient(120deg, #101010, #2b2b2b); }
.page-hero h1 { font-size: clamp(2.7rem, 7vw, 5rem); }
.page-hero p { max-width: 680px; color: #d2d2d2; font-size: 1.08rem; }
.page-content { min-height: 420px; }
.link-list { display: grid; gap: .75rem; padding: 0; list-style: none; }
.link-list a { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; background: white; border: 1px solid var(--line); border-radius: 12px; font-weight: 800; text-decoration: none; }
.link-list a:hover, .link-list a:focus-visible { border-color: var(--red); color: var(--red-dark); }
.site-footer { padding: 3rem 0; color: #bdbdbd; background: #0c0c0c; }
.footer-row { display: flex; justify-content: space-between; gap: 2rem; }
.site-footer strong { color: white; }
.footer-credit { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.12); text-align: center; font-size: .72rem; }
.footer-credit a { color: rgba(255,255,255,.78); text-decoration: underline; text-underline-offset: 3px; }
.footer-credit a:hover, .footer-credit a:focus-visible { color: white; }
.profile-grid { width: min(860px, 100%); margin-inline: auto; padding: 1.75rem; display: grid; grid-template-columns: 1fr; gap: .65rem; background: rgba(200,16,46,.16); border-radius: 10px; }
.profile-card { min-height: 215px; padding: 1.25rem 1.9rem; display: grid; grid-template-columns: 180px minmax(0, 1fr); align-items: center; gap: 2.7rem; overflow: hidden; background: rgba(255,255,255,.88); border: 1px solid rgba(200,16,46,.12); border-radius: 8px; box-shadow: 0 8px 22px rgba(21,21,21,.06); }
.profile-card img { width: 180px; height: 180px; aspect-ratio: 1; display: block; object-fit: cover; background: var(--soft); border-radius: 50%; }
.profile-copy { min-width: 0; padding: .5rem 0; }
.profile-copy h2 { width: fit-content; padding-bottom: .25rem; border-bottom: 2px solid currentColor; font-size: clamp(1.55rem, 3vw, 2rem); }
.profile-role { margin: .8rem 0; color: #4f4f4f; font-weight: 600; }
.profile-contact { display: grid; gap: .45rem; margin-top: .8rem; font-size: .92rem; }
.profile-contact a { width: fit-content; display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); overflow-wrap: anywhere; text-decoration: none; font-weight: 750; }
.profile-contact a:hover, .profile-contact a:focus-visible { color: var(--red-dark); text-decoration: underline; text-underline-offset: .2rem; }
.prose { max-width: 850px; margin-inline: auto; }
.prose .lead { margin: 0; font-size: 1.2rem; line-height: 1.7; }
.content-section { margin-top: 2.5rem; }
.content-section h2 { padding-bottom: .65rem; border-bottom: 3px solid var(--red); font-size: clamp(1.7rem, 4vw, 2.5rem); }
.content-list { padding-left: 1.25rem; }
.content-list li { margin-block: .8rem; }
.sponsor-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.sponsor-card { padding: 1.5rem; display: block; text-align: center; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 10px; text-decoration: none; }
.sponsor-card:hover, .sponsor-card:focus-visible { border-color: var(--red); box-shadow: var(--shadow); }
.sponsor-card img { width: 100%; aspect-ratio: 1; display: block; object-fit: contain; }
.sponsor-card h2 { margin-top: 1rem; font-size: 1.35rem; }
.sponsor-card span { color: var(--red-dark); font-weight: 800; }

/* Admin prototype */
.admin-body { background: #f5f5f5; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 250px 1fr; }
.sidebar { padding: 1.5rem 1rem; color: white; background: #111; }
.sidebar .brand { padding: 0 .5rem 1.5rem; border-bottom: 1px solid #383838; }
.sidebar nav { margin-top: 1.3rem; display: grid; gap: .25rem; }
.sidebar nav a { padding: .72rem .85rem; color: #d5d5d5; border-radius: .55rem; text-decoration: none; font-weight: 700; }
.sidebar nav a:hover, .sidebar nav a:focus-visible, .sidebar nav a[aria-current="page"] { color: white; background: var(--red); }
.admin-main { min-width: 0; }
.admin-top { min-height: 76px; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: white; border-bottom: 1px solid var(--line); }
.admin-content { width: min(1180px, calc(100% - 3rem)); margin: 0 auto; padding-block: 2rem 4rem; }
.admin-title { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.admin-title h1 { font-size: clamp(2rem, 4vw, 3rem); text-transform: none; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; }
.metric { padding: 1.25rem; background: white; border: 1px solid var(--line); border-radius: 14px; }
.metric span { color: var(--muted); font-size: .84rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.metric strong { display: block; margin-top: .25rem; font-size: 2rem; }
.panel-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 1rem; margin-top: 1rem; }
.panel { padding: 1.4rem; background: white; border: 1px solid var(--line); border-radius: 14px; }
.panel h2 { font-size: 1.25rem; letter-spacing: -.02em; }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.empty { padding: 2.5rem 1rem; text-align: center; color: var(--muted); }
.empty strong { display: block; color: var(--ink); font-size: 1.05rem; }
.checklist { padding: 0; margin: 1rem 0 0; list-style: none; }
.checklist li { padding: .8rem 0; display: flex; gap: .7rem; border-bottom: 1px solid var(--line); }
.checklist li::before { content: "○"; color: var(--red); font-weight: 900; }
.content-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.content-table th, .content-table td { padding: .85rem .7rem; text-align: left; border-bottom: 1px solid var(--line); }
.content-table th { color: var(--muted); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.status-chip { display: inline-flex; padding: .22rem .55rem; border-radius: 999px; color: #155b31; background: #dff5e7; font-size: .78rem; font-weight: 850; }
.admin-tabs { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.25rem 0; }
.admin-tabs a { padding: .55rem .8rem; border: 1px solid var(--line); border-radius: 8px; background: white; text-decoration: none; font-weight: 750; }
.admin-tabs a[aria-current="page"] { color: white; background: var(--red); border-color: var(--red); }
.media-form { display: grid; gap: 1rem; margin-top: 1.25rem; }
.media-form label { display: grid; gap: .4rem; font-weight: 800; }
.media-form select, .media-form input { width: 100%; padding: .75rem; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 8px; }
.media-form .button { justify-self: start; }
.optimizer-result { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.optimizer-result[hidden] { display: none; }
.optimizer-result img { width: 100%; max-height: 420px; display: block; object-fit: contain; background: var(--soft); border-radius: 8px; }
.optimizer-result dl { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.optimizer-result dl div { padding: .75rem; background: var(--soft); border-radius: 8px; }
.optimizer-result dt { color: var(--muted); font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.optimizer-result dd { margin: .25rem 0 0; font-weight: 850; }
.form-error { min-height: 1.5rem; color: #a00; font-weight: 750; }
.editor-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr); gap: 1rem; margin-top: 1.5rem; }
.editor-grid > *, .field-row > * { min-width: 0; }
.form-stack { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr); align-content: start; gap: 1rem; }
.form-stack > .panel { min-width: 0; }
.form-stack label { display: grid; gap: .4rem; font-weight: 800; }
.form-stack input:not([type="checkbox"]), .form-stack select, .form-stack textarea { min-width: 0; width: 100%; padding: .75rem; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.field-help { margin: 0; color: var(--muted); font-size: .88rem; }
.text-button { padding: 0; justify-self: start; color: var(--red-dark); background: transparent; border: 0; font-weight: 800; }
.people-admin-list { display: grid; }
.people-admin-row { padding: .8rem 0; display: grid; grid-template-columns: 58px minmax(0, 1fr) auto; align-items: center; gap: 1rem; color: var(--ink); border-bottom: 1px solid var(--line); text-decoration: none; }
.people-admin-row:hover, .people-admin-row:focus-visible { color: var(--red-dark); background: var(--soft); }
.people-admin-row img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; }
.people-admin-row > span { display: grid; gap: .15rem; }
.people-admin-row small { color: var(--muted); text-transform: capitalize; }
.event-list, .event-story-list { display: grid; gap: 1rem; }
.event-card a, .event-story { padding: 1.2rem; display: block; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 10px; text-decoration: none; }
.event-card a:hover, .event-card a:focus-visible, .event-story:hover, .event-story:focus-visible { border-color: var(--red); box-shadow: var(--shadow); }
.event-date, .event-story span { margin: 0 0 .35rem; color: var(--red-dark); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.event-story strong, .event-story small { display: block; }
.event-story small { margin-top: .35rem; color: var(--muted); }
.prototype-banner { padding: .65rem 1rem; text-align: center; background: #fff2c8; color: #4f421a; font-size: .86rem; font-weight: 750; }
.quick-link[aria-disabled="true"] { color: #d7d7d7; cursor: not-allowed; }

/* Branding direction follows the current ECKWC Jersey Watch site. */
.visually-hidden { 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 { background: #161010; border-bottom: 0; }
.nav-row { min-height: 72px; }
.brand { min-width: 56px; }
.nav-links { gap: 1.7rem; }
.nav-links a { color: white; font-family: "Arial Narrow", "Roboto Condensed", Roboto, sans-serif; font-size: .9rem; font-stretch: condensed; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }
.nav-links .button, .button { border-radius: 10px; font-family: "Arial Narrow", "Roboto Condensed", Roboto, sans-serif; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }
.nav-links .button { color: #161010; background: white; border-left: 1px solid #777; }
.nav-links .button:hover, .nav-links .button:focus-visible { color: white; background: var(--red); text-decoration: none; }
.legacy-home {
  min-height: 850px;
  padding: 1.25rem 0 5rem;
  background:
    linear-gradient(rgba(200, 16, 46, .16), rgba(15, 10, 10, .34)),
    url("https://s3.amazonaws.com/jerseywatch-files/production/organizations/32440/layout/layout-19325.webp") center top / cover fixed;
}
.registration-banner { min-height: 86px; padding: 1.1rem 2.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: white; background: rgba(22,16,16,.96); border-radius: 10px; font-family: "Arial Narrow", "Roboto Condensed", Roboto, sans-serif; font-size: 1.15rem; font-weight: 900; text-transform: uppercase; }
.registration-banner .button { min-width: 210px; }
.club-wordmark { width: min(900px, 90%); height: auto; display: block; margin: 2.7rem auto; }
.home-news-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 400px); gap: 1.25rem; align-items: start; }
.news-slider { min-width: 0; width: 100%; max-width: none; padding: 4px 4px 1rem; background: rgba(225,220,220,.94); border-radius: 9px; box-shadow: 0 18px 40px rgba(0,0,0,.22); }
.news-stage { width: 100%; background: transparent; border-radius: 6px 6px 0 0; box-shadow: none; }
.news-slide { width: 100%; height: 100%; display: grid; grid-template-rows: auto 170px; aspect-ratio: auto; min-height: 0; color: #161010; background: transparent; }
.news-slide img { aspect-ratio: 1200 / 675; object-fit: cover; border-radius: 4px; }
.news-slide::after { display: none; }
.news-caption { position: relative; inset: auto; max-width: none; height: 170px; padding: 1rem 1.25rem .25rem; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.news-caption h3 { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; font-family: "Arial Narrow", "Roboto Condensed", Roboto, sans-serif; font-size: 1.5rem; font-weight: 900; }
.news-caption p { display: none; }
.news-caption .news-date { display: block; margin-top: .45rem; color: #777; }
.news-caption a { color: var(--red-dark); }
.slider-controls { padding-top: .6rem; }
.slider-button { width: 36px; height: 36px; background: #4b4545; }
.news-more { margin: .8rem 0 0; }
.announcement-panel { overflow: hidden; background: rgba(243,222,224,.94); border-radius: 9px; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.announcement-panel h2 { padding: 1rem 1.2rem; color: white; background: rgba(22,16,16,.94); font-family: "Arial Narrow", "Roboto Condensed", Roboto, sans-serif; font-size: 1.25rem; text-transform: uppercase; }
.announcement-list { padding: 1rem 1.3rem; display: grid; gap: .15rem; }
.announcement-list a { padding: 1rem 0; display: grid; gap: .35rem; color: #161010; border-bottom: 1px solid rgba(22,16,16,.18); text-decoration: none; }
.announcement-list a:hover strong, .announcement-list a:focus-visible strong { color: var(--red-dark); text-decoration: underline; }
.announcement-list strong { line-height: 1.12; }
.announcement-list span { color: #766b6b; font-size: .82rem; }
.facebook-panel { overflow: hidden; background: rgba(243,222,224,.94); border-radius: 9px; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.facebook-panel h2 { padding: 1rem 1.2rem; color: white; background: rgba(22,16,16,.94); font-family: "Arial Narrow", "Roboto Condensed", Roboto, sans-serif; font-size: 1.25rem; text-transform: uppercase; }
.facebook-feed { min-height: 520px; padding: .6rem; display: flex; justify-content: center; overflow: hidden; background: white; }
.facebook-feed .fb-page { width: min(380px, 100%); max-width: 100%; }
.facebook-feed iframe { max-width: 100%; display: block; border: 0; }
.facebook-fallback { margin: 0; padding: .9rem 1rem; text-align: center; background: white; }
.facebook-fallback a { color: var(--red-dark); font-weight: 850; text-underline-offset: .2rem; }
.page-hero { background: linear-gradient(rgba(22,16,16,.75), rgba(22,16,16,.82)), url("https://s3.amazonaws.com/jerseywatch-files/production/organizations/32440/layout/layout-19325.webp") center / cover; }
.page-hero h1, .section-heading h2, .admin-title h1 { font-family: "Arial Narrow", "Roboto Condensed", Roboto, sans-serif; font-weight: 900; text-transform: uppercase; }
.quick-link { border-radius: 9px; background: linear-gradient(90deg, #161010, #423030); }
.site-footer { background: #161010; }
.nav-dropdown summary { font-family: "Arial Narrow", "Roboto Condensed", Roboto, sans-serif; font-size: .9rem; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }
.video-library { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 300px)); justify-content: center; gap: 1.25rem; }
.video-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 10px 28px rgba(21,21,21,.08); }
.video-frame { aspect-ratio: 16 / 9; background: #111; }
.video-frame iframe { width: 100%; height: 100%; display: block; border: 0; }
.video-card-copy { padding: 1.25rem; }
.video-card-copy h3 { font-size: 1.45rem; }
.video-card-copy p { color: var(--muted); }
.video-card-copy a { color: var(--red-dark); font-weight: 850; }
.admin-record-row { padding: 1rem .5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--ink); border-bottom: 1px solid var(--line); text-decoration: none; }
.admin-record-row:hover, .admin-record-row:focus-visible { color: var(--red-dark); background: var(--soft); }
.admin-record-row > span:first-child { display: grid; }
.admin-record-row small { color: var(--muted); text-transform: capitalize; }
.nav-child-row { padding-left: 2rem; background: #fafafa; }

.donation-page {
  min-height: 780px;
  padding: 5.5rem 0;
  display: grid;
  align-items: center;
  color: white;
  background:
    linear-gradient(rgba(200, 16, 46, .58), rgba(38, 14, 18, .58)),
    url("https://s3.amazonaws.com/jerseywatch-files/production/organizations/32440/layout/layout-19325.webp") center / cover;
}
.donation-layout { display: flex; justify-content: center; }
.donation-card {
  width: min(650px, 100%);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: white;
  background: rgba(28, 22, 22, .94);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 10px;
  box-shadow: 0 20px 55px rgba(0,0,0,.34);
}
.donation-card .eyebrow { color: #ff8fa1; }
.donation-card h1 { max-width: none; font-family: "Arial Narrow", "Roboto Condensed", Roboto, sans-serif; font-size: clamp(2rem, 5vw, 3.3rem); }
.donation-intro { margin: 1.35rem 0 1.75rem; color: #f0eded; font-weight: 650; }
.donation-form fieldset { padding: 0; margin: 0; border: 0; }
.donation-form legend { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.donation-amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.donation-amount {
  min-height: 54px;
  padding: .7rem;
  color: white;
  background: #161010;
  border: 2px solid #050303;
  border-radius: 5px;
  font-family: "Arial Narrow", "Roboto Condensed", Roboto, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.donation-amount:hover, .donation-amount:focus-visible, .donation-amount[aria-pressed="true"] { background: var(--red); border-color: white; }
.custom-amount { margin-top: 1.2rem; }
.custom-amount label { display: block; margin-bottom: .4rem; font-weight: 800; }
.currency-input { display: grid; grid-template-columns: auto 1fr; align-items: center; color: var(--ink); background: white; border-radius: 6px; }
.currency-input span { padding-left: 1rem; font-weight: 900; }
.currency-input input { min-width: 0; width: 100%; padding: .8rem .9rem .8rem .35rem; color: var(--ink); background: transparent; border: 0; }
.donation-continue { width: min(250px, 100%); margin: 2rem auto 0; display: flex; }
.donation-continue:disabled { color: #343030; background: #bbb; cursor: not-allowed; }
.donation-fee-note { margin: 1.7rem 0 0; text-align: center; font-size: .9rem; }
.donation-status { margin-top: 1rem; padding: 1rem; color: #3c310d; background: #fff2c8; border-radius: 7px; font-weight: 750; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none; position: absolute; inset: 76px 0 auto; padding: 1rem; flex-direction: column; align-items: stretch; background: #151515; }
  .nav-links.open { display: flex; }
  .hero-grid, .panel-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 2.5rem; padding-block: 4rem; }
  .card-grid, .quick-grid, .profile-grid, .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-shell { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .nav-links { gap: .4rem; }
  .nav-dropdown summary { padding: .6rem 0; }
  .nav-dropdown-menu { position: static; width: 100%; min-width: 0; margin-top: .35rem; padding: .35rem 0 .35rem .8rem; background: #242020; border: 0; border-left: 4px solid var(--red); border-radius: 0; box-shadow: none; }
  .home-news-grid { grid-template-columns: 1fr; }
  .announcement-panel, .facebook-panel { order: 2; }
  .legacy-home { background-attachment: scroll; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 1.25rem, 1160px); }
  .brand-text { font-size: .9rem; }
  .hero-grid { min-height: auto; padding-block: 3.5rem; }
  h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .section { padding-block: 3.5rem; }
  .section-heading, .footer-row, .admin-title { align-items: flex-start; flex-direction: column; }
  .card-grid, .quick-grid, .metric-grid, .sponsor-grid, .news-archive { grid-template-columns: 1fr; }
  .profile-grid { padding: .65rem; }
  .profile-card { min-height: 0; padding: 1.25rem; grid-template-columns: 1fr; justify-items: center; gap: 1rem; text-align: center; }
  .profile-card img { width: 150px; height: 150px; }
  .profile-copy h2, .profile-contact a { margin-inline: auto; }
  .people-admin-row { grid-template-columns: 48px minmax(0, 1fr); }
  .people-admin-row small { grid-column: 2; }
  .content-table { display: block; overflow-x: auto; }
  .optimizer-result dl { grid-template-columns: repeat(2, 1fr); }
  .editor-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .admin-top { padding-inline: 1rem; }
  .admin-content { width: min(100% - 1.25rem, 1180px); }
  .registration-banner { padding: 1rem; align-items: stretch; flex-direction: column; text-align: center; }
  .registration-banner .button { min-width: 0; }
  .club-wordmark { width: 100%; margin-block: 2rem; }
  .news-slide { aspect-ratio: auto; min-height: 0; }
  .news-caption h3 { overflow-wrap: anywhere; }
  .archive-search-row { grid-template-columns: 1fr; }
  .archive-summary { align-items: flex-start; flex-direction: column; }
  .news-caption p:not(.news-date) { display: none; }
  .donation-page { min-height: 0; padding: 2.5rem 0; }
  .donation-amounts { grid-template-columns: repeat(2, 1fr); }
  .video-library { grid-template-columns: minmax(0, 300px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
