/* === Legal pages — minimal, lesbar, premium === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --beige-light: #F7F0DC;
  --gold-deep: #A87D35;
  --navy: #1A2C50;
  --text: #1A2C50;
  --text-mid: #4A5A78;
  --text-soft: #8895A7;
}
body {
  background: var(--beige-light);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.65;
  padding: 60px 24px 100px;
}
main {
  max-width: 760px;
  margin: 0 auto;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 12px;
}
.lead {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 48px;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 600;
  color: var(--gold-deep);
  margin-top: 48px;
  margin-bottom: 14px;
}
p, ul, ol {
  margin-bottom: 14px;
  color: var(--text-mid);
}
ul, ol {
  padding-left: 24px;
}
li {
  margin-bottom: 6px;
}
strong {
  color: var(--navy);
}
a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--navy);
}
.hint {
  background: rgba(201,162,84,0.1);
  border-left: 3px solid var(--gold-deep);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.93rem;
  margin: 12px 0;
}
.updated {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,162,84,0.3);
  font-size: 0.85rem;
  color: var(--text-soft);
  font-style: italic;
}
.back {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  text-decoration: none;
  transition: color 0.2s;
}
.back:hover {
  color: var(--navy);
}
@media (max-width: 768px) {
  body { padding: 40px 18px 80px; }
  h2 { margin-top: 36px; }
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.35s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
