:root {
  --ink: #1a1a1a;
  --ink-soft: #2a2a2a;
  --red: #d8232a;
  --red-soft: #b81920;
  --cream: #f7f3ea;
  --cream-deep: #ebe5d6;
  --muted: rgba(26, 26, 26, 0.55);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.splash {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 3rem) 1.25rem;
  text-align: center;
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, var(--cream) 0%, var(--cream-deep) 100%);
}

.splash__inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 720px;
  padding: 2rem 0;
}

.splash__logo {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.5rem);
  filter: drop-shadow(0 6px 18px rgba(26, 26, 26, 0.12));
}

.splash__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 clamp(1rem, 2vw, 1.25rem);
  color: var(--ink);
}

.splash__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 0 0.85rem;
  font-family: var(--sans);
  font-size: clamp(0.7rem, 1.4vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
}

.splash__eyebrow::before,
.splash__eyebrow::after {
  content: "";
  flex: 0 0 4.5rem;
  height: 1px;
  background: var(--red);
}

.splash__eyebrow span {
  white-space: nowrap;
}

.splash__date {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.2vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.splash__cta {
  margin: 0 0 1.75rem;
}

.splash__btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  background: transparent;
  border: 1.5px solid var(--red);
  border-radius: 2px;
  transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.splash__btn:hover,
.splash__btn:focus-visible {
  background: var(--red);
  color: var(--cream);
  outline: none;
}

.splash__btn:active {
  transform: translateY(1px);
}

.splash__sub {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.splash__footer {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 1.5rem;
}

@media (max-width: 480px) {
  .splash__logo {
    max-width: 300px;
  }
  .splash__eyebrow::before,
  .splash__eyebrow::after {
    flex-basis: 2rem;
  }
}

@media print {
  .splash {
    background: #fff;
  }
}
