:root {
  --bg: #fbf5ec;
  --bg-2: #f3e7d4;
  --card: #fffaf2;
  --text: #241f1a;
  --muted: #71634f;
  --accent: #d9531c;
  --accent-2: #e87a3e;
  --accent-soft: #f7dcc9;
  --border: #ece0cd;
  --radius: 20px;
  --shadow: 0 1px 2px rgba(60, 40, 20, 0.04), 0 12px 32px rgba(120, 80, 40, 0.08);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  background:
    radial-gradient(1100px 520px at 50% -10%, var(--bg-2), transparent 70%),
    var(--bg);
  background-attachment: fixed;
}

.wrap { max-width: 680px; margin: 0 auto; padding: 40px 22px 90px; }

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(38px, 8vw, 60px); margin: 0 0 10px; }
h2 { font-size: 23px; margin: 34px 0 8px; }

p { margin: 0 0 16px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header / brand */
.brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 40px; }
.mark {
  width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(150deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(217, 83, 28, 0.32);
}
.mark svg { width: 22px; height: 22px; }
.brand b { font-family: "Fraunces", serif; font-weight: 600; font-size: 20px; }

/* Hero */
.hero { margin-bottom: 30px; }
.lede { color: var(--muted); font-size: 19px; max-width: 52ch; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill {
  font-size: 14px; font-weight: 600; color: var(--muted);
  background: var(--card); border: 1px solid var(--border);
  padding: 7px 13px; border-radius: 999px;
}

/* Card with link rows */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 22px;
  margin: 26px 0;
}
.links { list-style: none; padding: 0; margin: 0; }
.links li { border-top: 1px solid var(--border); }
.links li:first-child { border-top: none; }
.links a {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 4px; font-weight: 600; color: var(--text);
}
.links a:hover { color: var(--accent); text-decoration: none; }
.links a:hover .arrow { transform: translateX(3px); }
.links .ico {
  width: 20px; height: 20px; flex: none; color: var(--accent);
}
.links .txt { flex: 1; }
.links .arrow { color: var(--muted); transition: transform .15s ease; }

/* Policy page */
.policy h2 { border-top: 1px solid var(--border); padding-top: 28px; }
.policy h2:first-of-type { border-top: none; padding-top: 6px; }
.policy ul { padding-left: 20px; margin: 0 0 16px; }
.policy li { margin: 7px 0; }

.back {
  display: inline-flex; align-items: center; gap: 7px;
  margin-bottom: 26px; font-weight: 600; color: var(--muted);
}
.back:hover { color: var(--accent); text-decoration: none; }

.muted { color: var(--muted); }
.small { font-size: 15px; }

.footer {
  margin-top: 60px; padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted); font-size: 15px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1611;
    --bg-2: #241c12;
    --card: #251f19;
    --text: #f1e9dd;
    --muted: #b2a48f;
    --accent: #ff7c43;
    --accent-2: #ff9760;
    --accent-soft: #3a2a1c;
    --border: #392f27;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 14px 34px rgba(0,0,0,.34);
  }
}
