/* ================================================================
   BUREAU ST. JAMES | PRODUCTION STYLESHEET
   Sovereign Architecture. Business, Designed.
   ================================================================
   Inter is the sole typeface. Hierarchy through weight and scale.
   Radical restraint. If it looks designed, strip something out.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&display=swap');

/* Cormorant Garamond: wordmark + editorial moments */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ─── CUSTOM PROPERTIES ─── */

:root {
  /* Palette */
  --bsj-primary:   #1c1c1f;
  --bsj-secondary: #757575;
  --bsj-charcoal:  #2c2c2e;
  --bsj-white:     #ffffff;
  --bsj-wax:       #c0392b;
  --bsj-rule:      #8b8b8d;

  /* Type scale (major third, 1.25) */
  --text-xs:    0.694rem;
  --text-sm:    0.833rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.563rem;
  --text-2xl:   1.953rem;
  --text-3xl:   2.441rem;
  --text-4xl:   3.052rem;

  /* Spacing scale (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.5rem;
  --space-6:  2rem;
  --space-7:  3rem;
  --space-8:  4rem;
  --space-9:  6rem;
  --space-10: 8rem;

  /* Layout */
  --max-width:    1260px;
  --max-prose:    640px;
  --max-narrow:   480px;

  /* Tracking presets */
  --track-tight:  -0.01em;
  --track-normal:  0;
  --track-wide:    0.06em;
  --track-wider:   0.12em;
  --track-widest:  0.24em;

  /* Transitions */
  --ease-default: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration:     200ms;

  /* Border */
  --rule-weight: 1px;
  --rule-color:  var(--bsj-rule);
}


/* ─── RESET ─── */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ─── BASE TYPOGRAPHY ─── */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.618;
  color: var(--bsj-primary);
  background: var(--bsj-white);
}

::selection {
  background: var(--bsj-primary);
  color: var(--bsj-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  line-height: 1.2;
  letter-spacing: var(--track-tight);
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: break-word;
}

/* Section headings use Cormorant Garamond for visual rhythm */
h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

h1 {
  font-size: var(--text-4xl);
  font-weight: 200;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-3xl);
  font-weight: 200;
  letter-spacing: -0.015em;
}

h3 {
  font-size: var(--text-2xl);
  font-weight: 300;
}

h4 {
  font-size: var(--text-xl);
  font-weight: 400;
}

h5 {
  font-size: var(--text-lg);
  font-weight: 500;
}

h6 {
  font-size: var(--text-md);
  font-weight: 500;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
}

p {
  margin-bottom: 1em;
  max-width: 68ch;
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: break-word;
}

p:last-child {
  margin-bottom: 0;
}

blockquote {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: var(--text-xl);
  font-weight: 300;
  font-style: italic;
  color: var(--bsj-secondary);
  line-height: 1.5;
  padding-left: var(--space-6);
  border-left: 2px solid var(--bsj-rule);
  margin: var(--space-6) 0;
}

small,
.text-sm {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-secondary);
}

.caption {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
  transition: border-color var(--duration) var(--ease-default),
              opacity var(--duration) var(--ease-default);
}

a:hover {
  border-bottom-color: var(--bsj-primary);
}

a:focus-visible {
  outline: 2px solid var(--bsj-primary);
  outline-offset: 2px;
}

strong {
  font-weight: 500;
}

em {
  font-style: italic;
}


/* ─── SKIP LINK ─── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--bsj-primary);
  color: var(--bsj-white);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: 0 0 4px 4px;
  z-index: 100;
  transition: top 0.2s;
  border: none;
}

.skip-link:focus {
  top: 0;
}


/* ─── NAVIGATION ─── */

header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

header.scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-7) 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-7);
  padding-right: var(--space-7);
  transition: padding 0.3s ease;
}

header.scrolled .site-nav {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

/* CTA button in nav */
.site-nav__cta {
  display: inline-block;
  padding: 0.5em 1.2em;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bsj-wax);
  background: #e8e6e3;
  border: none;
  border-bottom: none;
  transition: background-color var(--duration) var(--ease-default), color var(--duration) var(--ease-default);
}

.site-nav__links a.site-nav__cta:hover {
  background: var(--bsj-wax);
  color: var(--bsj-white);
  border-bottom: none;
}

.site-nav__wordmark {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  color: var(--bsj-primary);
  border-bottom: none;
}

.site-nav__wordmark:hover {
  border-bottom: none;
}

.site-nav__cross {
  height: 32px;
  width: auto;
  margin-right: var(--space-3);
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.site-nav__links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}

.site-nav__links a {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-secondary);
  border-bottom: none;
  transition: color var(--duration) var(--ease-default);
}

.site-nav__links a:hover {
  color: var(--bsj-primary);
  border-bottom: none;
}

.site-nav__links a[aria-current="page"] {
  color: var(--bsj-primary);
  font-weight: 500;
}

/* Mobile nav toggle */
.site-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.site-nav__toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--bsj-primary);
  margin: 5px 0;
  transition: all 0.3s;
}


/* ─── EYEBROW ─── */

.eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-secondary);
  display: block;
  margin-bottom: var(--space-5);
}


/* ─── HORIZONTAL RULE ─── */

hr {
  border: none;
  height: var(--rule-weight);
  background: var(--bsj-rule);
  margin: var(--space-7) 0;
}


/* ─── LAYOUT UTILITIES ─── */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-7);
  padding-right: var(--space-7);
}

.section {
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
}

.section + .section {
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-7);
}


/* ─── WAX SEAL ACCENT ─── */

.wax-accent {
  color: var(--bsj-wax);
}

.wax-rule {
  width: 32px;
  height: 1px;
  background: var(--bsj-wax);
}

.wax-dot::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bsj-wax);
  margin-right: var(--space-3);
  vertical-align: middle;
}


/* ─── HERO (subpage) ─── */

.hero {
  padding: var(--space-10) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero--centered {
  justify-content: center;
  text-align: center;
}

.hero--centered h1 {
  max-width: 800px;
  margin: 0 auto;
}

.hero--full {
  min-height: 80vh;
}


/* ─── HOMEPAGE ─── */
/*
   Spacing grounded in the golden ratio (φ = 1.618).
   Base rhythm: 1.5rem (24px).
   Scale: 0.572 → 0.927 → 1.5 → 2.427 → 3.927 → 6.354 → 10.28
   Body line-height: φ itself (1.618).
*/

/* Hero: one statement, maximum whitespace */
.hp-hero {
  padding: clamp(6.354rem, 14vh, 10.28rem) 0 clamp(3.927rem, 8vh, 6.354rem);
}

.hp-hero__headline {
  font-size: clamp(3.25rem, 7.5vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--bsj-primary);
}

.hp-hero__headline sup,
.hp-sa__title sup,
h2 sup {
  font-size: 0.35em;
  font-weight: 300;
  vertical-align: super;
  letter-spacing: 0;
  opacity: 0.5;
}

.hp-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--bsj-secondary);
  margin-top: 1.2rem;
  line-height: 1.5;
  max-width: 720px;
}

.hp-hero__subtitle--solution {
  color: var(--bsj-primary);
  font-weight: 400;
  margin-top: 0.8rem;
}

/* Thesis: two-column grid */
.hp-thesis {
  padding: 3.927rem 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.hp-thesis__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.927rem;
  align-items: start;
}

.hp-thesis__lead p {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--bsj-primary);
  letter-spacing: -0.01em;
}

.hp-thesis__body {
  max-width: 520px;
}

.hp-thesis__body p {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.618;
  color: var(--bsj-primary);
  margin-bottom: 0.927rem;
}

.hp-thesis__cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.927rem 2.427rem;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-white);
  background: var(--bsj-wax);
  border: none;
  transition: background 0.4s ease;
}

.hp-thesis__cta:hover {
  background: #a93226;
  border: none;
}

/* The Work: case study */
.hp-work {
  padding: 3.927rem 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.hp-work__headline {
  font-size: clamp(1.375rem, 2.8vw, 2.125rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--bsj-primary);
  margin-bottom: 2.427rem;
}

.hp-work__body {
  max-width: var(--max-prose);
}

.hp-work__body p {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.618;
  color: var(--bsj-primary);
  margin-bottom: 0.927rem;
}

.hp-work__link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-secondary);
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
}

.hp-work__link:hover {
  color: var(--bsj-primary);
  border-bottom-color: var(--bsj-primary);
}

/* Provocation: centered pull quote */
.hp-provocation {
  padding: 6.354rem 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
  text-align: center;
}

.hp-provocation__text {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.125rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--bsj-primary);
  max-width: 740px;
  margin: 0 auto;
  letter-spacing: 0.005em;
}

.hp-provocation__kicker {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-wax);
  margin-top: 2.427rem;
}

.hp-provocation__link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--bsj-secondary);
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
}

.hp-provocation__link:hover {
  color: var(--bsj-primary);
  border-bottom-color: var(--bsj-primary);
}

/* Reading Room: homepage shelf */
.hp-reading {
  padding: 3.927rem 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.hp-reading__link {
  display: inline-block;
  margin-top: 2.427rem;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-secondary);
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
}

.hp-reading__link:hover {
  color: var(--bsj-primary);
  border-bottom-color: var(--bsj-primary);
}

/* Sovereign Architecture: homepage teaser */
.hp-sa {
  padding: 3.927rem 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.hp-sa__title {
  font-size: clamp(1.625rem, 3.2vw, 2.375rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hp-sa__body {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.618;
  color: var(--bsj-primary);
  max-width: var(--max-prose);
  margin-bottom: 0.927rem;
}

.hp-sa__floors {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--bsj-secondary);
  letter-spacing: var(--track-wide);
}

.hp-sa__link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-secondary);
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
}

.hp-sa__link:hover {
  color: var(--bsj-primary);
  border-bottom-color: var(--bsj-primary);
}

/* Contact: homepage form wrapper */
/* ─── BOOKED CONFIRMATION ─── */

.booked {
  padding: var(--space-10) 0;
  text-align: center;
}

.booked__cross {
  width: 48px;
  height: auto;
  margin-bottom: var(--space-5);
}

.booked__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--bsj-primary);
  margin-bottom: var(--space-4);
}

.booked__body {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--bsj-secondary);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto var(--space-3);
}

.booked__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.booked__links a {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-guarantee {
  padding: var(--space-7) 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.hp-guarantee__text {
  max-width: var(--max-prose);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.6;
  color: var(--bsj-primary);
}

.hp-guarantee__link {
  display: inline-block;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-wax);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-founder {
  padding: var(--space-7) 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.hp-founder__row {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.hp-founder__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(100%);
}

.hp-founder__text {
  max-width: var(--max-prose);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.6;
  color: var(--bsj-secondary);
}

.hp-founder__text a {
  color: var(--bsj-primary);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-contact {
  padding: 3.927rem 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
}


/* ─── SA SPEC: pure typographic framework ─── */

.sa-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(2rem, 5vw, 4rem);
  max-width: 800px;
  margin: var(--space-6) auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.sa-spec.in-view {
  opacity: 1;
  transform: translateY(0);
}

.sa-spec__col {
  border-top: var(--rule-weight) solid var(--bsj-primary);
  padding-top: var(--space-3);
}

.sa-spec__heading {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-secondary);
  margin-bottom: var(--space-4);
}

.sa-spec__list {
  margin: 0;
  padding: 0;
}

.sa-spec__item {
  display: flex;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--bsj-rule);
}

.sa-spec__item:last-child {
  border-bottom: none;
}

.sa-spec__item dt {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--bsj-wax);
  letter-spacing: 0.05em;
  line-height: 1.3;
  min-width: 1.5rem;
  flex-shrink: 0;
}

.sa-spec__item dd {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-primary);
  line-height: 1.3;
}

.sa-spec__item dd span,
.sa-spec__item dd p {
  display: block;
  font-size: 0.6875rem;
  font-weight: 300;
  text-transform: none;
  color: var(--bsj-secondary);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-top: 0.15rem;
}

/* Full variant (SA page): wider, more breathing room */
.sa-spec--full {
  max-width: 960px;
  margin-top: var(--space-5);
  gap: 0 clamp(2.5rem, 6vw, 5rem);
}

.sa-spec--full .sa-spec__item {
  padding: 1rem 0;
}

.sa-spec--full .sa-spec__item dd p {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.3rem;
}

/* ─── SA Spec: mobile ─── */
@media (max-width: 768px) {
  .sa-spec {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    max-width: 480px;
  }

  .sa-spec__col--levels {
    border-top: var(--rule-weight) solid var(--bsj-primary);
    padding-top: var(--space-3);
  }
}


/* ─── SA TOWER (homepage stacked-building visual) ─── */

.sa-tower {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 clamp(2rem, 5vw, 4rem);
  max-width: 720px;
  margin: var(--space-6) auto;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.sa-tower.in-view {
  opacity: 1;
  transform: translateY(0);
}

.sa-tower__stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertical spine line connecting all floors */
.sa-tower__stack::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: var(--bsj-rule);
  opacity: 0;
  transition: opacity 0.8s ease 0.3s;
}

.sa-tower.in-view .sa-tower__stack::before {
  opacity: 1;
}

/* Individual floor */
.sa-tower__floor {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: 1rem 0;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sa-tower__floor + .sa-tower__floor {
  border-top: 1px solid rgba(42, 31, 18, 0.08);
}

/* Staggered reveal: top floor first (reversed because visual reads top-down) */
.sa-tower.in-view .sa-tower__floor--01 { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }
.sa-tower.in-view .sa-tower__floor--02 { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.sa-tower.in-view .sa-tower__floor--03 { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.sa-tower.in-view .sa-tower__floor--04 { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }

/* Floor number */
.sa-tower__num {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--bsj-secondary);
  letter-spacing: 0.05em;
  min-width: 2.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  line-height: 1.6;
  opacity: 0.6;
}

/* Accent dot on the spine */
.sa-tower__num::before {
  content: '';
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 3px;
  height: 3px;
  background: var(--bsj-rule);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sa-tower.in-view .sa-tower__num::before {
  opacity: 1;
}

/* Floor plate */
.sa-tower__plate {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border-left: 1.25px solid var(--bsj-rule);
  background: transparent;
  transition: border-color 0.3s ease;
}

.sa-tower__floor:hover .sa-tower__plate {
  border-left-color: var(--bsj-wax);
}

.sa-tower__name {
  display: block;
  font-family: 'Cormorant Garamond', 'Instrument Serif', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--bsj-primary);
  line-height: 1.2;
}

.sa-tower__desc {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--bsj-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 0.25rem;
  opacity: 0.7;
}

/* Levels sidebar */
.sa-tower__levels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  padding: 1rem 0;
  border-left: 1.25px solid rgba(42, 31, 18, 0.1);
  padding-left: clamp(1rem, 2.5vw, 2rem);
  opacity: 0;
  transition: opacity 0.6s ease 1s;
}

.sa-tower.in-view .sa-tower__levels {
  opacity: 1;
}

.sa-tower__level {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.sa-tower__level-tag {
  font-size: 0.5625rem;
  font-weight: 500;
  color: var(--bsj-secondary);
  letter-spacing: 0.05em;
  opacity: 0.5;
}

.sa-tower__level-name {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-secondary);
}

/* SA Tower mobile */
@media (max-width: 768px) {
  .sa-tower {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    max-width: 480px;
  }

  .sa-tower__levels {
    flex-direction: row;
    justify-content: space-between;
    border-left: none;
    border-top: 1px solid var(--bsj-rule);
    padding-left: 0;
    padding-top: var(--space-3);
  }
}


/* ─── DICTIONARY DEFINITION ─── */

.dict-def {
  padding: var(--space-8) 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.dict-def--hero {
  padding: var(--space-8) 0 var(--space-7);
  border-top: none;
}

.dict-def__hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.dict-def--hero .dict-def__term {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.dict-def--hero .dict-def__meanings li {
  font-size: var(--text-md);
}

.dict-def__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dict-def__visual img {
  width: 100%;
  max-width: 500px;
  height: auto;
  opacity: 0.7;
}

.photo-hero .dict-def__visual img {
  opacity: 0.5;
  filter: brightness(2.5) contrast(0.8);
}


/* ─── SA DIAGRAM: Animated four-floor blueprint ─── */

.sa-diagram {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: none;
}

.sa-diagram__num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  fill: #c0392b;
  letter-spacing: 0.05em;
}

.sa-diagram__label {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  fill: #1c1c1f;
  letter-spacing: 0.06em;
}

.sa-diagram__sublabel {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 300;
  fill: #757575;
  letter-spacing: 0.03em;
}

/* Build-up animation */
.sa-diagram__spine {
  opacity: 0;
  transition: opacity 1s ease;
}

.sa-diagram__floor {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.sa-diagram__conn {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.sa-diagram__levels {
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* In-view triggers: staggered build from foundation up */
.sa-diagram.in-view .sa-diagram__spine   { opacity: 0.12; transition-delay: 0s; }
.sa-diagram.in-view .sa-diagram__floor--01 { opacity: 1; transform: translateX(0); transition-delay: 0.15s; }
.sa-diagram.in-view .sa-diagram__conn--01  { opacity: 1; transition-delay: 0.35s; }
.sa-diagram.in-view .sa-diagram__floor--02 { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }
.sa-diagram.in-view .sa-diagram__conn--02  { opacity: 1; transition-delay: 0.6s; }
.sa-diagram.in-view .sa-diagram__floor--03 { opacity: 1; transform: translateX(0); transition-delay: 0.65s; }
.sa-diagram.in-view .sa-diagram__conn--03  { opacity: 1; transition-delay: 0.85s; }
.sa-diagram.in-view .sa-diagram__floor--04 { opacity: 1; transform: translateX(0); transition-delay: 0.9s; }
.sa-diagram.in-view .sa-diagram__levels    { opacity: 1; transition-delay: 1.2s; }

/* Accent bar pulse (continuous after build) */
@keyframes accent-glow {
  0%, 100% { opacity: var(--accent-base); }
  50% { opacity: 1; }
}

.sa-diagram.in-view .sa-diagram__floor--01 .sa-diagram__accent { --accent-base: 0.85; animation: accent-glow 4s ease-in-out 2s infinite; }
.sa-diagram.in-view .sa-diagram__floor--02 .sa-diagram__accent { --accent-base: 0.65; animation: accent-glow 4s ease-in-out 2.3s infinite; }
.sa-diagram.in-view .sa-diagram__floor--03 .sa-diagram__accent { --accent-base: 0.45; animation: accent-glow 4s ease-in-out 2.6s infinite; }
.sa-diagram.in-view .sa-diagram__floor--04 .sa-diagram__accent { --accent-base: 0.28; animation: accent-glow 4s ease-in-out 2.9s infinite; }

@media (max-width: 768px) {
  .dict-def__hero-grid {
    grid-template-columns: 1fr;
  }
  .dict-def__visual {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }
}

.dict-def__entry {
  max-width: 640px;
}

.dict-def__term {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--bsj-primary);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.dict-def__phonetic {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-secondary);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-5);
}

.dict-def__pos {
  font-style: italic;
  font-weight: 400;
}

.dict-def__meanings {
  margin: 0;
  padding-left: 1.2rem;
  list-style: decimal;
}

.dict-def__meanings li {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.6;
  color: var(--bsj-primary);
  padding-left: 0.4rem;
  margin-bottom: var(--space-3);
}

.dict-def__meanings li::marker {
  font-weight: 500;
  color: var(--bsj-secondary);
}

.dict-def__usage {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-secondary);
  line-height: 1.5;
}

.dict-def__usage-label {
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  margin-right: 0.4em;
}

.dict-def__cta {
  display: inline-block;
  margin-top: var(--space-5);
  padding: 0.7em 1.6em;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bsj-white);
  background-color: var(--bsj-wax);
  border: none;
  text-decoration: none;
  transition: background-color var(--duration) var(--ease-default);
}

.dict-def__cta:hover {
  background-color: #a3352d;
}

/* ─── CONVERGENCE: typographic ─── */
.convergence-type {
  padding: var(--space-5) 0;
  margin: 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.convergence-type__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.convergence-type__group {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  border: 1px solid var(--bsj-primary);
  padding: 0.6em 1em;
}

.convergence-type__stream {
  font-size: clamp(0.6rem, 1vw, 0.75rem);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-secondary);
  border: 1px solid var(--bsj-rule);
  padding: 0.35em 0.75em;
}

.convergence-type__arrow {
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  color: var(--bsj-wax);
  font-weight: 300;
}

.convergence-type__brand {
  font-size: clamp(0.7rem, 1.1vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bsj-primary);
}

@media (max-width: 480px) {
  .convergence-type__row { flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
  .convergence-type__group { gap: 0.4rem; padding: 0.5em 0.6em; }
  .convergence-type__stream { font-size: 0.55rem; padding: 0.3em 0.5em; }
}


/* ─── COMPONENT: .provocation ─── */

.provocation {
  padding: var(--space-9) var(--space-7);
  text-align: center;
  max-width: var(--max-prose);
  margin: 0 auto;
}

.provocation__text {
  font-size: var(--text-xl);
  font-weight: 200;
  font-style: italic;
  color: var(--bsj-primary);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  animation: provocation-in 1s var(--ease-default) forwards;
}

.provocation__source {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-secondary);
  margin-top: var(--space-5);
  display: block;
}

.provocation__rule {
  width: 32px;
  height: 1px;
  background: var(--bsj-wax);
  margin: var(--space-5) auto 0;
}

.provocation__cta {
  display: inline-block;
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-secondary);
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
}

@keyframes provocation-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ─── COMPONENT: .outcome-block ─── */

.outcome-block {
  padding: var(--space-6) 0;
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
}

.outcome-block:first-child {
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.outcome-block__label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-primary);
  margin-bottom: var(--space-3);
}

.outcome-block__body {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--bsj-primary);
  line-height: 1.6;
}

.outcome-block__meta {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-secondary);
  margin-top: var(--space-2);
}


/* ─── COMPONENT: .framework-block ─── */

.framework-block {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px dotted var(--bsj-rule);
  align-items: baseline;
}

.framework-block:last-child {
  border-bottom: none;
}

.framework-block__number {
  font-size: var(--text-md);
  font-weight: 200;
  color: var(--bsj-wax);
  letter-spacing: var(--track-wide);
}

.framework-block__title {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-primary);
  margin-bottom: var(--space-2);
}

.framework-block__description {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--bsj-secondary);
  line-height: 1.6;
  max-width: var(--max-prose);
}


/* ─── COMPONENT: .journal-card ─── */

.journal-card {
  display: block;
  text-decoration: none;
  padding: var(--space-5) 0;
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
  transition: opacity var(--duration) var(--ease-default);
}

.journal-card:first-child {
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.journal-card:hover {
  opacity: 0.7;
  border-bottom-color: var(--bsj-rule);
}

.journal-card__category {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-secondary);
  margin-bottom: var(--space-2);
  display: block;
}

.journal-card__title {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--bsj-primary);
  line-height: 1.3;
  margin-bottom: var(--space-2);
}

.journal-card__excerpt {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.journal-card__date {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--bsj-secondary);
  margin-top: var(--space-3);
  display: block;
}

.journal-card--lead .journal-card__title {
  font-size: var(--text-2xl);
  font-weight: 300;
  letter-spacing: var(--track-tight);
}

.journal-card--lead .journal-card__excerpt {
  font-size: var(--text-base);
  font-weight: 300;
  -webkit-line-clamp: 4;
}


/* ─── COMPONENT: .contact-form ─── */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: var(--max-narrow);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: var(--space-3) 0;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-primary);
  background: transparent;
  border: none;
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
  border-radius: 0;
  outline: none;
  transition: border-color var(--duration) var(--ease-default);
  appearance: none;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-bottom-color: var(--bsj-primary);
  outline: 2px solid var(--bsj-primary);
  outline-offset: 2px;
}

.contact-form input:focus:not(:focus-visible),
.contact-form textarea:focus:not(:focus-visible),
.contact-form select:focus:not(:focus-visible) {
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--bsj-secondary);
}

.contact-form textarea {
  resize: none;
  min-height: 72px;
}

.contact-form__submit {
  align-self: flex-start;
  background: transparent;
  color: var(--bsj-secondary);
  border: var(--rule-weight) solid var(--bsj-rule);
  padding: var(--space-3) var(--space-6);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--duration) var(--ease-default),
              border-color var(--duration) var(--ease-default);
  margin-top: var(--space-2);
}

.contact-form__submit:hover {
  color: var(--bsj-primary);
  border-color: var(--bsj-primary);
}


/* ─── COMPONENT: .proof-block ─── */

.proof-block {
  max-width: var(--max-prose);
}

.proof-block__headline {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--bsj-primary);
  margin-bottom: var(--space-6);
}

.proof-block__body {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--bsj-primary);
  line-height: 1.65;
}

.proof-block__body p {
  margin-bottom: var(--space-5);
}

.proof-block__cta {
  display: inline-block;
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-secondary);
}


/* ─── COMPONENT: .insights ─── */

.insights-subtitle {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--bsj-secondary);
  max-width: var(--max-prose);
  line-height: 1.6;
}

.insights-paper {
  max-width: var(--max-prose);
  padding: var(--space-5) 0;
}

.insights-paper__meta {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.insights-paper__meta .eyebrow {
  margin-bottom: 0;
}

.insights-paper__date {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--bsj-secondary);
  letter-spacing: var(--track-wide);
}

.insights-paper__title {
  font-size: var(--text-2xl);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
  line-height: 1.25;
}

.insights-paper__abstract {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.7;
  color: var(--bsj-secondary);
  margin-bottom: var(--space-4);
}

.insights-paper__details {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--bsj-secondary);
  letter-spacing: var(--track-wide);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.insights-paper__sep {
  color: var(--bsj-rule);
}

.insights-paper__link {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  border-bottom: var(--rule-weight) solid var(--bsj-primary);
  padding-bottom: 2px;
  transition: opacity var(--duration) var(--ease-default);
}

.insights-paper__link:hover {
  opacity: 0.6;
}

.insights-cta {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--bsj-white);
  border-bottom: var(--rule-weight) solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color var(--duration) var(--ease-default);
}

.insights-cta:hover {
  border-bottom-color: var(--bsj-white);
}


/* ─── COMPONENT: .reading-room-card ─── */

.rr-card {
  display: block;
  padding: var(--space-6) 0;
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
  transition: opacity var(--duration) var(--ease-default);
}

.rr-card:first-child {
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.rr-card:hover {
  opacity: 0.7;
}

.rr-card__source {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-secondary);
  margin-bottom: var(--space-2);
}

.rr-card__title {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--bsj-primary);
  line-height: 1.3;
  margin-bottom: var(--space-2);
}

.rr-card__annotation {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-secondary);
  line-height: 1.6;
  font-style: italic;
}


/* ─── COMPONENT: .sa-block (Sovereign Architecture) ─── */

.sa-block {
  max-width: var(--max-prose);
}

.sa-block h2 {
  margin-bottom: var(--space-5);
}

.sa-block__body {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.65;
  max-width: var(--max-prose);
}


/* ─── COMPONENT: .pricing-table ─── */

.pricing-table {
  width: 100%;
  max-width: var(--max-prose);
  border-collapse: collapse;
  margin: var(--space-6) 0;
}

.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
  font-size: var(--text-sm);
  font-weight: 300;
}

.pricing-table th {
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--bsj-secondary);
}

.pricing-table td:first-child {
  font-weight: 400;
  color: var(--bsj-secondary);
}


/* ─── COMPONENT: .console-block ─── */

.console-block {
  max-width: var(--max-prose);
}

.console-block__body {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--bsj-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-5);
}

.console-block__cta {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-primary);
}

.console-chat {
  margin-top: var(--space-6);
  max-width: var(--max-prose);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.console-chat__messages {
  max-height: 320px;
  overflow-y: auto;
  padding: var(--space-5);
}

.console-chat__msg {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: 3px;
}

.console-chat__msg--system {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.console-chat__msg--user {
  background: rgba(255, 255, 255, 0.08);
  color: var(--bsj-white);
}

.console-chat__msg--assistant {
  color: rgba(255, 255, 255, 0.85);
}

.console-chat__input {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.console-chat__input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--bsj-white);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 300;
  padding: var(--space-4) var(--space-5);
  outline: none;
}

.console-chat__input input:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: -2px;
}

.console-chat__input input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.console-chat__input button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  transition: color var(--duration) var(--ease-default);
}

.console-chat__input button:hover {
  color: var(--bsj-white);
}

/* Console example prompt chips */
.console-prompts {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.console-prompt {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35em 0.8em;
  cursor: pointer;
  transition: all var(--duration) var(--ease-default);
  border-radius: 2px;
}

.console-prompt:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
}


/* ─── READING ROOM PAGE ─── */

.rr-header {
  max-width: var(--max-prose);
}

.rr-header__subtitle {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--bsj-secondary);
  margin-top: var(--space-3);
}

.rr-filter {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
  flex-wrap: wrap;
}

.rr-filter__label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-secondary);
}

.rr-filter__tag {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--bsj-secondary);
  background: transparent;
  border: var(--rule-weight) solid var(--bsj-rule);
  padding: var(--space-1) var(--space-3);
  cursor: pointer;
  transition: all var(--duration) var(--ease-default);
  font-family: 'Inter', sans-serif;
}

.rr-filter__tag:hover {
  color: var(--bsj-primary);
  border-color: var(--bsj-primary);
}

.rr-filter__tag.active {
  color: var(--bsj-white);
  background: var(--bsj-primary);
  border-color: var(--bsj-primary);
}

.rr-entry {
  padding: var(--space-8) 0;
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
  max-width: var(--max-prose);
  transition: opacity 0.3s var(--ease-default);
}

.rr-entry:first-of-type {
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.rr-entry.hidden {
  display: none;
}

.rr-entry__number {
  font-size: var(--text-sm);
  font-weight: 200;
  color: var(--bsj-wax);
  margin-bottom: var(--space-4);
  display: block;
}

.rr-entry__source {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-secondary);
  margin-bottom: var(--space-2);
}

.rr-entry__title {
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--bsj-primary);
  line-height: 1.3;
  margin-bottom: var(--space-2);
}

.rr-entry__meta {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-secondary);
  margin-bottom: var(--space-5);
}

.rr-entry__annotation {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--bsj-primary);
  line-height: 1.65;
}

.rr-entry__annotation p {
  margin-bottom: var(--space-4);
}

.rr-entry__link {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-secondary);
}

.rr-contributing {
  padding: var(--space-8) 0;
  max-width: var(--max-prose);
}

.rr-contributing p {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-secondary);
  line-height: 1.65;
}


/* ─── ABOUT PAGE ─── */

.about-header {
  padding: var(--space-10) 0 var(--space-8);
}

.about-editorial {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-9);
  align-items: start;
}

.about-editorial__lead h1 {
  font-size: var(--text-4xl);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-3);
}

.about-editorial__role {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-secondary);
  margin-bottom: var(--space-7);
}

.about-editorial__lede {
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.7;
  color: var(--bsj-primary);
  max-width: 560px;
  margin-bottom: var(--space-4);
}

.about-editorial__portrait {
  position: relative;
}

.about-editorial__portrait img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: sepia(0.06) brightness(1.03) contrast(1.02);
}

.about-editorial__break {
  margin: var(--space-8) 0 0;
}

.about-editorial__break img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%);
}

/* Editorial spread: margin notes + body text */

.about-section {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.about-section + .about-section {
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.about-spread {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-6);
}

.about-spread:last-child {
  margin-bottom: 0;
}

.about-spread__margin {
  padding-top: var(--space-1);
  position: sticky;
  top: var(--space-7);
  align-self: start;
}

.about-spread__margin .eyebrow {
  margin-bottom: var(--space-3);
}

.about-spread__note {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-secondary);
  line-height: 1.6;
}

.about-spread__pull {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: var(--text-xl);
  font-weight: 300;
  font-style: italic;
  color: var(--bsj-primary);
  line-height: 1.45;
  border-left: 2px solid var(--bsj-wax);
  padding-left: var(--space-5);
}

.about-spread__text {
  max-width: 620px;
}

.about-spread__text p {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: var(--space-5);
  color: var(--bsj-primary);
}

.about-spread__text p:last-child {
  margin-bottom: 0;
}

/* Horizontal scroll strip: photos laid on a table */
.about-strip {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-8) calc(-1 * var(--space-6));
  padding: 0 var(--space-6);
  scrollbar-width: none;          /* Firefox */
}

.about-strip::-webkit-scrollbar {
  display: none;                   /* Chrome / Safari */
}

.about-strip__frame {
  flex: 0 0 auto;
  width: 320px;
  height: 240px;
  margin: 0;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 2px;
}

.about-strip__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.about-strip__frame img:hover {
  filter: grayscale(0%);
}

.about-strip--narrow .about-strip__frame {
  width: 280px;
  height: 210px;
}

@media (max-width: 640px) {
  .about-strip__frame {
    width: 260px;
    height: 195px;
  }
  .about-strip--narrow .about-strip__frame {
    width: 240px;
    height: 180px;
  }
}

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  max-width: var(--max-width);
}

.credentials__group {
  padding: var(--space-5) 0;
}

.credentials__heading {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-secondary);
  margin-bottom: var(--space-4);
}

.credentials__list {
  list-style: none;
}

.credentials__list li {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-primary);
  line-height: 1.6;
  padding: var(--space-2) 0;
  border-bottom: 1px dotted rgba(139, 139, 141, 0.3);
}

.credentials__list li:last-child {
  border-bottom: none;
}


/* ─── SA PAGE ─── */

.sa-hero {
  padding: var(--space-10) 0 var(--space-9);
}

.sa-hero h1 {
  max-width: 800px;
}

.sa-hero__subline {
  max-width: 640px;
  margin-top: var(--space-5);
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.6;
  color: var(--bsj-secondary);
}

.sa-image {
  margin: 0;
  padding: var(--space-8) 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
  max-width: 100%;
  overflow: hidden;
}

.sa-image img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(100%);
  opacity: 0.7;
}

.sa-section {
  padding: var(--space-9) 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.sa-section__body {
  max-width: var(--max-prose);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.65;
}

.sa-pricing {
  margin: var(--space-7) 0;
  max-width: var(--max-prose);
}

.sa-pricing__item {
  padding: var(--space-6) 0;
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
}

.sa-pricing__item:first-child {
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.sa-pricing__name {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--bsj-primary);
  margin-bottom: var(--space-1);
}

.sa-pricing__price {
  font-size: var(--text-2xl);
  font-weight: 200;
  color: var(--bsj-wax);
  margin-bottom: var(--space-3);
}

.sa-pricing__desc {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-secondary);
  line-height: 1.6;
  max-width: var(--max-prose);
}


/* ─── DARK SECTION VARIANT ─── */

.section--dark {
  background: var(--bsj-primary);
  color: var(--bsj-white);
}

.section--dark .eyebrow,
.section--dark .caption,
.section--dark small {
  color: rgba(255, 255, 255, 0.7);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--bsj-white);
}

.section--dark .outcome-block {
  border-color: rgba(255, 255, 255, 0.1);
}

.section--dark .outcome-block__body {
  color: rgba(255, 255, 255, 0.85);
}

.section--dark a {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.section--dark a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.section--dark .console-block__body {
  color: rgba(255, 255, 255, 0.65);
}

.section--dark .console-block__cta {
  color: var(--bsj-white);
}


/* ─── CHARCOAL SECTION VARIANT ─── */

.section--charcoal {
  background: var(--bsj-charcoal);
  color: var(--bsj-white);
}

.section--charcoal .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}


/* ─── GALLERY PAGE ─── */

.gallery-intro {
  max-width: var(--max-prose);
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--bsj-secondary);
  margin-top: var(--space-5);
  line-height: 1.6;
}

.gallery-piece {
  margin-bottom: var(--space-9);
}

.gallery-piece__title {
  font-size: var(--text-3xl);
  font-weight: 200;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  margin-top: var(--space-3);
}

.gallery-piece__description {
  max-width: var(--max-prose);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.65;
  color: var(--bsj-secondary);
  margin-bottom: var(--space-6);
}

.gallery-piece__slides {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}

.gallery-piece__slide {
  width: 100%;
  height: auto;
  border-radius: 2px;
  border: 1px solid var(--bsj-rule);
}

.gallery-rule {
  border: none;
  border-top: var(--rule-weight) solid var(--bsj-rule);
  margin: var(--space-9) 0;
}

.gallery-piece__cta {
  display: inline-block;
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-secondary);
}

.gallery-piece__cta:hover {
  color: var(--bsj-primary);
}


/* ─── HP: VISUAL ESSAYS ─── */

.hp-essays {
  padding: var(--space-9) 0;
}

.hp-essays__intro {
  font-size: var(--text-sm);
  color: var(--bsj-secondary);
  margin-bottom: var(--space-6);
}

.hp-essays__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.hp-essays__card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--duration) var(--ease-default);
}

.hp-essays__card:hover {
  opacity: 0.8;
}

.hp-essays__thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--bsj-rule);
  margin-bottom: var(--space-3);
  filter: grayscale(100%);
  transition: filter var(--duration) var(--ease-default);
}

.hp-essays__card:hover .hp-essays__thumb {
  filter: grayscale(0%);
}

.hp-essays__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.hp-essays__title {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--track-widest);
}

.hp-essays__count {
  font-size: var(--text-xs);
  color: var(--bsj-secondary);
}

.hp-essays__link {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bsj-wax);
  border-bottom: 1px solid var(--bsj-wax);
}

.hp-essays__link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hp-essays__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}


/* ─── HP: KOHERIANT ─── */

.hp-cg {
  padding: var(--space-9) 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.hp-cg__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-8);
  align-items: center;
}

.hp-cg__title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: var(--track-wide);
  margin-bottom: var(--space-4);
}

.hp-cg__lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--text-xl);
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: var(--space-4);
}

.hp-cg__body {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-3);
}

.hp-cg__summary {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.6;
  color: var(--bsj-secondary);
  margin-top: var(--space-2);
}

.hp-cg__summary em {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1em;
  font-style: italic;
  color: var(--bsj-primary);
}

.hp-cg__cta-alt {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-secondary);
}

.hp-cg__link {
  display: inline-block;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bsj-wax);
  border-bottom: 1px solid var(--bsj-wax);
  transition: opacity var(--duration) var(--ease-default);
}

.hp-cg__link:hover {
  opacity: 0.7;
}

/* Cassette flash: holds ~700ms then dissolves to diagram on scroll */
.hp-cg__visual {
  position: relative;
}



.hp-cg__diagram {
  width: 100%;
  height: auto;
  color: var(--bsj-primary);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hp-cg__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .hp-cg__visual {
    display: none;
  }
}


/* ─── PARTNERS ─── */

.hp-partners {
  padding: var(--space-8) 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.hp-partners__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.2;
  color: var(--bsj-primary);
  margin-top: var(--space-4);
  max-width: var(--max-prose);
}

.hp-partners__lede {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.6;
  color: var(--bsj-secondary);
  margin-top: var(--space-4);
  max-width: var(--max-prose);
}

.hp-partners__context {
  font-size: var(--text-sm);
  font-style: italic;
  font-weight: 300;
  color: var(--bsj-secondary);
  margin-top: var(--space-3);
}

.hp-partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.hp-partners__type {
  padding-top: var(--space-4);
  border-top: 2px solid var(--bsj-wax);
}

.hp-partners__type-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bsj-primary);
}

.hp-partners__type-hook {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
  font-weight: 400;
  color: var(--bsj-wax);
  margin-top: var(--space-2);
  line-height: 1.4;
}

.hp-partners__type-body {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.6;
  color: var(--bsj-secondary);
  margin-top: var(--space-3);
}

.hp-partners__economics {
  margin-top: var(--space-6);
  padding: var(--space-4);
  border: var(--rule-weight) solid var(--bsj-rule);
  max-width: 540px;
}

.hp-partners__economics-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bsj-primary);
}

.hp-partners__economics-body {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.6;
  color: var(--bsj-secondary);
  margin-top: var(--space-2);
}

.hp-partners__cta {
  display: inline-block;
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--bsj-wax);
  border-bottom: 1px solid var(--bsj-wax);
  transition: opacity var(--duration) var(--ease-default);
}

.hp-partners__cta:hover {
  opacity: 0.7;
}

.hp-partners__cta-sub {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-secondary);
  margin-top: var(--space-2);
}

@media (max-width: 768px) {
  .hp-partners__grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .hp-partners__heading {
    font-size: var(--text-xl);
  }
}


/* ─── SOCIAL PROOF STRIP ─── */

.hp-proof {
  padding: var(--space-8) 0;
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.hp-proof__items {
  display: flex;
  gap: var(--space-7);
  margin-bottom: var(--space-6);
}

.hp-proof__item {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-secondary);
  line-height: 1.5;
  flex: 1;
  padding-left: var(--space-4);
  border-left: 2px solid var(--bsj-wax);
  margin: 0;
}

.hp-proof__cta {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bsj-wax);
  border-bottom: 1px solid var(--bsj-wax);
  transition: opacity var(--duration) var(--ease-default);
}

.hp-proof__cta:hover {
  opacity: 0.7;
  border-bottom-color: var(--bsj-wax);
}

@media (max-width: 768px) {
  .hp-proof__items {
    flex-direction: column;
    gap: var(--space-5);
  }
}


/* ─── FOOTER ─── */

.site-footer {
  padding: var(--space-9) 0 var(--space-8);
  border-top: var(--rule-weight) solid var(--bsj-rule);
}

.site-footer__cta-block {
  text-align: center;
  padding-bottom: var(--space-8);
  margin-bottom: var(--space-7);
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
}

.site-footer__prompt {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--text-2xl);
  font-weight: 300;
  margin-bottom: var(--space-5);
  max-width: none;
}

.site-footer__cta-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-white);
  background: var(--bsj-wax);
  border: none;
  transition: background var(--duration) var(--ease-default);
}

.site-footer__cta-btn:hover {
  background: var(--bsj-primary);
  color: var(--bsj-white);
}

.site-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-7);
}

.site-footer__name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-1);
}

.site-footer__tagline {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-secondary);
  max-width: none;
  margin: 0;
}

.site-footer__links {
  margin-top: 0;
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.site-footer__links a {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-secondary);
}

.site-footer__links--secondary {
  margin-top: var(--space-3);
}

.site-footer__links--secondary a {
  font-size: var(--text-xs);
  font-weight: 300;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: var(--space-6);
}

.site-footer__copyright {
  font-size: var(--text-xs);
  color: var(--bsj-secondary);
}

.site-footer__colophon {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--bsj-wax);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .site-footer__main {
    flex-direction: column;
    gap: var(--space-5);
  }

  .site-footer__cta-block {
    padding-bottom: var(--space-6);
    margin-bottom: var(--space-5);
  }

  .site-footer__prompt {
    font-size: var(--text-xl);
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: var(--space-2);
  }

  .site-footer__colophon {
    text-align: left;
  }
}


/* ─── IMAGES ─── */

img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
}

/* Exempt: wax cross, favicon, og-image */
.site-nav__cross,
img[src*="favicon"],
img[src*="og-image"] {
  filter: none;
}

/* Gallery slides: hover to color */
.gallery-piece__slide {
  transition: filter 0.4s ease;
}

.gallery-piece__slide:hover {
  filter: grayscale(0%);
}


/* ─── UTILITY: VISUALLY HIDDEN ─── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ─── RESPONSIVE ─── */

@media (max-width: 960px) {
  .container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  .site-nav {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  .section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .credentials {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  h3 { font-size: var(--text-xl); }

  /* Homepage: tablet */
  .hp-thesis__grid {
    gap: 2.427rem;
  }

  .hp-provocation {
    padding: 3.927rem 0;
  }

  /* About editorial: stack on tablet */
  .about-editorial {
    grid-template-columns: 1fr 260px;
    gap: var(--space-7);
  }

  .about-editorial__portrait img {
    height: auto;
  }

  .about-spread {
    grid-template-columns: 200px 1fr;
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  :root {
    --text-4xl: 2.441rem;
    --text-3xl: 1.953rem;
    --text-2xl: 1.563rem;
  }

  .container {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  .site-nav {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  .site-nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bsj-white);
    padding: var(--space-5);
    border-bottom: var(--rule-weight) solid var(--bsj-rule);
    gap: var(--space-4);
    z-index: 50;
  }

  .site-nav__links.open {
    display: flex;
  }

  .site-nav__toggle {
    display: block;
  }

  .site-nav {
    position: relative;
  }

  /* CTA in mobile dropdown */
  .site-nav__cta {
    text-align: center;
    margin-top: var(--space-2);
  }

  /* Console prompt chips: larger touch targets on mobile */
  .console-prompt {
    padding: 0.5em 1em;
    font-size: var(--text-sm);
  }

  /* Sticky header: tighter on mobile */
  header.scrolled .site-nav {
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
  }

  .section {
    padding-top: var(--space-7);
    padding-bottom: var(--space-8);
  }

  .hero {
    min-height: auto;
    padding: var(--space-8) 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  blockquote {
    font-size: var(--text-base);
    padding-left: var(--space-5);
  }

  .provocation__text {
    font-size: var(--text-lg);
  }

  /* Homepage: mobile */
  .hp-hero {
    padding: 3.927rem 0 2.427rem;
  }

  .hp-thesis__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hp-thesis,
  .hp-work,
  .hp-reading,
  .hp-sa,
  .hp-contact {
    padding: 2.427rem 0;
  }

  .hp-provocation {
    padding: 2.427rem 0;
  }

  /* About editorial: single column on mobile */
  .about-header {
    padding: var(--space-8) 0 var(--space-6);
  }

  .about-editorial {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .about-editorial__lead h1 {
    font-size: var(--text-3xl);
  }

  .about-editorial__portrait {
    order: -1;
  }

  .about-editorial__portrait img {
    height: auto;
    width: 100%;
  }

  .about-spread {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .about-spread__margin {
    position: static;
  }

  .about-spread__pull {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
  }

  .about-section {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
  }

  .about-section + .about-section {
    margin-top: var(--space-2);
  }

  .about-strip {
    gap: var(--space-3);
    margin: var(--space-5) 0;
  }

  .hp-essays {
    padding: var(--space-7) 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .site-nav {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  h1 { font-size: var(--text-2xl); }
  h2 { font-size: var(--text-xl); }

  .journal-card--lead .journal-card__title {
    font-size: var(--text-xl);
  }

  .framework-block {
    grid-template-columns: 40px 1fr;
    gap: var(--space-3);
  }

  .hero {
    min-height: auto;
    padding: var(--space-6) 0;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  /* Homepage: small mobile */
  .hp-hero {
    padding: 2.427rem 0 1.5rem;
  }

  .hp-work__headline {
    font-size: var(--text-xl);
    margin-bottom: 1.5rem;
  }

  .hp-provocation__text {
    font-size: 1.25rem;
  }

  .hp-provocation__kicker {
    margin-top: 1.5rem;
  }

  .sa-spec,
  .sa-tower {
    max-width: 100%;
  }

  .sa-tower__stack::before {
    left: 0.85rem;
  }

  .convergence-type {
    padding: var(--space-4) 0;
  }

  .hp-proof__item {
    padding-left: var(--space-3);
  }

  .hp-essays__grid {
    gap: var(--space-3);
  }
}

/* ─── COMPONENT: .journal-page ─── */

.journal-subtitle {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--bsj-secondary);
  margin-top: var(--space-3);
  max-width: 560px;
}

.journal-controls {
  padding-top: 0;
  padding-bottom: 0;
}

.journal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  border-top: var(--rule-weight) solid var(--bsj-primary);
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
  flex-wrap: wrap;
  gap: var(--space-3);
}

.journal-bar__issue {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-secondary);
}

.journal-bar__filters {
  display: flex;
  gap: var(--space-3);
}

.journal-filter {
  background: none;
  border: none;
  font-family: inherit;
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--bsj-secondary);
  cursor: pointer;
  padding: var(--space-1) var(--space-2);
  transition: color var(--duration) var(--ease-default);
}

.journal-filter:hover {
  color: var(--bsj-primary);
}

.journal-filter.active {
  color: var(--bsj-primary);
  font-weight: 500;
  border-bottom: 1px solid var(--bsj-primary);
}

.journal-bar__count {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--bsj-secondary);
}

/* Feed entries (full display) */

.journal-entry {
  padding: var(--space-6) 0;
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
}

.journal-entry:first-child {
  padding-top: var(--space-5);
}

.journal-entry__meta {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.journal-entry__category {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-wax);
}

.journal-entry__date {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--bsj-secondary);
}

.journal-entry__title {
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--bsj-primary);
  line-height: 1.3;
  margin-bottom: var(--space-3);
}

.journal-entry--featured .journal-entry__title {
  font-size: var(--text-2xl);
  font-weight: 300;
  letter-spacing: var(--track-tight);
}

.journal-entry__body {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--bsj-primary);
  line-height: 1.7;
  max-width: 640px;
}

.journal-entry__id {
  display: block;
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--bsj-secondary);
  opacity: 0.5;
}

/* Archive divider */

.journal-archive-divider {
  padding: var(--space-4) 0 var(--space-3);
}

/* Archive rows (accordion) */

.journal-row {
  border-bottom: var(--rule-weight) solid var(--bsj-rule);
}

.journal-row__header {
  display: grid;
  grid-template-columns: 90px 100px 1fr auto auto;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  cursor: pointer;
  transition: opacity var(--duration) var(--ease-default);
}

.journal-row__header:hover {
  opacity: 0.7;
}

.journal-row__date {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--bsj-secondary);
}

.journal-row__category {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--bsj-secondary);
}

.journal-row__title {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--bsj-primary);
  margin: 0;
}

.journal-row__id {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--bsj-secondary);
  opacity: 0.5;
}

.journal-row__toggle {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-secondary);
  transition: transform 0.2s ease;
  width: 16px;
  text-align: center;
}

.journal-row.open .journal-row__toggle {
  transform: rotate(45deg);
}

.journal-row__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 90px;
}

.journal-row.open .journal-row__body {
  max-height: 600px;
  padding: 0 0 var(--space-5) 90px;
}

.journal-row__body p {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--bsj-primary);
  line-height: 1.7;
  max-width: 560px;
}

/* Journal responsive */

@media (max-width: 768px) {
  .journal-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .journal-row__header {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: var(--space-1) var(--space-3);
  }

  .journal-row__date,
  .journal-row__category {
    grid-row: 2;
  }

  .journal-row__title {
    grid-column: 1 / -1;
  }

  .journal-row__id {
    display: none;
  }

  .journal-row__body {
    padding-left: 0;
  }

  .journal-row.open .journal-row__body {
    padding-left: 0;
  }
}

/* ─── COMPONENT: .privacy-content ─── */

.privacy-content {
  max-width: var(--max-prose);
  margin-top: var(--space-6);
}

.privacy-content h2 {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--bsj-primary);
  margin-top: var(--space-7);
  margin-bottom: var(--space-3);
}

.privacy-content p {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.8;
  color: var(--bsj-primary);
  margin-bottom: var(--space-4);
}

.privacy-content a {
  color: var(--bsj-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── PHOTOGRAPHY SYSTEM ─── */
/*
   White Cube Gallery: #FFFFFF = frame, photography = art.
   Every image earns its place. No decoration. No filler.
   Documentary register. Verwoordt materiality.
*/

/* Full-bleed image divider between sections */
.photo-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}

.photo-divider img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-divider--tall img {
  height: 500px;
}

.photo-divider--short img {
  height: 250px;
}

/* Hero with photographic background */
.photo-hero {
  position: relative;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.photo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.40) 50%,
    rgba(0, 0, 0, 0.30) 100%
  );
  z-index: 1;
}

.photo-hero > * {
  position: relative;
  z-index: 2;
}

.photo-hero h1,
.photo-hero p,
.photo-hero a,
.photo-hero .dict-def__term,
.photo-hero .dict-def__phonetic,
.photo-hero .dict-def__meanings li,
.photo-hero .dict-def__usage,
.photo-hero .dict-def__pos,
.photo-hero .dict-def__usage-label,
.photo-hero .dict-def__cta {
  color: var(--bsj-white);
}

.photo-hero .dict-def__phonetic,
.photo-hero .dict-def__usage,
.photo-hero .dict-def__pos {
  color: rgba(255, 255, 255, 0.7);
}

.photo-hero .dict-def__usage-label {
  color: rgba(255, 255, 255, 0.5);
}

.photo-hero .dict-def__cta {
  background: var(--bsj-white);
  color: var(--bsj-primary);
  border-bottom: none;
}

.photo-hero .dict-def__cta:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Subpage photo hero (SA, About, Insights, etc.) */
.photo-hero--subpage {
  min-height: 60vh;
  background-position: center;
}

.photo-hero--subpage .sa-hero__subline,
.photo-hero--subpage .photo-hero__sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-base);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-top: var(--space-2);
}

.photo-hero--subpage::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.50) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

/* About hero: warm and desaturate so the Midjourney palette
   sits closer to the natural-light restaurant headshot below */
.has-photo-hero .photo-hero--subpage[aria-label="About"] {
  filter: saturate(0.75) sepia(0.06);
}

/* About hero: bump name to be more commanding */
.photo-hero--subpage[aria-label="About"] h1 {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 200;
  letter-spacing: -0.03em;
}

.photo-hero--banner {
  min-height: 400px;
}

.photo-hero--banner::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.50) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

/* Navigation over photo hero: white text */
.has-photo-hero .site-nav__wordmark,
.has-photo-hero .site-nav__links a {
  color: var(--bsj-white);
}

.has-photo-hero .site-nav__links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.has-photo-hero .site-nav__cross {
  filter: brightness(0) invert(1);
}

.has-photo-hero .site-nav__toggle span {
  background: var(--bsj-white);
}

.has-photo-hero header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

/* When scrolled past hero, photo-hero header becomes sticky with dark bg */
.has-photo-hero header.scrolled {
  position: sticky;
  background: rgba(28, 28, 31, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* CTA adapts: transparent over photo, wax red when scrolled */
.has-photo-hero .site-nav__cta {
  background: rgba(255, 255, 255, 0.15);
  color: var(--bsj-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.has-photo-hero .site-nav__cta:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--bsj-white);
}

.has-photo-hero header.scrolled .site-nav__cta {
  background: var(--bsj-wax);
  color: var(--bsj-white);
  border: none;
}

.has-photo-hero header.scrolled .site-nav__cta:hover {
  background: #a3352d;
}

/* Nav text stays white when scrolled on dark bg */
.has-photo-hero header.scrolled .site-nav__wordmark,
.has-photo-hero header.scrolled .site-nav__links a {
  color: var(--bsj-white);
}

.has-photo-hero header.scrolled .site-nav__links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Inset image (float within text) */
.photo-inset {
  float: right;
  width: 280px;
  margin: 0 0 var(--space-5) var(--space-6);
  line-height: 0;
}

.photo-inset img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-inset--left {
  float: left;
  margin: 0 var(--space-6) var(--space-5) 0;
}

/* Floor detail images for SA framework */
.floor-img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  float: right;
  margin: 0 0 var(--space-4) var(--space-5);
  opacity: 0.85;
  transition: opacity 0.4s var(--ease-default);
}

.floor-img:hover {
  opacity: 1;
}

/* Subtle background texture (very low opacity) */
.bg-texture {
  position: relative;
}

.bg-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-texture-url);
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.bg-texture > * {
  position: relative;
  z-index: 1;
}

/* Transition divider: fades to dark for Console section */
.photo-divider--to-dark {
  position: relative;
}

.photo-divider--to-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--bsj-charcoal));
  pointer-events: none;
}

/* WebP support with fallback */
.photo-divider picture,
.photo-hero picture {
  display: contents;
}

/* Smooth scroll reveal for images */
.photo-divider img,
.photo-inset img {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s var(--ease-default), transform 0.8s var(--ease-default);
}

.photo-divider.in-view img,
.photo-inset.in-view img {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive photography */
@media (max-width: 768px) {
  .photo-hero {
    min-height: 70vh;
    background-position: center;
  }

  .photo-hero--subpage {
    min-height: 50vh;
  }

  .photo-hero--banner {
    min-height: 280px;
  }

  .photo-divider img {
    height: 220px;
  }

  .photo-divider--tall img {
    height: 300px;
  }

  .photo-inset {
    float: none;
    width: 100%;
    margin: var(--space-5) 0;
  }

  .photo-inset--left {
    float: none;
    margin: var(--space-5) 0;
  }

  .floor-img {
    width: 100%;
    height: 180px;
    float: none;
    margin: var(--space-4) 0;
  }

  .has-photo-hero header {
    position: sticky;
    background: rgba(28, 28, 31, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

@media (max-width: 480px) {
  .photo-hero {
    min-height: 60vh;
  }

  .photo-divider img {
    height: 180px;
  }

  .photo-divider--tall img {
    height: 240px;
  }
}


/* ─── GALLERY CAROUSEL ─── */

.gallery-carousel {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 var(--space-6);
  padding: var(--space-6) 0 var(--space-8);
  scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.gallery-carousel__track {
  display: flex;
  gap: var(--space-5);
  padding: 0 var(--space-6);
  width: max-content;
}

.gallery-carousel__slide {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 480px;
  line-height: 0;
  margin: 0;
}

.gallery-carousel__slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .gallery-carousel__slide {
    width: 320px;
  }
  .gallery-carousel__slide img {
    height: 240px;
  }
  .gallery-carousel__track {
    padding: 0 var(--space-4);
    gap: var(--space-4);
  }
}

/* ─── REDUCED MOTION ─── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .sa-spec {
    opacity: 1 !important;
    transform: none !important;
  }
}
