/*
 * loudlot.social — static verification site (issue #1105)
 * Tokens are the ratified LoudLot brand kit values (docs/ui-mockup/tokens.css):
 * green ramp, scarce orange (lives only in the inline mark), green-tinted
 * neutrals, cream ground. Links on light use primary-700 per the kit's
 * interactive-on-light AA rule.
 *
 * The webfont is self-hosted (fonts/) so no request leaves the origin — the
 * pages are read by Meta app review and carry no consent layer, and the
 * privacy policy discloses no third party. Plus Jakarta Sans is OFL-1.1;
 * fonts/OFL.txt travels with it.
 */

/* One variable file covers 400/700/800 in 59KB — under half the 123KB the
   three static weights would cost, and one request instead of three. */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/PlusJakartaSans-Variable.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-500: #3D9E60;
  --primary-700: #1E5A36;
  --primary-800: #163D25;
  --primary-950: #0A1A0F;
  --neutral-100: #EEF2EF;
  --neutral-200: #DEE5E0;
  --neutral-300: #C4CEC7;
  --neutral-600: #4A5550;
  --neutral-900: #111611;
  --cream: #F5F5F3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--neutral-900);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

/* ---- chrome (header + footer share the dark ground) ---- */

.site-header {
  background: var(--primary-950);
  padding: 1rem 1.25rem;
}

/* aligns header and footer content to the same axis as the prose column */
.inner {
  max-width: 42rem;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  text-decoration: none;
}

.brand svg {
  width: 2rem;
  height: 2rem;
  flex: none;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
}

.site-footer {
  background: var(--primary-950);
  color: var(--cream);
  margin-top: 4rem;
  padding: 2rem 1.25rem 2.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.site-footer p {
  margin: 0 0 0.75rem;
}

/* keeps hyphenated tokens (phone, ZIP+4) from breaking across lines */
.nowrap {
  white-space: nowrap;
}

.site-footer a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- content column ---- */

main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1rem;
}

h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h2 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 2.25rem 0 0.75rem;
}

main a {
  color: var(--primary-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

main a:hover {
  color: var(--primary-800);
}

ul, ol {
  padding-left: 1.4rem;
}

li {
  margin: 0.5rem 0;
}

.effective-date {
  font-weight: 700;
}

/* ---- landing hero ---- */

.hero h1 {
  font-size: 2.6rem;
  margin: 1.5rem 0 0.5rem;
}

.hero .tagline {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--primary-700);
  margin: 0 0 1.5rem;
}

.hero .mark {
  width: 4rem;
  height: 4rem;
  display: block;
}

.contact-line {
  border-top: 1px solid var(--neutral-200);
  margin-top: 2rem;
  padding-top: 1.5rem;
  color: var(--neutral-600);
}

.contact-line a {
  color: var(--primary-700);
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.65rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero .tagline {
    font-size: 1.15rem;
  }
}
