* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: #120b0b;
  color: #ffffff;
}

.split-page {
  display: flex;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.panel {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
}

.image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 1.2s ease;
}

.athleisure .image {
  background-image: url("assets/athleisure.jpg");
}

.pilates .image {
  background-image: url("assets/pilates.jpg");
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  transition: background 0.6s ease;
}

.content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}

.eyebrow {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 12px;
  text-transform: uppercase;
  opacity: 0.95;
}

.logo {
  width: min(420px, 70%);
  height: auto;
  display: block;
}

.athleisure-logo {
  width: min(460px, 78%);
}

.pilates-logo {
  width: min(460px, 74%);
}

.subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.button {
  margin-top: 18px;
  padding: 13px 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.5s ease, color 0.5s ease;
  backdrop-filter: blur(8px);
}

.panel:hover .image {
  transform: scale(1.06);
}

.panel:hover .overlay {
  background: rgba(0, 0, 0, 0.18);
}

.panel:hover .subtitle,
.panel:hover .button {
  opacity: 1;
  transform: translateY(0);
}

.panel:hover .button {
  background: #ffffff;
  color: #120b0b;
}

.site-footer {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.legal-page {
  min-height: 100vh;
  background: #120b0b;
  color: #ffffff;
  font-family: Helvetica, Arial, sans-serif;
}

.legal-content {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.legal-content h1 {
  margin-bottom: 38px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.9;
  letter-spacing: -3px;
  text-transform: lowercase;
}

.legal-content section {
  margin-bottom: 34px;
}

.legal-content h2 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.legal-content a {
  color: #ffffff;
  text-underline-offset: 4px;
}

.back-link {
  display: inline-block;
  margin-bottom: 44px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.back-link:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .split-page {
    flex-direction: column;
    height: 100svh;
  }

  .panel {
    width: 100%;
    height: 50%;
  }

  .subtitle,
  .button {
    opacity: 1;
    transform: none;
  }

  .content {
    gap: 8px;
  }

  .athleisure .content {
    transform: translateY(-24px);
  }

  .pilates .content {
    transform: translateY(-30px);
  }

  .logo {
    width: min(300px, 72%);
  }

  .button {
    margin-top: 8px;
    padding: 12px 20px;
    font-size: 10px;
    letter-spacing: 2.2px;
  }

  .site-footer {
    position: static;
    transform: none;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 14px 18px;
    border-radius: 0;
    background: #120b0b;
    font-size: 9px;
    gap: 8px;
  }
}