/* ==========================================================================
   tokens-v2.css - Extended design tokens for the rebuild branch
   See MASTER.md for full design system.
   ========================================================================== */

:root {
  /* Navy / Blue extensions */
  --color-navy-900:  #001629;             /* alias of --color-bg-hero */
  --color-navy-800:  #061E33;             /* body-on-dark surface */
  --color-navy-700:  #0F2A45;             /* elevated surface, cards on dark */
  --color-navy-600:  #1A3958;             /* hover state on dark surfaces */

  /* Gold extensions */
  --color-gold-600:  #D9A22A;             /* pressed / active gold */
  --color-gold-500:  #F9BD3D;             /* alias of --color-gold */
  --color-gold-300:  #FFD471;             /* highlight, progress fill animation */

  /* Neutrals */
  --color-cream-50:  #F8F4EA;             /* warm neutral, alumni surfaces */
  --color-paper:     #FAFAF8;             /* alias of --color-bg-primary */

  /* Ink */
  --color-ink-900:   #1A1C1E;             /* alias of --color-text-primary */
  --color-ink-500:   #4A5568;             /* alias of --color-text-secondary */
  --color-ink-300:   #718096;             /* alias of --color-text-muted */

  /* Motion tokens */
  --ease-cinematic:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-barba:      cubic-bezier(0.65, 0, 0.35, 1);
  --ease-expo:       cubic-bezier(0.19, 1, 0.22, 1);
  --dur-reveal:      700ms;
  --dur-counter:     1800ms;
  --dur-page:        600ms;

  /* Layout extensions */
  --container-narrow: 880px;              /* editorial / pull-quote container */
  --container-wide:   1440px;              /* hero / cinematic full-bleed */
  --space-section:    var(--space-20);    /* editorial rhythm - mobile */
}

@media (min-width: 768px) {
  :root {
    --space-section: var(--space-32);     /* editorial rhythm - tablet+ */
  }
}

@media (min-width: 1280px) {
  :root {
    --space-section: var(--space-36);     /* editorial rhythm - desktop */
  }
}

/* Italic display weight load (Source Serif 4 italic) */
@font-face {
  font-family: 'Source Serif 4';
  src: url('/fonts/SourceSerif4-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Source Serif 4';
  src: url('/fonts/SourceSerif4-SemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* Editorial pull-quote utility */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: var(--text-3xl);
  line-height: 1.3;
  color: var(--color-ink-900);
  max-width: 28ch;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding-block: var(--space-6);
}

.pull-quote::before,
.pull-quote::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-gold-500);
  margin: var(--space-4) auto;
}

.pull-quote__attribution {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink-500);
  margin-top: var(--space-3);
}

/* Reduced motion guard */
@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-reveal: 0ms;
    --dur-counter: 0ms;
    --dur-page: 0ms;
  }
}
