@font-face {
  font-family: 'Saans';
  src: url('../fonts/Saans-SemiBold-TRIAL.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Saans';
  src: url('../fonts/Saans-Medium-TRIAL.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

.eyebrow {
  font-family: var(--font-main);
  font-weight: var(--fw-medium);
  font-size: var(--text-eye);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.about-eyebrow,
.label-bio-eyebrow,
.contact-eyebrow,
.releases-hero-eyebrow,
.featured-eyebrow,
.events-hero-eyebrow,
.guestlist-eyebrow {
  font-family: var(--font-main);
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
}

:root {
  /* Brand colors */
  --black:   #000000;
  --white:   #ffffff;
  --red:     #FF0C00;
  --yellow:  #FFCE00;
  --blue:    #438BFF;
  --green:   #5AC957;
  --orange:  #FF591F;
  --purple:  #7E64FF;
  --amber:   #FFB000;
  --cyan:    #00FFB6;
  --magenta: #DD005A;
  --lime:    #C5FF55;
  --neon:    #00FF67;

  /* Page section colors */
  --color-events:   #E04D18;
  --color-releases: #00C99A;
  --color-about:    #C2004F;

  /* Typography */
  --font-main: 'Saans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --fw-semi:   600;
  --fw-medium: 500;

  /* Type scale */
  --text-display: clamp(72px, 10vw, 140px);
  --text-h1:      clamp(48px, 7vw, 96px);
  --text-section-title: clamp(48px, 6vw, 80px);
  --text-h2:      clamp(28px, 4vw, 48px);
  --text-body:    clamp(14px, 1.2vw, 18px);
  --text-eye:     11px;
  --text-nav:     10px;

  /* Spacing */
  --gutter: clamp(20px, 4vw, 60px);
  --nav-h:  40px;

  /* Easing */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Button C — Circle + Text ── */
.btn-c {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.12s;
  font-family: var(--font-main);
}
.btn-c:hover { opacity: 0.75; }
.btn-c:hover .btn-c-circle { transform: scale(1.06) translate(1px, -1px); }

.btn-c-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--fw-semi);
  flex-shrink: 0;
  transition: transform 0.15s;
}

.btn-c-text {
  font-size: 11px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 10px 2px 8px;
  border-bottom: 1.5px solid;
}

/* Variants */
.btn-c--primary .btn-c-circle  { background: var(--page-color, var(--white)); color: var(--black); }
.btn-c--primary .btn-c-text    { color: var(--page-color, var(--white)); border-color: rgba(255,255,255,0.25); }

.btn-c--muted .btn-c-circle { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.72); }
.btn-c--muted .btn-c-text   { color: rgba(255,255,255,0.72); border-color: rgba(255,255,255,0.28); }

.btn-c--on-yellow .btn-c-circle { background: var(--black); color: var(--white); }
.btn-c--on-yellow .btn-c-text   { color: var(--black); border-color: rgba(0,0,0,0.3); }

/* Small variant for catalog cards */
.btn-c--sm .btn-c-circle { width: 32px; height: 32px; font-size: 9px; }
.btn-c--sm .btn-c-text   { font-size: 11px; }

/* ── Accessibility ── */
:focus-visible {
  outline: 2px solid var(--page-color, var(--white));
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Scroll reveal ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  }
}
.revealed {
  opacity: 1;
  transform: none;
}

/* Directional variant for left-aligned text blocks */
@media (prefers-reduced-motion: no-preference) {
  .reveal-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  }
}
.reveal-left.revealed {
  opacity: 1;
  transform: none;
}

/* Stagger for child groups — apply .reveal-group to a container, .reveal to each child */
.reveal-group > .reveal:nth-child(1)  { transition-delay: 0s; }
.reveal-group > .reveal:nth-child(2)  { transition-delay: 0.08s; }
.reveal-group > .reveal:nth-child(3)  { transition-delay: 0.16s; }
.reveal-group > .reveal:nth-child(4)  { transition-delay: 0.24s; }
.reveal-group > .reveal:nth-child(5)  { transition-delay: 0.32s; }
.reveal-group > .reveal:nth-child(6)  { transition-delay: 0.4s; }
.reveal-group > .reveal:nth-child(7)  { transition-delay: 0.48s; }
.reveal-group > .reveal:nth-child(8)  { transition-delay: 0.56s; }
.reveal-group > .reveal:nth-child(9)  { transition-delay: 0.64s; }
.reveal-group > .reveal:nth-child(10) { transition-delay: 0.72s; }
.reveal-group > .reveal:nth-child(11) { transition-delay: 0.8s; }
.reveal-group > .reveal:nth-child(12) { transition-delay: 0.88s; }

/* Springy opt-in variant — pairs with .reveal for interactive-emphasis
   entrances (same easing already used for .btn-c hover). Extends rather
   than replaces the default .reveal so existing pages are untouched. */
@media (prefers-reduced-motion: no-preference) {
  .reveal--spring {
    transition-timing-function: var(--ease-spring);
  }
}
