@charset "UTF-8";
.parallax-background {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.home-image {
  inset: -20% 0;
  position: absolute;
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  will-change: transform;
  z-index: -1;
}
.home-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

#top .home-image img {
  filter: brightness(92%) contrast(105%);
}

#image-gap {
  height: 700px;
}

#services img {
  float: left;
  height: auto;
  margin-right: 10px;
  margin-top: 18px;
  width: 150px;
}

header {
  min-height: clamp(620px, 88vh, 780px);
  position: relative;
}
header::before {
  background: radial-gradient(120% 65% at 12% 8%, rgba(255, 112, 112, 0.36), transparent 52%), linear-gradient(165deg, rgba(18, 20, 24, 0.18) 0%, rgba(18, 20, 24, 0.62) 58%, rgba(18, 20, 24, 0.85) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
header > * {
  position: relative;
  z-index: 1;
}
header.sticky-header {
  z-index: 1;
}
header nav.navbar {
  margin-bottom: 10px;
}
header nav a {
  text-shadow: #333 0px 0px 10px;
}
header nav .navbar-brand {
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  visibility: hidden;
  width: 0;
}

#top nav.navbar {
  margin-bottom: clamp(20px, 4vh, 52px);
}

.hero-shell {
  padding-bottom: clamp(28px, 6vh, 72px);
}

.hero-grid {
  display: block;
}

.jumbotron {
  background: none;
  color: white;
  font-weight: normal;
  margin-top: 0;
  padding: 0 !important;
  text-shadow: #333 5px 5px 10px;
}
.jumbotron h1 {
  font-family: "Didot", serif;
  font-size: max(29pt, 7vw);
  font-weight: normal;
  margin: 0;
  text-transform: none;
}
.jumbotron h1 .cap {
  font-size: 1.5em;
}
.jumbotron h1 small {
  color: white;
  display: block;
  font-family: "Didot", serif;
  font-size: 0.833em;
  text-align: right;
}

.hero-copy {
  align-self: end;
  animation: hero-rise 0.8s ease-out both;
  max-width: 680px;
}

.hero-eyebrow {
  color: #f9c3c3;
  font-family: "Futura PT Heavy", sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero-lead {
  color: #f1e5e5;
  font-size: clamp(17px, 1.6vw, 24px);
  line-height: 1.4;
  margin: 16px 0 0;
  max-width: 34ch;
  text-wrap: balance;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}
.hero-actions .button {
  margin: 0;
}

.hero-link {
  color: #f7cece;
  font-family: "Futura PT Heavy", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.hero-link:hover {
  color: white;
  text-decoration: none;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .hero-lead {
    max-width: 24ch;
  }
}
@media (max-width: 767px) {
  header {
    min-height: 560px;
  }
  .hero-shell {
    padding-bottom: 18px;
  }
  #top nav.navbar {
    margin-bottom: 18px;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .hero-eyebrow,
  .hero-lead {
    margin: 0;
  }
  .jumbotron {
    white-space: normal;
  }
  .jumbotron h1 {
    font-size: clamp(42px, 15vw, 64px);
  }
  .hero-lead {
    font-size: 20px;
    line-height: 1.35;
    max-width: 100%;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
  }
  .hero-link {
    font-size: 12px;
  }
}
.card {
  background-color: #222;
  font-family: "Minion Pro", serif;
  padding: 70px 0;
}
.card blockquote {
  border: none;
  color: lightgray;
  margin-bottom: 40px;
  margin-top: 60px;
  padding: 0;
}
.card blockquote p {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 10px;
}
.card blockquote p:before {
  content: "“";
}
.card blockquote p:after {
  content: "”";
}
.card blockquote cite {
  font-size: 14px;
  font-style: normal;
  text-transform: uppercase;
}
.card blockquote cite:before {
  content: "— ";
}

@media (prefers-reduced-motion: reduce) {
  .home-image {
    transform: none;
  }
  .hero-copy,
  .hero-grid {
    animation: none;
  }
}