:root {
  color-scheme: light;
  --ink: #261d1c;
  --muted: #746765;
  --paper: #fffdfb;
  --warm: #f9f1ea;
  --rose: #c85562;
  --rose-dark: #963846;
  --line: #eadbd4;
  --card: rgba(255, 255, 255, 0.86);
  --shadow: 0 20px 54px rgba(69, 42, 35, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(223, 155, 158, 0.22), transparent 29rem),
    linear-gradient(180deg, var(--warm) 0, var(--paper) 26rem);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

a {
  color: var(--rose-dark);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--rose);
}

.shell {
  margin: 0 auto;
  max-width: 960px;
  padding: 0 24px;
}

.site-header {
  border-bottom: 1px solid rgba(234, 219, 212, 0.8);
  padding: 20px 0;
}

.header-row,
.footer-row {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  border: 3px solid var(--rose);
  border-radius: 50%;
  display: inline-block;
  height: 25px;
  position: relative;
  width: 25px;
}

.brand-mark::after {
  background: var(--warm);
  border: 3px solid var(--rose);
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 8px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

main {
  padding: 72px 0 88px;
}

.hero {
  max-width: 760px;
}

.eyebrow {
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1.03;
  margin: 0 0 22px;
}

h2 {
  font-size: 27px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.lede {
  color: #4f4240;
  font-size: clamp(18px, 3vw, 22px);
  margin: 0;
  max-width: 720px;
}

.page-title {
  font-size: clamp(38px, 7vw, 58px);
}

.meta {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 18px;
}

.card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 46px;
}

.card,
.policy-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.card {
  color: var(--ink);
  padding: 26px;
  text-decoration: none;
}

.card:hover {
  border-color: #d6b5af;
  color: var(--ink);
  transform: translateY(-2px);
}

.card p,
.policy-section p,
.policy-section li {
  color: #564947;
}

.card p:last-child,
.policy-section p:last-child,
.policy-section ul:last-child {
  margin-bottom: 0;
}

.policy-list {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.policy-section {
  padding: 28px;
}

.policy-section ul,
.policy-section ol {
  padding-left: 24px;
}

.action {
  background: var(--ink);
  border-radius: 14px;
  color: white;
  display: inline-flex;
  font-weight: 800;
  margin-top: 22px;
  padding: 13px 20px;
  text-decoration: none;
}

.action:hover {
  background: var(--rose-dark);
  color: white;
}

.note {
  background: #fff6f3;
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  color: #554441;
  margin-top: 26px;
  padding: 16px 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  padding: 26px 0 36px;
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 700px) {
  .header-row,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 12px 16px;
  }

  main {
    padding: 50px 0 64px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .policy-section {
    border-radius: 18px;
    padding: 22px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .card,
  .action {
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
  }
}

