:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --text: #1f1f1c;
  --muted: #6e6a63;
  --line: #d9d1c7;
  --accent: #2f3a32;
  --accent-hover: #243029;
  --max-width: 760px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

main {
  display: block;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.hero,
.section,
.ctaBlock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  padding: 40px 28px;
  margin-bottom: 24px;
}

.section {
  padding: 28px;
  margin-bottom: 20px;
}

.ctaBlock {
  padding: 36px 28px;
  text-align: left;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2 {
  margin-top: 0;
  color: var(--text);
  font-weight: 500;
  line-height: 1.25;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  margin-bottom: 16px;
  font-size: 1.45rem;
}

p {
  margin: 0 0 16px;
}

p:last-child {
  margin-bottom: 0;
}

.card {
  padding: 0;
}

.card p {
  padding: 0 0 14px;
  margin: 0 0 14px;
  border-bottom: 1px solid var(--line);
}

.card p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.button {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.98rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

a {
  color: inherit;
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, var(--max-width));
    padding: 24px 0 48px;
  }

  .hero,
  .section,
  .ctaBlock {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .section,
  .ctaBlock {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  h2 {
    font-size: 1.28rem;
  }
}
