[data-section="01-hero"] {
  box-sizing: border-box;
  position: relative;
  z-index: var(--ds-layer-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100svh;
  margin: 0 0 50svh;
  background-color: var(--ds-color-bg-page);
  color: var(--ds-color-text-primary);
  font-family: var(--ds-font-body);
  font-size: var(--ds-type-base-size);
  font-weight: var(--ds-type-base-font-weight);
  line-height: var(--ds-type-base-line-height);
  overflow: visible;
}

[data-section="01-hero"] * {
  box-sizing: border-box;
}

[data-section="01-hero"] .hero-wrap {
  position: relative;
  z-index: var(--ds-layer-raised);
  width: 100%;
  max-width: 50%;
}

[data-section="01-hero"] .hero-wrap-inner {
  position: relative;
}

[data-section="01-hero"] .hero-content {
  position: relative;
  z-index: var(--ds-layer-control);
}

[data-section="01-hero"] .hero-container {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--space-16);
}

[data-section="01-hero"] .hero-inner {
  position: relative;
  z-index: var(--ds-layer-raised);
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

[data-section="01-hero"] .hero-logo {
  width: 100%;
}

[data-section="01-hero"] .theresa-hero-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  color: var(--ds-color-text-primary);
  font-family: var(--ds-font-wordmark);
  font-size: clamp(4.25rem, 9vw, 9.5rem);
  font-weight: 420;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
  letter-spacing: -.075em;
  line-height: .78;
}

[data-section="01-hero"] .theresa-hero-wordmark-subtitle {
  margin-top: var(--space-24);
  color: inherit;
  font-family: var(--ds-font-body);
  font-size: var(--ds-type-xs-size);
  font-weight: var(--ds-font-weight-medium);
  letter-spacing: var(--ds-type-xs-letter-spacing);
  line-height: 1.2;
  text-transform: uppercase;
}

[data-section="01-hero"] .hero-text {
  display: flex;
  justify-content: space-between;
}

[data-section="01-hero"] .hero-caption {
  display: flex;
}

[data-section="01-hero"] .hero-caption p,
[data-section="01-hero"] .hero-snippet {
  margin: 0;
  padding-top: calc(var(--spacing) * 0.4);
  font-family: var(--ds-font-body);
  font-size: var(--ds-type-xs-size);
  font-weight: var(--ds-type-xs-font-weight);
  line-height: var(--ds-type-xs-line-height);
  letter-spacing: var(--ds-type-caption-tight-letter-spacing);
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

[data-section="01-hero"] .hero-snippet {
  position: absolute;
  z-index: var(--ds-layer-raised);
  inset: 30svh auto 0 0;
  width: calc(var(--spacing) * 115);
  margin-bottom: var(--space-16);
  margin-left: var(--space-16);
}

[data-section="01-hero"] .hero-slider {
  position: absolute;
  z-index: var(--ds-layer-base);
  inset: 0;
  height: 150svh;
}

[data-section="01-hero"] .hero-sticky {
  position: sticky;
  top: 0;
  z-index: var(--ds-layer-base);
  width: 100%;
  height: 100svh;
}

[data-section="01-hero"] .hero-stage {
  position: sticky;
  z-index: var(--ds-layer-base);
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

[data-section="01-hero"] .hero-track {
  position: relative;
  z-index: var(--ds-layer-base);
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  transform: translateX(-200%);
}

[data-section="01-hero"] .hero-slide {
  flex: none;
  width: 100%;
  height: 100%;
}

[data-section="01-hero"] .hero-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

[data-section="01-hero"] .hero-image {
  position: absolute;
  top: 0;
  display: block;
  width: 130%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

[data-section="01-hero"] .hero-image[origin-point="left"] {
  object-position: 30% 20%;
}

[data-section="01-hero"] .hero-image[origin-point="center"] {
  object-position: 50% 20%;
}

@media screen and (max-width: 991px) {
  [data-section="01-hero"] .hero-wrap {
    z-index: var(--ds-layer-control);
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    max-width: 100%;
  }

  [data-section="01-hero"] .hero-wrap-inner {
    width: 100%;
  }

  [data-section="01-hero"] .hero-inner {
    width: 100%;
    max-width: calc(var(--space-32) * 20);
    margin-inline: auto;
  }

  [data-section="01-hero"] .theresa-hero-wordmark {
    font-size: clamp(4rem, 13vw, 7rem);
  }

  [data-section="01-hero"] .hero-snippet {
    inset: auto 0 -15svh auto;
    margin-left: 0;
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  [data-section="01-hero"] {
    padding-top: 10svh;
  }

  [data-section="01-hero"] .hero-image[origin-point="left"] {
    object-position: 12% 20%;
  }

  [data-section="01-hero"] .hero-container {
    padding-inline: var(--space-8);
  }

  [data-section="01-hero"] .theresa-hero-wordmark {
    font-size: clamp(3.7rem, 18vw, 5.75rem);
  }

  [data-section="01-hero"] .hero-snippet {
    bottom: -20svh;
  }
}

@media screen and (max-width: 479px) {
  [data-section="01-hero"] .hero-snippet {
    bottom: -25svh;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-section="01-hero"] .hero-track,
  [data-section="01-hero"] .hero-wrap-inner {
    animation: none;
    transition: none;
  }
}
