* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #102f5d;
  background: #f4f6f9;
}

/* HEADER */
.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 82px;
  padding: 8px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,31,67,.72);
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 855px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("images/cityhall.png");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7,31,67,.84),
    rgba(7,31,67,.60) 35%,
    rgba(7,31,67,.12) 72%,
    rgba(7,31,67,.05)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 90%);
  margin-left: 38px;
  padding-top: 55px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
}

.hero .eyebrow {
  color: #fff;
}

.red-text,
.card b {
  color: #d9252a;
}

.hero h1 {
  margin: 0;
 font-size:72px;
  line-height: .92;
}

.hero h2 {
  margin: 32px 0 26px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
}

.hero p:not(.eyebrow) {
  max-width: 590px;
  font-size: 18px;
  line-height: 1.7;
}

.buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-block;
  padding: 16px 24px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 3px;
}

.red {
  background: #d9252a;
  color: #fff;
}

.light {
  background: #fff;
  color: #102f5d;
}

/* SECTIONS */
.section {
  padding: 70px 4%;
}

.inner {
  max-width: 1280px;
  margin: auto;
}

.mission {
  background: #fff;
}

.mission h2,
.contact h2,
.principles h2 {
  margin: 0 0 36px;
  font-size: 42px;
}

.mission h3 {
  font-size: 25px;
  line-height: 1.55;
  margin: 0 0 28px;
}

.mission p:not(.eyebrow),
.contact p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.7;
}

/* PRINCIPLES */
.principles {
  background: #102f5d;
  color: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cards article {
  min-height: 310px;
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,.24);
}

.cards h3 {
  font-size: 25px;
  margin: 36px 0 25px;
}

.cards p {
  font-size: 17px;
  line-height: 1.6;
}

/* CONTACT */
.contact {
  text-align: center;
}

.contact .button {
  margin-top: 20px;
}

.contact-form {
  max-width: 600px;
  margin: 35px auto 0;
  text-align: left;
}

.contact-form label {
  display: block;
  margin: 18px 0 7px;
  font-weight: 700;
  color: #102f5d;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #b8c4d4;
  border-radius: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #102f5d;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
  margin-top: 22px;
}

/* FOOTER */
footer {
  padding: 28px;
  text-align: center;
  background: #081f43;
  color: #fff;
  font-size: 13px;
}

footer a {
  color: #f4c542 !important;
  font-weight: 700;
  text-decoration: underline;
}

footer a:hover {
  color: #f4c542 !important;
}

/* =========================================
   MOBILE PHONE VERSION
   ========================================= */

@media screen and (max-width: 700px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  /* HEADER */

  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 70px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    display: none;
  }

  nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    overflow: hidden;
  }

  nav a {
    flex: 0 0 auto;
    font-size: 9px;
    letter-spacing: .3px;
    white-space: nowrap;
  }

  /* HERO */

  .hero {
    width: 100%;
    min-height: 760px;
    overflow: hidden;
    background-position: 62% center;
  }

  .hero-content {
    width: calc(100% - 44px);
    max-width: none;
    margin-left: 22px;
    margin-right: 22px;
    padding-top: 75px;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: 42px;
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  .hero h2 {
    width: 100%;
    max-width: 100%;
    margin: 28px 0 22px;
    font-size: 25px;
    line-height: 1.2;
  }

  .hero p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
    font-size: 17px;
    line-height: 1.6;
  }

  .buttons {
    width: 100%;
    gap: 10px;
  }

  .button {
    padding: 14px 18px;
  }

  /* GENERAL SECTIONS */

  .section {
    width: 100%;
    max-width: 100%;
    padding: 55px 22px;
    overflow: hidden;
  }

  .inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .mission h2,
  .contact h2,
  .principles h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .mission h3 {
    font-size: 21px;
    line-height: 1.45;
  }

  .mission p:not(.eyebrow),
  .contact p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.6;
  }

  /* PRINCIPLES CARDS */

  .cards {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cards article {
    width: 100%;
    min-height: auto;
    padding: 28px 24px;
  }

  /* CONTACT */

  .contact-form {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    max-width: 100%;
  }

  /* FOOTER */

  footer {
    width: 100%;
    max-width: 100%;
    padding: 25px 15px;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    overflow: hidden;
  }

  footer a {
    display: inline-block;
  }
}

@media screen and (max-width: 700px) {
  .hero h1 {
    font-size: 32px;
    line-height: 1.05;
  }
}
.sms-optin {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    margin: 20px 0;
    text-align: left;
}

.sms-optin input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin: 3px 0 0 0;
    flex: 0 0 auto;
}

.sms-optin label {
    margin: 0;
    padding: 0;
    text-align: left;
    display: block;
}