.st-index {
  background: var(--st-ink);
  color: var(--st-ivory);
}

.st-index-header {
  position: absolute;
  z-index: 20;
  top: 32px;
  right: 0;
  left: 0;
  pointer-events: none;
}

.st-index-header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--st-white);
}

.st-index-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
}

.st-index-note {
  margin: 0;
  font-size: 12px;
}

.st-concept-stage {
  min-height: calc(100svh - 32px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.st-concept-link {
  position: relative;
  min-width: 0;
  min-height: 680px;
  isolation: isolate;
  overflow: hidden;
}

.st-concept-link:focus-visible {
  outline-offset: -5px;
}

.st-concept-link--a {
  display: flex;
  align-items: flex-end;
  color: var(--st-white);
}

.st-concept-link--a::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--st-overlay-deep);
}

.st-concept-link--a .st-concept-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.st-concept-link--b {
  display: grid;
  grid-template-rows: 60% 40%;
  background: var(--st-ivory);
  color: var(--st-ink);
}

.st-concept-link--b .st-concept-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transition: transform 700ms ease;
}

.st-concept-link:hover .st-concept-image {
  transform: scale(1.025);
}

.st-concept-copy {
  width: 100%;
  padding: 48px clamp(24px, 5vw, 72px);
}

.st-concept-link--a .st-concept-copy {
  padding-bottom: 64px;
}

.st-concept-label {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
}

.st-concept-copy h1,
.st-concept-copy h2 {
  max-width: 580px;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.st-concept-copy p {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: 15px;
}

.st-concept-enter {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.st-concept-enter svg {
  width: 17px;
  height: 17px;
}

@container st-page (max-width: 820px) {
  .st-index-header {
    top: 30px;
  }

  .st-index-header-row {
    min-height: 66px;
  }

  .st-index-note {
    display: none;
  }

  .st-concept-stage {
    grid-template-columns: 1fr;
  }

  .st-concept-link {
    min-height: 620px;
  }

  .st-concept-link--a {
    min-height: calc(100svh - 30px);
  }

  .st-concept-link--b {
    grid-template-rows: 58% 42%;
  }

  .st-concept-copy h1,
  .st-concept-copy h2 {
    font-size: 48px;
  }
}

@container st-page (max-width: 620px) {
  .st-index-wordmark {
    font-size: 25px;
  }

  .st-concept-link {
    min-height: 580px;
  }

  .st-concept-link--a {
    min-height: calc(100svh - 30px);
  }

  .st-concept-copy,
  .st-concept-link--a .st-concept-copy {
    padding: 34px 20px 42px;
  }

  .st-concept-link--a .st-concept-copy {
    padding-bottom: 42px;
  }

  .st-concept-copy h1,
  .st-concept-copy h2 {
    font-size: 42px;
  }
}
