/* Shopwrecked marketing + legal site. Brand tokens from the v1 guidelines (§8). */

:root {
  --bg: #fafaf7;
  --surface: #ffffff;
  --border: #e8e6e0;
  --ink: #1a1a1c;
  --secondary: #5c5a55;
  --muted: #94918a;
  --yellow: #f5c518;
  --serif: ui-serif, Georgia, 'Times New Roman', serif;
  --sans: -apple-system, 'SF Pro Text', Inter, system-ui, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── Landing hero ─────────────────────────────────────────────────────────── */

.hero {
  background: var(--yellow);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
}

.hero .wordmark {
  color: var(--ink);
  font-size: clamp(32px, 7vw, 56px);
}

.tagline {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 20px;
}

.lede {
  max-width: 540px;
  margin: 48px auto 0;
  padding: 0 24px;
  text-align: center;
  font-size: 18px;
  color: var(--secondary);
}

.note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Document pages (privacy / terms) ─────────────────────────────────────── */

.site-header {
  border-bottom: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}

.site-header a {
  color: var(--ink);
  text-decoration: none;
  font-size: 18px;
}

.doc {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.doc h1 {
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.04em;
  font-size: 30px;
  margin-bottom: 8px;
}

.doc .effective {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px;
}

.doc h2 {
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  margin: 36px 0 12px;
}

.doc p,
.doc li {
  color: var(--secondary);
  margin-bottom: 12px;
}

.doc ul {
  padding-left: 22px;
}

.doc strong {
  color: var(--ink);
  font-weight: 600;
}

.doc a {
  color: var(--ink);
}

.placeholder {
  background: var(--yellow);
  color: var(--ink);
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 600;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.site-footer a {
  color: var(--secondary);
  text-decoration: none;
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}
