/* Built To Sell — shared styles */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #131110;
  --bg-raised: #1b1815;
  --border: #2e2a25;
  --border-strong: #423c33;
  --text: #f3ede2;
  --text-muted: #a89e8c;
  --text-dim: #746c5e;
  --accent: #d9a441;
  --accent-dim: #8c6b2d;
  --accent-bg: #2a2216;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--accent); }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 780px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
nav .logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--text);
}
nav .logo-mark svg { flex-shrink: 0; }

section { padding: 80px 0; border-bottom: 1px solid var(--border); }
section:last-of-type { border-bottom: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #1a1509;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { background: #e8b654; text-decoration: none; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-raised); border-color: var(--accent-dim); }

footer {
  padding: 48px 24px 32px;
  border-top: 1px solid var(--border);
}
footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
footer .flinks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
footer .flinks a { color: var(--text-muted); font-size: 14px; }
footer .flinks a:hover { color: var(--text); }
footer .fcopy { color: var(--text-dim); font-size: 13px; }

/* Simple page (terms/privacy/refunds/contact) */
.page-body h2 { font-size: 22px; margin: 40px 0 14px; }
.page-body h2:first-child { margin-top: 0; }
.page-body p, .page-body li { color: var(--text-muted); font-size: 15px; margin-bottom: 14px; }
.page-body ul { padding-left: 20px; }
.page-body .updated { color: var(--text-dim); font-size: 13px; margin-bottom: 40px; }

@media (max-width: 640px) {
  section { padding: 56px 0; }
}
