/* ═══════════════════════════════════════════════════════
   AFN DESIGN SYSTEM — TOKENS & RESET
   All First Nations Awards 2026
   ═══════════════════════════════════════════════════════ */

/* ── COLOUR TOKENS ─────────────────────────────────── */
:root {
  /* Gold palette */
  --gold:        #A8720E;
  --gold-mid:    #C8952A;
  --gold-light:  #E8B84B;
  --gold-tint:   #FBF0E0;
  --gold-pale:   #FDF8EE;

  /* Ink palette */
  --ink:         #1E1509;
  --ink-mid:     #3D2E14;
  --ink-muted:   #6B5B3E;

  /* Surfaces */
  --page-bg:     #FDFAF4;
  --surface:     #FFFFFF;
  --surface-alt: #F7F1E6;

  /* Borders */
  --border:      rgba(168,114,14,.18);
  --border-mid:  rgba(168,114,14,.35);

  /* Accent */
  --red-earth:   #8B1F2F;
  --sale-red:    #9B2335;
  --sale-bg:     #FDF0F1;
  --success:     #2D6A4F;
  --success-bg:  #E8F5E9;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing scale */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  2rem;
  --sp-xl:  3rem;
  --sp-2xl: 5rem;
  --sp-3xl: 6rem;

  /* Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(168,114,14,.06);
  --shadow-md:  0 4px 20px rgba(168,114,14,.08);
  --shadow-lg:  0 6px 28px rgba(168,114,14,.1);

  /* Transitions */
  --ease-out: cubic-bezier(.4,0,.2,1);
  --dur-fast: .15s;
  --dur-med:  .25s;
  --dur-slow: .35s;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Preserve WP admin bar spacing */
html.wp-toolbar {
  padding-top: 32px !important;
}
@media screen and (max-width: 782px) {
  html.wp-toolbar { padding-top: 46px !important; }
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--page-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* Don't break WP admin bar icons */
#wpadminbar img,
#wpadminbar svg {
  display: inline;
  max-width: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ── UTILITY CLASSES ───────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
