:root {
  color-scheme: light;
  --paper: #f4f2ee;
  --card: #fbfaf8;
  --ink: #171716;
  --copy: #4f4d49;
  --muted: #77746f;
  --line: #cbc8c2;
  --blue: #e5e9f8;
  --pink: #f3e4f4;
  --green: #e5ecdf;
  --dark: #555553;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header {
  border-bottom: 1px solid var(--line);
}

.nav,
.page,
.site-footer {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
}

.nav {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a,
.footer-links a {
  color: var(--copy);
  font-size: 13px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--ink); }

.page { padding: clamp(54px, 9vw, 96px) 0 80px; }

.hero {
  max-width: 720px;
  margin-bottom: clamp(54px, 8vw, 82px);
}

.eyebrow,
.step-number {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

h1 {
  margin: 18px 0 22px;
  font-size: clamp(46px, 9vw, 76px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-accent { color: #7f8ed8; }

.lede {
  max-width: 650px;
  margin: 0;
  color: var(--copy);
  font-size: clamp(18px, 2.6vw, 22px);
  line-height: 1.55;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step {
  padding: 30px 26px 34px;
  border-right: 1px solid var(--line);
}

.step:first-child { padding-left: 0; }
.step:last-child { border-right: 0; }

.step h2,
.section h2 {
  margin: 18px 0 10px;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.step p,
.section p,
.section li {
  color: var(--copy);
  font-size: 16px;
  line-height: 1.65;
}

.step p { margin: 0; }

.section {
  max-width: 720px;
  margin-top: 62px;
}

.section p { margin: 0 0 16px; }

.section ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.section li + li { margin-top: 9px; }

.note {
  border-left: 4px solid #a3abd0;
  margin-top: 34px;
  padding: 16px 20px;
  background: var(--blue);
}

.note p { margin: 0; }

.example-card {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(130px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(24px, 5vw, 42px);
  box-shadow: 0 18px 50px rgba(42, 39, 34, 0.07);
}

.example-card.film-card {
  display: block;
  margin-top: 34px;
  overflow: hidden;
  padding: 0;
}

.example-film-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 32%;
}

.example-body { padding: clamp(24px, 5vw, 42px); }

.example-cover {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #dfdcd6;
  box-shadow: 0 14px 28px rgba(41, 37, 32, 0.14);
}

.example-meta {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.example-card h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.example-card .example-summary {
  margin: 0;
  color: #292826;
  font-size: 15px;
  line-height: 1.6;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.fact-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 18px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.fact-chip.blue { background: #7f8ed8; color: #fff; }
.fact-chip.pink { background: #e8caec; color: #342737; }
.fact-chip.dark { background: var(--dark); color: #fff; }

.author-note {
  margin-top: 24px;
  border-top: 1px solid #e4e1dc;
  padding-top: 20px;
}

.author-note h4 {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.author-note p {
  margin: 0;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.55;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 72px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 28px 30px;
}

.cta h2 {
  margin: 0 0 7px;
  font-size: 23px;
}

.cta p {
  margin: 0;
  color: var(--copy);
  line-height: 1.5;
}

.button {
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 5px;
  padding: 12px 17px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus-visible { background: var(--paper); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 700px) {
  .nav { align-items: flex-start; padding: 18px 0; }
  .nav-links { justify-content: flex-end; gap: 12px; }
  .steps { grid-template-columns: 1fr; }
  .step,
  .step:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
  }
  .step:last-child { border-bottom: 0; }
  .example-card { grid-template-columns: 1fr; }
  .example-cover { width: min(62%, 230px); }
  .cta { align-items: flex-start; flex-direction: column; }
  .site-footer { flex-direction: column; }
}
