/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY UTILITIES ── */
.eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 400;
  margin-bottom: 20px;
  display: block;
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.body-text {
  font-size: var(--text-md);
  line-height: 1.8;
  color: var(--muted);
  max-width: 520px;
}

/* ── LAYOUT UTILITIES ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.section-pad {
  padding: var(--section-pad);
}

/* ── BUTTON STYLES ── */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--duration-sm), transform var(--duration-sm);
}

.btn-primary {
  background: var(--terracotta);
  color: white;
}

.btn-primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: rgba(242,237,226,0.7);
  border: 1px solid rgba(242,237,226,0.2);
}

.btn-ghost:hover {
  border-color: rgba(242,237,226,0.5);
  color: var(--paper);
}

.btn-forest {
  background: var(--forest);
  color: var(--paper);
}

.btn-forest:hover {
  background: var(--forest-light);
}

/* ── ANIMATION UTILITIES ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-lg) var(--ease-out),
              transform var(--duration-lg) var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 64px 24px; }
}
