/* ---------- Design tokens & reset ---------- */
:root {
  --bg: #F5F4EF;
  --surface: #FFFFFF;
  --ink: #141414;
  --ink-soft: #55554F;
  --muted: #C8C7C0;
  --accent: #E15A26;
  --line: #E7E6DF;
  --radius: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

section { padding: 96px 0; }

/* ---------- Shared primitives ---------- */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(20, 20, 20, .05);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  transition: transform .15s ease, opacity .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-light { background: #EFEEE8; color: var(--ink); }
.btn svg { width: 18px; height: 18px; flex: none; }

.pill {
  padding: 9px 20px;
  border-radius: 999px;
  background: #EFEEE8;
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }

.tag {
  padding: 6px 16px;
  border-radius: 999px;
  background: #F1F0EA;
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.icon-circle svg { width: 22px; height: 22px; }

.sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.sec-eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--accent); }

h2.sec-title {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.03em;
  margin-bottom: 48px;
}
h2.sec-title .fade { display: block; color: var(--muted); }
