:root {
  color-scheme: light;
  --bg: #f3efe6;
  --panel: rgba(255, 252, 246, 0.8);
  --border: rgba(95, 72, 44, 0.12);
  --text: #2d2418;
  --muted: #6c5c47;
  --accent: #b88943;
}

* {
  box-sizing: border-box;
}

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

.shell {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 24px;
}

.panel {
  width: min(100%, 760px);
  padding: 56px 40px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 80px rgba(70, 50, 28, 0.08);
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(36px, 8vw, 76px);
  line-height: 0.96;
  font-weight: 600;
  max-width: 9ch;
}

.copy {
  margin: 22px 0 0;
  max-width: 28rem;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.footer {
  padding: 0 24px 22px;
  text-align: center;
  color: var(--muted);
}

.footer-company,
.footer-filing {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.footer-company span {
  margin: 0 8px;
  color: rgba(108, 92, 71, 0.5);
}

.footer-filing a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 137, 67, 0.35);
}

.footer-filing a:hover {
  color: var(--text);
  border-bottom-color: var(--accent);
}

@media (max-width: 640px) {
  .panel {
    padding: 36px 24px;
    border-radius: 20px;
  }

  .footer-company span {
    display: none;
  }
}
