:root {
  color-scheme: light;
  --color-ink: #25322f;
  --color-muted: #61706c;
  --color-brand: #123f3a;
  --color-brand-strong: #0b302c;
  --color-accent: #d97a4a;
  --color-accent-strong: #b75e34;
  --color-sand: #f4eadb;
  --color-shell: #fbfaf7;
  --color-white: #fff;
  --color-line: #ddd9d0;
  --color-success: #2e7056;
  --color-error: #a13b36;
  --font-display: Georgia, "Times New Roman", serif;
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --space-1: .375rem;
  --space-2: .75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 7rem;
  --radius-sm: .6rem;
  --radius-md: 1rem;
  --radius-lg: 1.6rem;
  --radius-pill: 999px;
  --shadow-sm: 0 8px 24px rgba(18, 63, 58, .08);
  --shadow-lg: 0 24px 70px rgba(18, 63, 58, .14);
  --container: 75rem;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body { margin: 0; background: var(--color-shell); color: var(--color-ink); font-family: var(--font-ui); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button,
input,
select,
textarea { font: inherit; }
h1,
h2,
h3 { margin: 0; color: var(--color-brand); font-family: var(--font-display); font-weight: 600; letter-spacing: -.035em; line-height: 1.08; }
h1 { font-size: clamp(2.8rem, 7vw, 5.7rem); hyphens: none; word-break: normal; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 4px; }
.container { width: min(var(--container), calc(100% - 2.5rem)); margin-inline: auto; }
.eyebrow { margin-bottom: var(--space-2); color: var(--color-accent-strong); font-size: .76rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.lead { max-width: 45rem; color: var(--color-muted); font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.65; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .72rem 1.2rem; border: 1px solid transparent; border-radius: var(--radius-pill); font-weight: 750; text-decoration: none; cursor: pointer; transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--color-brand); color: var(--color-white); }
.button--primary:hover { background: var(--color-brand-strong); }
.button--secondary { border-color: var(--color-brand); background: transparent; color: var(--color-brand); }
.button--secondary:hover { background: rgba(18, 63, 58, .07); }
.button--ghost { color: var(--color-brand); }
.button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.badge { display: inline-flex; padding: .28rem .65rem; border-radius: var(--radius-pill); background: var(--color-accent); color: #30170c; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.card { display: block; padding: var(--space-5); border: 1px solid var(--color-line); border-radius: var(--radius-lg); background: var(--color-white); box-shadow: var(--shadow-sm); text-decoration: none; }
.card h3 { margin: .45rem 0 .8rem; }
.card p { color: var(--color-muted); }
.card-kicker { color: var(--color-accent-strong); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.text-link { display: inline-block; margin-top: 1.25rem; color: var(--color-brand); font-weight: 800; text-decoration: none; }
.spinner { width: 1.25rem; height: 1.25rem; display: inline-block; flex: 0 0 auto; border: 2px solid rgba(18, 63, 58, .2); border-top-color: var(--color-accent); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
