:root {
  --morph: 0;
  --logo-x: 0px;
  --logo-y: 0px;
  --logo-s: 1;
  --logo-o: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .35s ease, transform .35s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, .10) 0%,
    rgba(0, 0, 0, .20) 55%,
    rgba(0, 0, 0, .55) 100%
  );
}

.heroHeader {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 30;
  pointer-events: none;
  opacity: calc(1 - var(--morph));
  transform: translateY(calc(-10px * var(--morph)));
  transition: none;
}

.heroHeader__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 18px 0;
  pointer-events: auto;
}

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

.heroHeader__row--top {
  justify-content: space-between;
  padding-top: 6px;
}

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

.findUsLink__home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.findUsIcon__home {
  height: 30px;
  width: auto;
  display: block;
}

.findUsLink__home .findUsText__home {
    color: #fff;
}

.heroHeader__spacer__home {
  display: none;
}

.heroHeader__actions__home {
  display: flex;
    align-items: center;
    gap: 14px;
}

.heroHeader__icon__home {
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  opacity: .9;
  padding-left: 1rem;
  -webkit-box-align: center;
  align-items: center;
  background: transparent;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  /*font-family: inherit;*/
  font-size: 0.75rem;
  font-weight: 700;
}

.heroHeader__icon__home svg {
    width: 22px;
    height: 22px;
}

.heroHeader__menu__home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .92);
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 999px;
}

.burger__home {
  width: 18px;
  height: 12px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger__home span {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, .92);
  border-radius: 2px;
}

.heroHeader__menuText__home {
    font-size: 12px;
    letter-spacing: .10em;
}

.heroHeader__row--logo {
  display: flex;
  justify-content: center;
  padding-top: 0;
  align-items: center;
  min-height: calc(95vh - 75px);
}

.heroHeader__logo {
  color: rgba(255, 255, 255, .95);
  text-decoration: none;
  font-family: var(--font-script);
  font-size: clamp(34px, 22vw, 350px);
  letter-spacing: 0;
  text-align: center;
  line-height: 1;
  transform: translate(var(--logo-x), var(--logo-y)) scale(var(--logo-s));
  transform-origin: center;
  opacity: var(--logo-o);
  will-change: transform, opacity;
}

.hero__type {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero__word {
  /*font-family: Georgia, "Times New Roman", serif;*/
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .92);
  line-height: .9;
  white-space: nowrap;
  font-size: clamp(54px, 11vw, 160px);
  transform: translateY(var(--ty, 0px)) scale(var(--ts, 1));
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, .25));
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 70vh 18px 90px;
  color: #fff;
  text-align: center;
}

.afterHero {
  padding: 80px 18px;
  min-height: auto;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    min-height: 90px;
}