/* Blanshoot — global tokens */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Archivo+Black&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500;600&family=Anton&display=swap');

:root {
  --ink:        #0a0a0a;
  --ink-2:      #141414;
  --ash:        #1f1d1b;
  --char:       #2a2826;
  --fog:        #f4efe6;
  --bone:       #e8e2d4;
  --rust:       #c44a1a;
  --rust-deep:  #962f0a;
  --ember:      #e8631f;
  --line:       rgba(244,239,230,0.12);
  --muted:      rgba(244,239,230,0.55);
}

html, body { margin: 0; padding: 0; background: #0f0f0f; color: var(--fog); font-family: 'Archivo', sans-serif; -webkit-font-smoothing: antialiased; }

.bs-display { font-family: 'Archivo Black', 'Archivo', sans-serif; font-weight: 900; letter-spacing: -0.02em; line-height: 0.9; }
.bs-serif   { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; letter-spacing: -0.01em; }
.bs-mono    { font-family: 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0.02em; }
.bs-sans    { font-family: 'Archivo', sans-serif; }
.bs-anton   { font-family: 'Anton', 'Archivo Black', sans-serif; letter-spacing: 0.01em; }

.bs-up      { text-transform: uppercase; }
.bs-track   { letter-spacing: 0.18em; }

/* Hide image-slot help by default in mockups */
image-slot { --is-placeholder-bg: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); }

/* Striped photo placeholder helper */
.bs-photo {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, #1c1916 0 12px, #161310 12px 24px);
}
.bs-photo::after {
  content: attr(data-caption);
  position: absolute; inset: auto 0 0 0; padding: 10px 14px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: rgba(244,239,230,0.55); letter-spacing: 0.1em;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.bs-photo.bs-photo--center::before {
  content: attr(data-tag);
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: rgba(244,239,230,0.35); letter-spacing: 0.2em; text-transform: uppercase;
}
.bs-photo--ski {
  background:
    radial-gradient(ellipse at 30% 40%, #2d2a26 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, #1a1815 0%, transparent 60%),
    linear-gradient(180deg, #2a2724 0%, #0e0c0a 100%);
}
.bs-photo--mtb {
  background:
    radial-gradient(ellipse at 60% 60%, #3a1f10 0%, transparent 50%),
    linear-gradient(180deg, #1e1410 0%, #080604 100%);
}
.bs-photo--bw {
  background:
    radial-gradient(ellipse at 40% 50%, #2a2a2a 0%, transparent 55%),
    linear-gradient(180deg, #1a1a1a 0%, #050505 100%);
}
.bs-photo--warm {
  background:
    radial-gradient(ellipse at 30% 40%, #4a2810 0%, transparent 55%),
    linear-gradient(180deg, #2a1810 0%, #0a0604 100%);
}

.bs-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.8'/></svg>");
}

/* Logo lockup */
.bs-logo-stack {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--rust); color: var(--fog);
  padding: 14px 18px 12px;
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: 0.04em; line-height: 0.95;
}
.bs-logo-stack .row { font-size: inherit; }
.bs-logo-stack .div { width: 100%; height: 1px; background: rgba(244,239,230,0.55); margin: 4px 0; }

.bs-logo-mono {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo Black', sans-serif; letter-spacing: 0.02em;
}
.bs-logo-mono .dot { width: 0.5em; height: 0.5em; background: var(--rust); display: inline-block; }
