/* Hero Section */
.hero {
  position: relative;
  height: 78vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  /* background-image: linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .35)), url('../images/hero-placeholder.svg'); */
  background-image: linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .35)), url('../images/image-hero.png');
  background-size: cover;
  background-position: center center;
  filter: contrast(.95) saturate(.9);
  transform: scale(1.02);
  transition: transform .6s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 8vh 0;
}

.hero-eyebrow {
  font-family: 'Canela Trial', serif;
  font-size: 95px;
  line-height: 100%;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 24px;
}

.hero-cta .btn-outline {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .06em;
}

.hero-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.85);
}

/* Who we are section */
.who-we-are {
  background: #e9e9e9;
  padding: 56px 0;
  text-align: center;
}

.who-we-are .kicker {
  font-size: 12px;
  color: #777;
  letter-spacing: .28em;
  margin-bottom: 10px;
}

.who-we-are h2 {
  font-family: 'CS Canela Demo', serif;
  font-weight: 100;
  font-style: normal;
  font-size: 45px;
  line-height: 1.12;
  color: #222;
  margin: 12px auto 28px;
  max-width: 900px;
}

.who-we-are .btn-outline {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #222;
  padding: 12px 26px;
  text-decoration: none;
}

/* Responsive tweaks for hero */
@media (max-width:900px) {
  .hero-eyebrow {
    font-size: 10vw;
  }
}

@media (max-width:600px) {
  .hero-eyebrow {
    font-size: 12.5vw;
  }
}