:root {
  color-scheme: light;
  --ink: #211b1b;
  --muted: #675f5b;
  --paper: #fffaf5;
  --renard-orange: #e8902f;
  --renard-green: #9aa864;
  --grimages-blue: #0f82c9;
  --grimages-purple: #963394;
  --grimages-red: #dc1f42;
  --gold: #c79a37;
  --green: #486c55;
  --line: rgba(255, 250, 245, .28);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.splash {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(20px, 5vw, 72px);
}

.splash-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splash::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 18, 16, .9), rgba(24, 18, 16, .62) 54%, rgba(24, 18, 16, .28)),
    linear-gradient(0deg, rgba(24, 18, 16, .4), rgba(24, 18, 16, .12));
}

.splash-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  max-width: 9.8ch;
  margin: 0;
  font-size: 6.8rem;
  line-height: .9;
}

.title-logo {
  display: block;
  width: min(430px, 100%);
  max-width: 100%;
  height: auto;
  margin: .14em 0 0;
}

.lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 250, 245, .9);
  font-size: 1.3rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.primary {
  background: linear-gradient(135deg, var(--renard-orange) 0%, #d8902e 48%, var(--renard-green) 100%);
  color: white;
  box-shadow: 0 16px 34px rgba(232, 144, 47, .25);
}

.primary:hover,
.primary:focus-visible {
  background: linear-gradient(135deg, var(--grimages-blue) 0%, var(--grimages-purple) 52%, var(--grimages-red) 100%);
  box-shadow: 0 16px 34px rgba(150, 51, 148, .28);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, .1);
  color: white;
  backdrop-filter: blur(10px);
}

.secondary:hover,
.secondary:focus-visible {
  background: rgba(255, 250, 245, .18);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 34px;
}

.socials a {
  color: rgba(255, 250, 245, .86);
  font-weight: 800;
  text-decoration-color: rgba(255, 250, 245, .42);
  text-underline-offset: 4px;
}

.socials a:hover,
.socials a:focus-visible {
  color: white;
}

@media (max-width: 680px) {
  .splash {
    min-height: 760px;
  }

  .splash::after {
    background: linear-gradient(180deg, rgba(24, 18, 16, .54), rgba(24, 18, 16, .9));
  }

  .splash-panel {
    align-self: end;
  }

  h1 {
    max-width: 11ch;
    font-size: 3.2rem;
  }

  .title-logo {
    width: min(280px, 100%);
    margin-top: .18em;
  }

  .lead {
    font-size: 1.08rem;
  }

  .button {
    width: 100%;
  }
}
