:root {
  color-scheme: light;
  --bg: #f6efe7;
  --panel: rgba(255, 251, 246, 0.94);
  --ink: #23211f;
  --ink-soft: #625d56;
  --gold: #b39661;
  --line: rgba(57, 50, 43, 0.12);
  --dark: #222120;
  --shadow: 0 28px 60px rgba(35, 33, 31, 0.1);
  --max: 960px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(180deg, #f8f3ed 0%, #f1e8dc 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.serif {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(248, 243, 237, 0.82);
  border-bottom: 1px solid rgba(57, 50, 43, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 28px;
  height: 28px;
}

.back-link {
  font-size: 14px;
  color: var(--ink-soft);
}

.hero {
  padding: 72px 0 28px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 16px;
  border: 1px solid rgba(179, 150, 97, 0.24);
  border-radius: 999px;
  color: rgba(127, 103, 65, 0.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 22px 0 14px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.legal-card {
  margin: 28px 0 72px;
  padding: 34px 28px;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-card section + section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(57, 50, 43, 0.08);
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.1;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.legal-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-card strong {
  color: var(--ink);
}

.notice {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(179, 150, 97, 0.12);
  color: var(--ink);
}

.placeholder {
  font-weight: 800;
  color: #99502f;
}

.site-footer {
  padding: 0 0 42px;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(57, 50, 43, 0.08);
}

.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 720px) {
  .hero { padding-top: 48px; }
  .legal-card {
    padding: 24px 20px;
    border-radius: 22px;
  }
  .site-header__inner,
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
