@font-face { font-family: "Inter"; src: url("/fonts/inter-latin-wght-normal.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }

/* Placeholder styling only. The Roadtrip Labs identity (mark, palette, type) comes later with Max. */
:root {
  --ink: #141414;
  --paper: #FAFAF7;
  --soft: #5E5E5A;
  --rule: #E4E3DE;
  --font: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; }
html { background: var(--paper); color: var(--ink); }
body { font-family: var(--font); font-size: 17px; line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration-color: var(--rule); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--ink); }

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 32px; }

header { padding: 32px 0; border-bottom: 1px solid var(--rule); }
.wordmark { font-weight: 620; font-size: 18px; letter-spacing: -0.02em; text-decoration: none; }

main { flex: 1; display: flex; align-items: center; }
.hero { padding-top: 88px; padding-bottom: 120px; }
.hero h1 { font-weight: 600; font-size: clamp(42px, 6.6vw, 84px); line-height: 1.02; letter-spacing: -0.035em; max-width: 14ch; }
.hero p { margin-top: 28px; max-width: 34em; font-size: 19px; color: var(--soft); }
.cta { display: inline-block; margin-top: 40px; padding: 13px 20px; border-radius: 999px; background: var(--ink); color: var(--paper); font-size: 16px; font-weight: 550; text-decoration: none; }
.cta:hover { background: #333; }

footer { border-top: 1px solid var(--rule); padding: 24px 0 32px; font-size: 14px; color: var(--soft); }
footer .wrap { display: flex; gap: 24px; flex-wrap: wrap; justify-content: space-between; }
footer nav { display: flex; gap: 20px; }

.legal { padding-top: 56px; padding-bottom: 96px; max-width: calc(42em + 64px); margin-left: auto; margin-right: auto; }
.legal h1 { font-weight: 600; font-size: 44px; letter-spacing: -0.03em; margin-bottom: 28px; }
.legal h2 { font-weight: 600; font-size: 18px; margin: 28px 0 6px; }
.legal p, .legal li { color: var(--soft); }
.legal p + p { margin-top: 12px; }
