:root {
  color-scheme: light;
  --page-bg: #ece7dc;
  --paper-bg: rgba(255, 252, 247, 0.92);
  --paper-border: rgba(84, 70, 54, 0.18);
  --text-main: #241f19;
  --text-muted: #5a4f43;
  --rule: rgba(84, 70, 54, 0.16);
  --accent: #3a2f23;
  --shadow: 0 24px 60px rgba(52, 43, 33, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.6), transparent 38%),
    linear-gradient(180deg, #f3eee4 0%, var(--page-bg) 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 5rem;
}

.site-header,
.policy-card {
  background: var(--paper-bg);
  border: 1px solid var(--paper-border);
  box-shadow: var(--shadow);
}

.site-header {
  padding: 3rem clamp(1.5rem, 3vw, 3rem);
  border-bottom: none;
}

.eyebrow,
.policy-label {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--text-muted);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 6vw, 4.3rem);
  line-height: 0.96;
  font-weight: 600;
}

.intro,
.policy-summary,
.policy-card p {
  max-width: 66ch;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  gap: 1rem;
  padding: 1.15rem clamp(1.5rem, 3vw, 3rem);
  border: 1px solid var(--paper-border);
  border-top: 1px solid var(--rule);
  background: rgba(249, 245, 238, 0.88);
  backdrop-filter: blur(8px);
}

.site-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
}

.policy-card {
  margin-top: 1.5rem;
  padding: 2.5rem clamp(1.5rem, 3vw, 3rem) 2rem;
}

.policy-header {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
}

section + section {
  margin-top: 1.5rem;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.policy-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

.policy-footer p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, 920px);
    padding: 1rem 0 2rem;
  }

  .site-header,
  .policy-card,
  .site-nav {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .site-header {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .policy-card {
    padding-top: 1.8rem;
  }
}