.split-home {
  padding-bottom: 72px;
}

.split-home-hero {
  padding: 20px 0 28px;
}

.split-home-hero-inner {
  border-top: none;
  padding-top: 0;
}

.split-home-copy {
  max-width: 780px;
}

.split-home-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.split-home-copy p {
  margin: 20px 0 0;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.18rem;
  line-height: 1.7;
}

.split-home-panels {
  padding: 12px 0 32px;
}

.split-home-panels-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.split-panel {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255,255,255,0.52);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.split-panel:hover {
  transform: translateY(-2px);
  border-color: #bdb3a8;
  background: rgba(255,255,255,0.72);
}

.split-panel-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-panel-label {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-panel-visual {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--bg-soft);
  overflow: hidden;
}

.split-panel-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-panel-copy {
  margin-top: 24px;
}

.split-panel-copy h2 {
  margin: 0 0 14px;
  font-size: 1.9rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.split-panel-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.75;
}

.split-home-closing {
  padding: 12px 0 0;
}

.split-home-closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.split-home-closing-inner p {
  margin: 0;
  font-size: 1.08rem;
  color: var(--text-soft);
}

@media (max-width: 980px) {
  .split-home-panels-grid {
    grid-template-columns: 1fr;
  }

  .split-panel {
    min-height: 0;
  }

  .split-home-closing-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .split-home-hero {
    padding: 42px 0 18px;
  }

  .split-home-copy p {
    font-size: 1.04rem;
  }

  .split-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .split-panel-copy h2 {
    font-size: 1.55rem;
  }
}
