/* shared.css — variables, base reset, typography, buttons, container */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: #1a1f24;
  background: #f6f4f1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:root {
  --ink:#111315;
  --ink-2:#1a1f24;
  --ink-3:#2f3942;
  --slate:#5f6a73;
  --line:rgba(17,19,21,.10);
  --line-dark:rgba(255,255,255,.12);
  --paper:#ffffff;
  --cloud:#f6f4f1;
  --sand:#eee2d6;
  --sand-2:#e3cfbf;
  --orange:#e86f2d;
  --orange-deep:#c65a2e;
  --orange-soft:#fff1e8;
  --teal:#1f6b6a;
  --teal-soft:#eef7f4;
  --purple:#7c3aed;
  --purple-soft:#f5f0ff;
  --sage:#d7e4de;
  --radius:22px;
  --radius-sm:14px;
  --shadow:0 24px 70px rgba(16,22,27,.10);
  --shadow-soft:0 14px 30px rgba(16,22,27,.08);
  --max:1240px;
  --nav-h:78px;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .42rem .8rem; border-radius: 999px;
  background: var(--orange-soft); color: var(--orange-deep);
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.display { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; line-height: 1.02; letter-spacing: -.03em; margin: 0; }
.lede { font-size: 1.1rem; line-height: 1.72; color: var(--slate); margin: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 48px; padding: .95rem 1.3rem; border-radius: 999px;
  font-weight: 700; text-decoration: none; border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  cursor: pointer; font-family: "DM Sans", system-ui, sans-serif; font-size: 1rem;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 12px 24px rgba(232,111,45,.22); }
.btn-primary:hover { background: var(--orange-deep); }
.btn-secondary { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-secondary:hover { background: rgba(255,255,255,.12); }
.btn-light { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-light:hover { background: #fdf9f5; }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: rgba(17,19,21,.14); }
.btn-outline-dark:hover { background: #fff; }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 12px 24px rgba(31,107,106,.22); }
.btn-teal:hover { background: #175958; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 700px) {
  html, body { overflow-x: hidden; }
  .section { padding: 3rem 0; }
}
@media (max-width: 520px) {
  html, body { overflow-x: hidden; }
  .container { width: calc(100% - 2rem); }
  .eyebrow { font-size: .72rem; }
}
