@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&display=swap');

:root {
  --cream: #f3f0e7;
  --sage: #95a791;
  --coffee: #763c2a;

  /* Legacy tokens kept for consistency across the layout */
  --color-sage: var(--sage);
  --color-coffee: var(--coffee);
  --color-cream: var(--cream);
  --color-text: #2c2b28;
  --color-text-muted: #5a594f;

  --space-xs: 0.5rem;
  --space-s: 0.75rem;
  --space-m: 1.25rem;
  --space-l: 2rem;
  --space-xl: 3rem;

  --radius-s: 8px;
  --radius-m: 14px;

  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--color-coffee);
}

a:focus-visible {
  outline: 2px solid var(--color-sage);
  outline-offset: 2px;
}

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

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-sage);
  outline-offset: 2px;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: var(--space-xl) 0;
}

.section__header {
  margin-bottom: var(--space-l);
  text-align: center;
}

.section__title {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-sage);
  margin-bottom: var(--space-s);
}

.section__subtitle {
  color: var(--color-text-muted);
  max-width: 720px;
  margin: 0 auto;
}

.section__lead {
  color: var(--color-text);
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

::selection {
  background: var(--color-sage);
  color: #fff;
}
