body {
  background: var(--white);
}

section {
  scroll-margin-top: calc(var(--topbar-height) + 10px);
}

.hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.heroBg {
  position: absolute;
  inset: 0;
  background: url("../mountains.jpg") center / cover no-repeat;
  transform: scale(1.03);
}

.heroBg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 16, 31, .52) 0%, rgba(4, 22, 42, .42) 34%, rgba(4, 19, 36, .58) 63%, rgba(4, 17, 32, .82) 100%),
    linear-gradient(180deg, rgba(4, 17, 32, .20), rgba(4, 17, 32, .42));
}

.flagPanel {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 21%;
  min-width: 260px;
  overflow: hidden;
  opacity: .92;
  clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%);
}

.flagPanel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.05);
}

.flagPanel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, .08), rgba(6, 27, 50, .35));
}

.heroInner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(760px, 72%) minmax(260px, 28%);
  align-items: center;
  gap: 0;
  width: var(--max);
  max-width: 1640px;
  min-height: 420px;
  margin: 0 auto;
  padding: 10px 0 0;
}

.heroCopy {
  max-width: 1040px;
  padding-left: 18px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: 7px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 58px;
  font-weight: 1000;
  line-height: .96;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, .18);
}

h1 .line,
h1 .red {
  display: block;
  white-space: nowrap;
}

h1 .red {
  color: var(--red);
}

.divider {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 360px;
  margin: 12px 0 14px;
  color: var(--red);
  font-weight: 900;
}

.divider::before,
.divider::after {
  flex: 1;
  height: 2px;
  content: "";
  background: var(--red);
}

.divider span {
  font-size: 18px;
}

.lead {
  max-width: 1040px;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .35);
}

.actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  color: var(--white);
  font-size: 14px;
  font-weight: 1000;
  text-transform: uppercase;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 3px;
}

.btn.secondary {
  background: rgba(2, 18, 34, .22);
  border-color: rgba(255, 255, 255, .75);
}

.quote {
  align-self: center;
  margin-top: 0;
  padding-left: 24px;
}

.quoteLine {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.quoteLine::after {
  width: 150px;
  height: 2px;
  content: "";
  background: var(--red);
}

.mark {
  color: rgba(255, 255, 255, .72);
  font-family: Georgia, serif;
  font-size: 76px;
  line-height: .5;
}

.quote p {
  max-width: 310px;
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.35;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .35);
}

.sig {
  font-family: Georgia, serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.05;
}

.sectionTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 28px;
  color: var(--navy);
  font-size: 30px;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: .5px;
  text-align: center;
  text-transform: uppercase;
}

.sectionTitle.light {
  color: var(--white);
}

.sectionTitle::before,
.sectionTitle::after {
  flex: 0 0 95px;
  width: 95px;
  height: 1px;
  content: "";
  background: var(--red);
}

.star {
  color: var(--red);
  font-size: 18px;
  line-height: 1;
}

.fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade.show {
  opacity: 1;
  transform: none;
}

.latestNews {
  padding: 42px 0 46px;
  background: #f4f7fb;
  border-top: 1px solid #e6ecf3;
}

.latestNewsWrap {
  width: var(--max);
  max-width: 1640px;
  margin: 0 auto;
}

.latestNewsHeading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.latestNewsHeading .sectionTitle {
  grid-column: 2;
  margin: 0;
}

.allNewsLink {
  grid-column: 3;
  justify-self: end;
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

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

.latestNewsCard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 9px 10px 9px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(6, 27, 50, .06);
}

.latestNewsTitle {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.latestNewsLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--white);
  font-size: 9px;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--red);
  border-radius: 4px;
}

.latestNewsEmpty {
  padding: 24px;
  color: #5d6978;
  line-height: 1.5;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.pageSection {
  width: var(--max);
  max-width: 1640px;
  margin: 0 auto;
}

.aboutSection {
  position: relative;
  min-height: 390px;
  padding: 42px 0 44px;
  overflow: visible;
  background: var(--white);
}

.aboutSplit {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.55fr .45fr;
  gap: 34px;
  min-height: 285px;
  padding: 26px 34px 26px 38px;
  background: var(--white);
  border-left: 6px solid var(--red);
}

.aboutText p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.58;
}

.aboutStats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 720px;
  margin-top: 18px;
}

.aboutStat {
  padding: 14px 16px;
  color: var(--white);
  background: linear-gradient(180deg, var(--navy2), var(--navy));
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(6, 27, 50, .14);
}

.aboutStat strong {
  display: block;
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.aboutStat span {
  display: block;
  margin-top: 5px;
  color: #d9e4ef;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.aboutImage {
  position: relative;
}

.aboutImage img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border: 4px solid var(--white);
  border-radius: 4px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .18);
}

.aboutImage::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px;
  content: "Service. Family. Evanston.";
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-align: center;
  text-transform: uppercase;
  background: rgba(6, 27, 50, .86);
  border-radius: 3px;
}

.priorities {
  min-height: 480px;
  padding: 32px 0 42px;
  background: var(--white);
  border-top: 1px solid #e6ecf3;
}

.priorityGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: var(--max);
  max-width: 1640px;
  margin: 0 auto;
}

.priority {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  min-height: 118px;
  padding: 10px 24px;
  border-right: 1px solid var(--line);
}

.priority:last-child {
  border-right: 0;
}

.icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  font-size: 26px;
  background: var(--navy);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px #eef2f7;
}

.priority:nth-child(2) .icon,
.priority:nth-child(4) .icon {
  background: linear-gradient(135deg, #bd0e25, var(--red));
}

.priority h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.12;
  text-transform: uppercase;
}

.priority p {
  margin: 0;
  font-size: 13px;
  line-height: 1.38;
}

.leadershipCards {
  width: var(--max);
  max-width: 1640px;
  margin: 34px auto 0;
  padding-top: 30px;
  border-top: 1px solid #e1e6ef;
}

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

.card {
  padding: 22px;
  background: var(--white);
  border: 1px solid #e2e6ee;
  border-top: 5px solid var(--red);
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  text-transform: uppercase;
}

.experience {
  min-height: 330px;
  padding: 38px 0 46px;
  color: var(--white);
  background: linear-gradient(180deg, var(--navy), #08294e);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: var(--max);
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 8px;
}

.timeline::before {
  position: absolute;
  top: 31px;
  right: 95px;
  left: 95px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, .5);
}

.step {
  position: relative;
  padding: 0 12px;
  text-align: center;
}

.stepIcon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  font-size: 25px;
  background: #08243f;
  border: 2px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.12;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  color: #dfe8f1;
  font-size: 12px;
  line-height: 1.32;
}

.bottom {
  min-height: 300px;
  padding: 42px 0 46px;
  background: var(--white);
}

.bottomGrid {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(520px, 1.1fr);
  align-items: start;
  gap: 44px;
  width: var(--max);
  max-width: 1640px;
  margin: 0 auto;
}

.involvedInfo {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
}

.introRow {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: start;
  gap: 22px;
}

.townCard {
  height: 142px;
  overflow: hidden;
  background: #f4f6f8;
  border: 1px solid #d6d6d6;
}

.townCard img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bottomIntro {
  align-self: start;
}

.bottom h2,
.bottom h3 {
  margin: 0 0 8px;
  color: var(--navy);
  text-transform: uppercase;
}

.bottom h2 {
  font-size: 23px;
  line-height: 1.05;
}

.bottom h3 {
  color: #bc0f25;
  font-size: 18px;
}

.bottomIntro p,
.socialBox p,
.requestForm p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
}

.script {
  margin-top: 6px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.socialBox {
  margin-top: 4px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.socialBox h3,
.requestForm h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  text-transform: uppercase;
}

.facebookLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  color: var(--white);
  font-weight: 900;
  text-align: center;
  background: var(--navy);
  border-radius: 3px;
}

.facebookLink:hover {
  color: var(--white);
  background: var(--red);
}

.requestForm {
  align-self: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid #cbd0d8;
  border-top: 5px solid var(--red);
  box-shadow: 0 12px 28px rgba(6, 27, 50, .09);
}

.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.requestForm input,
.requestForm select,
.requestForm textarea {
  width: 100%;
  min-height: 42px;
  margin: 0 0 12px;
  padding: 9px 11px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  background: var(--white);
  border: 1px solid #cbd0d8;
  border-radius: 3px;
}

.requestForm textarea {
  min-height: 128px;
  resize: vertical;
}

.requestForm button {
  width: 100%;
  height: 44px;
  color: var(--white);
  font-weight: 1000;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--red);
  border: 0;
  border-radius: 3px;
}

.requestForm button:hover {
  filter: brightness(.95);
}

.requestSubmitRow {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 2px;
}

.updatesCheckbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.updatesCheckbox input {
  width: auto;
  min-height: auto;
  margin: 0;
  accent-color: var(--red);
}

.formStatus {
  min-height: 18px;
  margin-top: 9px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

@media (max-width: 1050px) {
  .latestNewsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .aboutSection,
  .priorities,
  .experience,
  .bottom {
    min-height: auto;
  }

  .aboutSplit {
    grid-template-columns: 1fr;
  }

  .aboutStats {
    grid-template-columns: repeat(3, 1fr);
  }

  .aboutImage img {
    height: auto;
  }

  .heroInner {
    grid-template-columns: 1fr;
  }

  .quote {
    display: none;
  }

  h1 {
    font-size: 50px;
  }

  .lead {
    white-space: normal;
  }

  .priorityGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .priority {
    border-bottom: 1px solid var(--line);
  }

  .leadershipCards .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .timeline::before {
    display: none;
  }

  .bottomGrid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .introRow {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
  }

  .heroInner {
    display: block;
    width: 92vw;
    min-height: auto;
    padding: 30px 0 34px;
  }

  .heroCopy {
    max-width: none;
    padding-left: 0;
  }

  .flagPanel {
    display: none;
  }

  .heroBg::after {
    background: rgba(4, 17, 32, .72);
  }

  h1 {
    font-size: clamp(31px, 9.5vw, 38px);
    line-height: 1.02;
    letter-spacing: -.7px;
  }

  h1 .line,
  h1 .red {
    white-space: normal;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 3.2px;
  }

  .lead {
    font-size: 15px;
    line-height: 1.5;
    white-space: normal;
  }

  .divider {
    width: 100%;
    max-width: 280px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    height: auto;
    padding: 12px 14px;
    text-align: center;
  }

  .sectionTitle {
    gap: 9px;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.15;
  }

  .sectionTitle::before,
  .sectionTitle::after {
    flex: 0 0 30px;
    width: 30px;
  }

  .latestNews {
    padding: 32px 0;
  }

  .latestNewsHeading {
    display: block;
  }

  .latestNewsHeading .sectionTitle {
    margin-bottom: 12px;
  }

  .allNewsLink {
    display: block;
    text-align: center;
  }

  .latestNewsGrid {
    grid-template-columns: 1fr;
  }

  .pageSection {
    width: 92vw;
  }

  .aboutSection {
    padding: 38px 0;
  }

  .aboutSplit {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .aboutStats {
    grid-template-columns: 1fr;
  }

  .priorityGrid,
  .timeline,
  .leadershipCards .cards {
    grid-template-columns: 1fr;
  }

  .priority {
    grid-template-columns: 52px 1fr;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .priority:last-child {
    border-bottom: 0;
  }

  .icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .step {
    padding: 0 4px 18px;
  }

  .bottom {
    padding: 28px 0 32px;
  }

  .bottomGrid {
    gap: 20px;
  }

  .introRow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .townCard {
    height: 190px;
  }

  .formRow,
  .requestSubmitRow {
    grid-template-columns: 1fr;
  }

  .requestForm {
    padding: 18px;
    border-radius: 10px;
  }

  .requestForm textarea {
    min-height: 112px;
  }

  .requestSubmitRow {
    gap: 12px;
  }

  .updatesCheckbox {
    justify-content: flex-start;
    white-space: normal;
  }

  .facebookLink {
    width: 100%;
  }
}
