:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #171714;
  background: #f4f1ea;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #f4f1ea;
}

body {
  min-height: 100svh;
  margin: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(223, 90, 50, 0.14), transparent 27rem),
    linear-gradient(145deg, #f8f6f0 0%, #ece7dc 100%);
}

main {
  display: grid;
  min-height: 100svh;
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  padding: 42px 0 32px;
  grid-template-rows: auto 1fr auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.mark {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

section {
  align-self: center;
  max-width: 860px;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 24px;
  color: #df5a32;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 8.2rem);
  font-weight: 520;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-wrap: balance;
}

.intro {
  max-width: 560px;
  margin: 40px 0 0;
  color: #59574f;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(23, 23, 20, 0.15);
  padding-top: 20px;
  color: #6d6a61;
  font-size: 0.78rem;
}

@media (max-width: 620px) {
  main {
    width: min(100% - 32px, 1120px);
    padding-top: 24px;
  }

  section {
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 5.5rem);
  }

  footer {
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .brand,
  section,
  footer {
    animation: reveal 700ms ease-out both;
  }

  section {
    animation-delay: 80ms;
  }

  footer {
    animation-delay: 160ms;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
  }
}
