:root {
  color-scheme: light;
  --background: #f5f2ea;
  --surface: rgba(255, 255, 255, 0.72);
  --text: #111111;
  --muted: #4b4b4b;
  --line: rgba(17, 17, 17, 0.12);
  --accent: #111111;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.85), transparent 38%),
    linear-gradient(180deg, #fbfaf6 0%, var(--background) 100%);
  color: var(--text);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

.site-header,
.home-main,
.legal-main {
  flex: 1;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.site-header {
  flex: 0 0 auto;
  padding: 24px 24px 0;
  display: flex;
  justify-content: center;
}

.site-name {
  margin: 0;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.home-main,
.legal-main {
  padding: 32px 24px 48px;
}

.home-main {
  display: grid;
  place-items: center;
}

.hero-title {
  margin: 0;
  max-width: 14ch;
  text-align: center;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.legal-main {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.back-link {
  display: inline-flex;
  width: min(100%, 720px);
  margin-bottom: 28px;
  color: var(--muted);
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--text);
}

.legal-copy {
  width: min(100%, 720px);
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(12px);
}

.legal-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.legal-copy h2 {
  margin: 0 0 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-copy p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.company-details {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.company-details p {
  margin-bottom: 6px;
  color: var(--text);
}

.site-footer {
  padding: 0 24px 24px;
  display: flex;
  justify-content: center;
}

.footer-links {
  width: 100%;
  max-width: 1120px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

@media (max-width: 640px) {
  .site-header,
  .home-main,
  .legal-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .legal-copy {
    padding: 24px 20px;
  }

  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}
