:root {
  --color-white: #ffffff;
}

html, body {
  height: 100%;
}

.home-split {
  display: flex;
  height: 100dvh;
}

.home-left {
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem);
  flex: 0 0 42%;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.home-branding h1 {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.1;
}

.home-branding .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--color-white);
  margin-top: 0.5rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

nav a {
  color: var(--color-white);
  text-decoration: underline;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  letter-spacing: 0.03em;
}

nav a:hover {
  opacity: 0.75;
}

.home-right {
  flex: 1;
  overflow: hidden;
}

.home-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 600px) {
  .home-split {
    flex-direction: column;
  }

  .home-left {
    flex: 0 0 auto;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }

  .home-branding h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .home-branding .tagline {
    font-size: clamp(1.1rem, 4.5vw, 1.3rem);
  }

  nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  nav a {
    font-size: 1rem;
  }

  .home-right {
    flex: 1;
  }
}
