:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fffdfb;
  color: #241f1c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #fffdfb;
}

a {
  color: #9d332f;
}

.shell {
  width: min(100% - 40px, 720px);
  margin: 0 auto;
}

.hero {
  min-height: 78vh;
  display: grid;
  align-content: center;
  padding: 56px 0 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}

.eyebrow {
  margin: 0;
  color: #796d67;
  font-size: 15px;
  font-weight: 700;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin: 0 0 16px;
  font-size: clamp(42px, 10vw, 68px);
  line-height: 1;
}

h2 {
  margin: 36px 0 12px;
  font-size: 25px;
  line-height: 1.2;
}

p,
li {
  color: #625954;
  font-size: 17px;
  line-height: 1.6;
}

p {
  margin: 0 0 18px;
}

ul {
  padding-left: 22px;
}

.lead {
  max-width: 620px;
  color: #514944;
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 8px;
  background: #a83b35;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.button[hidden] {
  display: none;
}

.link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 14px 4px;
  color: #514944;
  font-weight: 700;
  text-decoration: none;
}

.band {
  padding: 34px 0;
  border-top: 1px solid #ebdfd8;
  background: #f8f1ec;
}

.legal {
  padding: 48px 0 64px;
}

.legal h1,
.handoff h1 {
  font-size: clamp(36px, 9vw, 54px);
}

.meta {
  color: #796d67;
  font-size: 15px;
}

.handoff {
  min-height: 100vh;
  display: grid;
  align-content: center;
  padding: 48px 0;
}

.handoff .logo {
  margin-bottom: 26px;
}

footer {
  padding: 28px 0 36px;
  border-top: 1px solid #ebdfd8;
}

footer p,
footer a {
  font-size: 15px;
}

@media (max-width: 480px) {
  .logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .hero {
    min-height: 72vh;
  }
}
