:root {
  --ink: #1C1710;
  --muted: #6B6157;
  --line: #E4D8C4;
  --bg: #FBF2E4;
  --bg-soft: #FFFBF3;
  --brand: #FF7A1F;
  --brand-dark: #B24A00;
  --max: 960px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

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

h1, h2, h3, h4, .brand {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 2.5px solid var(--ink);
  background: rgba(251, 242, 228, 0.92);
  backdrop-filter: blur(8px);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.brand span { color: var(--brand); }

nav.main {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

nav.main a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

nav.main a:hover { color: var(--brand-dark); }

nav.main a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--brand);
}

/* Pill CTA, matching the landing page's hard-shadow button. */
.nav-cta,
nav.main a.nav-cta {
  padding: 9px 18px;
  background: var(--brand);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 100px;
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}

.nav-cta:hover,
nav.main a.nav-cta:hover {
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .nav-cta, nav.main a.nav-cta { transition: none; }
  .nav-cta:hover, nav.main a.nav-cta:hover { transform: none; }
}

@media (max-width: 720px) {
  header.site { position: static; }
  header.site .wrap { flex-direction: column; align-items: flex-start; gap: 12px; }
  nav.main { gap: 14px 18px; }
}

main { padding: 48px 0 64px; }

.hero {
  background: var(--bg-soft);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}

.hero h1 { font-size: 2.1rem; margin: 0 0 14px; }
.hero p.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; }

h1 { font-size: 1.9rem; margin-top: 0; }
h2 { font-size: 1.35rem; margin-top: 2.4em; }
h3 { font-size: 1.1rem; margin-top: 1.8em; }
p { color: var(--ink); }
.lead { color: var(--muted); }

.page-header {
  padding: 44px 0 8px;
}
.page-header p.dek { color: var(--muted); font-size: 1.05rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.step {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
}
.step .num {
  display: inline-block;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  text-align: center;
  line-height: 28px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
@media (max-width: 720px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .steps { grid-template-columns: 1fr; }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
}
.card h3 { margin-top: 0; }
@media (max-width: 640px) {
  .two-col { grid-template-columns: 1fr; }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95rem;
}
th, td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
th {
  background: var(--bg-soft);
  font-weight: 600;
}
tr:last-child td { border-bottom: none; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
}
.tier {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
}
.tier.highlight {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}
.tier .price {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 6px 0 14px;
}
.tier ul { padding-left: 20px; margin: 0; }
.tier ul li { margin-bottom: 6px; font-size: 0.93rem; }
@media (max-width: 780px) {
  .tier-grid { grid-template-columns: 1fr; }
}


.callout {
  background: var(--bg-soft);
  border-left: 4px solid var(--brand);
  padding: 16px 20px;
  border-radius: 6px;
  margin: 24px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.contact-grid .card h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 8px; }
.contact-grid .card p { font-size: 1.05rem; margin: 0; }
@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Dark footer, matching the landing page. */
footer.site {
  border-top: 2.5px solid var(--ink);
  background: var(--ink);
  color: rgba(251, 242, 228, 0.75);
  padding: 56px 0 28px;
  margin-top: 56px;
}

footer.site .foot-wordmark {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--bg);
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
}
footer.site .foot-wordmark span { color: var(--brand); }

footer.site .foot-col-title {
  font-weight: 700;
  color: var(--bg);
  font-size: 0.87rem;
  margin-bottom: 4px;
}

footer.site .foot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251, 242, 228, 0.15);
}

footer.site .foot-brand {
  flex: 1 1 240px;
  max-width: 320px;
  color: rgba(251, 242, 228, 0.6);
  font-size: 0.87rem;
  line-height: 1.6;
}

footer.site .foot-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer.site .foot-links a {
  color: rgba(251, 242, 228, 0.75);
  text-decoration: none;
  font-size: 0.87rem;
}
footer.site .foot-links a:hover { color: var(--brand); }

footer.site .foot-bottom {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(251, 242, 228, 0.5);
}

.policy-doc h2:first-of-type { margin-top: 1em; }
.policy-doc ul { padding-left: 22px; }
.policy-doc li { margin-bottom: 8px; }
