:root {
  --color-ivory: #f5f1e8;
  --color-cream: #fdfbf7;
  --color-sage-050: #eef3ea;
  --color-sage-100: #e2eadc;
  --color-sage-300: #9eaf95;
  --color-sage-500: #6f8466;
  --color-sage-700: #3f5440;
  --color-text: #2f362f;
  --color-muted: #6a7568;
  --color-border: #dfe5d9;
  --color-accent: #7d8f70;
  --color-accent-strong: #637759;
  --color-paper: rgba(255, 255, 255, 0.78);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 34px;
  --radius-arch: 999px 999px 28px 28px;
  --shadow-sm: 0 10px 22px rgba(33, 40, 31, 0.07);
  --shadow-md: 0 24px 46px rgba(33, 40, 31, 0.1);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
  --font-display: "Cormorant Garamond", "EB Garamond", "Palatino Linotype", serif;
  --font-body: "Manrope", "Avenir Next", "Trebuchet MS", sans-serif;
  --font-accent: "Allura", "Snell Roundhand", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 5%, rgba(217, 229, 209, 0.5), transparent 42%),
    radial-gradient(circle at 95% 0%, rgba(239, 231, 216, 0.75), transparent 48%),
    linear-gradient(180deg, var(--color-cream), var(--color-ivory));
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.65;
  font-size: 16px;
}

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

a {
  color: var(--color-text);
  text-decoration-color: rgba(109, 127, 96, 0.45);
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  color: #1f2a20;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 var(--space-3);
  color: #223025;
}

h1 {
  font-size: clamp(2.35rem, 8.8vw, 5rem);
}

h2 {
  font-size: clamp(1.95rem, 6vw, 3.4rem);
}

h3 {
  font-size: clamp(1.25rem, 4vw, 1.95rem);
}

p,
ul,
ol {
  margin: 0 0 var(--space-3);
}

ul,
ol {
  padding-left: 1.25rem;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(118, 140, 104, 0.5);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sage-500);
  margin-bottom: var(--space-2);
  font-weight: 700;
}

.lead {
  font-size: clamp(1.05rem, 3.8vw, 1.24rem);
  color: var(--color-muted);
}

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