/* Shared layout for the migrated Adobe Spark static pages */
:root {
  --hero-base: #9aa6af;
  --text-dark: #2c2c2c;
  --text-light: #ffffff;
  --content-max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Proxima Nova", "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  background: #ffffff;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--hero-base);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -25% -25%;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.25) 25%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.25) 75%,
      rgba(0, 0, 0, 0) 100%
    );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0.35;
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding: 64px 5%;
  max-width: 89%;
  z-index: 1;
}

.hero-title {
  margin: 0;
  color: var(--text-light);
  font-size: 94px;
  font-weight: 100;
  line-height: 1.05;
  letter-spacing: normal;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
  margin: 16px 0 0;
  color: var(--text-light);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

.content {
  padding: 96px 20%;
  background: #ffffff;
}

.content p,
.content h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 24px;
}

.content h4 {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.footer {
  text-align: center;
  padding: 48px 16px 64px;
  background: #ffffff;
  font-size: 14px;
}

.footer a {
  margin: 0 12px;
  text-decoration: none;
  color: #5a5a5a;
}

@media (min-width: 1300px) {
  .hero-content {
    padding-left: 10%;
    padding-right: 20%;
  }
}

@media (min-width: 1800px) {
  .hero-content {
    padding-left: 15%;
    padding-right: 35%;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .content {
    padding: 72px 12%;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 65vh;
  }

  .hero-content {
    padding: 32px 8%;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

  .content {
    padding: 56px 8%;
  }
}
