@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap");

:root {
  --ink: #25322c;
  --muted: #6d7771;
  --cream: #fffaf5;
  --soft: #f8eee7;
  --line: rgba(217, 121, 104, 0.2);
  --accent: #d97968;
  --accent-dark: #ad584e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
}
a { color: var(--accent-dark); }

body.content-protection,
body.content-protection * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

body.content-protection :where(input, textarea, select, [contenteditable="true"]) {
  -webkit-user-select: text;
  user-select: text;
}

body.content-protection :where(img, picture, svg, canvas, video) {
  -webkit-user-drag: none;
  user-drag: none;
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.legal-shell {
  width: min(880px, calc(100% - 40px));
  margin-inline: auto;
}

.legal-header-inner {
  display: flex;
  min-height: 72px;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  color: white;
  border-radius: 12px;
  place-items: center;
  background: var(--accent);
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
}

.brand-name {
  letter-spacing: -1px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
}

.back-link {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.legal-hero {
  padding: 62px 0 22px;
}

.eyebrow {
  color: var(--accent-dark);
  letter-spacing: 1.5px;
  font-size: 10px;
  font-weight: 700;
}

h1, h2 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  max-width: 760px;
  margin: 11px 0 13px;
  letter-spacing: -2px;
  font-size: clamp(42px, 7vw, 64px);
  line-height: 1;
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-card {
  margin: 20px 0 58px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  padding: 28px;
}

.legal-card section + section {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

h2 {
  margin: 0 0 9px;
  letter-spacing: -0.5px;
  font-size: 24px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.legal-card p { margin: 8px 0 0; }
.legal-card ul { margin: 10px 0 0; padding-left: 19px; }
.legal-card li + li { margin-top: 7px; }
.updated { font-size: 12px !important; }

.legal-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #25322e;
}

.legal-footer-inner {
  display: grid;
  gap: 13px;
  justify-items: center;
  padding: 24px 0 28px;
  text-align: center;
}

.legal-footer p {
  margin: 0;
  font-size: 11px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  justify-content: center;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 620px) {
  .legal-shell { width: min(100% - 28px, 520px); }
  .legal-header-inner { min-height: 64px; }
  .brand-name { font-size: 23px; }
  .brand-mark { width: 31px; height: 31px; }
  .legal-hero { padding: 44px 0 15px; text-align: center; }
  h1 { letter-spacing: -1.5px; font-size: clamp(39px, 12vw, 54px); }
  .legal-card { margin: 15px 0 40px; border-radius: 17px; padding: 19px 17px; }
  h2 { font-size: 22px; }
  .legal-card p, .legal-card li { font-size: 13px; }
}
