body.split-home {
  --heading-color: #fff;
  --subtitle-color: rgba(255, 255, 255, 0.92);
  --footer-color: rgba(255, 255, 255, 0.95);
  --icon-color: #fff;
  min-height: 100vh;
}

.stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.split-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  cursor: default;
}

.split-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 0.35s ease;
}

.split-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 30, 30, 0.42);
  transition: background 0.25s ease;
}

.split-label {
  position: relative;
  z-index: 2;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.05em;
  text-transform: lowercase;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.split-panel.lunar::before {
  background-image: url('../assets/covers/solar-cover.png');
}

.split-panel.solar::before {
  background-image: url('../assets/covers/lunar-cover.jpg');
}

.chrome {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.split-home .container {
  display: flex;
  align-items: flex-start;
}

.split-home header {
  width: 100%;
}

.split-home footer {
  margin-top: auto;
  pointer-events: none;
}

.split-home .footer-inner {
  pointer-events: auto;
}

.coming-soon-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.coming-soon-badge {
  position: relative;
  transform: rotate(45deg);
  z-index: 1;
  width: clamp(100px, 10vw, 150px);
  height: clamp(100px, 10vw, 150px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: border-color 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  overflow: hidden;
}

.coming-soon-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 226, 158, 0.68) 0%,
    rgba(166, 98, 118, 0.62) 100%
  );
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.coming-soon-wrap.is-animating .coming-soon-badge {
  border-color: rgba(255, 255, 255, 0.9);
}

.coming-soon-wrap.is-animating .coming-soon-gradient {
  opacity: 1;
}

.coming-soon-label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  color: #fff;
  transform: translate(-50%, -50%);
  width: max-content;
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
}

.split-home .coming-soon-label {
  text-align: center;
}

@media (max-width: 900px) {
  .split-home .title-row {
    flex-direction: row;
    align-items: baseline;
    gap: 20px;
  }

  .split-home .subtitle {
    text-align: right;
  }

  .split-home .footer-row {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .split-home .footer-copy,
  .split-home .footer-email,
  .split-home .footer-social {
    width: auto;
    text-align: initial;
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .split-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .split-panel.lunar {
    align-items: flex-end;
    padding-bottom: 16vh;
  }

  .split-panel.solar {
    align-items: flex-start;
    padding-top: 16vh;
  }

  .coming-soon-badge {
    width: 96px;
    height: 96px;
  }

  .coming-soon-label { text-align: center; }

  .split-home .title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .split-home .subtitle {
    text-align: left;
  }

  .split-home .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .split-home .footer-copy,
  .split-home .footer-email,
  .split-home .footer-social {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }
}
