:root {
  --background: #f5f5f3;
  --foreground: #181412;
  --muted: #6f6861;
  --line: #dddeda;
  --paper: #ffffff;
  --red: #b91016;
  --red-dark: #7e090e;
  --gold: #f2ba35;
  --ink: #231f20;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

code {
  background: #eee4d8;
  border-radius: 4px;
  padding: 2px 5px;
}

.site-header {
  align-items: center;
  background: rgba(255, 250, 244, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 12px 32px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  height: 52px;
}

.brand img {
  height: 52px;
  width: auto;
}

.site-header nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.site-header nav a {
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 12px;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  background: var(--red);
  color: #fff;
  outline: 0;
}

.home-page {
  background: #fff;
  color: #5f5f5f;
}

.home-page .site-header {
  background: #fff;
  border-bottom: 0;
  min-height: 184px;
  padding: 28px 40px;
  position: static;
}

.home-page .brand {
  height: auto;
  width: min(360px, 32vw);
}

.home-page .brand img {
  height: auto;
  width: 100%;
}

.home-page .site-header nav {
  gap: 6px;
}

.home-page .site-header nav a {
  background: transparent;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: #777;
  font-size: 0.84rem;
  font-weight: 400;
  padding: 12px 6px;
}

.home-page .site-header nav a:first-child,
.home-page .site-header nav a:hover,
.home-page .site-header nav a:focus-visible {
  border-bottom-color: #dc4b4f;
  color: #dc4b4f;
}

.home-title-band {
  align-items: center;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  min-height: 92px;
  padding: 20px;
}

.home-title-band h1 {
  color: #777;
  font-size: 1.45rem;
  font-weight: 400;
  margin: 0;
}

.home-original-content {
  margin: 0 auto;
  max-width: 1180px;
  padding: 40px 32px 64px;
}

.home-banner {
  aspect-ratio: 1000 / 389;
  object-fit: cover;
  width: 100%;
}

.home-intro-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  padding: 72px 10px 46px;
}

.home-intro-copy {
  display: grid;
  gap: 20px;
}

.home-intro-copy .home-welcome {
  color: #d74a4e;
  font-size: 1.28rem;
  font-style: italic;
  margin-bottom: -18px;
}

.home-intro-copy h2 {
  color: #d7373c;
  font-size: 1.75rem;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.18);
}

.home-intro-copy p {
  color: #6c6c6c;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.home-slider {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.home-slide {
  animation: home-slide-fade 20s infinite;
  inset: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
}

.home-slide:nth-child(1) {
  animation-delay: 0s;
}

.home-slide:nth-child(2) {
  animation-delay: 5s;
}

.home-slide:nth-child(3) {
  animation-delay: 10s;
}

.home-slide:nth-child(4) {
  animation-delay: 15s;
}

.home-slide img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home-action {
  margin: 0;
  text-align: center;
}

.youth-page .site-header nav a:first-child {
  border-bottom-color: transparent;
  color: #777;
}

.youth-page .site-header nav a:nth-child(5),
.youth-page .site-header nav a:nth-child(5):hover,
.youth-page .site-header nav a:nth-child(5):focus-visible {
  border-bottom-color: #dc4b4f;
  color: #dc4b4f;
}

.youth-content {
  margin: 0 auto;
  max-width: 1180px;
  padding: 40px 32px 72px;
}

.youth-title {
  color: #d7373c;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 52px 0 34px;
  text-align: center;
}

.youth-intro {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
}

.youth-copy {
  display: grid;
  gap: 16px;
}

.youth-copy h2,
.youth-contacts h2 {
  color: #d7373c;
  font-size: 1.2rem;
  margin: 0;
}

.youth-copy p {
  color: #6c6c6c;
  line-height: 1.65;
  margin: 0;
}

.youth-action {
  padding-top: 8px;
  text-align: center;
}

.youth-feature-image {
  margin: 0;
}

.youth-feature-image img {
  aspect-ratio: 1024 / 618;
  object-fit: cover;
  width: 100%;
}

.youth-contacts {
  padding-top: 66px;
}

.youth-contacts h2 {
  margin-bottom: 30px;
  text-align: center;
}

.youth-contact-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 820px;
}

.youth-contact {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.youth-contact img {
  aspect-ratio: 3 / 4;
  max-width: 290px;
  object-fit: cover;
  width: 100%;
}

.youth-contact p {
  color: #6c6c6c;
  display: grid;
  gap: 4px;
  line-height: 1.5;
  margin: 0;
}

.youth-contact strong,
.youth-contact span,
.youth-contact a {
  display: block;
}

.youth-contact a {
  color: inherit;
  text-decoration: none;
}

.youth-contact a:hover,
.youth-contact a:focus-visible {
  color: var(--red);
  outline: 0;
}

.kids-page .site-header nav a:first-child {
  border-bottom-color: transparent;
  color: #777;
}

.kids-intro {
  align-items: start;
}

.kids-invite {
  line-height: 1.7;
}

.kids-values {
  color: #6c6c6c;
  display: grid;
  gap: 5px;
  line-height: 1.5;
  list-style: none;
  margin: -4px 0 0;
  padding: 0;
}

.kids-values li::before {
  color: #d7373c;
  content: "•";
  display: inline-block;
  font-weight: 700;
  margin-right: 9px;
}

.kids-feature-image {
  padding-top: 38px;
}

.kids-feature-image img {
  aspect-ratio: 4 / 3;
}

.wehr-page .site-header nav a:first-child {
  border-bottom-color: transparent;
  color: #777;
}

.wehr-page .site-header nav a:nth-child(2),
.wehr-page .site-header nav a:nth-child(2):hover,
.wehr-page .site-header nav a:nth-child(2):focus-visible {
  border-bottom-color: #dc4b4f;
  color: #dc4b4f;
}

.wehr-content {
  margin: 0 auto;
  max-width: 1180px;
  padding: 40px 32px 72px;
}

.wehr-title {
  color: #d7373c;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 52px 0 38px;
  text-align: center;
}

.wehr-sections {
  display: grid;
  gap: 42px;
}

.wehr-row {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
}

.wehr-row > img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  width: 100%;
}

.wehr-row > div {
  display: grid;
  gap: 14px;
}

.wehr-row h2 {
  color: #d7373c;
  font-size: 1.25rem;
  margin: 0;
}

.wehr-row p {
  color: #6c6c6c;
  line-height: 1.65;
  margin: 0;
}

.wehr-row-action {
  padding-top: 8px;
  text-align: right;
}

.wehr-join {
  padding-top: 72px;
}

.wehr-join > h2 {
  color: #d7373c;
  font-size: 1.65rem;
  margin: 0 0 28px;
  text-align: center;
}

.wehr-join-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wehr-join-card {
  display: grid;
  gap: 16px;
  text-align: center;
}

.wehr-join-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
}

.wehr-join-image::after {
  background: rgba(0, 0, 0, 0.22);
  content: "";
  inset: 0;
  position: absolute;
}

.wehr-join-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.wehr-join-image h3 {
  color: #fff;
  font-size: 2rem;
  left: 50%;
  line-height: 1.08;
  margin: 0;
  position: absolute;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  z-index: 1;
}

.wehr-join-card > .action-link {
  justify-self: center;
  min-width: min(100%, 360px);
}

.board-page .site-header nav a:first-child {
  border-bottom-color: transparent;
  color: #777;
}

.board-page .site-header nav a:nth-child(2),
.board-page .site-header nav a:nth-child(2):hover,
.board-page .site-header nav a:nth-child(2):focus-visible {
  border-bottom-color: #dc4b4f;
  color: #dc4b4f;
}

.board-page main {
  background: #f8f8f8;
}

.board-content {
  margin: 0 auto;
  max-width: 1260px;
  padding: 92px 20px 72px;
}

.board-content > h1 {
  color: #e13a35;
  font-size: 1.75rem;
  margin: 0 0 48px;
  text-align: center;
}

.board-grid {
  display: grid;
  gap: 52px 38px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.board-member {
  color: #777;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.board-member img {
  aspect-ratio: 8 / 9;
  object-fit: cover;
  width: 100%;
}

.board-member h2 {
  color: #6d6d6d;
  font-size: 1.45rem;
  line-height: 1.25;
  margin: 8px 0 0;
}

.board-member p {
  color: #777;
  font-size: 0.96rem;
  line-height: 1.4;
  margin: 0;
}

.fleet-page .site-header nav a:first-child {
  border-bottom-color: transparent;
  color: #777;
}

.fleet-page .site-header nav a:nth-child(3),
.fleet-page .site-header nav a:nth-child(3):hover,
.fleet-page .site-header nav a:nth-child(3):focus-visible {
  border-bottom-color: #dc4b4f;
  color: #dc4b4f;
}

.fleet-online-content {
  margin: 0 auto;
  max-width: 1180px;
  padding: 40px 32px 72px;
}

.fleet-online-title {
  color: #d7373c;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 52px 0 38px;
  text-align: center;
}

.fleet-online-list {
  display: grid;
  gap: 44px;
}

.fleet-online-row {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
}

.fleet-online-row > img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.fleet-online-row > div {
  display: grid;
  gap: 14px;
}

.fleet-online-row h2 {
  color: #d7373c;
  font-size: 1.25rem;
  margin: 0;
}

.fleet-online-row p {
  color: #6c6c6c;
  line-height: 1.65;
  margin: 0;
}

.fleet-online-action {
  padding-top: 8px;
  text-align: right;
}

.dates-page .site-header nav a:first-child {
  border-bottom-color: transparent;
  color: #777;
}

.dates-page .site-header nav a:nth-child(6),
.dates-page .site-header nav a:nth-child(6):hover,
.dates-page .site-header nav a:nth-child(6):focus-visible {
  border-bottom-color: #dc4b4f;
  color: #dc4b4f;
}

.dates-content {
  margin: 0 auto;
  max-width: 1180px;
  padding: 40px 32px 72px;
}

.dates-title {
  color: #d7373c;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 52px 0 38px;
  text-align: center;
}

.dates-calendar {
  margin: 0 auto;
  max-width: 1050px;
}

.dates-calendar a {
  display: block;
}

.dates-calendar img {
  height: auto;
  width: 100%;
}

.contact-page .site-header nav a:first-child {
  border-bottom-color: transparent;
  color: #777;
}

.contact-page .site-header nav a:nth-child(7),
.contact-page .site-header nav a:nth-child(7):hover,
.contact-page .site-header nav a:nth-child(7):focus-visible {
  border-bottom-color: #dc4b4f;
  color: #dc4b4f;
}

.contact-online-content {
  margin: 0 auto;
  max-width: 1180px;
  padding: 40px 32px 72px;
}

.contact-online-title {
  color: #d7373c;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 52px 0 58px;
  text-align: center;
}

.contact-online-grid {
  align-items: start;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.contact-online-form {
  display: grid;
  gap: 12px;
}

.contact-online-form h2,
.contact-online-address h2,
.contact-online-people > h2 {
  color: #d7373c;
  font-size: 1.55rem;
  margin: 0;
}

.contact-online-form label {
  color: #777;
  font-size: 0.95rem;
  margin-top: 2px;
}

.contact-online-form input,
.contact-online-form textarea {
  background: #fff;
  border: 1px solid #8b8b8b;
  border-radius: 0;
  color: #5f5f5f;
  font: inherit;
  line-height: 1.4;
  padding: 10px 14px;
  width: 100%;
}

.contact-online-form input {
  min-height: 42px;
}

.contact-online-form textarea {
  min-height: 96px;
  resize: vertical;
}

.contact-online-form input:focus,
.contact-online-form textarea:focus {
  border-color: #d7373c;
  outline: 2px solid rgba(215, 55, 60, 0.16);
  outline-offset: 1px;
}

.contact-online-form button {
  background: #e33a35;
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  min-height: 58px;
  padding: 14px 18px;
}

.contact-online-form button:hover,
.contact-online-form button:focus-visible {
  background: #c92d29;
  outline: 0;
}

.contact-online-address {
  color: #777;
  display: grid;
  gap: 16px;
  justify-items: end;
  text-align: right;
}

.contact-online-address p {
  line-height: 1.55;
  margin: 0;
}

.contact-online-address a,
.contact-online-person a {
  color: inherit;
  text-decoration: none;
}

.contact-online-address a:hover,
.contact-online-address a:focus-visible,
.contact-online-person a:hover,
.contact-online-person a:focus-visible {
  color: #d7373c;
  outline: 0;
}

.contact-online-address img {
  height: auto;
  margin-top: 12px;
  max-width: 150px;
  width: 100%;
}

.contact-online-people {
  padding-top: 58px;
}

.contact-online-people > h2 {
  margin-bottom: 54px;
  text-align: center;
}

.contact-online-people-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 820px;
}

.contact-online-person {
  color: #777;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.contact-online-person img {
  aspect-ratio: 3 / 4;
  max-width: 225px;
  object-fit: cover;
  width: 100%;
}

.contact-online-person p {
  display: grid;
  gap: 4px;
  line-height: 1.35;
  margin: 0;
}

.contact-online-person strong,
.contact-online-person span,
.contact-online-person a {
  display: block;
}

.legal-page .site-header nav a:first-child {
  border-bottom-color: transparent;
  color: #777;
}

.legal-title-band {
  align-items: center;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  min-height: 94px;
  padding: 24px 32px;
}

.legal-title-band h1 {
  color: #777;
  font-size: 1.18rem;
  font-weight: 400;
  margin: 0;
}

.legal-content {
  margin: 0 auto;
  max-width: 1180px;
  padding: 76px 32px 88px;
}

.legal-imprint {
  padding-top: 54px;
}

.legal-imprint > h1 {
  color: #777;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 20px;
}

.legal-copy {
  color: #777;
  display: grid;
  gap: 15px;
  line-height: 1.62;
}

.legal-copy h2,
.legal-copy h3,
.legal-copy h4 {
  color: #6f6f6f;
  overflow-wrap: anywhere;
}

.legal-copy h2 {
  font-size: 1.85rem;
  font-weight: 400;
  margin: 8px 0 0;
}

.legal-copy h3 {
  font-size: 1.52rem;
  line-height: 1.25;
  margin: 10px 0 0;
}

.legal-copy h4 {
  font-size: 1.22rem;
  line-height: 1.35;
  margin: 8px 0 0;
}

.legal-copy p {
  margin: 0;
}

.legal-copy a {
  color: #dc4b4f;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.legal-copy a:hover,
.legal-copy a:focus-visible {
  color: #b72e33;
  text-decoration: underline;
}

.legal-copy .content-list {
  gap: 7px;
  line-height: 1.62;
  margin: 0;
}

.legal-privacy {
  padding-top: 50px;
}

.legal-privacy .legal-copy > h2:first-child {
  font-size: 2rem;
  margin-top: 0;
}

.incidents-page .site-header nav a:first-child {
  border-bottom-color: transparent;
  color: #777;
}

.incidents-page .site-header nav a:nth-child(4),
.incidents-page .site-header nav a:nth-child(4):hover,
.incidents-page .site-header nav a:nth-child(4):focus-visible {
  border-bottom-color: #dc4b4f;
  color: #dc4b4f;
}

.incidents-original-top {
  margin: 0 auto;
  max-width: 1180px;
  padding: 40px 32px 0;
}

.incidents-original-title {
  color: #d7373c;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 52px 0 0;
  text-align: center;
}

.incidents-page .incident-overview {
  padding-top: 38px;
}

@keyframes home-slide-fade {
  0%, 22% {
    opacity: 1;
  }
  27%, 95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-slide {
    animation: none;
  }

  .home-slide:first-child {
    opacity: 1;
  }
}

.hero {
  background: var(--ink);
  height: 620px;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.18) 62%, transparent),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 42%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-copy {
  color: #fff;
  left: 32px;
  max-width: 720px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-copy p {
  background: var(--gold);
  color: var(--ink);
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 800;
  margin: 0 0 18px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: 4.7rem;
  line-height: 1;
  margin: 0;
}

.hero-copy span {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 18px;
}

.intro-band,
.contact-section {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 58px 32px;
}

.intro-band p:last-child,
.contact-section p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0;
}

.eyebrow {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h2,
h3 {
  color: var(--ink);
  margin: 0;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.13;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.35;
}

.quick-grid {
  background: var(--red-dark);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-grid article {
  align-items: center;
  background: var(--red);
  color: #fff;
  display: grid;
  gap: 22px;
  grid-template-columns: 92px 1fr;
  min-height: 170px;
  padding: 28px 32px;
}

.quick-grid img {
  background: #fff;
  border-radius: 8px;
  height: 92px;
  object-fit: contain;
  padding: 12px;
  width: 92px;
}

.quick-grid h2,
.quick-grid p {
  color: #fff;
}

.quick-grid h2 {
  font-size: 1.45rem;
}

.quick-grid p {
  line-height: 1.55;
  margin: 8px 0 0;
}

.fleet-section,
.incident-overview {
  margin: 0 auto;
  max-width: 1180px;
  padding: 68px 32px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

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

.fleet-grid article,
.incident-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.fleet-grid img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.fleet-grid h3,
.fleet-grid p {
  padding-left: 22px;
  padding-right: 22px;
}

.fleet-grid h3 {
  padding-top: 20px;
}

.fleet-grid p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  padding-bottom: 24px;
  padding-top: 10px;
}

.latest-callout {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 18px 22px;
}

.latest-callout span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.latest-callout strong {
  font-size: 1rem;
  text-align: right;
}

.incident-accordion {
  display: grid;
  gap: 14px;
}

.year-accordion {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.year-accordion > summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto 34px;
  list-style: none;
  min-height: 76px;
  padding: 14px 18px;
  transition: background-color 160ms ease, color 160ms ease;
}

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

.year-accordion > summary::after {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "+";
  display: flex;
  font-size: 1.35rem;
  font-weight: 400;
  height: 32px;
  justify-content: center;
  line-height: 1;
  width: 32px;
}

.year-accordion[open] > summary::after {
  content: "−";
}

.year-accordion > summary:hover,
.year-accordion > summary:focus-visible,
.year-accordion[open] > summary {
  background: var(--ink);
  color: #fff;
  outline: 0;
}

.year-accordion-title {
  display: grid;
  gap: 2px;
}

.year-accordion-title small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.year-accordion-title strong {
  font-size: 1.55rem;
}

.year-accordion-count {
  color: var(--muted);
  font-weight: 800;
}

.year-accordion > summary:hover .year-accordion-title small,
.year-accordion > summary:hover .year-accordion-count,
.year-accordion > summary:focus-visible .year-accordion-title small,
.year-accordion > summary:focus-visible .year-accordion-count,
.year-accordion[open] > summary .year-accordion-title small,
.year-accordion[open] > summary .year-accordion-count {
  color: #ddd6ce;
}

.year-accordion .incident-list {
  gap: 0;
}

.year-accordion .incident-card {
  border: 0;
  border-radius: 0;
  border-top: 1px solid var(--line);
}

.year-accordion .incident-date {
  min-height: 104px;
}

.incident-toolbar {
  align-items: end;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.incident-toolbar label {
  color: var(--ink);
  font-weight: 800;
}

.incident-toolbar select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--red) 50%),
    linear-gradient(135deg, var(--red) 50%, transparent 50%),
    var(--paper);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%,
    0 0;
  background-repeat: no-repeat;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  min-width: 150px;
  padding: 12px 42px 12px 14px;
}

.year-strip {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 18px;
}

.year-strip a,
.year-strip button {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font: inherit;
  justify-content: space-between;
  min-height: 54px;
  padding: 14px;
  text-decoration: none;
}

.year-strip .active,
.year-strip a:hover,
.year-strip a:focus-visible,
.year-strip button:hover,
.year-strip button:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  outline: 0;
}

.incident-status {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  padding: 22px;
}

.incident-status[hidden],
.latest-callout[hidden] {
  display: none;
}

.incident-list {
  display: grid;
  gap: 12px;
}

.incident-card {
  display: grid;
  grid-template-columns: 168px 1fr;
}

.incident-image {
  aspect-ratio: 16 / 10;
  grid-column: 1 / -1;
  max-height: 360px;
  object-fit: cover;
  width: 100%;
}

.incident-date {
  background: #eee4d8;
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
}

.incident-date strong {
  font-size: 1rem;
}

.incident-date span,
.incident-number {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.incident-main {
  display: grid;
  gap: 12px;
  padding: 18px 20px 20px;
}

.incident-main dl {
  display: grid;
  gap: 8px 14px;
  grid-template-columns: 112px 1fr;
  margin: 0;
}

.incident-main dt {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
}

.incident-main dd {
  color: var(--muted);
  margin: 0;
}

.incident-main p {
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  padding-top: 12px;
}

.contact-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  max-width: none;
}

.contact-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

.contact-details {
  align-items: flex-start;
  color: var(--ink);
  display: grid;
  gap: 8px;
  font-size: 1.06rem;
}

.page-hero {
  background: var(--ink);
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 64%, transparent),
    linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}

.page-hero .hero-image {
  height: 430px;
}

.page-hero-copy {
  color: #fff;
  left: 32px;
  max-width: 760px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.page-hero-copy p {
  background: var(--gold);
  color: var(--ink);
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  margin: 0 0 16px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.page-hero-copy h1 {
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  margin: 0;
}

.content-page {
  margin: 0 auto;
  max-width: 1180px;
  padding: 58px 32px 72px;
}

.content-layout {
  align-items: start;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) 310px;
}

.content-rich {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  padding: 34px;
}

.content-rich-wide {
  width: 100%;
}

.content-rich h2,
.content-rich h3,
.content-rich h4 {
  margin-top: 10px;
}

.content-rich p,
.content-rich li {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.content-rich p {
  margin: 0;
}

.incident-main h3 a {
  color: inherit;
  text-decoration: none;
}

.incident-main h3 a:hover,
.incident-main h3 a:focus-visible {
  color: var(--red);
  outline: 0;
}

.report-meta-list {
  background: #f3f0eb;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px 16px;
  grid-template-columns: 170px 1fr;
  margin: 0;
  padding: 18px;
}

.report-meta-list dt {
  color: var(--red);
  font-weight: 800;
}

.report-meta-list dd {
  color: var(--muted);
  margin: 0;
}

.site-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.sidebar-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.sidebar-block h2 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.sidebar-block p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 12px;
}

.latest-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.latest-list a {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
  text-decoration: none;
}

.latest-list span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.latest-list strong {
  color: var(--ink);
  line-height: 1.35;
}

.search-form {
  display: grid;
  gap: 8px;
}

.search-form label {
  color: var(--muted);
  font-weight: 700;
}

.search-form input {
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  padding: 12px;
  width: 100%;
}

.content-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.content-image {
  margin: 8px 0;
}

.content-image img {
  border-radius: 8px;
  max-height: 620px;
  object-fit: cover;
  width: 100%;
}

.action-row {
  margin-top: 4px;
}

.action-link {
  align-items: center;
  background: var(--red);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  min-height: 42px;
  padding: 10px 14px;
  text-decoration: none;
}

.action-link:hover,
.action-link:focus-visible {
  background: var(--red-dark);
  outline: 0;
}

.subpage-section {
  margin-top: 34px;
}

.subpage-section h2 {
  margin-bottom: 18px;
}

.subpage-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.subpage-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  overflow: hidden;
}

.subpage-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.subpage-card div {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.subpage-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 28px 32px;
}

.site-footer div {
  display: grid;
  gap: 5px;
}

.site-footer span {
  color: #d8d1c9;
}

.site-footer nav {
  display: flex;
  gap: 14px;
}

.site-footer a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.admin-body {
  background: #f1f3f4;
  min-height: 100vh;
}

.admin-header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px 32px;
}

.admin-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-header nav a,
.admin-back-link {
  color: var(--ink);
  font-weight: 800;
  padding: 10px;
  text-decoration: none;
}

.admin-header nav a:hover,
.admin-header nav a:focus-visible,
.admin-back-link:hover,
.admin-back-link:focus-visible {
  color: var(--red);
  outline: 0;
}

.admin-main,
.admin-login-main {
  margin: 0 auto;
  max-width: 1320px;
  padding: 42px 32px 72px;
}

.admin-login-main {
  align-items: center;
  display: grid;
  min-height: calc(100vh - 76px);
}

.admin-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.admin-login-panel {
  justify-self: center;
  max-width: 460px;
  width: 100%;
}

.admin-login-panel h1,
.admin-title-row h1 {
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1.1;
  margin: 0;
}

.admin-login-panel > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0 22px;
}

.admin-title-row {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.admin-panel-heading {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: -4px 0 20px;
  padding-bottom: 16px;
}

.admin-panel-heading h2 {
  font-size: 1.35rem;
}

.admin-panel-heading p,
.admin-panel-heading span {
  color: var(--muted);
  margin: 5px 0 0;
}

.admin-message {
  border: 1px solid;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 14px 16px;
}

.admin-message.success {
  background: #e7f5eb;
  border-color: #8bc79b;
  color: #17602c;
}

.admin-message.warning {
  background: #fff5d6;
  border-color: #dec36d;
  color: #6d5200;
}

.admin-message.error {
  background: #fde9e9;
  border-color: #df9b9b;
  color: #861319;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-form label {
  display: grid;
  gap: 8px;
}

.admin-form label > span {
  color: var(--ink);
  font-weight: 800;
}

.admin-form input[type="text"],
.admin-form input[type="password"],
.admin-form input[type="date"],
.admin-form input[type="time"],
.admin-form input[type="number"],
.admin-form select,
.admin-form textarea {
  background: #fff;
  border: 1px solid #b9b3ac;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.admin-form textarea {
  line-height: 1.55;
  min-height: 190px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(185, 16, 22, 0.14);
  outline: 0;
}

.admin-editor {
  gap: 20px;
}

.admin-form-section {
  display: grid;
  gap: 16px;
}

.admin-form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-span-2 {
  grid-column: 1 / -1;
}

.admin-check-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brigade-check-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-check-option {
  align-items: center;
  background: #f7f5f2;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  display: grid !important;
  gap: 10px !important;
  grid-template-columns: 22px 1fr;
  min-height: 58px;
  padding: 12px;
}

.admin-check-option:has(input:checked) {
  background: #fff0f0;
  border-color: var(--red);
}

.admin-check-option input {
  accent-color: var(--red);
  height: 20px;
  margin: 0;
  width: 20px;
}

.admin-check-option span {
  font-weight: 700 !important;
  line-height: 1.35;
}

.admin-upload-grid {
  align-items: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.admin-file-upload {
  align-content: center;
  background: #f7f5f2;
  border: 1px dashed #a9a198;
  border-radius: 6px;
  cursor: pointer;
  min-height: 210px;
  padding: 24px;
}

.admin-file-upload:hover,
.admin-file-upload:focus-within {
  background: #fff0f0;
  border-color: var(--red);
}

.admin-file-upload input[type="file"] {
  color: var(--muted);
  font: inherit;
  max-width: 100%;
}

.admin-file-upload input[type="file"]::file-selector-button {
  background: var(--red);
  border: 0;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  margin-right: 12px;
  padding: 10px 13px;
}

.admin-file-upload small {
  color: var(--muted);
  line-height: 1.45;
}

.admin-image-preview {
  background: #f7f5f2;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  margin: 0;
  min-height: 210px;
  overflow: hidden;
}

.admin-image-preview img {
  aspect-ratio: 16 / 9;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  width: 100%;
}

.admin-image-preview figcaption {
  align-self: end;
  background: #fff;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 10px 12px;
  text-align: center;
}

.admin-image-preview.is-empty {
  align-items: center;
}

.admin-image-preview.is-empty figcaption {
  background: transparent;
  align-self: center;
}

.admin-remove-image {
  justify-self: start;
}

.admin-form-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.admin-primary-button,
.admin-secondary-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  text-decoration: none;
}

.admin-primary-button {
  background: var(--red);
  color: #fff;
}

.admin-primary-button:hover,
.admin-primary-button:focus-visible {
  background: var(--red-dark);
  outline: 0;
}

.admin-secondary-button {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

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

.admin-table {
  border-collapse: collapse;
  min-width: 960px;
  width: 100%;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  line-height: 1.45;
  padding: 13px 12px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--muted);
}

.admin-table td strong {
  color: var(--ink);
}

.admin-table-actions a {
  color: var(--red);
  font-weight: 800;
}

.incident-detail-selections {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.incident-detail-selections section {
  border-top: 3px solid var(--red);
  padding-top: 14px;
}

.incident-detail-selections h3 {
  font-size: 1.08rem;
  margin: 0 0 12px;
}

.selection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.selection-tags li {
  background: #eee9e3;
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 8px 10px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 20px;
    position: static;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .home-page .site-header {
    min-height: 0;
    padding: 18px 20px;
  }

  .home-page .brand {
    width: min(340px, 84vw);
  }

  .home-page .site-header nav {
    gap: 4px;
  }

  .home-intro-grid {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .youth-content {
    padding: 28px 20px 56px;
  }

  .youth-title {
    margin-top: 38px;
  }

  .youth-intro,
  .youth-contact-grid {
    grid-template-columns: 1fr;
  }

  .youth-intro {
    gap: 30px;
  }

  .youth-contacts {
    padding-top: 48px;
  }

  .kids-feature-image {
    padding-top: 0;
  }

  .wehr-content {
    padding: 28px 20px 56px;
  }

  .wehr-title {
    margin-top: 38px;
  }

  .wehr-row,
  .wehr-join-grid {
    grid-template-columns: 1fr;
  }

  .wehr-row {
    gap: 20px;
  }

  .wehr-row-action {
    text-align: left;
  }

  .wehr-join {
    padding-top: 54px;
  }

  .wehr-join-grid {
    gap: 34px;
  }

  .wehr-join-image h3 {
    font-size: 1.65rem;
  }

  .board-content {
    padding: 58px 20px 56px;
  }

  .board-content > h1 {
    margin-bottom: 36px;
  }

  .board-grid {
    gap: 44px;
    grid-template-columns: 1fr;
  }

  .board-member {
    margin: 0 auto;
    max-width: 430px;
    width: 100%;
  }

  .fleet-online-content {
    padding: 28px 20px 56px;
  }

  .fleet-online-title {
    margin-top: 38px;
  }

  .fleet-online-row {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .fleet-online-action {
    text-align: left;
  }

  .dates-content {
    padding: 28px 20px 56px;
  }

  .dates-title {
    margin-top: 38px;
  }

  .contact-online-content {
    padding: 28px 20px 56px;
  }

  .contact-online-title {
    margin: 38px 0 42px;
  }

  .contact-online-grid,
  .contact-online-people-grid {
    grid-template-columns: 1fr;
  }

  .contact-online-grid {
    gap: 46px;
  }

  .contact-online-address {
    justify-items: start;
    text-align: left;
  }

  .contact-online-people-grid {
    gap: 48px;
  }

  .legal-title-band {
    min-height: 76px;
    padding: 20px;
  }

  .legal-content,
  .legal-imprint,
  .legal-privacy {
    padding: 40px 20px 58px;
  }

  .legal-copy h2,
  .legal-privacy .legal-copy > h2:first-child {
    font-size: 1.65rem;
  }

  .legal-copy h3 {
    font-size: 1.32rem;
  }

  .incidents-original-top {
    padding: 28px 20px 0;
  }

  .incidents-original-title {
    margin-top: 38px;
  }

  .home-slider {
    width: 100%;
  }

  .hero {
    height: 510px;
    min-height: 450px;
  }

  .hero-copy {
    left: 22px;
    right: 22px;
  }

  .hero-copy h1 {
    font-size: 3.1rem;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero .hero-image {
    height: 360px;
  }

  .page-hero-copy {
    left: 22px;
    right: 22px;
  }

  .page-hero-copy h1 {
    font-size: 3rem;
  }

  .intro-band,
  .contact-section,
  .quick-grid,
  .fleet-grid,
  .incident-card,
  .subpage-grid,
  .content-layout,
  .report-meta-list {
    grid-template-columns: 1fr;
  }

  .intro-band,
  .fleet-section,
  .incident-overview,
  .contact-section,
  .content-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-rich {
    padding: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-sidebar {
    position: static;
  }

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

  .latest-callout,
  .incident-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .latest-callout strong {
    text-align: left;
  }

  .incident-main dl {
    grid-template-columns: 1fr;
  }

  .year-accordion > summary {
    gap: 12px;
    grid-template-columns: 1fr auto 34px;
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 20px;
  }

  .admin-main,
  .admin-login-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .admin-title-row,
  .admin-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-form-grid,
  .admin-check-grid,
  .brigade-check-grid,
  .admin-upload-grid,
  .incident-detail-selections {
    grid-template-columns: 1fr;
  }

  .admin-span-2 {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .page-hero-copy h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .home-title-band {
    min-height: 74px;
  }

  .home-original-content {
    padding: 24px 20px 48px;
  }

  .home-intro-grid {
    gap: 30px;
    padding: 34px 0;
  }

  .home-intro-copy h2 {
    font-size: 1.55rem;
  }

  .quick-grid article {
    grid-template-columns: 72px 1fr;
    padding: 24px 20px;
  }

  .quick-grid img {
    height: 72px;
    width: 72px;
  }

  .year-strip {
    grid-template-columns: 1fr;
  }

  .year-accordion > summary {
    grid-template-columns: 1fr 34px;
  }

  .year-accordion-count {
    grid-column: 1;
    grid-row: 2;
  }

  .year-accordion > summary::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}
