/* ---------- SPLIT HOME (index.html) ---------- */
.split-body {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.split-logo {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.split-logo img {
  height: 58px;
  width: auto;
  display: block;
}

.split-hero {
  flex: 1;
  display: flex;
  min-height: 0;
}

.split-panel {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--panel);
  transition: flex 0.5s ease;
}

.split-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  transition: transform 0.5s ease;
}
.split-panel:hover .split-photo {
  transform: scale(1.03);
}

.split-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.94) 100%
  );
  transition: background 0.4s ease;
}
.split-panel:hover .split-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(237, 27, 52, 0.4) 100%
  );
}

.split-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 64px;
  max-width: 480px;
}
.split-eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}
.split-content h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.85),
    0 1px 3px rgba(0, 0, 0, 0.9);
}
.split-content p {
  font-family: var(--body);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(238, 238, 236, 0.92);
  margin-bottom: 26px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}
.split-cta {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--steel-dim);
  padding-bottom: 6px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
  transition: all 0.25s ease;
}
.split-panel:hover .split-cta {
  color: var(--accent);
  border-color: var(--accent);
}

.split-divider {
  position: relative;
  width: 1px;
  background: var(--line);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-divider span {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 780px) {
  .split-body {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-y: auto;
  }
  .split-hero {
    flex-direction: column;
  }
  .split-panel {
    flex: 1 1 0;
    min-height: 300px;
  }
  .split-divider {
    width: 100%;
    height: 1px;
  }
  .split-content {
    padding: 0 28px 40px;
    max-width: none;
  }
  .split-logo {
    top: 18px;
  }
}

@media (max-width: 420px) {
  .split-content h2 {
    font-size: 2rem;
  }
  .split-content p {
    font-size: 0.88rem;
  }
}
