
.s001-split {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  padding: 3rem 0;
  /* border-top: 1px solid rgba(255, 255, 255, .15); */
  text-align: left;
}

.s001-split__left {
  flex: 0 0 35%;
  max-width: 35%;
}

.s001-split__right {
  flex: 1;
  min-width: 0;
  padding-top: .5rem;
}

.s001-centered__eyebrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}


.s001-split__headline {
  font-family: Spectral, serif;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

.s001-split__content {
  max-width: 34em;
  font-family: Karla, sans-serif;
  font-size: 1.375em;
  line-height: 1.7;
  color: var(--w80);
}

.s001-split__cta {
  margin-top: 2rem;
}

[data-color-mode="light"] .s001-split__content {
  color: var(--b80);
}

[data-color-mode="light"] .s001-split {
  border-top-color: rgba(0, 0, 0, .15);
}

@media screen and (max-width: 1024px) {
  .s001-split {
    flex-direction: column;
    gap: 2rem;
  }

  .s001-split__left,
  .s001-split__right {
    flex: none;
    max-width: none;
    width: 100%;
  }

  .s001-split__right {
    padding-top: 0;
  }
}
.s001-eyebrow-dot {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  border-radius: 2px;
  background-color: var(--secondary-color);
  margin-right: 0.75em;
  flex: none;
}

.s001-eyebrow-label {
  font-family: Karla, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.s001-headline-accent {
  border-left: 2px solid var(--secondary-color);
  padding-left: 1.5rem;
}


@media screen and (min-width: 1024px) {
  .s001-has-image {
    align-items: stretch;
  }

  .s001-text-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.s001-image-frame {
  border: 1px solid var(--border-c);
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  /* Neutral fill shows behind any letterboxing from object-fit:contain
     below — arbitrary editor-uploaded images rarely match 4:3 exactly, and
     cover was cropping unpredictably (e.g. cutting the accent image tight). */
  background-color: rgba(255, 255, 255, 0.04);
}

/* Lets the image "fly" above its normal position, overlapping its own
   top-right corner past where content flow would otherwise place it. */
@media screen and (min-width: 1024px) {
  .s001-image-frame {
    margin-top: -3rem;
    margin-right: -1.5rem;
  }
}

.s001-image-frame__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (min-width: 1024px) {
  .s001-image-col {
    padding-left: 3rem;
  }
}

/* Second image (optional) — a smaller accent photo overlapping the main
   image's top-right corner, per request. Absolutely positioned against
   .s001-image-col, so the main frame's own -3rem/-1.5rem lift (above)
   doesn't apply here — margin is reset instead of relying on cascade order. */
.s001-image-col {
  position: relative;
}

.s001-image-frame--accent {
  display: none;
}

@media screen and (min-width: 1024px) {
  .s001-image-frame--accent {
    display: flex;
    position: absolute;
    top: -4.5rem;
    right: -3rem;
    width: 45%;
    margin: 0;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }
}

/* Light mode: shadows tuned for the dark navy baseline (rgba(0,0,0,.35/.4))
   read as a harsh dark smudge on a white page — much softer/lower-opacity
   here instead of the same values. */
[data-color-mode="light"] .s001-image-frame {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  background-color: #f2f2f2;
}

[data-color-mode="light"] .s001-image-frame--accent {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
