/* Shared styling for the standalone pages (about, privacy, terms).
   Same palette and type as the homepage, without the video, scroll rig or
   animation — these are documents, and they should read like documents. */

:root {
  --bg: oklch(0.96 0.016 80);
  --ink: oklch(0.26 0.016 60);
  --muted: oklch(0.52 0.02 70);
  --line: oklch(0.87 0.018 80);
  --accent: oklch(0.60 0.155 50);
  --band: oklch(0.23 0.014 70);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', Verdana, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; line-height: 1.2; }
a { color: var(--accent); }

.wrap { max-width: 46rem; margin: 0 auto; padding: 0 1.25rem; }

/* ---------------- header ---------------- */
.top {
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 10;
  background: oklch(0.96 0.016 80 / .93);
  backdrop-filter: blur(12px);
}
.top .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: .9rem; padding-bottom: .9rem;
}
.brand {
  font-family: 'Fraunces', Georgia, serif; font-size: 1.25rem;
  color: var(--ink); text-decoration: none; line-height: 1.1;
}
.brand small {
  display: block; font-family: 'Inter', sans-serif; font-size: .6rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--accent);
  margin-top: .16rem;
}
.top .order {
  background: var(--accent); color: var(--bg); text-decoration: none;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .7rem 1.35rem; border-radius: 999px; white-space: nowrap;
}

/* ---------------- document ---------------- */
main { padding: 3.5rem 0 4.5rem; }
.kicker {
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .9rem;
}
main h1 { font-size: clamp(2.1rem, 6vw, 3.2rem); margin-bottom: .9rem; }
.standfirst {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  line-height: 1.45; color: var(--muted);
  margin-bottom: 2.6rem; padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
main h2 {
  font-size: 1.3rem; margin: 2.6rem 0 .7rem;
}
main h2:first-of-type { margin-top: 0; }
main p { margin-bottom: 1.1rem; }
main ul { margin: 0 0 1.1rem 1.1rem; }
main li { margin-bottom: .5rem; padding-left: .3rem; }
main strong { font-weight: 600; }

.contact-card {
  margin-top: 3rem; padding: 1.6rem;
  background: oklch(0.99 0.008 85);
  border: 1px solid var(--line); border-radius: 12px;
}
.contact-card h2 { margin-top: 0; font-size: 1.15rem; }
.contact-card p { margin-bottom: .4rem; font-size: .95rem; }
.contact-card p:last-child { margin-bottom: 0; }

.updated { margin-top: 2.5rem; font-size: .82rem; color: var(--muted); }

/* ---------------- footer ---------------- */
footer {
  background: var(--band); color: oklch(0.68 0.035 75);
  text-align: center; padding: 3rem 1.25rem;
  font-size: .8rem; line-height: 1.8;
}
footer a { color: oklch(0.78 0.11 55); }
footer .mark {
  font-family: 'Fraunces', Georgia, serif; font-size: 1.1rem;
  color: var(--bg); display: block; margin-bottom: .7rem;
}
footer nav {
  margin: 1rem 0; display: flex; gap: 1.4rem;
  justify-content: center; flex-wrap: wrap;
}
footer .fine { opacity: .68; margin-top: 1rem; }

@media (max-width: 520px) {
  .top .order { padding: .6rem 1rem; letter-spacing: .1em; }
  .brand { font-size: 1.1rem; }
}
