:root {
  --blue: #00349a;
  --blue-dark: #001943;
  --blue-deep: #000e28;
  --yellow: #f6ea3c;
  --white: #ffffff;
  --muted: #dce7ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

.page-shell {
  width: 100vw;
  height: 100vh;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100vw;
  height: 100vh;
  min-height: 520px;
  padding: 44px 56px;
  overflow: hidden;
  background: var(--blue-deep);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(0, 14, 40, 0.72) 0%, rgba(0, 35, 100, 0.56) 43%, rgba(0, 14, 40, 0.28) 100%),
    linear-gradient(0deg, rgba(0, 14, 40, 0.52), rgba(0, 14, 40, 0.04) 48%, rgba(0, 14, 40, 0.34));
}

.hero::after {
  clip-path: polygon(0 0, 54% 0, 42% 100%, 0 100%);
  background:
    linear-gradient(135deg, rgba(0, 52, 154, 0.58), rgba(0, 25, 67, 0.66)),
    repeating-linear-gradient(-12deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 13px);
}

.brand,
.content {
  position: relative;
  z-index: 1;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.paint-element {
  position: absolute;
  right: -92px;
  bottom: 86px;
  z-index: 0;
  width: min(34vw, 520px);
  min-width: 280px;
  opacity: 0.76;
  pointer-events: none;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.34));
}

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

.brand__logo {
  display: block;
  width: 380px;
  max-width: 58vw;
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.34));
}

.content {
  align-self: center;
  max-width: 780px;
  padding-block: 34px;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--yellow);
  font-family: "Barlow Condensed", "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  display: block;
  width: 42px;
  height: 6px;
  content: "";
  background: var(--yellow);
  transform: skewX(-18deg);
}

h1 {
  max-width: 700px;
  margin: 0;
  font-family: "Barlow Condensed", "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 5.9rem;
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.lead {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
  font-weight: 500;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 24px;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
}

.location {
  display: grid;
  gap: 3px;
  min-height: 112px;
  padding: 12px 15px;
  color: var(--white);
  background: rgba(0, 25, 67, 0.76);
  border: 1px solid rgba(246, 234, 60, 0.34);
  border-left: 5px solid var(--yellow);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.location strong {
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 700;
}

.location span,
.location a {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.15;
}

.location a {
  text-decoration: none;
}

.location a:hover {
  color: var(--yellow);
}

.facebook-link {
  display: inline-flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-self: start;
  min-height: 34px;
  padding: 7px 13px;
  color: var(--blue-deep);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(246, 234, 60, 0.94);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.facebook-link svg {
  width: 1.05rem;
  height: 1.05rem;
  margin-right: 8px;
  fill: currentColor;
}

.material-icon {
  flex: 0 0 auto;
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 12px;
  fill: var(--yellow);
}

@media (max-width: 960px) {
  .hero {
    min-height: 620px;
    padding: 34px 28px;
  }

  .hero__image {
    object-position: 60% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 14, 40, 0.86) 0%, rgba(0, 35, 100, 0.72) 56%, rgba(0, 14, 40, 0.46) 100%),
      linear-gradient(0deg, rgba(0, 14, 40, 0.72), rgba(0, 14, 40, 0.12) 48%, rgba(0, 14, 40, 0.56));
  }

  .hero::after {
    clip-path: polygon(0 0, 78% 0, 56% 100%, 0 100%);
  }

  .brand__logo {
    width: 320px;
  }

  .paint-element {
    right: -150px;
    bottom: 150px;
    width: 430px;
    opacity: 0.54;
  }

  h1 {
    font-size: 4.4rem;
  }

  .lead {
    font-size: 1rem;
  }

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

  .facebook-link {
    grid-column: auto;
  }

}

@media (max-width: 520px) {
  .hero {
    min-height: 640px;
    padding: 28px 18px 20px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero::after {
    clip-path: polygon(0 0, 100% 0, 76% 100%, 0 100%);
    opacity: 0.9;
  }

  .brand__logo {
    width: 276px;
    max-width: 76vw;
  }

  .paint-element {
    right: -214px;
    bottom: 54px;
    width: 340px;
    min-width: 0;
    opacity: 0.28;
  }

  .content {
    padding-block: 24px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 1.1rem;
  }

  .eyebrow::before {
    width: 28px;
    height: 5px;
  }

  h1 {
    font-size: 3.35rem;
    line-height: 0.92;
  }

  .lead {
    margin-top: 18px;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .locations {
    gap: 7px;
    margin-top: 16px;
  }

  .location {
    min-height: 0;
    padding: 9px 11px;
  }

  .location strong {
    font-size: 0.9rem;
  }

  .location span,
  .location a {
    font-size: 0.82rem;
  }

  .facebook-link {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 0.82rem;
  }

  .material-icon {
    width: 1.45rem;
    height: 1.45rem;
    margin-right: 10px;
  }
}

@media (max-height: 660px) and (min-width: 700px) {
  .hero {
    padding-block: 28px;
  }

  .brand__logo {
    width: 310px;
  }

  h1 {
    font-size: 4.65rem;
  }

  .lead {
    margin-top: 18px;
  }

}
