/* ── SPLIT SERVICE SECTIONS ── */
#split-services { background: #111111; position: relative; z-index: 1; isolation: isolate; }

#split-surface-canvas {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  margin-bottom: -100vh;
  background: #111111;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

#split-surface-canvas canvas {
  display: block;
}

#split-dark-overlay {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  margin-bottom: -100vh;
  background: #111111;
  transform: scaleY(0);
  transform-origin: bottom center;
  pointer-events: none;
  z-index: 2;
}

.split-block {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 70vh;
  border-bottom: 2px solid var(--cream);
}

.split-block.reversed { grid-template-columns: 45% 55%; }

/* Dark media panel */
.split-media {
  position: relative;
  overflow: hidden;
}

.split-media canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.split-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
  z-index: 1;
}

.split-media-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 48px;
  z-index: 2;
}

.split-media-label {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.split-media-headline {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 46px);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 0.93;
  margin-bottom: 12px;
}

.split-media-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* Text (cream) panel */
.split-text {
  padding: 80px 60px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text-label {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-md);
  margin-bottom: 20px;
}

.split-text-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--text-dk);
  letter-spacing: -0.025em;
  line-height: 0.93;
  margin-bottom: 20px;
}

.split-text-body {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  color: var(--text-md);
  line-height: 1.72;
  margin-bottom: 28px;
}

.split-list {
  list-style: none;
  margin-bottom: 32px;
}

.split-list li {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-md);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.split-list li::before { content: '·'; opacity: 0.5; }


/* ── BLOCK 1 — sticky black left / scrolling cards ── */

.split-block-1 {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: start;
  background: transparent;
  position: relative;
  z-index: 1;
}

/* Left sticky panel */
.sp1-left {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 140px 60px 80px;
}

.sp1-left-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp1-left-label {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  display: block;
  margin-bottom: 28px;
}

.sp1-left-headline {
  font-family: 'Satoshi', 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(42px, 5vw, 72px);
  color: #D8D4CC;
  letter-spacing: -0.03em;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0 0 32px;
}

.sp1-left-sub {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 15px);
  color: #D8D4CC;
  line-height: 1.10;
  max-width: 360px;
  margin: 0;
  text-align: left;
}

/* Cards column */
.sp1-cards {
  padding: 600px 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual card */
.sp1-card {
  border-radius: 16px;
  min-height: 420px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  color: #1a1a1a;
}

.sp1-card:nth-child(1) { background: #47787E; }
.sp1-card:nth-child(2) { background: #6A8D73; }
.sp1-card:nth-child(3) { background: #D98164; }

.sp1-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sp1-card-headline {
  font-family: 'Inter', 'Barlow', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: inherit;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

.sp1-card-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-left: 16px;
}

.sp1-card-icon span {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.sp1-card-spacer {
  flex: 1;
  min-height: 180px;
}

.sp1-card-hr {
  border: none;
  border-top: 1px solid #393939;
  opacity: 0.55; 
  margin: 0 0 1rem;
}

.sp1-card-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: inherit;
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.sp1-card-body {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: inherit;
  line-height: 1.40;
  max-width: 80%;
  margin: 0;
}


/* ── BLOCK 2 — scrolling cards left / sticky title right ── */

.split-block-2 {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: start;
  background: transparent;
  position: relative;
  z-index: 1;
}

.sp2-cards {
  padding: 600px 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sp2-right {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 140px 60px 80px;
}


/* ── BLOCK 3 — sticky title left / scrolling cards right ── */

.split-block-3 {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: start;
  background: transparent;
  position: relative;
  z-index: 1;
}

.sp3-left {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 140px 60px 80px;
}

.sp3-cards {
  padding: 600px 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
