/* ==========================================================================
   MrBenBurns site design system  (Burnt Creative LLC)
   The shared foundation for mrbenburns.com. Matches the profit-calculator's
   "Terra" treatment: thin JHA Times Now display serif, PP Neue Montreal body,
   cream/ink palette, lime + clay accents. Load AFTER fonts.css.
   ========================================================================== */

:root{
  /* palette (from the calculator) */
  --cream:#fffcf5;
  --ink:#161615;
  --ink-2:#1c1917;
  --muted:#5a564d;
  --muted-2:#6f6f6a;
  --rule:#e4e0d5;
  --lime:#cdd92e;
  --lime-hover:#bcc823;
  --clay:#c8513d;
  --clay-soft:#f3e4e0;
  --paper:#ffffff;

  /* type */
  --serif:"JHA Times Now","Canela",Georgia,"Times New Roman",serif;
  --sans:"PP Neue Montreal","Neue Montreal",-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
  --mono:"PP Neue Montreal Mono",ui-monospace,"SF Mono",Menlo,monospace;

  --maxw:760px;
}

*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}

body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.7;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{
  color:var(--ink);
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-thickness:1px;
}
a:hover{color:#000;text-decoration-color:var(--lime)}

/* Shared eyebrow (lime tick + label) */
.eyebrow{
  font-family:var(--sans);
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}
.eyebrow::before{content:"";width:22px;height:8px;background:var(--lime);display:inline-block}

/* Terra display serif: thin (only weight 300 is licensed) + tight tracking */
h1,h2,h3{font-family:var(--serif);font-weight:300;letter-spacing:-.015em;margin:0}

/* ------------------------------------------------------------------ *
 * Legal / long-form document pages (Terms, Privacy)
 * ------------------------------------------------------------------ */
.legal .wrap{max-width:var(--maxw);margin:0 auto;padding:64px 24px 96px}
.legal h1{font-size:clamp(44px,9vw,84px);line-height:.98;margin-bottom:12px}
.legal .meta{color:var(--muted);font-size:14px;margin:0 0 6px}
.legal .lede{font-size:19px;color:var(--ink-2);margin:24px 0 8px}
.legal h2{
  font-size:clamp(24px,4vw,30px);
  line-height:1.1;
  margin:48px 0 8px;
  padding-top:26px;
  border-top:1px solid var(--rule);
}
.legal p,.legal li{color:var(--ink-2)}
.legal ul{padding-left:22px}
.legal li{margin:8px 0}
.legal .addr{font-family:var(--sans);white-space:pre-line;margin:8px 0}
.legal footer{
  margin-top:56px;padding-top:22px;border-top:1px solid var(--rule);
  font-size:14px;color:var(--muted);
  display:flex;flex-wrap:wrap;gap:16px;justify-content:space-between;
}
.legal footer a{color:var(--muted)}

/* ------------------------------------------------------------------ *
 * Home / landing (placeholder until the link-in-bio ships)
 * ------------------------------------------------------------------ */
.home{
  min-height:100vh;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;padding:32px;
}
.home h1{font-size:clamp(56px,14vw,140px);line-height:.94}
.home .tag{font-family:var(--serif);font-weight:300;font-style:italic;
  font-size:clamp(20px,4vw,30px);color:var(--ink-2);margin:18px 0 0}
.home nav{margin-top:40px;display:flex;flex-wrap:wrap;gap:10px;justify-content:center}
.home nav a{
  padding:11px 20px;border:1px solid var(--ink);border-radius:999px;
  color:var(--ink);text-decoration:none;font-size:14px;letter-spacing:.02em;
}
.home nav a:hover{background:var(--lime);border-color:var(--lime)}
.home .foot{position:fixed;bottom:22px;left:0;right:0;text-align:center;font-size:13px;color:var(--muted)}
.home .foot a{color:var(--muted);text-decoration:none;margin:0 8px}
.home .foot a:hover{color:var(--ink)}
