@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

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

:root {
  --coral: #D85A30;
  --coral-light: #FAECE7;
  --text: #1a1a18;
  --text-secondary: #5a5a56;
  --text-tertiary: #9a9a94;
  --border: rgba(26,26,24,0.12);
  --border-strong: rgba(26,26,24,0.22);
  --bg: #fafaf8;
  --bg-secondary: #f2f1ed;
  --serif: 'Libre Baskerville', serif;
  --sans: 'DM Sans', sans-serif;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 720px; margin: 0 auto; padding: 0 2rem; }

nav { display: flex; justify-content: space-between; align-items: center; padding: 1.75rem 0 2rem; border-bottom: 0.5px solid var(--border); margin-bottom: 4rem; }
.nav-logo { font-family: var(--serif); font-size: 15px; font-weight: 700; text-decoration: none; color: var(--text); letter-spacing: -0.01em; }
.nav-logo span { font-style: italic; font-weight: 400; color: var(--text-secondary); }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a { font-size: 13px; color: var(--text-secondary); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

hr.divider { border: none; border-top: 0.5px solid var(--border); margin: 3.5rem 0; }

.eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-tertiary); margin-bottom: 1rem; }
.label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-tertiary); margin-bottom: 0.35rem; }

h1 { font-family: var(--serif); font-size: 38px; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h1 em { font-style: italic; font-weight: 400; color: var(--text-secondary); }
h2 { font-family: var(--serif); font-size: 24px; line-height: 1.3; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 1rem; }
h3 { font-size: 15px; font-weight: 500; margin-bottom: 0.4rem; }

p.lead { font-size: 16px; line-height: 1.75; color: var(--text-secondary); max-width: 540px; }
p.body { font-size: 15px; line-height: 1.7; color: var(--text-secondary); }

.cta { display: inline-block; font-size: 13px; font-weight: 500; color: var(--text); border-bottom: 1.5px solid var(--text); padding-bottom: 2px; text-decoration: none; transition: color 0.15s, border-color 0.15s; }
.cta:hover { color: var(--coral); border-color: var(--coral); }
.cta-coral { color: var(--coral); border-bottom-color: var(--coral); }

.badge { display: inline-block; font-size: 11px; font-weight: 500; background: var(--coral); color: #fff; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }

footer { padding: 2.5rem 0; border-top: 0.5px solid var(--border); margin-top: 5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-left { font-size: 12px; color: var(--text-tertiary); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 12px; color: var(--text-tertiary); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

blockquote { border-left: 2px solid var(--coral); padding-left: 1.25rem; margin: 2rem 0; }
blockquote p { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.6; color: var(--text); margin-bottom: 0.5rem; }
blockquote cite { font-size: 12px; color: var(--text-tertiary); font-style: normal; }
