:root {
  --pb-bone: #fbf6ee;
  --pb-shell: #ede3d4;
  --pb-card: #ffffff;
  --pb-line: #d9cdbe;
  --pb-blush: #e8c9bd;
  --pb-terra: #a85a4a;
  --pb-rose: #c68677;
  --pb-ink: #2a2522;
  --pb-ink-soft: #4a413b;
  --pb-mute: #8a7e73;
  --shadow: 0 2px 14px rgba(42, 37, 34, 0.05);
  --radius-card: 16px;
  --radius-chip: 10px;
  --content: 760px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--pb-bone);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--pb-ink);
  background: var(--pb-bone);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

a {
  color: var(--pb-terra);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--pb-ink);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 16px 20px;
  background: rgba(251, 246, 238, 0.88);
  border-bottom: 1px solid rgba(217, 205, 190, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pb-ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 14px;
  color: var(--pb-ink-soft);
  background: var(--pb-card);
  border: 1px solid var(--pb-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow);
}

nav a[aria-current="page"] {
  color: var(--pb-terra);
  border-color: rgba(168, 90, 74, 0.45);
  background: rgba(168, 90, 74, 0.08);
}

.mark {
  width: 26px;
  height: 26px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 8px;
}

.mark-large {
  width: 66px;
  height: 66px;
  margin-bottom: 16px;
}

.home {
  display: grid;
  min-height: calc(100vh - 70px);
  place-items: center;
  padding: 42px 20px;
}

.intro {
  width: min(100%, 560px);
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.intro h1 {
  margin-bottom: 6px;
  font-size: clamp(34px, 7vw, 46px);
  line-height: 1.05;
  font-weight: 800;
  color: var(--pb-ink);
}

.intro p {
  margin-bottom: 32px;
  color: var(--pb-mute);
  font-size: 16px;
}

.actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 650;
  text-decoration: none;
}

.button.primary {
  color: white;
  background: var(--pb-terra);
}

.button.secondary {
  color: var(--pb-ink);
  background: transparent;
  border: 1px solid var(--pb-line);
}

.document {
  width: min(100%, calc(var(--content) + 40px));
  margin: 0 auto;
  padding: 34px 20px 72px;
}

.page-title {
  padding: 14px 0 24px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--pb-mute);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-title h1 {
  margin-bottom: 4px;
  font-size: clamp(32px, 8vw, 46px);
  line-height: 1.05;
  font-weight: 800;
  color: var(--pb-ink);
}

.page-title p {
  margin-bottom: 0;
  color: var(--pb-mute);
  font-size: 14px;
}

.policy-section {
  margin-top: 28px;
}

.policy-section > h2,
.copy-block h2 {
  margin-bottom: 10px;
  padding-left: 4px;
  color: var(--pb-ink);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 700;
}

.copy-block {
  margin-bottom: 20px;
  padding: 0 4px 18px;
  border-bottom: 1px solid rgba(217, 205, 190, 0.75);
}

.copy-block :last-child {
  margin-bottom: 0;
}

.copy-block p {
  color: var(--pb-ink-soft);
}

.list-block {
  margin-bottom: 18px;
}

.list-block h3 {
  margin-bottom: 4px;
  color: var(--pb-ink);
  font-size: 17px;
  line-height: 1.25;
}

ul {
  margin: 0;
  padding-left: 20px;
  color: var(--pb-ink-soft);
}

li + li {
  margin-top: 8px;
}

@media (max-width: 560px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
  }

  nav a {
    justify-content: center;
    flex: 1;
  }

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