:root {
  --bg: #faf7f1;
  --fg: #2a2620;
  --muted: #6c655b;
  --muted-bg: #f1ece2;
  --secondary: #ece5d4;
  --border: #e3ddd0;
  --primary: #2a6fa3;
  --accent: #c47a4a;
  --accent-fg: #faf7f1;
  --dark: #2a2620;
  --light: #faf7f1;

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --radius: 4px;
  --max-w: 1280px;
  --space-section: clamp(5rem, 10vw, 10rem);

  --shadow-lg: 0 30px 80px rgba(0,0,0,0.25);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { 
  box-sizing: border-box; margin: 0; padding: 0; 
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.55;
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
em, i { font-style: italic; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-title {
  margin-top: 1.25rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.015em;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}
.section-head { max-width: 720px; margin-bottom: 4rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
}
.eyebrow--accent { color: var(--accent); }
