:root {
  --bg: #f7f4ee;
  --ink: #25291f;
  --muted: #62685b;
  --olive: #4c5839;
  --olive-dark: #343d28;
  --terracotta: #ad563e;
  --line: #d7d2c5;
  --sans: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
}

.splash {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: stretch;
}

.splash-image {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
}

.splash-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(34px, 7vw, 92px);
  background: rgba(255, 255, 255, .9);
}

.brand {
  margin: 0 0 8px;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 3.6rem;
  line-height: .95;
}

h1 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 4.25rem;
  font-weight: 500;
  line-height: 1;
}

.splash-copy p:not(.brand) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.45;
}

.splash-link {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0 24px;
  border: 1px solid var(--olive);
  border-radius: 4px;
  background: var(--olive);
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.splash-link:hover,
.splash-link:focus-visible {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
}

.splash-link:focus-visible {
  outline: 3px solid rgba(173, 86, 62, .32);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .splash {
    grid-template-columns: 1fr;
  }

  .splash-image {
    min-height: 48vh;
    max-height: 58vh;
  }

  .splash-copy {
    min-height: 42vh;
  }

  .brand {
    font-size: 2.7rem;
  }

  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 520px) {
  .splash-image {
    min-height: 44vh;
  }

  .splash-copy {
    padding: 28px 22px 34px;
  }

  .brand {
    font-size: 2.15rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  .splash-copy p:not(.brand) {
    font-size: 1rem;
  }

  .splash-link {
    width: 100%;
  }
}
