/* Mash Global V3 — Design Tokens
   Monks-inspired: clean, editorial, extreme whitespace, restrained palette. */

:root {
  /* Primary palette */
  --mash-orange: #f74f04;
  --mash-grey-blue: #859aac;
  --mash-dusk-blue: #042e37;
  --mash-cosmo-black: #000000;
  --mash-gainsboro: #dcdddf;
  --mash-anti-flash: #f4f4f1;
  --mash-white: #ffffff;

  /* Secondary palette */
  --mash-green: #39c690;
  --mash-teal: #4eccb4;
  --mash-violet: #6772d3;
  --mash-lime: #b9d359;

  /* Semantic — light dominant */
  --ink: #0a0a0a;
  --ink-soft: #6b7280;
  --paper: var(--mash-white);
  --paper-plain: var(--mash-white);
  --paper-subtle: #f7f7f5;
  --rule: #e5e5e3;
  --accent: var(--mash-orange);

  /* Type — Inter only, clean hierarchy */
  --font-display: "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Monks-style scale — bigger headlines, more contrast */
  --fs-mega: clamp(52px, 7vw, 96px);
  --fs-hero: clamp(48px, 8vw, 120px);
  --fs-display: clamp(40px, 5.5vw, 80px);
  --fs-h1: clamp(32px, 4vw, 56px);
  --fs-h2: clamp(26px, 3vw, 40px);
  --fs-h3: clamp(20px, 1.8vw, 28px);
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-micro: 12px;

  /* Layout — wider breathing room */
  --pad-page: clamp(32px, 6vw, 100px);
  --max-w: 1400px;
  --radius: 8px;
  --radius-lg: 16px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { overflow-x: hidden; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  padding-left: var(--pad-page);
  padding-right: var(--pad-page);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ink-soft);
}

::selection { background: var(--ink); color: white; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 2px; }

/* Reveal on scroll — gentler */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
