@font-face {
  font-family: "Gelica Semibold";
  src: local("Gelica Semibold"), local("Gelica SemiBold"), local("Gelica-SemiBold");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Gelica Light";
  src: local("Gelica Light"), local("Gelica-Light");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

:root {
  --green: #45696b;
  --teal: #94d6da;
  --orange: #e6654a;
  --ink: #14343a;
  --paper: #fffaf0;
  --cream: #f5ead7;
  --yellow: #f4c95d;
  --white: #ffffff;
  --line: rgba(20, 52, 58, 0.22);
  --display: "Gelica Semibold", Georgia, "Times New Roman", serif;
  --display-alt: "Gelica Light", Georgia, "Times New Roman", serif;
  --body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 12px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.station-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: 236px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  padding: 22px;
  color: var(--paper);
  background: var(--ink);
  border-right: 6px solid var(--orange);
}

.rail-brand {
  display: grid;
  gap: 12px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.05;
}

.rail-brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--teal);
  background: var(--paper);
}

.station-rail nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.station-rail nav a,
.rail-contact,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
}

.station-rail nav a {
  justify-content: flex-start;
  color: rgba(255, 250, 240, 0.84);
  border-bottom-color: rgba(255, 250, 240, 0.18);
}

.station-rail nav a:hover,
.station-rail nav a:focus-visible {
  color: var(--ink);
  background: var(--teal);
  outline: none;
}

.rail-contact,
.button-primary {
  color: var(--paper);
  background: var(--orange);
  border-color: var(--paper);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--ink);
}

.button:hover,
.button:focus-visible,
.rail-contact:hover,
.rail-contact:focus-visible {
  transform: translateY(-2px);
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.page-shell {
  margin-left: 236px;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 96px clamp(24px, 6vw, 86px) 34px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(20, 52, 58, 0.18), rgba(20, 52, 58, 0.88)),
    linear-gradient(90deg, rgba(20, 52, 58, 0.75), rgba(20, 52, 58, 0.16)),
    url("assets/web/hero-sweatshirt.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 92%, rgba(244, 201, 93, 0.56) 92% 94%, transparent 94%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 12px);
}

.status-bar {
  position: absolute;
  top: 24px;
  left: clamp(24px, 6vw, 86px);
  right: clamp(24px, 6vw, 86px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.92);
  border: 2px solid var(--paper);
}

.status-bar span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
}

.status-bar span:last-child {
  border-right: 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.tag,
.section-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 5px 10px;
  color: var(--ink);
  background: var(--teal);
  border-left: 6px solid var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.88;
}

h2 {
  margin-top: 16px;
  font-family: var(--display-alt);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 0.95;
}

h3 {
  font-family: var(--display);
  font-size: 1.32rem;
  line-height: 1.08;
}

.hero-copy p:not(.tag) {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 1.18rem;
  font-weight: 700;
}

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

.hero-index {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 980px;
  margin-top: 54px;
  background: rgba(255, 250, 240, 0.28);
  border: 1px solid rgba(255, 250, 240, 0.42);
}

.hero-index div {
  min-height: 96px;
  padding: 16px;
  background: rgba(20, 52, 58, 0.72);
}

.hero-index strong {
  display: block;
  color: var(--teal);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.hero-index span {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

.snapshot-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green);
  color: var(--paper);
  border-top: 6px solid var(--orange);
  border-bottom: 6px solid var(--ink);
}

.snapshot-band div {
  min-height: 142px;
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
}

.snapshot-band div:nth-child(2) {
  background: var(--orange);
}

.snapshot-band div:nth-child(3) {
  color: var(--ink);
  background: var(--yellow);
}

.snapshot-band div:last-child {
  color: var(--ink);
  background: var(--teal);
  border-right: 0;
}

.snapshot-band span {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.snapshot-band strong {
  font-family: var(--display);
  font-size: 2.7rem;
  line-height: 1;
}

.brief-section,
.calendar-section,
.report-section {
  padding: clamp(62px, 8vw, 110px) clamp(24px, 6vw, 86px);
}

.brief-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.brief-layout p,
.section-heading p,
.gear-board p,
.give-copy p {
  max-width: 690px;
  font-size: 1.06rem;
}

.brief-lines {
  display: grid;
  gap: 0;
  border-top: 3px solid var(--ink);
}

.brief-lines p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.gear-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  min-height: 760px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gear-art {
  overflow: hidden;
  background: var(--white);
}

.gear-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.gear-board {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 86px);
}

.priority-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 30px 0 18px;
}

.priority-tab {
  min-height: 58px;
  padding: 10px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.priority-tab:hover,
.priority-tab:focus-visible,
.priority-tab.is-active {
  color: var(--paper);
  background: var(--green);
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.priority-readout {
  min-height: 210px;
  padding: 26px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(148, 214, 218, 0.12) 0 1px, transparent 1px 34px),
    var(--ink);
  border-top: 8px solid var(--orange);
}

.priority-readout span {
  display: block;
  margin-bottom: 16px;
  color: var(--teal);
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
}

.priority-readout p {
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 38px;
}

.event-table {
  border-top: 4px solid var(--ink);
}

.event-table article {
  display: grid;
  grid-template-columns: 120px minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.event-table article:hover {
  background: linear-gradient(90deg, rgba(148, 214, 218, 0.18), transparent);
}

.event-table span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.event-table p {
  margin: 0;
}

.report-section {
  color: var(--paper);
  background: var(--ink);
}

.report-section .section-label {
  color: var(--ink);
}

.report-section h2 {
  max-width: 850px;
  color: var(--paper);
}

.ledger {
  margin-top: 36px;
  border-top: 2px solid rgba(255, 250, 240, 0.55);
}

.ledger-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.48fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.22);
}

.ledger-row span {
  font-weight: 700;
}

.ledger-head span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.give-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  min-height: 720px;
  background: var(--paper);
}

.give-image {
  overflow: hidden;
}

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

.give-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 86px);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.amount-grid a {
  min-height: 128px;
  display: grid;
  align-content: center;
  padding: 18px;
  color: var(--paper);
  background: var(--green);
  border-bottom: 8px solid var(--orange);
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
}

.amount-grid a:nth-child(2) {
  color: var(--ink);
  background: var(--teal);
}

.amount-grid a:nth-child(3) {
  background: var(--orange);
}

.amount-grid span {
  margin-top: 9px;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fine-print {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .station-rail {
    position: static;
    width: 100%;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    border-right: 0;
    border-bottom: 6px solid var(--orange);
  }

  .rail-brand {
    display: flex;
    align-items: center;
  }

  .rail-brand img {
    width: 52px;
    height: 52px;
  }

  .station-rail nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .page-shell {
    margin-left: 0;
  }

  .status-bar,
  .hero-index,
  .snapshot-band,
  .brief-layout,
  .gear-section,
  .section-heading,
  .give-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 84svh;
    padding-top: 120px;
  }

  .status-bar {
    left: 20px;
    right: 20px;
  }

  .gear-section,
  .give-section {
    min-height: auto;
  }

  .gear-art,
  .give-image {
    min-height: 430px;
  }

  .event-table article,
  .ledger-row,
  .amount-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .station-rail {
    padding: 14px;
  }

  .rail-brand span {
    font-size: 1rem;
  }

  .station-rail nav {
    display: none;
  }

  .hero {
    padding: 138px 18px 28px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-index div,
  .snapshot-band div {
    min-height: 86px;
  }

  .brief-section,
  .calendar-section,
  .report-section,
  .gear-board,
  .give-copy {
    padding: 50px 18px;
  }

  .priority-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .gear-art,
  .give-image {
    min-height: 310px;
  }
}
