:root {
  --bg: #f2eee6;
  --paper: rgba(255, 252, 247, 0.82);
  --paper-strong: #fffaf3;
  --ink: #172720;
  --muted: #526159;
  --line: rgba(23, 39, 32, 0.12);
  --accent: #c95d33;
  --accent-dark: #8f3d1e;
  --moss: #1c3a35;
  --moss-soft: #295149;
  --shadow: 0 18px 55px rgba(33, 34, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 93, 51, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(28, 58, 53, 0.14), transparent 28%),
    linear-gradient(180deg, #f6f2ea 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

.hero,
.section,
.footer {
  padding-left: 24px;
  padding-right: 24px;
}

.hero__inner,
.section,
.footer {
  max-width: 1120px;
  margin: 0 auto;
}

.hero {
  padding-top: 72px;
  padding-bottom: 48px;
}

.hero__inner {
  background: linear-gradient(145deg, rgba(255, 250, 243, 0.92), rgba(246, 238, 226, 0.88));
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

p,
li {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--ink);
}

.hero__lead {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: 1.45rem;
  line-height: 1.5;
}

.hero__copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

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

.button--ghost {
  background: transparent;
  color: var(--moss);
  border-color: rgba(28, 58, 53, 0.2);
}

.section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.section__intro {
  margin-bottom: 24px;
  max-width: 820px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card,
.step-card,
.timeline__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card,
.timeline__item {
  padding: 24px;
}

.card--light {
  background: var(--paper-strong);
}

.section--accent .card,
.section--accent .step-card {
  background: linear-gradient(155deg, rgba(28, 58, 53, 0.94), rgba(20, 35, 31, 0.96));
  color: #f5efe7;
  border-color: rgba(255, 255, 255, 0.08);
}

.section--accent .card p,
.section--accent .card li,
.section--accent .step-card p,
.section--accent .step-card li,
.section--accent .card h3,
.section--accent .step-card h3,
.section--accent .section__intro h2 {
  color: #f5efe7;
}

.section--accent .eyebrow {
  color: #efb8a3;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline__item {
  position: relative;
  overflow: hidden;
}

.timeline__item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--accent), #e89d76);
}

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

.step-card {
  position: relative;
  padding: 24px;
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: #f6c5b3;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.step-card ol,
.card ul {
  padding-left: 20px;
  margin: 0;
}

.note {
  margin-top: 14px;
  color: rgba(245, 239, 231, 0.82);
}

code {
  padding: 0.15rem 0.4rem;
  border-radius: 8px;
  background: rgba(23, 39, 32, 0.08);
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
}

.footer {
  padding-top: 28px;
  padding-bottom: 56px;
}

.footer p {
  margin: 0 0 8px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .grid--two,
  .grid--three,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 32px;
  }

  .hero,
  .section,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__lead {
    font-size: 1.18rem;
  }
}
