/* ==========================================================================
   Live Love Awards — design tokens
   Extracted verbatim from the original single-file landing page.
   Nothing here is page-specific; every surface imports this first.
   ========================================================================== */

/* --- Typefaces (self-hosted; no Google Fonts request) --------------------
   Both families are variable fonts, so one file per subset covers the whole
   weight range the design uses (Syne 600–800, Instrument Sans 400–600).     */

@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/syne-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/syne-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/syne-greek.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1,
    U+03A3-03FF;
}

@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/instrument-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/instrument-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Tokens -------------------------------------------------------------- */

:root {
  /* Ground */
  --ink: #0A0C0D;
  --ink-2: #121618;
  --paper: #F4F5F1;

  /* Paper at reduced opacity — the whole greyscale ramp of the design */
  --dim: rgba(244, 245, 241, .62);
  --faint: rgba(244, 245, 241, .38);
  --rule: rgba(244, 245, 241, .14);

  /* Pillar accents: a = Culture, b = People, c = Nature.
     Mint doubles as the single interactive/CTA colour. */
  --blue: #4C7DF0;
  --coral: #FF5C39;
  --mint: #17C08B;

  /* Type */
  --disp: 'Syne', system-ui, sans-serif;
  --body: 'Instrument Sans', system-ui, sans-serif;

  /* Metrics */
  --gut: clamp(20px, 4.2vw, 72px);
  --nav: 72px;

  /* House easing — every considered transition in the design uses one of these */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.2, .7, .2, 1);
  --ease-firm: cubic-bezier(.2, .8, .2, 1);
}
