html, body { height: 100%; margin: 0; }

.landing-body {
  position: relative;
  overflow: hidden;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.landing-logo-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  pointer-events: none;
}
.landing-logo {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.split-landing {
  display: flex;
  height: 100vh;
  width: 100%;
}

.split-half {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.split-half:hover { flex: 1.25; }

.split-content {
  max-width: 380px;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.split-content h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.split-whisky .split-content h2 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: 0; }
.split-sports .split-content h2 { font-family: 'Anton', Arial, sans-serif; font-weight: 400; letter-spacing: 0.02em; }
.split-content p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin: 0 0 2rem;
}
.split-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 4px;
  transition: gap 0.25s ease, border-color 0.25s ease;
}
.split-half:hover .split-cta { gap: 0.9rem; border-color: #fff; }

.split-whisky {
  background-image: linear-gradient(160deg, rgba(43, 26, 16, 0.55), rgba(30, 18, 11, 0.85)), url('/whisky/img/barrel-hero.png');
  background-size: cover;
  background-position: center;
}
.split-sports {
  background-image: linear-gradient(160deg, rgba(11, 27, 43, 0.55), rgba(8, 18, 30, 0.85)), url('/sports/img/sports-hero.png');
  background-size: cover;
  background-position: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 700px) {
  .split-landing { flex-direction: column; height: auto; min-height: 100vh; }
  .split-half { min-height: 50vh; }
  .split-sports { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.12); }
}
