/* ─── Base — Reset & Typography ─────────────────────── */
:root {
  --sage: #8da695;
  --sage-deep: #6f8a7a;
  --sage-soft: #c3d0c7;
  --sage-whisper: #e8eee9;
  --cream: #f7f3ec;
  --cream-warm: #efe8dc;
  --ink: #2f342f;
  --ink-soft: #5a5f58;
  --blush: #e9d6cb;
  --paper: #fbf8f2;
  --radius-sm: 2px;
  --radius-pill: 999px;
  --transition: .3s ease;
  --transition-slow: .6s cubic-bezier(.2,.7,.2,1);
  --transition-bounce: .45s cubic-bezier(.2,.7,.2,1);
  --max-width: 1440px;
  --max-width-narrow: 1280px;
  --max-width-article: 900px;
  --padding-x: 48px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
input, textarea, select { font-family: inherit; }

/* ─── Typography Classes ───────────────────────────── */
.serif { font-family: 'Cormorant Garamond', serif; }
.hand { font-family: 'Caveat', cursive; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}

.section-title em,
.section-title i {
  font-style: italic;
  color: var(--sage-deep);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 8vw, 128px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ─── Article Body Typography ──────────────────────── */
.article-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 400;
}
.article-body p { margin-bottom: 28px; }
.article-body h2 {
  font-size: 36px;
  font-weight: 400;
  margin: 48px 0 20px;
  letter-spacing: -0.01em;
}
.article-body h2 em { color: var(--sage-deep); }
.article-body blockquote {
  border-left: 2px solid var(--sage);
  padding: 8px 0 8px 28px;
  margin: 40px 0;
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--sage-deep);
}
.article-body ul { margin: 0 0 28px 28px; list-style: disc; }
.article-body li { margin-bottom: 10px; }
.article-body a { border-bottom: 1px solid var(--sage); }
.article-body strong { font-weight: 500; }
.article-body .dropcap::first-letter {
  float: left;
  font-size: 88px;
  line-height: 0.8;
  padding: 6px 10px 0 0;
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}

/* ─── Form Fields ──────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.field input,
.field textarea,
.field select {
  border: none;
  border-bottom: 1px solid rgba(141,166,149,0.4);
  background: transparent;
  padding: 12px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--ink);
  outline: none;
  font-weight: 400;
  transition: border-color var(--transition);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--sage-deep);
}
.field textarea { min-height: 120px; resize: vertical; }

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --padding-x: 32px; }
}
@media (max-width: 768px) {
  :root { --padding-x: 20px; }
  .hero-title { line-height: 0.95; }
}
