:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2.25rem, 1.2rem + 4vw, 5rem);
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --bg: #f7f1e7;
  --surface: #fffaf2;
  --surface-2: #efe4d4;
  --text: #251d17;
  --muted: #6f6258;
  --line: #d9c9b7;
  --accent: #8a4b2a;
  --accent-dark: #63351f;
  --radius: 1.25rem;
  --font-display: "Zodiak", Georgia, serif;
  --font-body: "Satoshi", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

p,
li {
  max-width: 68ch;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-5) var(--space-6);
}

.brand,
nav,
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.brand {
  font-weight: 700;
}

.mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
}

nav a {
  color: var(--muted);
  font-size: var(--text-sm);
}

main {
  overflow: hidden;
}

section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
}

.hero {
  min-height: 72vh;
  display: grid;
  place-content: center;
  text-align: center;
}

.eyebrow {
  color: var(--accent);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  max-width: 900px;
  margin: var(--space-4) auto;
  font-size: var(--text-2xl);
}

h2 {
  max-width: 760px;
  margin-top: var(--space-3);
  font-size: var(--text-xl);
}

h3 {
  font-size: var(--text-lg);
}

.hero-copy {
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--text-lg);
}

.phrase {
  margin: var(--space-8) auto 0;
  padding: var(--space-4) var(--space-6);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.7);
  color: var(--accent-dark);
  font-weight: 700;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 var(--space-5);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 700;
}

.primary {
  background: var(--accent);
  color: #fffaf2;
}

.secondary {
  border: 1px solid var(--line);
  color: var(--accent-dark);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-10);
  align-items: end;
  margin-bottom: var(--space-8);
}

.card-grid,
.issue-grid {
  display: grid;
  gap: var(--space-5);
}

.three,
.issue-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.issue-card,
blockquote {
  padding: var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.number {
  display: block;
  margin-bottom: var(--space-10);
  color: var(--accent);
  font-size: var(--text-xs);
  font-weight: 700;
}

.card p,
.sample-header p,
.advisor-note p,
.cta p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.steps div {
  padding: var(--space-6);
  border-right: 1px solid var(--line);
}

.steps div:last-child {
  border-right: 0;
}

.steps strong {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--accent-dark);
}

.steps span {
  display: block;
  color: var(--muted);
}

.sample {
  max-width: 1240px;
}

.sample-header,
.advisor-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

.issue-card ul {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding-left: var(--space-5);
  color: var(--muted);
}

.advisor-note {
  align-items: center;
}

blockquote p {
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.35;
}

cite {
  display: block;
  margin-top: var(--space-5);
  color: var(--muted);
  font-style: normal;
}

.cta {
  text-align: center;
}

.cta h2,
.cta p {
  margin-left: auto;
  margin-right: auto;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-6);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-sm);
}

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

  nav {
    flex-wrap: wrap;
  }

  .section-intro,
  .sample-header,
  .advisor-note,
  .three,
  .issue-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps div:last-child {
    border-bottom: 0;
  }
}
