/* maketier.co.uk — outreach landing + privacy notice.
   Plain static CSS on purpose: two pages, no build step, no dependencies.
   Deployed on Vercel (the proven web lane). */

:root {
  --bg: #0e0f11;
  --bg-raised: #16181c;
  --ink: #ecebe7;
  --ink-dim: #a9a7a1;
  --ink-faint: #6f6d69;
  --accent: #c8a250;
  --rule: #26282d;
  --max: 42rem;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── masthead ─────────────────────────────────────────────── */

header.mast {
  padding: 4.5rem 0 0;
}

.brand {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 3rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.standfirst {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 0 2.5rem;
}

/* ── body ─────────────────────────────────────────────────── */

main { padding-bottom: 5rem; }

h2 {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  margin: 3.25rem 0 0.9rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}

h3 {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
}

p { margin: 0 0 1.1rem; }

a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(200,162,80,0.35); }
a:hover { border-bottom-color: var(--accent); }

ul, ol { margin: 0 0 1.2rem; padding-left: 1.35rem; }
li { margin-bottom: 0.55rem; }

strong { font-weight: 600; color: #fff; }

.lede { color: var(--ink-dim); }

/* honest-labelling callout — load-bearing, not decoration */
.plainly {
  background: var(--bg-raised);
  border-left: 2px solid var(--accent);
  padding: 1.15rem 1.35rem;
  margin: 2rem 0;
  border-radius: 0 3px 3px 0;
}
.plainly p:last-child { margin-bottom: 0; }
.plainly .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* call to action */
.cta {
  margin: 3rem 0 1rem;
  padding: 1.75rem;
  background: var(--bg-raised);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.cta p:last-child { margin-bottom: 0; }
.mailto {
  font-size: 1.1rem;
  font-weight: 600;
}

/* tables (privacy notice) */
.tbl-scroll { overflow-x: auto; margin: 0 0 1.4rem; }
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.94rem;
}
th, td {
  text-align: left;
  vertical-align: top;
  padding: 0.7rem 0.9rem 0.7rem 0;
  border-bottom: 1px solid var(--rule);
}
th {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
td { color: var(--ink-dim); }

/* ── footer ───────────────────────────────────────────────── */

footer {
  border-top: 1px solid var(--rule);
  padding: 2.25rem 0 4rem;
  font-size: 0.88rem;
  color: var(--ink-faint);
}
footer p { margin: 0 0 0.6rem; }
footer a { color: var(--ink-dim); border-bottom-color: rgba(169,167,161,0.3); }
footer a:hover { color: var(--accent); }

.backlink {
  display: inline-block;
  margin: 3.5rem 0 0;
  font-size: 0.9rem;
}

/* placeholders that must not ship filled-in-looking */
.todo {
  background: rgba(200, 80, 80, 0.16);
  color: #ffb4b4;
  padding: 0.05em 0.35em;
  border-radius: 2px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
}

@media (max-width: 30rem) {
  header.mast { padding-top: 3rem; }
  .brand { margin-bottom: 2rem; }
}
