@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,600;0,800;1,600&family=Barlow+Condensed:wght@600;800&display=swap");

:root {
  --black: #1e1f21;
  --ink: #24252a;
  --muted: #5f6063;
  --gold: #e4a931;
  --teal: #005f6b;
  --lime: #c1d82f;
  --white: #ffffff;
  --dot: rgba(30, 31, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: "Barlow", Helvetica, sans-serif;
  font-size: 15.75px;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

iframe,
video {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-wrapper {
  min-height: 100vh;
  overflow-x: hidden;
  background: #fff;
}

.header {
  align-items: center;
  background: #fff;
  display: flex;
  height: 130px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 220ms ease, transform 220ms ease;
  z-index: 1000;
}

.is-scrolled .header {
  box-shadow: 0 2px 16px rgba(30, 31, 33, 0.08);
}

.header__content {
  align-items: center;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) minmax(300px, 430px);
  height: 100%;
  width: 100%;
}

.logo {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: flex-start;
  padding-left: 40px;
}

.captured-logo {
  align-items: center;
  background: #1d1b1c;
  border: 4px solid #171717;
  box-shadow: inset 0 0 0 3px var(--gold);
  color: var(--gold);
  display: flex;
  flex-direction: column;
  height: 95px;
  justify-content: center;
  letter-spacing: 0.2em;
  text-align: center;
  width: 210px;
}

.captured-logo__main {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.captured-logo__sub {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-top: 9px;
  text-transform: uppercase;
}

.links__main,
.links__utility {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.links__main {
  align-items: stretch;
  gap: 23px;
  height: 100%;
}

.links__main > li {
  align-items: flex-end;
  display: flex;
  height: 100%;
  padding-bottom: 36px;
}

.links__main > li > a,
.nav-trigger {
  background: transparent;
  border: 0;
  color: #626367;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  padding: 0;
  text-transform: uppercase;
  transition: color 180ms ease;
  white-space: nowrap;
}

.links__main > li:hover > a,
.nav-trigger:hover {
  color: var(--teal);
}

.links__utility {
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
  padding-right: 40px;
  padding-top: 10px;
}

.links__utility a {
  color: #646568;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 30px;
  text-transform: uppercase;
}

.links__utility .button {
  background: var(--teal);
  color: #fff;
  height: 39px;
  line-height: 39px;
  min-width: 100px;
  padding: 0 18px;
  text-align: center;
}

.links__utility .nav-phone {
  color: var(--black);
  font-size: 14px;
  letter-spacing: 0.7px;
  white-space: nowrap;
}

.search {
  align-items: center;
  display: flex;
  width: 208px;
}

.search input {
  border: 1px solid #c8c8c8;
  border-right: 0;
  color: #757575;
  height: 30px;
  padding: 0 13px;
  width: 172px;
}

.search button,
.mobile-search {
  align-items: center;
  background: #f3f3f3;
  border: 1px solid #c8c8c8;
  color: var(--teal);
  cursor: pointer;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  position: relative;
  width: 36px;
}

.search button::before,
.mobile-search::before {
  border: 3px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 14px;
  width: 14px;
}

.search button::after,
.mobile-search::after {
  background: currentColor;
  content: "";
  height: 12px;
  position: absolute;
  right: 7px;
  top: 18px;
  transform: rotate(-45deg);
  width: 3px;
}

.meganav {
  background: var(--black);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 55px;
  height: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 70px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 130px;
  transform: translateY(-6px);
  transition: height 220ms ease, opacity 180ms ease, padding 220ms ease, transform 220ms ease;
  z-index: 999;
}

.links__main > li:first-child::after {
  content: "";
  display: none;
  height: 38px;
  left: 0;
  position: fixed;
  right: 0;
  top: 92px;
  z-index: 998;
}

.links__main > li:first-child:hover::after,
.links__main > li:first-child:focus-within::after,
.links__main > li:first-child.is-open::after {
  display: block;
}

.links__main li:hover .meganav,
.links__main li:focus-within .meganav,
.links__main li.is-open .meganav {
  height: 390px;
  opacity: 1;
  padding-bottom: 44px;
  padding-top: 38px;
  pointer-events: auto;
  transform: translateY(0);
}

.meganav h2 {
  color: var(--gold);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.meganav p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.meganav ul {
  columns: 2;
  list-style: none;
  margin: 0;
  padding: 0;
}

.meganav li {
  break-inside: avoid;
  margin: 0 0 10px;
}

.meganav a {
  color: #fff;
  font-family: "Barlow Condensed", Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.meganav .button {
  background: var(--gold);
  color: var(--black);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  height: 38px;
  letter-spacing: 1px;
  line-height: 38px;
  margin-top: 6px;
  padding: 0 18px;
  text-transform: uppercase;
}

.mobile-tools,
.mobile-menu,
.mobile-overlay,
.mobile-menu__close {
  display: none;
}

.hero-block {
  position: relative;
}

.site-content {
  padding-top: 130px;
}

.route-home .site-content {
  padding-top: 0;
}

.hero-block--feature {
  background: #fff;
  min-height: 915px;
  padding-top: 130px;
}

.hero-block--feature .block__main {
  background: var(--black);
  height: 845px;
  overflow: hidden;
  position: relative;
  width: calc(100% - 100px);
}

.hero-block--feature .background {
  inset: 0;
  position: absolute;
}

.hero-block--feature .background img {
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  width: 100%;
}

.hero-block--feature .block__main::after {
  background:
    linear-gradient(90deg, rgba(30, 31, 33, 0.56), rgba(30, 31, 33, 0.12) 52%, rgba(30, 31, 33, 0.48)),
    linear-gradient(0deg, rgba(30, 31, 33, 0.58), rgba(30, 31, 33, 0.08) 45%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-title {
  bottom: -21px;
  color: #fff;
  font-family: "Barlow Condensed", Helvetica, sans-serif;
  font-size: clamp(135px, 14.2vw, 205px);
  font-weight: 800;
  left: -12px;
  letter-spacing: 0;
  line-height: 0.7;
  margin: 0;
  position: absolute;
  text-transform: uppercase;
  transition: opacity 180ms ease;
  white-space: nowrap;
}

.hero-title.is-changing {
  opacity: 0.18;
}

.office-rail {
  align-items: center;
  background: #fff;
  bottom: 70px;
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 130px;
  width: 100px;
}

.office-rail span {
  color: #555;
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-90deg);
  white-space: nowrap;
}

.content-wrapper {
  background-color: #fff;
  background-image: radial-gradient(var(--dot) 1px, transparent 1px);
  background-size: 8px 8px;
  position: relative;
}

.intro-block {
  background: #fff;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) 43%;
  margin: 0 auto;
  max-width: 1240px;
  padding: 96px 40px 90px;
}

.home-intro {
  align-items: start;
  background: #fff;
  display: grid;
  gap: 80px;
  grid-template-columns: 51% minmax(360px, 1fr);
  margin: 0 auto;
  max-width: 1240px;
  padding: 70px 40px 86px;
}

.subtitle {
  color: var(--ink);
  font-size: 27px;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 12px;
}

.title {
  color: var(--ink);
  font-family: "Barlow Condensed", Helvetica, sans-serif;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 0.98;
  margin: 0 0 30px;
  text-transform: uppercase;
}

.home-intro .title {
  font-size: 52px;
  max-width: 560px;
}

.copy p,
.article-body p,
.contact-copy p {
  color: #2b2c30;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 21px;
}

.copy strong,
.article-body strong,
.contact-copy strong {
  color: var(--teal);
  font-weight: 800;
}

.media-block {
  align-self: start;
  background: #d7d7d7;
  min-height: 330px;
  overflow: hidden;
  position: relative;
}

.home-intro .media-block {
  margin-top: -22px;
  min-height: 330px;
}

.media-block img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  width: 100%;
}

.hero-block--image {
  height: 540px;
  margin-top: 0;
  overflow: hidden;
}

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

.image-shade img {
  filter: saturate(0.86) contrast(0.96);
}

.feature-grid {
  background: var(--black);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.feature-card {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 310px;
  padding: 58px 48px 54px;
}

.feature-card h2,
.news-card h2 {
  color: var(--gold);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.feature-card h3,
.news-card h3 {
  color: #fff;
  font-family: "Barlow Condensed", Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.75px;
  line-height: 0.98;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.feature-card p,
.news-card p {
  color: #e7e7e7;
  line-height: 1.55;
  margin: 0;
}

.button {
  background: var(--teal);
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 1.1px;
  line-height: 1;
  padding: 13px 18px 12px;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.button:hover {
  background: var(--gold);
  color: var(--black);
}

.button--gold {
  background: var(--gold);
  color: var(--black);
}

.button--gold:hover {
  background: var(--lime);
}

.wide-band {
  background: #fff;
  padding: 92px 40px;
}

.wide-band__inner {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: 42% 1fr;
  margin: 0 auto;
  max-width: 1240px;
}

.wide-band .media-block {
  min-height: 420px;
}

.wide-band ul,
.article-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.wide-band li,
.article-list li {
  border-top: 1px solid #d6d6d6;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 14px 0;
  text-transform: uppercase;
}

.wide-band li a,
.article-list li a {
  align-items: center;
  color: inherit;
  display: flex;
  justify-content: space-between;
}

.wide-band li a::after,
.article-list li a::after {
  color: var(--teal);
  content: "View";
  font-size: 11px;
  letter-spacing: 1px;
}

.news-strip {
  background: var(--black);
  overflow-x: auto;
  padding: 70px 0;
  scroll-snap-type: x mandatory;
  white-space: nowrap;
}

.news-strip__track {
  display: inline-flex;
  gap: 22px;
  padding: 0 40px;
}

.news-card {
  background: #2b2c30;
  color: #fff;
  display: block;
  min-height: 286px;
  padding: 34px;
  scroll-snap-align: start;
  vertical-align: top;
  white-space: normal;
  width: 360px;
}

.news-card:hover {
  background: #34363a;
}

.locations-feature {
  background: #f4f5f1;
  padding: 96px 40px 104px;
}

.locations-feature__head {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin: 0 auto 34px;
  max-width: 1240px;
}

.locations-feature__head .title {
  margin-bottom: 0;
  max-width: 680px;
}

.locations-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1240px;
}

.location-card {
  background: var(--black);
  color: #fff;
  display: flex;
  min-height: 310px;
  overflow: hidden;
  position: relative;
}

.location-card:nth-child(1),
.location-card:nth-child(6) {
  grid-column: span 2;
}

.location-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.74;
  position: absolute;
  transition: opacity 180ms ease, transform 260ms ease;
  width: 100%;
}

.location-card::after {
  background: linear-gradient(0deg, rgba(30, 31, 33, 0.86), rgba(30, 31, 33, 0.14));
  content: "";
  inset: 0;
  position: absolute;
}

.location-card:hover img {
  opacity: 0.92;
  transform: scale(1.035);
}

.location-card__copy {
  align-self: flex-end;
  padding: 26px;
  position: relative;
  z-index: 1;
}

.location-card span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.location-card strong {
  display: block;
  font-family: "Barlow Condensed", Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 0.96;
  text-transform: uppercase;
}

.service-layout {
  background: #fff;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1fr) 340px;
  margin: 0 auto;
  max-width: 1240px;
  padding: 52px 40px 96px;
}

.article-body h2,
.contact-copy h2 {
  color: var(--ink);
  font-family: "Barlow Condensed", Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin: 42px 0 18px;
  text-transform: uppercase;
}

.side-panel {
  background: var(--black);
  color: #fff;
  padding: 30px;
  position: sticky;
  top: 150px;
}

.side-panel h2 {
  color: var(--gold);
  font-size: 23px;
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.side-panel p,
.side-panel a {
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
}

.side-panel a {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: block;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 12px 0;
  text-transform: uppercase;
}

.contact-block {
  background: #fff;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1240px;
  padding: 52px 40px 96px;
}

.contact-form {
  background: #f4f5f1;
  border-left: 7px solid var(--gold);
  box-shadow: 0 28px 70px rgba(30, 31, 33, 0.12);
  padding: 34px;
}

.contact-form h2 {
  font-family: "Barlow Condensed", Helvetica, sans-serif;
  font-size: 38px;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.field-grid {
  display: grid;
  gap: 14px;
}

.field-grid label {
  display: grid;
  gap: 6px;
}

.field-grid span {
  color: #4d4e52;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.field-grid input,
.field-grid textarea,
.field-grid select {
  background: #fff;
  border: 1px solid rgba(30, 31, 33, 0.16);
  border-radius: 0;
  color: var(--black);
  min-height: 46px;
  padding: 13px 14px;
  width: 100%;
}

.field-grid textarea {
  min-height: 150px;
}

.footer {
  background: var(--black);
  color: #fff;
  padding: 56px 40px 34px;
  position: relative;
}

.footer__content {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 0.9fr;
  margin: 0 auto;
  max-width: 1240px;
}

.footer__brand p,
.footer__contact p {
  color: #d5d5d5;
  font-size: 15px;
  line-height: 1.55;
  margin: 22px 0 0;
}

.footer .captured-logo {
  height: 74px;
  width: 180px;
}

.footer .captured-logo__main {
  font-size: 19px;
}

.footer .captured-logo__sub {
  font-size: 10px;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-content: stretch;
}

.footer h3,
.footer-links a,
.footer small,
.footer__contact a {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer h3 {
  color: var(--gold);
  margin: 0 0 18px;
}

.footer small {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #d5d5d5;
  display: block;
  font-weight: 400;
  line-height: 1.45;
  margin: 34px auto 0;
  max-width: 1240px;
  padding-top: 18px;
  text-transform: none;
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .header {
    display: block;
    height: 96px;
    overflow: visible;
  }

  .header__content {
    display: block;
    position: relative;
  }

  .logo {
    height: 96px;
    justify-content: flex-start;
    padding-left: 22px;
  }

  .captured-logo {
    height: 68px;
    width: 174px;
  }

  .captured-logo__main {
    font-size: 22px;
  }

  .captured-logo__sub {
    font-size: 10px;
    margin-top: 7px;
  }

  .desktop-nav,
  .links__utility,
  .search {
    display: none;
  }

  .mobile-tools {
    display: block;
    position: absolute;
    right: 15px;
    top: 20px;
  }

  .hamburger {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: block;
    height: 54px;
    margin-top: 1px;
    position: relative;
    width: 44px;
  }

  .hamburger span,
  .hamburger::before,
  .hamburger::after {
    background: #232323;
    content: "";
    display: block;
    height: 6px;
    left: 7px;
    position: absolute;
    transition: transform 180ms ease, opacity 180ms ease;
    width: 31px;
  }

  .hamburger::before {
    top: 8px;
  }

  .hamburger span {
    top: 21px;
  }

  .hamburger::after {
    top: 34px;
  }

  .mobile-menu-open .hamburger::before {
    transform: translateY(13px) rotate(45deg);
  }

  .mobile-menu-open .hamburger span {
    opacity: 0;
  }

  .mobile-menu-open .hamburger::after {
    transform: translateY(-13px) rotate(-45deg);
  }

  .mobile-overlay {
    background: rgba(15, 16, 18, 0.55);
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 220ms ease;
    z-index: 1001;
  }

  .mobile-menu-open .mobile-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu {
    background: var(--black);
    color: #fff;
    display: flex;
    flex-direction: column;
    max-width: 88vw;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateX(100%);
    transition: transform 260ms ease;
    -webkit-overflow-scrolling: touch;
    width: 360px;
    z-index: 1002;
  }

  .mobile-menu-open .mobile-menu {
    transform: translateX(0);
  }

  .mobile-menu-open {
    overflow: hidden;
  }

  .mobile-menu__close {
    align-items: center;
    align-self: flex-end;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    height: 52px;
    justify-content: center;
    margin: 14px 14px 0 0;
    position: relative;
    width: 52px;
  }

  .mobile-menu__close span {
    background: var(--gold);
    border-radius: 2px;
    display: block;
    height: 4px;
    left: 11px;
    position: absolute;
    top: 24px;
    width: 30px;
  }

  .mobile-menu__close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu__close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 8px 34px 40px;
  }

  .mobile-menu a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    display: block;
    font-family: "Barlow Condensed", Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.75px;
    min-height: 44px;
    padding: 16px 0;
    text-transform: uppercase;
  }

  .site-content,
  .hero-block--image {
    margin-top: 0;
    padding-top: 96px;
  }

  .route-home .site-content {
    padding-top: 0;
  }

  .hero-block--feature {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-block--feature .block__main {
    height: 304px;
    width: 100%;
  }

  .hero-block--feature .background img {
    opacity: 1;
  }

  .hero-title {
    bottom: -1px;
    font-size: 64px;
    left: -3px;
    line-height: 0.84;
  }

  .office-rail {
    display: none;
  }

  .home-intro,
  .intro-block,
  .wide-band__inner,
  .service-layout,
  .contact-block,
  .footer__content,
  .locations-feature__head {
    display: block;
  }

  .home-intro,
  .intro-block,
  .wide-band,
  .service-layout,
  .contact-block {
    padding: 74px 40px;
  }

  .home-intro .title,
  .title {
    font-size: 54px;
    line-height: 0.98;
  }

  .copy p,
  .article-body p,
  .contact-copy p {
    font-size: 24px;
    line-height: 1.48;
  }

  .media-block {
    margin-top: 34px;
    min-height: 300px;
  }

  .hero-block--image {
    height: 304px;
  }

  .feature-grid {
    display: block;
  }

  .feature-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
    min-height: 250px;
    padding: 46px 40px;
  }

  .wide-band .media-block {
    min-height: 300px;
  }

  .news-strip {
    padding: 46px 0;
  }

  .news-card {
    width: 300px;
  }

  .side-panel {
    margin-top: 34px;
    position: static;
  }

  .contact-form {
    border-left: 0;
    border-top: 7px solid var(--gold);
    margin-top: 40px;
    padding: 28px;
  }

  .footer {
    padding: 40px;
  }

  .footer .captured-logo {
    margin-bottom: 28px;
  }

  .footer-links {
    justify-content: flex-start;
    margin-bottom: 22px;
  }

  .locations-feature {
    padding: 70px 24px;
  }

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

  .location-card,
  .location-card:nth-child(1),
  .location-card:nth-child(6) {
    grid-column: auto;
    min-height: 260px;
  }
}

@media (max-width: 430px) {
  .logo {
    padding-left: 18px;
  }

  .captured-logo {
    height: 64px;
    width: 162px;
  }

  .hero-title {
    font-size: 62px;
  }
}
