@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('/assets/fonts/bricolage-grotesque.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans.woff2') format('woff2');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
  :root {
    --orange: #FF5A36;
    --ink: #111111;
    --white: #FFFFFF;
    --paper: #FFF8F0;
    --pink: #FF7EB6;
    --mint: #7FE3C0;
    --sun: #FFD84D;
    --muted: #55554F;
    --display: 'Bricolage Grotesque', 'Arial Black', Impact, sans-serif;
    --body: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --wrap: 1180px;
    --gutter: clamp(20px, 5vw, 64px);
  }
  *, *::before, *::after { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; }
  body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 18px; line-height: 1.6; }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  a:focus-visible, button:focus-visible { outline: 3px solid var(--ink); outline-offset: 4px; }
  .wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
  .skip { position: absolute; left: -9999px; }
  .skip:focus { left: 16px; top: 16px; background: var(--white); padding: 8px 12px; z-index: 10; }

  /* Logo stamp */
  .stamp { display: inline-flex; flex-direction: column; background: var(--white); border: 4px solid var(--ink); border-radius: 10px; box-shadow: 5px 5px 0 var(--ink); padding: 7px 12px; transform: rotate(-5deg); text-decoration: none; }
  .stamp__town { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 13px; line-height: 1; letter-spacing: .02em; }
  .stamp__name { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 36px; line-height: .85; letter-spacing: -.03em; color: var(--orange); -webkit-text-stroke: 2px var(--ink); paint-order: stroke fill; }
  .stamp--lg { border-width: 5px; border-radius: 16px; box-shadow: 8px 8px 0 var(--ink); padding: 12px 20px; }
  .stamp--lg .stamp__town { font-size: 20px; }
  .stamp--lg .stamp__name { font-size: 60px; -webkit-text-stroke: 3px var(--ink); }

  /* Buttons */
  .btn { display: inline-block; font-family: var(--body); font-weight: 700; font-size: 17px; text-decoration: none; border: 4px solid var(--ink); border-radius: 999px; padding: 13px 26px; box-shadow: 6px 6px 0 var(--ink); transition: transform .12s ease, box-shadow .12s ease; }
  .btn:hover { transform: translate(2px, 2px); box-shadow: 4px 4px 0 var(--ink); }
  .btn:active { transform: translate(6px, 6px); box-shadow: 0 0 0 var(--ink); }
  .btn--ink { background: var(--ink); color: var(--white); box-shadow: 6px 6px 0 var(--white); }
  .btn--ink:hover { box-shadow: 4px 4px 0 var(--white); }
  .btn--orange { background: var(--orange); color: var(--ink); }

  /* Header + hero */
  .hero { background: var(--orange); border-bottom: 4px solid var(--ink); }
  .topbar { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; }
  .topbar a.link { font-weight: 700; font-size: 16px; }
  .hero__grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding: 48px 0 72px; align-items: center; }
  .hero h1 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(52px, 9vw, 104px); line-height: .9; letter-spacing: -.035em; margin: 0 0 22px; }
  .hero__lede { font-size: clamp(18px, 2.2vw, 22px); font-weight: 500; max-width: 34ch; margin: 0 0 28px; }
  .signup { max-width: 560px; }
  .signup__note { font-size: 14px; font-weight: 500; margin: 16px 0 0; }

  /* Issue preview card */
  .issue { width: 100%; max-width: 420px; background: var(--white); border: 4px solid var(--ink); border-radius: 18px; box-shadow: 8px 8px 0 var(--ink); overflow: hidden; }
  .issue__head { background: var(--orange); border-bottom: 4px solid var(--ink); padding: 26px 20px 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .issue__date { font-size: 11px; font-weight: 700; letter-spacing: .08em; }
  .issue__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; line-height: 1.55; }
  .issue__body p { margin: 0; }
  .issue__h { font-family: var(--display); font-weight: 800; font-size: 20px; line-height: 1.1; letter-spacing: -.02em; margin: 0; }
  .chip { align-self: flex-start; display: inline-block; border: 3px solid var(--ink); border-radius: 8px; padding: 4px 9px; font-size: 11px; font-weight: 700; letter-spacing: .14em; }
  .chip--pink { background: var(--pink); } .chip--mint { background: var(--mint); } .chip--sun { background: var(--sun); }
  .sotw { background: var(--orange); border: 3px solid var(--ink); border-radius: 12px; padding: 12px 14px; margin-top: 4px; }
  .sotw span { font-size: 10px; font-weight: 700; letter-spacing: .14em; }
  .sotw p { font-family: var(--display); font-weight: 800; font-size: 17px; line-height: 1.15; letter-spacing: -.02em; margin: 4px 0 0; }
  .hero .issue { transform: rotate(4deg); margin: 0 auto; }

  /* Sections */
  section { padding: 88px 0; }
  h2 { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 5vw, 52px); line-height: 1.02; letter-spacing: -.02em; margin: 0 0 28px; }
  .cards { display: grid; grid-template-columns: 1fr; gap: 24px; }
  .card { background: var(--white); border: 4px solid var(--ink); border-radius: 20px; box-shadow: 8px 8px 0 var(--ink); padding: 26px; }
  .card p { margin: 12px 0 0; }

  .sample { padding-top: 0; }
  .sample__grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
  .sample__text p { max-width: 42ch; margin: 0 0 28px; }
  .sample .issue { margin: 0 auto; transform: rotate(2deg); }

  .promise { padding-top: 0; }
  .promise__box { background: var(--ink); color: var(--white); border-radius: 24px; padding: clamp(32px, 5vw, 56px); }
  .promise__box h2 { margin-bottom: 14px; }
  .promise__box p { color: #DADADA; max-width: 60ch; margin: 0; }

  .final { background: var(--orange); border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); text-align: center; }
  .final h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(40px, 7vw, 68px); line-height: .92; letter-spacing: -.03em; }
  .final .signup { margin: 0 auto; }

  footer { padding: 28px 0 40px; font-size: 15px; color: var(--muted); }
  .foot { display: flex; flex-direction: column; gap: 12px; }
  .foot nav { display: flex; flex-wrap: wrap; gap: 20px; }

  @media (min-width: 900px) {
    .hero__grid { grid-template-columns: 1.15fr .85fr; padding: 64px 0 96px; }
    .cards { grid-template-columns: repeat(3, 1fr); }
    .sample__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
    .foot { flex-direction: row; justify-content: space-between; }
  }
  @media (prefers-reduced-motion: reduce) {
    .btn, .btn:hover, .btn:active { transition: none; transform: none; }
  }

  /* Simple pages (privacy, terms, 404) */
  .bar { background: var(--orange); border-bottom: 4px solid var(--ink); }
  .bar .topbar { padding-bottom: 28px; }
  .doc { padding: 64px 0 88px; }
  .doc__inner { max-width: 720px; }
  .doc h1 { font-family: var(--display); font-weight: 800; font-size: clamp(40px, 6vw, 60px); line-height: 1; letter-spacing: -.02em; margin: 0 0 12px; }
  .doc h2 { font-size: clamp(24px, 3vw, 30px); margin: 44px 0 12px; }
  .doc p, .doc li { max-width: 68ch; }
  .doc ul { padding-left: 22px; }
  .doc li { margin-bottom: 8px; }
  .doc .updated { color: var(--muted); font-size: 15px; margin: 0 0 32px; }
  .doc .note { background: var(--white); border: 3px solid var(--ink); border-radius: 14px; box-shadow: 5px 5px 0 var(--ink); padding: 16px 20px; }
  .lost { text-align: left; }
  .lost h1 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(48px, 9vw, 96px); line-height: .9; letter-spacing: -.035em; margin: 0 0 20px; }
