.intro-module {
  --intro-ink: #263029;
  --intro-paper: #f6f0e8;
  --intro-accent: #b68c4a;
  position: relative;
  min-height: clamp(28rem, 72vh, 48rem);
  overflow: hidden;
  isolation: isolate;
  background: #263029;
  color: var(--intro-ink);
}

.intro-module__background,
.intro-module__shade {
  position: absolute;
  inset: 0;
}

.intro-module__background {
  z-index: 0;
}

.intro-module__background cms-image2 {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.01);
}

.intro-module__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 25, 21, .72) 0%, rgba(18, 25, 21, .36) 48%, rgba(18, 25, 21, .08) 100%),
    linear-gradient(180deg, rgba(18, 25, 21, .28), transparent 34%, rgba(18, 25, 21, .28));
}

.intro-module__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  min-height: inherit;
  padding: clamp(2rem, 7vw, 6rem) 0;
}

.intro-module__panel {
  width: min(100% - 2rem, 39rem);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  border-left: .35rem solid var(--intro-accent);
  border-radius: 0 1.75rem 1.75rem 0;
  background: color-mix(in srgb, var(--intro-paper) 91%, transparent);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .18);
  backdrop-filter: blur(1rem);
}

.intro-module__rule {
  display: block;
  width: 3.5rem;
  height: .25rem;
  margin-bottom: 1.5rem;
  border-radius: 99rem;
  background: var(--intro-accent);
}

.intro-module h1 {
  max-width: 11ch;
  margin: 0 0 1.25rem;
  color: var(--intro-ink);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  letter-spacing: -.06em;
  line-height: .94;
}

.intro-module__intro {
  max-width: 35rem;
  color: color-mix(in srgb, var(--intro-ink) 82%, white);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

@media (max-width: 42rem) {
  .intro-module {
    min-height: 34rem;
  }

  .intro-module__inner {
    align-items: flex-end;
    padding: 1rem 0;
  }

  .intro-module__panel {
    width: calc(100% - 1rem);
    padding: 1.5rem 1.25rem 1.75rem;
    border-left-width: .25rem;
    border-radius: 0 1.25rem 1.25rem 0;
  }

  .intro-module__rule {
    margin-bottom: 1rem;
  }

  .intro-module h1 {
    margin-bottom: .85rem;
    font-size: clamp(2.4rem, 13vw, 4.4rem);
  }

  .intro-module__intro {
    font-size: 1rem;
  }
}