:root {
  --background: #f7f4ee;
  --surface: #ffffff;
  --text: #1f1f1c;
  --muted: #6f6a61;
  --line: #d8d1c5;
  --accent: #7a2f3a;
  --accent-dark: #54202a;
  --max-width: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
  font-size: 18px;
}

a {
  color: inherit;
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  width: 100%;
  max-width: 880px;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(4rem, 12vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.subtitle {
  max-width: 700px;
  margin: 28px auto 0;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--muted);
}

.opening {
  max-width: 760px;
  margin: 48px auto 0;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.3;
}

.introduction {
  max-width: 680px;
  margin: 28px auto 0;
  color: var(--muted);
}

.buttons {
  margin-top: 38px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.primary-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.secondary-button {
  border: 1px solid var(--line);
  background: transparent;
}

.secondary-button:hover {
  background: var(--surface);
  transform: translateY(-2px);
}

main {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0 0 28px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
}

p {
  margin: 0 0 22px;
}

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

.axioms article {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
}

.axioms span {
  display: block;
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}

.axioms p {
  margin: 0;
  font-size: 1.35rem;
}

.statement {
  text-align: center;
  padding: 110px 0;
}

.statement p {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.2;
}

.statement p + p {
  margin-top: 14px;
  color: var(--accent);
}

blockquote {
  margin: 0;
  padding-left: 28px;
  border-left: 4px solid var(--accent);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.4;
}

.read-section {
  text-align: center;
}

footer {
  padding: 56px 24px;
  text-align: center;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

footer p {
  margin: 4px 0;
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    padding: 72px 20px;
  }

  .opening {
    margin-top: 38px;
  }

  section {
    padding: 68px 0;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    text-align: center;
  }
}