@font-face {
  font-family: "Fira Sans";
  src: url("assets/fonts/FiraSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("assets/fonts/FiraSans-SemiBold.woff2") format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --hawk-red: #c90019;
  --ink: #1c1c1c;
  --muted: #5f6368;
  --line: #d8d8d8;
  --soft: #f2f2f0;
  --header-text: #3b3d40;
  --dark-grey: #3b3d40;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Fira Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: var(--hawk-red);
}

:focus-visible {
  outline: 3px solid rgba(201, 0, 25, .38);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: .75rem;
  left: 1rem;
  z-index: 20;
  padding: .6rem .8rem;
  color: #fff;
  background: var(--hawk-red);
  font-weight: 600;
  transform: translateY(-180%);
}

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

.topline {
  height: 6px;
  background: var(--dark-grey);
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.logo {
  display: block;
  width: 118px;
  min-width: 118px;
  height: auto;
}

.brand-text {
  display: grid;
  gap: .1rem;
  min-width: 0;
}

.brand-text strong {
  color: var(--header-text);
  font-size: 1rem;
  line-height: 1.25;
}

.brand-text span {
  color: var(--muted);
  font-size: .92rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .4rem 1.25rem;
  font-size: .95rem;
  font-weight: 700;
}

.nav a {
  color: var(--header-text);
  text-decoration: none;
}

.nav a:hover {
  color: var(--hawk-red);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #c5c5c2;
  background: #fff;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(49, 51, 54, .15) 0,
    rgba(49, 51, 54, .15) 1px,
    transparent 1px,
    transparent 10px
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7.5rem) 1.25rem;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 .8rem;
  padding: .3rem .55rem;
  color: #fff;
  background: var(--hawk-red);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  width: fit-content;
  max-width: 880px;
  margin: 0;
  color: var(--header-text);
  font-size: clamp(2.35rem, 6vw, 5.15rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: .98;
  text-transform: uppercase;
}

h1 span {
  display: inline;
  padding: .05em .15em .07em;
  background: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-copy {
  width: fit-content;
  max-width: 760px;
  margin: 1.4rem 0 0;
  padding: .25rem .45rem;
  color: var(--header-text);
  background: #fff;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.5;
}

.page-title {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #c5c5c2;
  background: #fff;
}

.page-title::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(49, 51, 54, .15) 0,
    rgba(49, 51, 54, .15) 1px,
    transparent 1px,
    transparent 10px
  );
}

.page-title-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.2rem 1.25rem 3.3rem;
}

.page-title-compact .page-title-inner {
  padding-top: 2.5rem;
  padding-bottom: 2.6rem;
}

.page-title h1 {
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  line-height: 1.18;
}

.legal-content {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.legal-content section {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 .8rem;
  color: var(--header-text);
  font-size: 1.35rem;
  line-height: 1.3;
}

.legal-content p {
  margin: 0 0 .75rem;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.link-section {
  background: #fff;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 1.25rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-kicker {
  margin: 0 0 .25rem;
  color: var(--hawk-red);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--header-text);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.link-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  padding: clamp(1.5rem, 4vw, 2.3rem);
  border: 1px solid var(--line);
  border-top: 6px solid var(--dark-grey);
  background: var(--soft);
}

.link-card-primary {
  border-top-color: var(--hawk-red);
}

.card-label {
  margin: 0 0 .65rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.link-card h3 {
  margin: 0 0 1rem;
  color: var(--header-text);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}

.link-card p:not(.card-label) {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: .85rem 1rem;
  color: #fff;
  background: var(--dark-grey);
  font-weight: 700;
  text-decoration: none;
}

.link-card-primary .card-link {
  background: var(--hawk-red);
}

.card-link:hover {
  background: #25282a;
}

.link-card-primary .card-link:hover {
  background: #a90015;
}

.card-link span {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform .18s ease;
}

.card-link:hover span {
  transform: translateX(.2rem);
}

.site-footer {
  color: #fff;
  background: var(--dark-grey);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(14rem, .9fr) minmax(15rem, .8fr);
  gap: 4rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 3.2rem;
  font-size: 15px;
  line-height: 24px;
}

.site-footer h2,
.site-footer h3,
.site-footer p {
  margin: 0;
}

.site-footer h2 {
  margin-top: 1.25rem;
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: #a8adb3;
  font-size: 15px;
  font-weight: 500;
}

.site-footer p {
  color: #a8adb3;
  font-weight: 500;
}

.site-footer ul {
  display: grid;
  gap: .85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 780px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .link-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .link-card {
    min-height: 0;
  }

  .footer-inner {
    gap: 2.5rem;
  }
}

@media (max-width: 520px) {
  .logo {
    width: 100px;
    min-width: 100px;
  }

  .brand-text strong {
    font-size: .92rem;
  }

  .nav {
    display: grid;
    gap: .65rem;
  }

  .hero-inner {
    padding-top: 3rem;
    padding-bottom: 3.25rem;
  }

  .eyebrow {
    margin-bottom: .9rem;
    padding: .34rem .5rem;
    font-size: .76rem;
    letter-spacing: .065em;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 9.2vw, 2.2rem);
    line-height: 1.08;
    letter-spacing: -.012em;
  }

  h1 span {
    display: block;
    padding: .16em .2em .19em;
  }

  .hero-copy {
    margin-top: 1.15rem;
    padding: .45rem .55rem;
    font-size: 1rem;
    line-height: 1.52;
  }

  .page-title-inner {
    padding-top: 2.2rem;
    padding-bottom: 2.3rem;
  }
}

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

  .card-link span {
    transition: none;
  }
}
