/* ============ Tokens ============ */
:root {
  --bg: #F2EFE8;
  --surface: #FFFFFF;
  --accent: #7B886F;
  --accent-ink: #FFFFFF;
  --accent-soft: #EAE9E1;
  --ink: #111111;
  --ink-soft: rgba(0, 0, 0, 0.42);
  --ink-mid: rgba(0, 0, 0, 0.70);
  --border: #E4E0D8;
  --border-strong: #CFCABF;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 6px 24px rgba(17, 17, 17, 0.06);

  --max-w: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(56px, 9vw, 120px);

  --font-display: "Bricolage Grotesque", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-accent: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Bricolage Grotesque", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, p { margin: 0; }

/* ============ Typography ============ */
.h-display, h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-mid);
  max-width: 60ch;
}

.muted { color: var(--ink-soft); }

/* ============ Layout utilities ============ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(36px, 6vw, 72px); }

.stack-sm > * + * { margin-top: 8px; }
.stack > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 28px; }

.center-text { text-align: center; }
.center-block { margin-inline: auto; }

.section-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  display: grid;
  gap: 14px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.divider {
  height: 1px;
  background: var(--border);
  border: 0;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
