:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-muted: #efebe2;
  --text: #1c1b18;
  --text-soft: #575248;
  --border: #d7d0c4;
  --accent: #2f6f5e;
  --accent-hover: #255a4d;
  --shadow: 0 10px 24px rgba(28, 27, 24, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

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

a {
  color: inherit;
}

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

.container {
  width: min(100% - 2rem, 1000px);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

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

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-nav a {
  text-decoration: none;
  padding: 0.35rem 0;
  color: var(--text-soft);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.hero {
  padding: 4rem 0 3rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.hero-compact {
  padding-bottom: 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

h1,
h2 {
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.2rem, 7vw, 4rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  max-width: 42rem;
  font-size: 1.1rem;
  color: var(--text-soft);
}

.section {
  padding: 2.5rem 0;
}

.section-muted {
  background: var(--surface-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.callout .container,
.section-muted .container {
  background: transparent;
}

.feature-list {
  margin: 0;
  padding-left: 1.25rem;
}

.feature-list li + li {
  margin-top: 0.5rem;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.button {
  min-height: 2.8rem;
  padding: 0.7rem 1.1rem;
  border-radius: 0.35rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #ffffff;
}

.button-disabled {
  background: #8c877e;
  border-color: #8c877e;
  cursor: default;
}

.button-disabled:hover,
.button-disabled:focus-visible {
  background: #8c877e;
  border-color: #8c877e;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-hover);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.site-footer p {
  margin: 0;
}

.disclosure {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

@media (min-width: 700px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .hero {
    padding: 5.5rem 0 4rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}
