/* Wanderwalks — shared chrome for content pages (privacy, terms).
   Trail-blue stage with the brand header/footer and a white content card,
   so legal pages sit inside the same world as the landing. */

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--ww-primary);
  font-family: var(--font-sans);
  color: var(--text-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ─────────────────────────────────────────────── */
.ww-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 64px;
}
.ww-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.ww-logo img { width: 30px; height: 30px; }
.ww-logo span { font-weight: 800; font-size: 22px; color: #fff; letter-spacing: -0.01em; }

.ww-cta {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  background: var(--ww-accent); color: #fff;
  font-weight: 600; font-size: 16px; line-height: 1;
  padding: 14px 22px; border-radius: var(--radius-lg);
  transition: transform 120ms ease;
}
.ww-cta:active { transform: scale(0.95); }
.ww-cta svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Content card ───────────────────────────────────────── */
.ww-main { flex: 1; display: flex; justify-content: center; padding: 16px 64px 64px; }
.ww-card {
  width: 100%; max-width: 860px;
  background: var(--surface-card);
  border: var(--border-sm) solid var(--ww-neutral-light);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
}
.ww-eyebrow {
  font-weight: 800; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ww-primary-light); margin: 0;
}
.ww-card h1 {
  font-weight: 800; font-size: 40px; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ww-primary); margin: 10px 0 6px;
}
.ww-updated { font-weight: 600; font-size: 13px; color: var(--text-muted); margin: 0 0 28px; }
.ww-lede { font-weight: 500; font-size: 18px; line-height: 1.6; color: var(--text-body); margin: 0 0 8px; }
.ww-card h2 {
  font-weight: 800; font-size: 22px; line-height: 1.3; color: var(--ww-primary);
  margin: 34px 0 8px;
}
.ww-card p, .ww-card li {
  font-weight: 500; font-size: 16px; line-height: 1.65; color: var(--text-body);
}
.ww-card p { margin: 0 0 12px; }
.ww-card ul { margin: 0 0 12px; padding-left: 22px; }
.ww-card li { margin: 0 0 6px; }
.ww-card a { color: var(--text-link); font-weight: 700; text-decoration: none; }
.ww-card a:hover { text-decoration: underline; }
.ww-divider { height: 2px; background: var(--ww-neutral-lighter); border: 0; margin: 30px 0; }

/* ── Footer ─────────────────────────────────────────────── */
.ww-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 64px; border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.ww-footer .ww-logo span { font-size: 18px; color: rgba(255, 255, 255, 0.9); }
.ww-footer .ww-logo img { width: 22px; height: 22px; }
.ww-footnav { display: flex; align-items: center; gap: 16px; }
.ww-footnav a { color: rgba(255, 255, 255, 0.75); text-decoration: none; font-weight: 700; font-size: 14px; }
.ww-footnav a:hover { color: #fff; }
.ww-footnav .sep { color: rgba(255, 255, 255, 0.3); }
.ww-copy { color: rgba(255, 255, 255, 0.6); font-weight: 500; font-size: 14px; }

@media (max-width: 720px) {
  .ww-header, .ww-footer, .ww-main { padding-left: 22px; padding-right: 22px; }
  .ww-card { padding: 36px 26px; }
  .ww-card h1 { font-size: 32px; }
  .ww-footer { flex-direction: column; align-items: flex-start; }
}
