:root {
  --bone: #f4f0e8;
  --paper: #fbf8f1;
  --ink: #1a1815;
  --muted: #5a554c;
  --soft: #8a8378;
  --line: rgba(26, 24, 21, 0.12);
  --line-strong: rgba(26, 24, 21, 0.2);
  --roest: #a24a1f;
  --white: #fffdf8;
  --serif: Georgia, "Times New Roman", serif;
  --mono: "SF Mono", "IBM Plex Mono", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.68;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration-color: rgba(162, 74, 31, 0.48);
  text-underline-offset: 0.24em;
}

a:hover {
  text-decoration-color: var(--roest);
}

:focus-visible {
  outline: 2px solid rgba(162, 74, 31, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  padding: 8px 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px min(6vw, 72px);
  color: var(--ink);
}

.brand {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-style: italic;
  text-decoration: none;
}

.header-cta {
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  text-decoration: none;
}

.hero {
  min-height: 76svh;
  display: grid;
  align-items: end;
  background-color: var(--paper);
  background-image: url("assets/spiegel-accent.png");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
  padding: 116px min(6vw, 72px) 74px;
}

.hero-inner {
  width: min(880px, 100%);
}

.eyebrow,
.section-number,
.step-number {
  margin: 0 0 20px;
  color: var(--roest);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-number {
  display: flex;
  align-items: baseline;
  gap: 14px;
  width: 100%;
  color: var(--roest);
}

.section-number::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--line);
  transform: translateY(-3px);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 32px;
  font-size: 3.35rem;
  font-style: italic;
}

.hero-question {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.25;
}

.hero-copy,
.hero-for {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.62;
}

.hero-for {
  margin-bottom: 36px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
}

.button:hover {
  background: var(--roest);
  border-color: var(--roest);
}

.section {
  border-bottom: 1px solid var(--line);
  padding: 92px min(6vw, 72px);
}

.section-grid {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
}

.section-heading {
  align-self: start;
  position: sticky;
  top: 24px;
}

h2 {
  margin-bottom: 0;
  font-size: 2.15rem;
  font-style: italic;
}

h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
}

.prose {
  max-width: 760px;
}

.prose p {
  margin-bottom: 24px;
  line-height: 1.72;
}

.lead-prose p:first-child,
.intro-section .prose p:first-child {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.35;
}

.clean-list {
  display: grid;
  gap: 9px;
  margin: 10px 0 28px;
  padding: 0;
  list-style: none;
}

.clean-list li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

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

.step {
  border-top: 1px solid var(--line-strong);
  padding-top: 24px;
}

.step-number {
  color: var(--soft);
  margin-bottom: 16px;
}

.step p {
  color: var(--muted);
  line-height: 1.68;
}

.perspective-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 28px;
  padding: 0;
  list-style: none;
}

.perspective-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.52);
  color: var(--muted);
  padding: 6px 12px;
  font-size: 0.92rem;
}

.quiet-rules {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 30px 0;
  padding: 24px 0 6px;
}

.quiet-rules p {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.26rem;
  line-height: 1.3;
}

blockquote {
  margin: 42px 0 0;
  border-left: 2px solid var(--roest);
  padding-left: 24px;
}

blockquote p {
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.36;
}

.name-line,
.signature-question {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.62rem;
  line-height: 1.25;
}

.signature-question {
  margin-bottom: 0;
  color: var(--roest);
}

.practical {
  max-width: 860px;
}

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

.offer {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(251, 248, 241, 0.54);
  padding: 24px;
}

.offer ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.note {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
}

.contact-section {
  background: var(--ink);
  color: var(--white);
  padding: 92px min(6vw, 72px);
}

.contact-inner {
  max-width: 760px;
  margin: 0 auto;
}

.contact-section .section-number {
  color: #d1a48f;
}

.contact-section .section-number::after {
  border-top-color: rgba(255, 253, 248, 0.16);
}

.contact-section h2 {
  margin-bottom: 24px;
}

.contact-section p {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 1.12rem;
}

.contact-section .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.contact-section .button:hover {
  border-color: #d1a48f;
  background: #d1a48f;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  background: var(--ink);
  color: rgba(255, 253, 248, 0.72);
  padding: 28px min(6vw, 72px);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (min-width: 860px) {
  h1 {
    font-size: 5.35rem;
  }

  .hero-question {
    font-size: 1.82rem;
  }
}

@media (max-width: 859px) {
  .site-header {
    padding: 22px 22px;
  }

  .hero {
    min-height: 72svh;
    padding: 104px 22px 54px;
    background-position: 58% center;
  }

  h1 {
    font-size: 3rem;
  }

  .section {
    padding: 64px 22px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading {
    position: static;
  }

  .steps,
  .offers {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 68px 22px;
  }

  .site-footer {
    flex-direction: column;
    padding: 26px 22px;
  }
}

@media (max-width: 460px) {
  body {
    font-size: 16px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  .hero-question,
  .lead-prose p:first-child,
  .intro-section .prose p:first-child,
  .name-line,
  .signature-question {
    font-size: 1.28rem;
  }

  blockquote p {
    font-size: 1.24rem;
  }
}
