:root {
  --bg: #f7f3ec;
  --surface: #ffffff;
  --text: #1f1f1c;
  --muted: #6b665d;
  --border: #ddd4c6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(247, 243, 236, 0.95);
  position: sticky;
  top: 0;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
}

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

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  padding: 110px 0 90px;
}

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

.hero h1 {
  margin: 0 0 22px;
  max-width: 820px;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
  font-weight: 600;
}

.hero-text {
  max-width: 680px;
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

.button.primary {
  background: var(--text);
  color: #fff;
}

.button.secondary {
  color: var(--text);
  background: transparent;
}

.section {
  padding: 72px 0;
}

.alt {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2 {
  margin: 0 0 20px;
  font-size: 2rem;
  line-height: 1.15;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

p {
  margin: 0 0 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  max-width: 700px;
}

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

a {
  color: inherit;
}

.site-footer {
  padding: 28px 0 46px;
}

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

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 0;
  }

  .hero {
    padding: 80px 0 64px;
  }
}