/* ============================================================
   Talvero Quarterly — css/style.css
   Prebuilt Tailwind v4.1.5 utility stylesheet
   Design system: Documentary/Archive (K_FAMILY=7)
   Palette: BG #0e0a0b | BG2 #16100f | INK #f0e8e6 | ACCENT #9b2335 | MUTED #8a7a78
   Fonts: Clash Display (display) + Satoshi (body) — K_FONT=1
   ============================================================ */

/* ============================================================
   1. @THEME BLOCK — Design Tokens
   ============================================================ */
@theme {
  --color-bg-primary: #0e0a0b;
  --color-bg-secondary: #16100f;
  --color-ink-primary: #f0e8e6;
  --color-ink-muted: #8a7a78;
  --color-accent: #9b2335;
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --radius-sm: 0px;
  --radius-md: 2px;
  --shadow-hard: 4px 4px 0px #9b2335;
  --shadow-soft: 0 8px 32px rgba(15,23,42,0.28);
}

/* ============================================================
   2. BASE RESET / @layer base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: #0e0a0b;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #0e0a0b;
  color: #f0e8e6;
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

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

address {
  font-style: normal;
}

main {
  flex: 1;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f0e8e6;
}

p {
  line-height: 1.65;
}

button {
  cursor: pointer;
  font-family: 'Satoshi', sans-serif;
}

textarea, input, select {
  font-family: 'Satoshi', sans-serif;
}

/* ============================================================
   3. LAYOUT — flex, grid, container, position, z-index
   ============================================================ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-none { flex: none; }
.inline-flex { display: inline-flex; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.self-start { align-self: flex-start; }
.self-center { align-self: center; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }

.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.left-1\/2 { left: 50%; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ============================================================
   4. SPACING — margin, padding, gap
   ============================================================ */
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pr-4 { padding-right: 1rem; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }

/* ============================================================
   5. SIZING — width, height, min/max
   ============================================================ */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-48 { width: 12rem; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.min-h-\[60vh\] { min-height: 60vh; }
.min-h-\[70vh\] { min-height: 70vh; }
.min-h-\[80vh\] { min-height: 80vh; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[1280px\] { max-width: 1280px; }
.max-w-\[1220px\] { max-width: 1220px; }
.max-w-\[900px\] { max-width: 900px; }
.max-w-\[760px\] { max-width: 760px; }
.max-w-\[680px\] { max-width: 680px; }
.max-w-\[520px\] { max-width: 520px; }
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.aspect-\[16\/9\] { aspect-ratio: 16/9; }
.aspect-\[21\/9\] { aspect-ratio: 21/9; }
.aspect-\[3\/2\] { aspect-ratio: 3/2; }
.aspect-\[4\/3\] { aspect-ratio: 4/3; }
.aspect-\[1\/1\] { aspect-ratio: 1/1; }

/* ============================================================
   6. TYPOGRAPHY — text-*, font-*, leading-*, tracking-*
   ============================================================ */
.font-display { font-family: 'Clash Display', sans-serif; }
.font-body { font-family: 'Satoshi', sans-serif; }
.font-mono { font-family: 'Satoshi', monospace; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-8xl { font-size: 6rem; }
.text-9xl { font-size: 8rem; }
.text-\[0\.6875rem\] { font-size: 0.6875rem; }
.text-\[0\.8125rem\] { font-size: 0.8125rem; }
.text-\[0\.9375rem\] { font-size: 0.9375rem; }
.text-\[clamp\(2rem\,5vw\,3\.5rem\)\] { font-size: clamp(2rem, 5vw, 3.5rem); }
.text-\[clamp\(2\.5rem\,7vw\,5rem\)\] { font-size: clamp(2.5rem, 7vw, 5rem); }
.text-\[clamp\(3rem\,10vw\,7rem\)\] { font-size: clamp(3rem, 10vw, 7rem); }
.text-\[clamp\(1\.25rem\,3vw\,2rem\)\] { font-size: clamp(1.25rem, 3vw, 2rem); }
.text-\[clamp\(1rem\,2vw\,1\.375rem\)\] { font-size: clamp(1rem, 2vw, 1.375rem); }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.leading-\[1\.15\] { line-height: 1.15; }
.leading-\[1\.7\] { line-height: 1.7; }
.leading-\[1\.8\] { line-height: 1.8; }
.leading-\[1\.9\] { line-height: 1.9; }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[-0\.03em\] { letter-spacing: -0.03em; }
.tracking-\[-0\.02em\] { letter-spacing: -0.02em; }
.tracking-\[0\.14em\] { letter-spacing: 0.14em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }
.line-through { text-decoration: line-through; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ============================================================
   7. COLORS — text, bg, border
   ============================================================ */
.text-\[\#f0e8e6\] { color: #f0e8e6; }
.text-\[\#8a7a78\] { color: #8a7a78; }
.text-\[\#9b2335\] { color: #9b2335; }
.text-\[\#0e0a0b\] { color: #0e0a0b; }
.text-\[\#16100f\] { color: #16100f; }
.text-white { color: #ffffff; }
.text-\[var\(--color-ink-primary\)\] { color: #f0e8e6; }
.text-\[var\(--color-ink-muted\)\] { color: #8a7a78; }
.text-\[var\(--color-accent\)\] { color: #9b2335; }
.text-\[var\(--color-bg-primary\)\] { color: #0e0a0b; }

.bg-\[\#0e0a0b\] { background-color: #0e0a0b; }
.bg-\[\#16100f\] { background-color: #16100f; }
.bg-\[\#9b2335\] { background-color: #9b2335; }
.bg-\[\#f0e8e6\] { background-color: #f0e8e6; }
.bg-transparent { background-color: transparent; }
.bg-\[var\(--color-bg-primary\)\] { background-color: #0e0a0b; }
.bg-\[var\(--color-bg-secondary\)\] { background-color: #16100f; }
.bg-\[var\(--color-accent\)\] { background-color: #9b2335; }
.bg-\[rgba\(155\,35\,53\,0\.08\)\] { background-color: rgba(155,35,53,0.08); }
.bg-\[rgba\(155\,35\,53\,0\.12\)\] { background-color: rgba(155,35,53,0.12); }
.bg-\[rgba\(240\,232\,230\,0\.04\)\] { background-color: rgba(240,232,230,0.04); }
.bg-\[rgba\(240\,232\,230\,0\.06\)\] { background-color: rgba(240,232,230,0.06); }
.bg-\[rgba\(27\,38\,44\,0\.78\)\] { background-color: rgba(27,38,44,0.78); }

.border { border-width: 1px; }
.border-0 { border-width: 0; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-l { border-left-width: 1px; }
.border-r { border-right-width: 1px; }
.border-\[\#9b2335\] { border-color: #9b2335; }
.border-\[\#f0e8e6\] { border-color: #f0e8e6; }
.border-\[rgba\(138\,122\,120\,0\.15\)\] { border-color: rgba(138,122,120,0.15); }
.border-\[rgba\(138\,122\,120\,0\.20\)\] { border-color: rgba(138,122,120,0.20); }
.border-\[rgba\(138\,122\,120\,0\.25\)\] { border-color: rgba(138,122,120,0.25); }
.border-\[rgba\(155\,35\,53\,0\.30\)\] { border-color: rgba(155,35,53,0.30); }
.border-\[rgba\(155\,35\,53\,0\.50\)\] { border-color: rgba(155,35,53,0.50); }
.border-\[rgba\(155\,35\,53\,0\.60\)\] { border-color: rgba(155,35,53,0.60); }
.border-\[rgba\(240\,232\,230\,0\.10\)\] { border-color: rgba(240,232,230,0.10); }
.border-\[rgba\(240\,232\,230\,0\.20\)\] { border-color: rgba(240,232,230,0.20); }
.border-\[rgba\(255\,255\,255\,0\.18\)\] { border-color: rgba(255,255,255,0.18); }
.divide-y > * + * { border-top-width: 1px; border-color: rgba(138,122,120,0.15); }

/* ============================================================
   8. BORDERS & RADIUS
   ============================================================ */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 2px; }
.rounded { border-radius: 4px; }
.rounded-md { border-radius: 6px; }
.rounded-lg { border-radius: 8px; }
.rounded-full { border-radius: 9999px; }
.rounded-\[999px\] { border-radius: 999px; }
.rounded-\[26px\] { border-radius: 26px; }
.border-solid { border-style: solid; }

/* ============================================================
   9. EFFECTS — shadow, opacity, blur, backdrop
   ============================================================ */
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3); }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.4); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,0.4); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0,0,0,0.5); }
.shadow-\[4px_4px_0px_\#9b2335\] { box-shadow: 4px 4px 0px #9b2335; }
.shadow-\[0_20px_60px_rgba\(15\,23\,42\,0\.24\)\] { box-shadow: 0 20px 60px rgba(15,23,42,0.24); }
.shadow-\[0_8px_32px_rgba\(15\,23\,42\,0\.28\)\] { box-shadow: 0 8px 32px rgba(15,23,42,0.28); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-88 { opacity: 0.88; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

/* ============================================================
   10. TRANSFORMS
   ============================================================ */
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-y-0 { transform: translateY(0); }
.translate-y-2 { transform: translateY(0.5rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.rotate-90 { transform: rotate(90deg); }
.-rotate-90 { transform: rotate(-90deg); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }

/* ============================================================
   11. TRANSITIONS & ANIMATIONS
   ============================================================ */
.transition { transition-property: color, background-color, border-color, opacity, transform; transition-duration: 150ms; transition-timing-function: ease; }
.transition-all { transition: all 0.15s ease; }
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-duration: 150ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-600 { transition-duration: 600ms; }
.ease-out { transition-timing-function: ease-out; }
.ease-in-out { transition-timing-function: ease-in-out; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 28s linear infinite;
  display: flex;
  white-space: nowrap;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.animate-pulse-dot {
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ============================================================
   12. RESPONSIVE PREFIXES — sm, md, lg, xl
   ============================================================ */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:text-left { text-align: left; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:inline-block { display: inline-block; }
  .md\:block { display: block; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:col-span-1 { grid-column: span 1; }
  .md\:col-span-2 { grid-column: span 2; }
  .md\:col-span-3 { grid-column: span 3; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:items-start { align-items: flex-start; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:mt-0 { margin-top: 0; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:text-left { text-align: left; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21/9; }
  .md\:aspect-\[16\/9\] { aspect-ratio: 16/9; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:col-span-2 { grid-column: span 2; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:text-7xl { font-size: 4.5rem; }
  .lg\:text-8xl { font-size: 6rem; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .xl\:px-0 { padding-left: 0; padding-right: 0; }
}

/* ============================================================
   13. STATE VARIANTS — hover, focus, active, group
   ============================================================ */
.hover\:opacity-88:hover { opacity: 0.88; }
.hover\:opacity-90:hover { opacity: 0.90; }
.hover\:text-\[\#9b2335\]:hover { color: #9b2335; }
.hover\:text-\[\#f0e8e6\]:hover { color: #f0e8e6; }
.hover\:bg-\[\#16100f\]:hover { background-color: #16100f; }
.hover\:bg-\[rgba\(155\,35\,53\,0\.10\)\]:hover { background-color: rgba(155,35,53,0.10); }
.hover\:border-\[rgba\(155\,35\,53\,0\.50\)\]:hover { border-color: rgba(155,35,53,0.50); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:underline:hover { text-decoration: underline; }
.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#9b2335\]:focus { border-color: #9b2335; }
.focus\:ring-1:focus { box-shadow: 0 0 0 1px #9b2335; }

.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:underline { text-decoration: underline; }
.group:hover .group-hover\:text-\[\#9b2335\] { color: #9b2335; }
.group { position: relative; }

/* ============================================================
   14. ARBITRARY VALUE CLASSES — used in HTML markup
   ============================================================ */
.object-cover { object-fit: cover; }
.object-top { object-position: top; }
.object-center { object-position: center; }
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }
.resize-none { resize: none; }
.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }
.list-inside { list-style-position: inside; }
.list-outside { list-style-position: outside; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.not-italic { font-style: normal; }
.whitespace-nowrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-ellipsis { text-overflow: ellipsis; }
.break-words { word-break: break-word; }
.break-all { word-break: break-all; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   15. SITE-WIDE COMPONENT STYLES
   ============================================================ */

/* -- Shared header -- */
.site-header {
  width: 100%;
  border-bottom: 1px solid rgba(138,122,120,0.20);
  background-color: #0e0a0b;
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-wordmark {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: #f0e8e6;
}
.brand-wordmark span { color: #9b2335; }
.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: #f0e8e6;
}
@media (min-width: 768px) { .header-nav { display: flex; } }
.header-nav a { color: #f0e8e6; transition: color 0.15s; letter-spacing: 0.01em; }
.header-nav a:hover { color: #9b2335; }
.header-nav a.active { color: #9b2335; }
.header-phone {
  display: none;
  font-family: 'Satoshi', monospace;
  font-size: 0.8125rem;
  letter-spacing: -0.01em;
  color: #f0e8e6;
  transition: color 0.15s;
}
@media (min-width: 768px) { .header-phone { display: inline-block; } }
.header-phone:hover { color: #9b2335; }
.hamburger-btn {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #f0e8e6;
  font-size: 1.25rem;
}
@media (min-width: 768px) { .hamburger-btn { display: none; } }
.mobile-menu {
  border-top: 1px solid rgba(138,122,120,0.20);
  background-color: #0e0a0b;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.75rem;
  font-size: 1rem;
  color: #f0e8e6;
}
.mobile-menu nav a { color: #f0e8e6; }
.mobile-menu nav a:hover { color: #9b2335; }
.mobile-menu-phone {
  font-family: 'Satoshi', monospace;
  font-size: 0.875rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(138,122,120,0.20);
  color: #f0e8e6;
}

/* -- Shared footer -- */
.site-footer {
  width: 100%;
  background-color: #16100f;
  border-top: 1px solid rgba(138,122,120,0.20);
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand-name {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #f0e8e6;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.footer-brand-name span { color: #9b2335; }
.footer-brand-statement { font-size: 0.875rem; color: #8a7a78; line-height: 1.65; }
.footer-col-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8a7a78;
  margin-bottom: 0.75rem;
}
.footer-address { font-size: 0.875rem; color: #f0e8e6; line-height: 1.9; }
.footer-address a { color: #f0e8e6; transition: color 0.15s; }
.footer-address a:hover { color: #9b2335; }
.footer-hours { font-size: 0.8125rem; color: #8a7a78; line-height: 1.7; margin-top: 0.75rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-size: 0.875rem; color: #f0e8e6; transition: color 0.15s; }
.footer-nav a:hover { color: #9b2335; }
.footer-bottom { border-top: 1px solid rgba(138,122,120,0.20); }
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-bottom-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #8a7a78;
}
.footer-legal-links a { color: #8a7a78; transition: color 0.15s; }
.footer-legal-links a:hover { color: #9b2335; }
.footer-copyright { font-size: 0.75rem; color: #8a7a78; }

/* -- Cookie Banner -- */
.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  width: calc(100% - 1.5rem);
  max-width: 76rem;
  z-index: 50;
  transition: opacity 0.3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(27,38,44,0.780);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.180);
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.24);
}
.cookie-banner-inner {
  max-width: 1220px;
  width: 100%;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .cookie-banner-inner { flex-direction: row; justify-content: space-between; align-items: center; gap: 1rem; }
}
.cookie-text { font-size: 0.875rem; line-height: 1.6; }
.cookie-text a { color: #D8E2DC; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: #D8E2DC; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
@media (min-width: 768px) { .cookie-actions { justify-content: flex-end; } }
.cookie-btn-accept {
  font-weight: 600; padding: 0.625rem 1rem; font-size: 0.875rem;
  background-color: #9b2335; color: #ffffff; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.180); cursor: pointer; transition: all 0.15s;
}
.cookie-btn-partial {
  font-weight: 600; padding: 0.625rem 1rem; font-size: 0.875rem;
  background-color: rgba(255,255,255,0.100); color: #ffffff; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.180); cursor: pointer; transition: all 0.15s;
}
.cookie-btn-functional {
  font-weight: 600; padding: 0.625rem 1rem; font-size: 0.875rem;
  background-color: rgba(27,67,50,0.140); color: #D8E2DC; border-radius: 999px;
  border: 1px solid rgba(216,226,220,0.280); cursor: pointer; transition: all 0.15s;
}

/* -- Section meta labels -- */
.section-meta-label {
  font-family: 'Satoshi', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7a78;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(138,122,120,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* -- Numbered section markers -- */
.section-number {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  color: #9b2335;
  letter-spacing: 0.1em;
}

/* -- Article card -- */
.article-card { display: block; }
.article-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #16100f;
  margin-bottom: 1rem;
}
.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-category {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9b2335;
  margin-bottom: 0.5rem;
}
.article-card-title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #f0e8e6;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.article-card:hover .article-card-title { text-decoration: underline; }
.article-card-excerpt {
  font-size: 0.875rem;
  color: #8a7a78;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #8a7a78;
}

/* -- Marquee strip -- */
.marquee-strip {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(138,122,120,0.15);
  border-bottom: 1px solid rgba(138,122,120,0.15);
  background-color: #16100f;
  padding: 0.75rem 0;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Satoshi', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7a78;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #9b2335;
  flex-shrink: 0;
}

/* -- Stat strip -- */
.stat-item {
  padding: 2rem;
  border-right: 1px solid rgba(138,122,120,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Clash Display', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: #f0e8e6;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-number span { color: #9b2335; }
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8a7a78;
}

/* -- CTA buttons -- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #9b2335;
  color: #f0e8e6;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 0.875rem 1.75rem;
  border: 1px solid rgba(155,35,53,0.60);
  transition: opacity 0.15s;
  text-decoration: none;
}
.btn-primary:hover { opacity: 0.88; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: #f0e8e6;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 0.875rem 1.75rem;
  border: 1px solid rgba(240,232,230,0.20);
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: rgba(155,35,53,0.50); color: #9b2335; }

/* -- Archive rows -- */
.archive-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(138,122,120,0.12);
}
.archive-index {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #8a7a78;
  width: 1.5rem;
  flex-shrink: 0;
}
.archive-label { font-family: 'Satoshi', sans-serif; font-size: 0.875rem; color: #f0e8e6; flex: 1; }
.archive-label:hover { color: #9b2335; }
.archive-date { font-family: 'Satoshi', monospace; font-size: 0.75rem; color: #8a7a78; letter-spacing: 0.04em; }

/* -- FAQ Accordion -- */
.faq-item {
  border-bottom: 1px solid rgba(138,122,120,0.15);
}
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  cursor: pointer;
  color: #f0e8e6;
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.faq-trigger:hover { color: #9b2335; }
.faq-icon {
  font-size: 0.75rem;
  color: #9b2335;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-body {
  display: none;
  padding: 0 0 1.25rem;
}
.faq-body.open { display: block; }
.faq-trigger.open .faq-icon { transform: rotate(180deg); }
.faq-body p {
  font-size: 0.9375rem;
  color: #8a7a78;
  line-height: 1.7;
}

/* -- Feature grid cards -- */
.feature-card {
  background-color: #16100f;
  border: 1px solid rgba(138,122,120,0.15);
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(155,35,53,0.30); }
.feature-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(155,35,53,0.10);
  color: #9b2335;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.feature-card-title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #f0e8e6;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.feature-card-body {
  font-size: 0.875rem;
  color: #8a7a78;
  line-height: 1.65;
}

/* -- Timeline steps -- */
.timeline-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(138,122,120,0.12);
}
.timeline-step:last-child { border-bottom: none; }
.timeline-num {
  font-family: 'Clash Display', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #9b2335;
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  opacity: 0.7;
}
.timeline-content { flex: 1; }
.timeline-title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #f0e8e6;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.timeline-body { font-size: 0.9rem; color: #8a7a78; line-height: 1.65; }

/* -- Pull quote -- */
.pull-quote {
  border-left: 3px solid #9b2335;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background-color: rgba(155,35,53,0.04);
}
.pull-quote p {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #f0e8e6;
  letter-spacing: -0.01em;
  line-height: 1.45;
}
.pull-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #8a7a78;
  font-style: normal;
  letter-spacing: 0.04em;
}

/* -- Contact form fields -- */
.form-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8a7a78;
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background-color: #0e0a0b;
  border: 1px solid rgba(138,122,120,0.30);
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  color: #f0e8e6;
  outline: none;
  transition: border-color 0.15s;
  font-family: 'Satoshi', sans-serif;
}
.form-input:focus { border-color: #9b2335; }
.form-input::placeholder { color: #8a7a78; }
textarea.form-input { resize: vertical; min-height: 7rem; }

/* -- Legal page body text -- */
.legal-body h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f0e8e6;
  letter-spacing: -0.02em;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #f0e8e6;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-body p {
  font-size: 0.9375rem;
  color: #8a7a78;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-body ul li {
  font-size: 0.9375rem;
  color: #8a7a78;
  line-height: 1.75;
  margin-bottom: 0.25rem;
}
.legal-body a { color: #9b2335; text-decoration: underline; }

/* -- Article body -- */
.article-body h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: #f0e8e6;
  letter-spacing: -0.02em;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(138,122,120,0.12);
}
.article-body p {
  font-size: 1rem;
  color: #c8bfbd;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.article-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-body ul li {
  font-size: 1rem;
  color: #c8bfbd;
  line-height: 1.75;
  margin-bottom: 0.35rem;
}
.article-body strong { color: #f0e8e6; font-weight: 700; }
.article-body a { color: #9b2335; text-decoration: underline; }

/* -- Author bio box -- */
.author-bio {
  background-color: #16100f;
  border: 1px solid rgba(138,122,120,0.15);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-top: 3rem;
}
.author-bio-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(155,35,53,0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b2335;
  font-size: 1.5rem;
}
.author-bio-name {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #f0e8e6;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.author-bio-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9b2335;
  margin-bottom: 0.5rem;
}
.author-bio-text { font-size: 0.875rem; color: #8a7a78; line-height: 1.65; }
.author-bio-link { font-size: 0.8125rem; color: #9b2335; margin-top: 0.5rem; display: inline-block; }
.author-bio-link:hover { text-decoration: underline; }

/* -- Key takeaways box -- */
.takeaways-box {
  background-color: rgba(155,35,53,0.06);
  border: 1px solid rgba(155,35,53,0.20);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.takeaways-title {
  font-family: 'Satoshi', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9b2335;
  margin-bottom: 1rem;
}
.takeaways-list { list-style: none; padding: 0; }
.takeaways-list li {
  font-size: 0.9375rem;
  color: #f0e8e6;
  line-height: 1.65;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(138,122,120,0.12);
  padding-left: 1.25rem;
  position: relative;
}
.takeaways-list li:last-child { border-bottom: none; }
.takeaways-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #9b2335;
  font-size: 0.875rem;
}

/* -- About page team grid -- */
.team-card {
  background-color: #16100f;
  border: 1px solid rgba(138,122,120,0.15);
  overflow: hidden;
}
.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: rgba(155,35,53,0.08);
  overflow: hidden;
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 1.25rem; }
.team-card-name {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #f0e8e6;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.team-card-role {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9b2335;
  margin-bottom: 0.5rem;
}
.team-card-bio { font-size: 0.8125rem; color: #8a7a78; line-height: 1.6; }

/* -- Rotated label (decorative) -- */
.rotated-label {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7a78;
  font-family: 'Satoshi', monospace;
}

/* -- Hairline borders -- */
.hairline { width: 100%; height: 1px; background-color: rgba(138,122,120,0.15); }
.hairline-v { width: 1px; height: 100%; background-color: rgba(138,122,120,0.15); }

/* -- Caption overlay on images -- */
.img-caption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-family: 'Satoshi', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,232,230,0.7);
  background-color: rgba(14,10,11,0.6);
  padding: 0.2rem 0.5rem;
  backdrop-filter: blur(4px);
}

/* -- Methodology page -- */
.methodology-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(138,122,120,0.12);
}
.methodology-step:last-child { border-bottom: none; }
.methodology-step-num {
  font-family: 'Clash Display', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: #9b2335;
  opacity: 0.5;
  line-height: 1;
}
.methodology-step-title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #f0e8e6;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.methodology-step-body { font-size: 0.9rem; color: #8a7a78; line-height: 1.7; }

/* -- Page hero section -- */
.page-hero {
  width: 100%;
  border-bottom: 1px solid rgba(138,122,120,0.15);
  padding: 4rem 0 3rem;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-hero-tag {
  font-family: 'Satoshi', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9b2335;
  margin-bottom: 1rem;
}
.page-hero-title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #f0e8e6;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 36rem;
  margin-bottom: 1.25rem;
}
.page-hero-desc {
  font-size: 1rem;
  color: #8a7a78;
  line-height: 1.7;
  max-width: 42rem;
}

/* -- Content container -- */
.content-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Utility: border-style solid default */
.border, .border-t, .border-b, .border-l, .border-r {
  border-style: solid;
}
