:root {
  --policy-bg: #f4eee2;
  --policy-paper: #fffdf8;
  --policy-ink: #132d3a;
  --policy-muted: #50606a;
  --policy-line: #d9ccba;
  --policy-accent: #0f6f72;
  --policy-dark: #102c3b;
  font-family: "DM Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--policy-ink);
  background: radial-gradient(circle at top right, rgba(15, 111, 114, .12), transparent 32rem), var(--policy-bg);
}

a { color: var(--policy-accent); }
a:hover { color: var(--policy-dark); }

.policy-header,
.policy-footer {
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
}

.policy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.policy-brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--policy-dark);
  text-decoration: none;
}

.policy-brand img { width: 42px; height: 42px; object-fit: contain; }
.policy-brand span { display: grid; line-height: 1.05; }
.policy-brand strong { font-family: Georgia, serif; font-size: 1.15rem; }
.policy-brand small { margin-top: .18rem; color: var(--policy-muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

.policy-back {
  font-weight: 700;
  text-decoration: none;
}

.policy-shell { padding: 1.25rem 1rem 3rem; }

.policy-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--policy-line);
  border-radius: 1.1rem;
  background: var(--policy-paper);
  box-shadow: 0 1.25rem 3.75rem rgba(36, 42, 35, .12);
}

.policy-eyebrow {
  margin: 0 0 .5rem;
  color: var(--policy-accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 { margin: 0; font-size: clamp(2rem, 5vw, 3rem); }
h2 { margin: 2rem 0 .55rem; font-size: 1.35rem; }
p { line-height: 1.65; }
.policy-updated { margin-top: .35rem; color: var(--policy-muted); font-size: .92rem; }

.policy-footer {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.15rem;
  padding: 0 0 2rem;
  color: var(--policy-muted);
  font-size: .9rem;
}

@media (max-width: 560px) {
  .policy-header { align-items: flex-start; }
  .policy-back { font-size: .9rem; }
}
