/* ============================================================
   BLANC CHEQUE — Main stylesheet
   Mirrors the design handoff (direction-c). All inline React
   styles have been translated into classed CSS using the
   tokens documented in README.md.
   ============================================================ */

:root {
    --red:   #E8263A;
    --cream: #F2ECE0;
    --ink:   #0A0908;
    --dim:   rgba(242, 236, 224, 0.45);
    --faint: rgba(242, 236, 224, 0.25);
    --line:  rgba(242, 236, 224, 0.12);
    --wash:  rgba(242, 236, 224, 0.02);

    --content-max: 1200px;
    --gutter: 32px;
}

/* ——— Reset & base ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
    background: var(--ink);
    color: var(--cream);
    font-family: 'JetBrains Mono', monospace;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ——— Page transitions ——— */
#bc-transition {
    position: fixed;
    inset: 0;
    z-index: 99990;
    background: var(--ink);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
#bc-transition.is-entering { opacity: 1; pointer-events: all; }
#bc-transition.is-leaving  { opacity: 0; }
#bc-transition__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
}

/* ——— Custom cursor (desktop/mouse only) ——— */
@media (hover: hover) and (pointer: fine) {
    body.has-custom-cursor *,
    body.has-custom-cursor *::before,
    body.has-custom-cursor *::after { cursor: none !important; }
}

#bc-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease, opacity 0.2s ease, width 0.15s ease, height 0.15s ease;
}
#bc-cursor.is-hovering {
    width: 24px;
    height: 24px;
    background: transparent;
    border: 1px solid var(--red);
}
img { max-width: 100%; display: block; }
::selection { background: var(--red); color: var(--cream); }

/* ——— Scroll reveals ——— */
.bc-reveal {
    opacity: 0;
    transition: opacity 0.8s ease;
}
.bc-reveal.is-visible {
    opacity: 1;
}
.bc-reveal.delay-1 { transition-delay: 0.1s; }
.bc-reveal.delay-2 { transition-delay: 0.2s; }
.bc-reveal.delay-3 { transition-delay: 0.3s; }
.bc-reveal.delay-4 { transition-delay: 0.4s; }
.bc-reveal.delay-5 { transition-delay: 0.5s; }

/* ——— Type utilities ——— */
.bc-mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.bc-display {
    font-family: 'Fraunces', 'Times New Roman', serif;
    font-weight: 300;
}

/* ——— Layout ——— */
.bc-container {
    max-width: var(--content-max);
    margin: 0 auto;
}

/* ============================================================
   INTRO SEQUENCE (home page only, sessionStorage-gated)
   ============================================================ */
.bc-intro {
    position: fixed;
    inset: 0;
    z-index: 20;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bc-intro.bc-intro--done {
    animation: bcVaultFade 0.4s forwards;
}
.bc-intro__inner {
    width: min(600px, 90vw);
    padding: 24px;
}
.bc-intro__system {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}
.bc-intro__line {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 8px;
}
.bc-intro__line.is-active { color: var(--cream); }
.bc-intro__cursor { animation: bcBlink 0.8s infinite; }

@keyframes bcVaultFade { to { opacity: 0; pointer-events: none; } }
@keyframes bcBlink     { 50% { opacity: 0; } }
@keyframes bcPulse     { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ============================================================
   NAV (sticky, blurred)
   ============================================================ */
.bc-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--gutter);
    height: 56px;
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(10, 9, 8, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
}
.bc-nav__brand {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}
/* WordPress wraps custom-logo in a figure/a */
.bc-nav__brand .custom-logo-link,
.bc-nav__brand figure { line-height: 0; }
.bc-nav__brand .custom-logo { height: 40px; width: auto; display: block; }
.bc-nav__brand-mark {
    width: 16px;
    height: 16px;
}
.bc-nav__brand-name {
    color: var(--cream);
    font-weight: 500;
    white-space: nowrap;
}
.bc-nav__brand-suffix {
    color: var(--faint);
    white-space: nowrap;
}
.bc-nav__menu {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
    list-style: none;
}
.bc-nav__menu a {
    color: var(--dim);
    transition: color 0.15s;
    white-space: nowrap;
    cursor: pointer;
}
.bc-nav__menu a:hover { color: var(--cream); }
.bc-nav__menu li.current-menu-item a,
.bc-nav__menu li.current_page_item a,
.bc-nav__menu li.current-menu-parent a,
.bc-nav__menu a.is-current { color: var(--red); }

.bc-clock {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    color: var(--dim);
}
.bc-clock__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: bcPulse 1.6s infinite;
}

/* ============================================================
   META STRIP (under nav, 4 cells)
   ============================================================ */
.bc-meta-strip {
    padding: 10px var(--gutter);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    color: var(--dim);
    font-size: 10px;
}
.bc-meta-strip > :last-child { text-align: right; }
.bc-meta-strip .is-active { color: var(--red); }
.bc-meta-strip .is-open   { color: var(--cream); }

/* Inner pages have a 3-cell meta strip */
.bc-meta-strip--inner {
    display: flex;
    justify-content: space-between;
}

/* ============================================================
   REDACTED SPAN
   ============================================================ */
.bc-redacted {
    background: var(--cream);
    color: var(--cream);
    padding: 0 4px;
    transition: color 0.25s;
    cursor: help;
    border-radius: 1px;
    user-select: none;
}
.bc-redacted:hover { color: var(--ink); }

/* ============================================================
   HOME — HERO
   ============================================================ */
.bc-hero {
    padding: 128px var(--gutter) 112px;
    position: relative;
}
.bc-hero__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    position: relative;
}
.bc-hero__eyebrow {
    color: var(--red);
    margin-bottom: 48px;
    display: flex;
    gap: 16px;
    align-items: center;
}
.bc-hero__eyebrow .is-faint { color: var(--faint); }
.bc-hero__title {
    font-family: 'Fraunces', 'Times New Roman', serif;
    font-size: clamp(56px, 13vw, 220px);
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 0.92;
    color: var(--cream);
    text-wrap: balance;
}
.bc-hero__title em       { font-style: italic; }
.bc-hero__title .is-red  { color: var(--red); font-style: italic; }
.bc-hero__abstract {
    margin-top: 96px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: start;
}
.bc-hero__abstract-label { color: var(--red); }
.bc-hero__abstract-body  { max-width: 680px; }
.bc-hero__abstract-body p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.02em;
    color: var(--cream);
    text-transform: none;
}
.bc-hero__abstract-body .bc-hint {
    font-size: 12px;
    line-height: 1.7;
    color: var(--faint);
    margin-top: 20px;
}
.bc-stamp--hero {
    position: absolute;
    top: -40px;
    right: 8px;
    opacity: 0.9;
}

/* ============================================================
   LEDGER (home)
   ============================================================ */
.bc-section { padding: 80px var(--gutter); border-top: 1px solid var(--line); }
.bc-section--tenets  { padding: 112px var(--gutter); }
.bc-section--signed  { padding: 144px var(--gutter) 176px; text-align: center; }

.bc-ledger__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 32px;
}
.bc-ledger__head .bc-eyebrow { color: var(--red); }
.bc-ledger__head .bc-hint    { color: var(--faint); font-size: 10px; }

.bc-ledger-row {
    border-top: 1px solid var(--line);
    padding: 20px 0;
    transition: background 0.2s;
}
.bc-ledger-row:hover { background: var(--wash); }
.bc-ledger-row__cells {
    display: grid;
    grid-template-columns: 120px 1fr 1fr 200px 80px;
    gap: 24px;
    align-items: center;
    font-size: 13px;
}
.bc-ledger-row__id     { color: var(--dim); }
.bc-ledger-row__type,
.bc-ledger-row__place  { color: var(--cream); }
.bc-ledger-row.is-redacted .bc-ledger-row__type,
.bc-ledger-row.is-redacted .bc-ledger-row__place { color: var(--faint); }
.bc-ledger-row__year   { text-align: right; color: var(--dim); }
.bc-ledger-row__status[data-status="OPEN"]        { color: var(--red); }
.bc-ledger-row__status[data-status="DEVELOPMENT"] { color: var(--cream); }
.bc-ledger-row__status[data-status="SCOUTING"]    { color: var(--dim); }

.bc-ledger-row__detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
    font-size: 11px;
    color: var(--dim);
    letter-spacing: 0.04em;
    text-transform: none;
}
.bc-ledger-row:hover .bc-ledger-row__detail { max-height: 60px; }
.bc-ledger-row__detail-inner { padding-top: 12px; padding-left: 120px; }

.bc-ledger__foot {
    border-top: 1px solid var(--line);
    padding: 14px 0;
    font-size: 10px;
    color: var(--faint);
    display: flex;
    justify-content: space-between;
}

/* ============================================================
   HUMAN MOMENT (home)
   ============================================================ */
.bc-section--human {
    padding: 112px var(--gutter) 96px;
    text-align: center;
}
.bc-human__inner {
    max-width: 800px;
    margin: 0 auto;
}
.bc-human__line {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 300;
    font-style: italic;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--cream);
}
.bc-human__line:first-child {
    color: var(--dim);
}

/* ============================================================
   TENETS (home, 3-col)
   ============================================================ */
.bc-tenets__label { color: var(--red); margin-bottom: 40px; }
.bc-tenets__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--line);
}
.bc-tenet {
    background: var(--ink);
    padding: 36px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bc-tenet__num    { color: var(--red); font-size: 10px; }
.bc-tenet__title {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -0.02em;
    font-style: italic;
}
.bc-tenet__desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    line-height: 1.7;
    margin-top: 14px;
    color: var(--dim);
    text-transform: none;
    letter-spacing: 0.02em;
}

/* ============================================================
   SIGNED CLOSER (home)
   ============================================================ */
.bc-signed__label { color: var(--dim); margin-bottom: 32px; }
.bc-signed__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(48px, 9vw, 160px);
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 0.95;
    font-style: italic;
}
.bc-signed__title .is-red { color: var(--red); }
.bc-signed__byline {
    margin-top: 48px;
    display: inline-flex;
    gap: 24px;
    color: var(--faint);
    font-size: 10px;
}

/* ============================================================
   PAGE SHELL (about, journal, press, careers, contact)
   ============================================================ */
.bc-page-hero {
    padding: 112px var(--gutter) 8px;
    position: relative;
}
.bc-page-hero__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    position: relative;
}
.bc-page-hero__eyebrow {
    color: var(--red);
    margin-bottom: 36px;
}
.bc-page-hero__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(64px, 10vw, 180px);
    font-style: normal;
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-wrap: balance;
}
.bc-page-hero__title em        { font-style: italic; }
.bc-page-hero__title .is-red   { color: var(--red); font-style: italic; }

/* ============================================================
   ABOUT
   ============================================================ */
.bc-about__premise {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
}
.bc-about__premise-label { color: var(--red); }
.bc-about__premise-body  { max-width: 760px; }
.bc-about__premise-body .bc-lede {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.35;
    font-style: italic;
    color: var(--cream);
    text-wrap: pretty;
}
.bc-about__premise-body .bc-prose {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.75;
    margin-top: 32px;
    color: var(--dim);
    text-transform: none;
    letter-spacing: 0.02em;
}

.bc-about__rules {
    margin-top: 112px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--line);
}
.bc-rule {
    background: var(--ink);
    padding: 36px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
}
.bc-rule__key {
    color: var(--red);
    font-size: 14px;
    font-family: 'JetBrains Mono', monospace;
    margin-top: 6px;
}
.bc-rule__statement {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.25;
    font-style: italic;
}

.bc-about__signatures {
    margin-top: 112px;
    position: relative;
}
.bc-stamp--about {
    position: absolute;
    right: 0;
    top: -20px;
}
.bc-about__signatures-label { color: var(--red); margin-bottom: 20px; }
.bc-about__signatures-text {
    font-family: 'Fraunces', serif;
    font-size: 40px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: -0.02em;
    color: var(--dim);
}
.bc-about__signatures-text .is-cream { color: var(--cream); }

/* ============================================================
   JOURNAL (list)
   ============================================================ */
.bc-journal-list {
    margin-top: 80px;
    border: 1px solid var(--line);
}
.bc-journal-row {
    display: grid;
    grid-template-columns: 120px 140px 120px 1fr 70px 40px;
    gap: 20px;
    align-items: baseline;
    padding: 26px 20px;
    cursor: pointer;
    transition: background 0.15s, padding-left 0.2s;
}
.bc-journal-row + .bc-journal-row { border-top: 1px solid var(--line); }
.bc-journal-row:hover {
    background: rgba(242, 236, 224, 0.03);
    padding-left: 32px;
}
.bc-journal-row__date    { color: var(--dim); font-size: 11px; }
.bc-journal-row__tag     { color: var(--red); font-size: 11px; }
.bc-journal-row__ref     { color: var(--faint); font-size: 10px; }
.bc-journal-row__title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.01em;
    color: var(--cream);
    line-height: 1.2;
}
.bc-journal-row__read    { color: var(--dim); font-size: 10px; }
.bc-journal-row__arrow   { text-align: right; color: var(--dim); font-size: 18px; }
.bc-journal-row__meta-mobile { display: none; }
.bc-journal-foot {
    margin-top: 32px;
    color: var(--faint);
    font-size: 10px;
    text-align: center;
}

/* ============================================================
   JOURNAL (single post)
   ============================================================ */
.bc-back-btn {
    color: var(--red);
    cursor: pointer;
    font-size: 10px;
    background: none;
    border: none;
    padding: 0;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.bc-post {
    padding: 96px var(--gutter) 128px;
}
.bc-post__inner {
    max-width: 800px;
    margin: 0 auto;
}
.bc-post__tag {
    color: var(--red);
    margin-bottom: 28px;
}
.bc-post__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.05;
    font-style: italic;
    margin-bottom: 64px;
}
.bc-post__hero {
    width: 100%;
    aspect-ratio: 16 / 7;
    margin-bottom: 56px;
    background:
        repeating-linear-gradient(135deg, rgba(242,236,224,0.04) 0 1px, transparent 1px 14px);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--faint);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.bc-post__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bc-post__lede {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: 28px;
}
.bc-post__body p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: var(--dim);
    margin-bottom: 28px;
    text-transform: none;
}
.bc-post__body p:first-child {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    letter-spacing: -0.01em;
}
.bc-post__foot {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    color: var(--faint);
    font-size: 10px;
}

/* ============================================================
   PRESS
   ============================================================ */
.bc-press {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
}
.bc-press__label { color: var(--red); }
.bc-press__email {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    margin-top: 10px;
}
.bc-press__group { margin-top: 40px; }
.bc-press__kit-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 12px 18px;
    border: 1px solid var(--line);
    font-size: 11px;
    color: var(--cream);
    cursor: pointer;
    transition: background 0.15s;
}
.bc-press__kit-link:hover { background: rgba(242, 236, 224, 0.04); }

.bc-press__logos {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.bc-press__logos a {
    padding: 6px 10px;
    border: 1px solid var(--line);
    font-size: 10px;
    color: var(--cream);
    cursor: pointer;
    transition: background 0.15s;
}
.bc-press__logos a:hover { background: rgba(242, 236, 224, 0.06); }

.bc-press__coverage {
    margin-top: 20px;
    border: 1px solid var(--line);
}
.bc-press__item {
    padding: 24px 20px;
}
.bc-press__item + .bc-press__item { border-top: 1px solid var(--line); }
.bc-press__item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}
.bc-press__item-pub  { color: var(--red); font-size: 11px; }
.bc-press__item-year { color: var(--faint); font-size: 10px; }
.bc-press__item-quote {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 8px;
}
.bc-press__item-note {
    font-size: 10px;
    color: var(--faint);
    text-transform: none;
    letter-spacing: 0.03em;
}

/* ============================================================
   CAREERS — POSITION LIST
   ============================================================ */
.bc-careers__list-header {
    color: var(--red);
}
.bc-careers__position-row {
    border-top: 1px solid var(--line);
}
.bc-careers__position-summary {
    display: grid;
    grid-template-columns: 140px 1fr 160px 80px 24px;
    gap: 24px;
    padding: 18px 20px;
    cursor: pointer;
    transition: background 0.15s;
    align-items: center;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.bc-careers__position-summary:hover { background: var(--wash); }
.bc-careers__position-summary .pos-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--cream);
}
.bc-careers__position-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.bc-careers__position-row.is-open .bc-careers__position-detail {
    max-height: 9999px;
}
.bc-careers__position-row.is-open .pos-arrow {
    transform: rotate(180deg);
}

/* Open application footer row */
.bc-careers__open-application-row {
    border-top: 1px solid var(--line);
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 140px 1fr 160px 80px;
    gap: 24px;
    align-items: center;
    font-size: 11px;
    color: var(--dim);
}
.bc-careers__open-application-row .oar-ref    { color: var(--faint); }
.bc-careers__open-application-row .oar-title  { color: var(--dim); }
.bc-careers__open-application-row .oar-type   { color: var(--faint); }
.bc-careers__open-application-row .oar-status { color: var(--red); text-align: right; }

/* ============================================================
   CAREERS
   ============================================================ */
.bc-careers__role {
    margin-top: 72px;
    border: 1px solid var(--line);
}
.bc-careers__role-head {
    padding: 28px 28px 24px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 24px;
}
.bc-careers__role-id {
    color: var(--red);
    font-size: 10px;
    margin-bottom: 12px;
}
.bc-careers__role-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 72px);
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1;
}
.bc-careers__role-sub {
    font-size: 11px;
    color: var(--dim);
    margin-top: 10px;
    text-transform: none;
    letter-spacing: 0.03em;
}
.bc-careers__role-status {
    font-size: 10px;
    color: var(--red);
}
.bc-careers__section {
    padding: 28px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 32px;
}
.bc-careers__section-label { color: var(--red); font-size: 10px; }
.bc-careers__lede {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.35;
    text-wrap: balance;
}
.bc-careers__list-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding-top: 14px;
}
.bc-careers__list-item + .bc-careers__list-item { border-top: 1px solid var(--line); }
.bc-careers__list-item:first-child { padding-top: 0; }
.bc-careers__list-key { font-size: 10px; color: var(--dim); }
.bc-careers__list-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    line-height: 1.7;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--cream);
}
.bc-careers__reqs p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    line-height: 1.7;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--dim);
    margin-bottom: 10px;
}
.bc-careers__reqs p::before {
    content: "◆";
    color: var(--red);
    margin-right: 10px;
}
.bc-careers__comp {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    line-height: 1.7;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--cream);
}
.bc-careers__open-row {
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 11px;
    color: var(--dim);
}
.bc-careers__open-row .is-red { color: var(--red); }

.bc-careers__form-wrap { margin-top: 72px; }
.bc-careers__form-label {
    color: var(--red);
    margin-bottom: 28px;
}
.bc-careers__form {
    border: 1px solid var(--line);
}
.bc-careers__form-field {
    border-bottom: 1px solid var(--line);
}
.bc-careers__form-field label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    padding: 12px 20px 4px;
}
.bc-careers__form-field input,
.bc-careers__form-field textarea {
    display: block;
    width: 100%;
    background: none;
    border: none;
    padding: 8px 20px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--cream);
    outline: none;
    letter-spacing: 0.02em;
    resize: vertical;
}
.bc-careers__form-field input::placeholder,
.bc-careers__form-field textarea::placeholder { color: var(--dim); }
.bc-careers__form-foot {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bc-careers__form-note {
    font-size: 10px;
    color: var(--faint);
    text-transform: none;
}
.bc-careers__form-submit {
    padding: 12px 28px;
    background: var(--red);
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.15s;
}
.bc-careers__form-submit:hover { opacity: 0.85; }

.bc-careers__sent {
    padding: 32px;
    border: 1px solid var(--line);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--cream);
    text-transform: none;
    letter-spacing: 0.03em;
    line-height: 1.8;
}
.bc-careers__sent .is-dim { color: var(--dim); }

/* ============================================================
   CONTACT
   ============================================================ */
.bc-contact__grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--line);
    border: 1px solid var(--line);
}
.bc-contact__cell {
    background: var(--ink);
    padding: 28px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bc-contact__cell-label { color: var(--red); font-size: 10px; }
.bc-contact__cell-val {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    margin-top: 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.bc-contact__note {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.bc-contact__note-label { color: var(--red); }
.bc-contact__note-body {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 300;
    font-style: italic;
    margin-top: 16px;
    line-height: 1.3;
    text-wrap: balance;
}
.bc-contact__stamp { text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.bc-footer {
    background: var(--ink);
    border-top: 1px solid var(--line);
    padding: 72px var(--gutter) 32px;
}
.bc-footer__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}
.bc-footer__display {
    font-family: 'Fraunces', serif;
    font-size: clamp(48px, 14vw, 220px);
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 0.9;
    font-style: italic;
}
.bc-footer__display .is-outline {
    -webkit-text-stroke: 1px var(--cream);
    color: transparent;
}
.bc-footer__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 56px;
    color: var(--faint);
    font-size: 10px;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}
.bc-footer__nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    list-style: none;
}
.bc-footer__nav a { cursor: pointer; }
.bc-footer__social {
    display: flex;
    gap: 16px;
    align-items: center;
}
.bc-footer__social a {
    color: var(--faint);
    transition: color 0.15s;
}
.bc-footer__social a:hover { color: var(--cream); }
.bc-footer__social .bc-divider { opacity: 0.3; }

/* ============================================================
   RESPONSIVE — narrow viewports
   ============================================================ */
@media (max-width: 900px) {
    .bc-meta-strip {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        font-size: 9px;
    }
    .bc-meta-strip > :last-child { text-align: left; }

    .bc-hero { padding: 80px var(--gutter) 64px; }
    .bc-hero__abstract { grid-template-columns: 1fr; gap: 24px; }

    .bc-tenets__grid { grid-template-columns: 1fr; }
    .bc-tenet { min-height: 0; padding: 28px; }
    .bc-tenet__title { font-size: 36px; }

    .bc-ledger-row__cells {
        grid-template-columns: 80px 1fr 90px;
        gap: 12px;
        font-size: 11px;
    }
    .bc-ledger-row__place,
    .bc-ledger-row__year { display: none; }
    .bc-ledger-row__detail-inner { padding-left: 0; }

    .bc-about__premise { grid-template-columns: 1fr; gap: 24px; }
    .bc-about__premise-body .bc-lede { font-size: 24px; }
    .bc-about__rules { grid-template-columns: 1fr; }
    .bc-rule__statement { font-size: 22px; }

    .bc-journal-row {
        grid-template-columns: 90px 1fr 30px;
        gap: 12px;
    }
    .bc-journal-row__tag,
    .bc-journal-row__ref,
    .bc-journal-row__read { display: none; }
    .bc-journal-row__title { font-size: 18px; }

    .bc-press { grid-template-columns: 1fr; gap: 40px; }
    .bc-careers__section { grid-template-columns: 1fr; gap: 16px; }
    .bc-careers__list-item { grid-template-columns: 1fr; }

    .bc-contact__grid { grid-template-columns: 1fr; }
    .bc-contact__note { grid-template-columns: 1fr; gap: 32px; }

    .bc-nav__brand-suffix { display: none; }
    .bc-nav__menu { gap: 12px; }
    .bc-nav__menu a { font-size: 9px; }
    .bc-clock { font-size: 9px; }
}

@media (max-width: 640px) {
    .bc-nav__menu { display: none; }
    .bc-nav { justify-content: space-between; }
}
