/* =====================================================================
   FRAJ BESBES — Premium Heritage Design System
   ===================================================================== */

/* ─────────────────────────────────────────────
   1. CSS Custom Properties (Design Tokens)
───────────────────────────────────────────── */
:root {
  /* Colors */
  --gold:        #C4973A;
  --gold-light:  #D4AA50;
  --gold-dark:   #9A7220;
  --gold-pale:   #F5EDD6;
  --dark:        #1A1714;
  --dark-mid:    #2C2820;
  --dark-light:  #3D3830;
  --cream:       #F5F0E6;
  --cream-dark:  #EAE3D2;
  --parchment:   #F5F0E6;
  --warm-grey:   #8E8078;
  --warm-grey-light: #BDB5AB;
  --text:        #111111;
  --text-mid:    #333333;
  --text-light:  #666666;
  --white:       #FFFFFF;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-serif:   'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Lora', 'Georgia', serif;
  --font-cinzel:  'Cinzel', 'Trajan Pro', serif;
  --font-script:  'Monotype Corsiva', 'Pinyon Script', cursive;

  /* Spacing */
  --space-xs:  0.35rem;
  --space-sm:  0.65rem;
  --space-md:  1rem;
  --space-lg:  1.75rem;
  --space-xl:  2.75rem;
  --space-2xl: 3.75rem;
  --space-3xl: 5rem;

  /* Layout */
  --max-width:        1280px;
  --max-width-narrow: 820px;
  --header-height:    90px;

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in:    cubic-bezier(0.4, 0.0, 1, 1);
  --transition: 0.35s var(--ease);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 30px rgba(196, 151, 58, 0.25);

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ─────────────────────────────────────────────
   2. Reset & Base
───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 22px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.fb-site {
  padding-top: var(--header-height);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
svg { display: block; }
p { text-align: justify; }

/* ─────────────────────────────────────────────
   3. Layout Utilities
───────────────────────────────────────────── */
.fb-container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(3rem, 8vw, 8rem);
}

.fb-container--narrow {
  max-width: none;
}

/* ─────────────────────────────────────────────
   4. Typography
───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }

p {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
}

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

em { font-style: italic; color: var(--gold); }

strong { font-weight: 700; color: var(--dark); }

/* ─────────────────────────────────────────────
   5. Dividers
───────────────────────────────────────────── */
.fb-divider {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-md) auto;
  justify-content: center;
}

.fb-divider--left { justify-content: flex-start; }
.fb-divider--small { gap: 0.5rem; margin: var(--space-sm) auto; }

.fb-divider__line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.fb-divider--left .fb-divider__line:first-child { max-width: 0; }

.fb-divider__gem {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.fb-divider--light .fb-divider__line {
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
}
.fb-divider--light .fb-divider__gem { color: rgba(255,255,255,0.6); }

.fb-divider--hero .fb-divider__line { max-width: 120px; }
.fb-divider--hero .fb-divider__gem { font-size: 0.8rem; color: var(--gold); }

/* ─────────────────────────────────────────────
   6. Buttons
───────────────────────────────────────────── */
.fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.fb-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}

.fb-btn:hover::before { transform: translateX(0); }

.fb-btn--primary {
  background: var(--gold);
  color: var(--dark);
}
.fb-btn--primary::before { background: var(--gold-dark); }
.fb-btn--primary:hover { color: var(--white); box-shadow: var(--shadow-gold); }

.fb-btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.fb-btn--outline::before { background: var(--dark); }
.fb-btn--outline:hover { color: var(--white); }

.fb-btn--outline.fb-btn--light {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.fb-btn--outline.fb-btn--light::before { background: rgba(255,255,255,0.1); }
.fb-btn--outline.fb-btn--light:hover { color: var(--white); border-color: var(--white); }

.fb-btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.fb-btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

.fb-btn--large { padding: 1.125rem 2.5rem; font-size: 0.9375rem; }

.fb-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--space-md);
  transition: gap var(--transition), color var(--transition);
}
.fb-link-arrow:hover { gap: 0.8rem; color: var(--gold-dark); }
.fb-link-arrow svg { transition: transform var(--transition); }
.fb-link-arrow:hover svg { transform: translateX(4px); }

/* ─────────────────────────────────────────────
   7. Scroll Reveal Animations
───────────────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ─────────────────────────────────────────────
   8. HEADER / NAVIGATION
───────────────────────────────────────────── */
.fb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(245, 240, 230, 0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 151, 58, 0.2);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.fb-header .fb-header__logo-first { color: #111111; }
.fb-header .fb-header__logo-last  { color: var(--gold); }

.fb-header .fb-hamburger span {
  background: var(--dark);
}

.fb-header.is-scrolled {
  background: rgba(20, 17, 14, 1);
  border-bottom-color: rgba(196, 151, 58, 0.3);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.fb-header.is-scrolled .fb-nav__link {
  color: var(--gold);
}

.fb-header.is-scrolled .fb-header__logo-first { color: #F5F0E6; }
.fb-header.is-scrolled .fb-header__logo-last  { color: var(--gold); }

.fb-header.is-scrolled .fb-hamburger span {
  background: var(--white);
}

.fb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline-start: clamp(3rem, 8vw, 8rem);
  padding-inline-end: clamp(1.5rem, 3vw, 3rem);
}

/* Logo */
.fb-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity var(--transition);
}
.fb-header__logo:hover { opacity: 0.8; }

.fb-header__logo-ornament {
  color: var(--gold);
  font-size: 1.1rem;
}

.fb-header__logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.fb-header__logo-dates {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
}

/* Nav */
.fb-nav__list {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.fb-nav__link {
  font-family: 'Lora', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition);
}

.fb-nav__link:hover,
.fb-nav__link.is-active {
  color: var(--gold);
}

/* Hamburger */
.fb-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
}

.fb-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.fb-hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.fb-hamburger.is-open span:nth-child(2) { opacity: 0; }
.fb-hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile nav */
.fb-mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(26, 23, 20, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: var(--space-lg);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 999;
}

.fb-mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.fb-mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.fb-mobile-nav__list a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  transition: color var(--transition);
}

.fb-mobile-nav__list a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .fb-nav { display: none; }
  .fb-hamburger { display: flex; }
}

/* ─────────────────────────────────────────────
   9. HERO SECTION
───────────────────────────────────────────── */
.fb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

/* Tunisian geometric SVG pattern background */
.fb-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23C4973A' stroke-width='0.5' opacity='0.15'%3E%3Crect x='20' y='20' width='40' height='40' transform='rotate(45 40 40)'/%3E%3Crect x='30' y='30' width='20' height='20' transform='rotate(45 40 40)'/%3E%3Ccircle cx='40' cy='40' r='3' fill='%23C4973A'/%3E%3Cline x1='0' y1='40' x2='20' y2='40'/%3E%3Cline x1='60' y1='40' x2='80' y2='40'/%3E%3Cline x1='40' y1='0' x2='40' y2='20'/%3E%3Cline x1='40' y1='60' x2='40' y2='80'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 80px 80px;
  opacity: 0.6;
}

.fb-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26,23,20,0.5) 0%, rgba(26,23,20,0.85) 70%, rgba(26,23,20,0.97) 100%);
}

/* Animated thread lines */
.fb-hero__threads {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fb-hero__threads span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(196,151,58,0.15), transparent);
  animation: threadFloat 8s ease-in-out infinite;
}

.fb-hero__threads span:nth-child(1) { left: 15%; animation-delay: 0s; }
.fb-hero__threads span:nth-child(2) { left: 30%; animation-delay: 1.5s; }
.fb-hero__threads span:nth-child(3) { left: 50%; animation-delay: 0.8s; background: linear-gradient(to bottom, transparent, rgba(196,151,58,0.25), transparent); }
.fb-hero__threads span:nth-child(4) { left: 70%; animation-delay: 2.2s; }
.fb-hero__threads span:nth-child(5) { left: 85%; animation-delay: 0.4s; }

@keyframes threadFloat {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 0.5; }
  50% { transform: scaleY(1.05) translateY(-10px); opacity: 1; }
}

.fb-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-inline: var(--space-lg);
  max-width: 900px;
}

.fb-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.fb-hero__title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 11rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}

.fb-hero__title-first {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  font-size: 0.6em;
}

.fb-hero__title-last {
  display: block;
}

.fb-hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.fb-hero__dates {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-xl);
}

.fb-hero__dates-sep { color: var(--gold); }

.fb-hero__cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.fb-hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.fb-hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.fb-hero__scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ─────────────────────────────────────────────
   10. PAGE HERO (inner pages)
───────────────────────────────────────────── */
.fb-page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.fb-page-hero--gold { background: var(--dark-mid); }
.fb-page-hero--dark { background: #111010; }

.fb-page-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23C4973A' stroke-width='0.4' opacity='0.12'%3E%3Crect x='15' y='15' width='30' height='30' transform='rotate(45 30 30)'/%3E%3Ccircle cx='30' cy='30' r='2' fill='%23C4973A'/%3E%3Cline x1='0' y1='30' x2='15' y2='30'/%3E%3Cline x1='45' y1='30' x2='60' y2='30'/%3E%3Cline x1='30' y1='0' x2='30' y2='15'/%3E%3Cline x1='30' y1='45' x2='30' y2='60'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 60px 60px;
}

.fb-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26,23,20,0.4) 0%, rgba(26,23,20,0.8) 100%);
}

.fb-page-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-inline: var(--space-lg);
  padding-block: var(--space-xl);
}

.fb-page-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.fb-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 900;
  color: #C4973A;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.fb-page-hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-top: var(--space-md);
}

/* Breadcrumb */
.fb-breadcrumb {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  z-index: 10;
  white-space: nowrap;
}

.fb-breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.fb-breadcrumb a:hover { color: var(--gold); }
.fb-breadcrumb span[aria-current] { color: var(--gold); }

/* ─────────────────────────────────────────────
   11. EDITORIAL SECTION
───────────────────────────────────────────── */
.fb-editorial {
  padding-block: var(--space-3xl);
  background: var(--cream);
}

.fb-editorial__inner {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.fb-editorial__motif {
  flex-shrink: 0;
  width: 120px;
  color: var(--gold);
}

.fb-editorial__text { flex: 1; }

.fb-editorial__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.fb-editorial__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.fb-editorial__body {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .fb-editorial__inner { flex-direction: column; }
  .fb-editorial__motif { width: 80px; }
}

/* ─────────────────────────────────────────────
   12. FACTS SECTION
───────────────────────────────────────────── */
.fb-facts {
  position: relative;
  padding-block: var(--space-3xl);
  background: var(--dark);
  overflow: hidden;
}

.fb-facts__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='none' stroke='%23C4973A' stroke-width='0.3' opacity='0.08'%3E%3Crect x='8' y='8' width='24' height='24' transform='rotate(45 20 20)'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.fb-facts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

.fb-fact {
  text-align: center;
  padding: var(--space-xl);
  border: 1px solid rgba(196,151,58,0.2);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.fb-fact:hover {
  border-color: rgba(196,151,58,0.4);
  box-shadow: 0 0 40px rgba(196,151,58,0.08);
}

.fb-fact__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

.fb-fact__unit {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-sm);
  margin-top: 0.25rem;
}

.fb-fact__label {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .fb-facts__grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   13. TIMELINE PREVIEW
───────────────────────────────────────────── */
.fb-timeline-preview {
  padding-block: var(--space-3xl);
  background: var(--cream-dark);
}

.fb-section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.fb-section-header__label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.fb-section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  color: var(--dark);
  letter-spacing: -0.02em;
}

/* Biography section headings — gold, readable size, from PDF titles */
.fb-bio-section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.01em;
  margin-bottom: var(--space-sm);
}

/* Ticket 2 — on light/cream backgrounds use darker gold #8D6C2B for section titles */
.fb-bio-rich-section .fb-bio-section-title,
.fb-bio-rich-section--cream .fb-bio-section-title,
.fb-onepage-editorial .fb-onepage-subheading {
  color: #8D6C2B;
}

/* Biography section headers — left-aligned, tight spacing (sections II onwards) */
.fb-bio-rich-section .fb-section-header {
  text-align: left;
  margin-bottom: var(--space-sm);
}

/* Biography body text — same style as editorial, justified */
.fb-bio-subsection p,
.fb-bio-intro-text p,
.fb-bio-rich-section > .fb-container > .fb-bio-subsection p {
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: var(--space-sm);
  text-align: justify;
}

.fb-section-header--light .fb-section-header__label { color: rgba(255,255,255,0.6); }
.fb-section-header--light .fb-section-header__title { color: var(--white); }

.fb-section-header__sub {
  margin-top: var(--space-md);
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
}

/* Timeline */
.fb-timeline {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}

.fb-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
}

.fb-timeline__item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.fb-timeline__item--left .fb-timeline__card { grid-column: 1; text-align: right; }
.fb-timeline__item--left .fb-timeline__node { grid-column: 2; }
.fb-timeline__item--right .fb-timeline__node { grid-column: 1; order: -1; }
.fb-timeline__item--right .fb-timeline__card { grid-column: 3; }

.fb-timeline__node {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.fb-timeline__node span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream-dark);
  box-shadow: 0 0 0 3px var(--gold);
  display: block;
  transition: transform var(--transition);
}

.fb-timeline__item:hover .fb-timeline__node span {
  transform: scale(1.3);
  box-shadow: 0 0 0 4px var(--gold), 0 0 20px rgba(196,151,58,0.4);
}

.fb-timeline__card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.fb-timeline__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.fb-timeline__year {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.fb-timeline__event {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: var(--space-xs);
}

.fb-timeline__desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.fb-timeline-preview__cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

@media (max-width: 768px) {
  .fb-timeline::before { left: 20px; }
  .fb-timeline__item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
  }
  .fb-timeline__item--left .fb-timeline__card,
  .fb-timeline__item--right .fb-timeline__card {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }
  .fb-timeline__item--left .fb-timeline__node,
  .fb-timeline__item--right .fb-timeline__node {
    grid-column: 1;
    grid-row: 1;
    order: -1;
  }
}

/* ─────────────────────────────────────────────
   14. QUOTE SECTION
───────────────────────────────────────────── */
.fb-quote-section {
  position: relative;
  padding-block: var(--space-3xl);
  background: var(--dark);
  overflow: hidden;
}

.fb-quote-section--alt {
  background: var(--cream-dark);
}
.fb-quote-section--alt .fb-blockquote blockquote p { color: var(--dark-mid); }
.fb-quote-section--alt .fb-blockquote__mark { color: var(--gold-pale); }
.fb-quote-section--alt .fb-blockquote__caption { color: var(--warm-grey); }

.fb-quote-section__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23C4973A' stroke-width='0.5' opacity='0.06'%3E%3Crect x='25' y='25' width='50' height='50' transform='rotate(45 50 50)'/%3E%3Crect x='35' y='35' width='30' height='30' transform='rotate(45 50 50)'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.fb-blockquote {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.fb-blockquote__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: rgba(196,151,58,0.15);
  margin-bottom: var(--space-md);
  font-style: normal;
}

.fb-blockquote blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  margin-bottom: 0;
}

.fb-blockquote__caption {
  margin-top: var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─────────────────────────────────────────────
   15. SECTIONS PREVIEW CARDS
───────────────────────────────────────────── */
.fb-sections-preview {
  padding-block: var(--space-3xl);
  background: var(--cream);
}

.fb-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.fb-preview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.fb-preview-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.fb-preview-card__visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fb-preview-card__visual--bio  { background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark) 100%); }
.fb-preview-card__visual--dist { background: linear-gradient(135deg, #3D2E10 0%, var(--dark) 100%); }
.fb-preview-card__visual--manu { background: linear-gradient(135deg, #1A2030 0%, var(--dark) 100%); }

.fb-preview-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23C4973A' stroke-width='0.5' opacity='0.12'%3E%3Crect x='15' y='15' width='30' height='30' transform='rotate(45 30 30)'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.fb-preview-card__visual-inner {
  position: relative;
  z-index: 2;
}

.fb-preview-card__icon {
  display: block;
  font-size: 3rem;
  color: var(--gold);
  text-align: center;
  opacity: 0.7;
  transition: transform var(--transition), opacity var(--transition);
}

.fb-preview-card:hover .fb-preview-card__icon {
  transform: scale(1.2) rotate(15deg);
  opacity: 1;
}

.fb-preview-card__content {
  padding: var(--space-lg);
}

.fb-preview-card__number {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.fb-preview-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.fb-preview-card__desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .fb-preview-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   16. MANUSCRIPTS TEASER
───────────────────────────────────────────── */
.fb-manuscripts-teaser {
  position: relative;
  padding-block: var(--space-3xl);
  background: var(--dark-mid);
  overflow: hidden;
}

.fb-manuscripts-teaser__bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23C4973A' stroke-width='0.5' opacity='0.07'%3E%3Crect x='30' y='30' width='60' height='60' transform='rotate(45 60 60)'/%3E%3Crect x='45' y='45' width='30' height='30' transform='rotate(45 60 60)'/%3E%3Ccircle cx='60' cy='60' r='4' fill='%23C4973A'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.fb-manu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-xl);
}

.fb-manu-card {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,151,58,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.fb-manu-card:hover {
  border-color: rgba(196,151,58,0.5);
  box-shadow: 0 10px 40px rgba(196,151,58,0.12);
  transform: translateY(-6px);
}

.fb-manu-card__spine {
  width: 6px;
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold), var(--gold-dark));
  flex-shrink: 0;
}

.fb-manu-card__body {
  padding: var(--space-lg);
  flex: 1;
}

.fb-manu-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(196,151,58,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fb-manu-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.fb-manu-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.fb-manu-card__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  background: rgba(196,151,58,0.15);
  color: var(--gold);
  border-radius: 50px;
  border: 1px solid rgba(196,151,58,0.3);
}

.fb-manuscripts-teaser__cta { text-align: center; }

@media (max-width: 768px) {
  .fb-manu-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   17. CONTEXT SECTION
───────────────────────────────────────────── */
.fb-context {
  padding-block: var(--space-3xl);
  background: var(--cream);
}

.fb-context__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.fb-context__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.fb-context__text p {
  margin-bottom: var(--space-md);
}

.fb-context__list {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fb-context__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-mid);
}

.fb-context__list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.fb-context__visual-inner {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
}

.fb-context__weave {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(196,151,58,0.08) 0px,
    rgba(196,151,58,0.08) 4px,
    transparent 4px,
    transparent 20px
  ),
  repeating-linear-gradient(
    90deg,
    rgba(196,151,58,0.08) 0px,
    rgba(196,151,58,0.08) 4px,
    transparent 4px,
    transparent 20px
  );
  animation: weaveShift 20s linear infinite;
}

@keyframes weaveShift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.fb-context__caption-box {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  background: rgba(26,23,20,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196,151,58,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.fb-context__caption-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.fb-context__caption-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .fb-context__inner { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   18. FINAL CTA
───────────────────────────────────────────── */
.fb-final-cta {
  position: relative;
  padding-block: var(--space-3xl);
  background: var(--dark);
  overflow: hidden;
}

.fb-final-cta__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23C4973A' stroke-width='0.5' opacity='0.08'%3E%3Crect x='20' y='20' width='40' height='40' transform='rotate(45 40 40)'/%3E%3Ccircle cx='40' cy='40' r='3' fill='%23C4973A'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.fb-final-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.fb-final-cta__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.fb-final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.fb-final-cta__text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.fb-final-cta__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   19. BIOGRAPHY PAGE STYLES
───────────────────────────────────────────── */
.fb-bio-section {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.fb-bio-intro {
  width: 100%;
}

.fb-bio-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: var(--space-md);
}

/* Bio Timeline */
.fb-bio-timeline {
  padding-block: var(--space-2xl) var(--space-3xl);
  background: var(--cream-dark);
}

.fb-bio-timeline__track {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.fb-bio-step {
  display: grid;
  grid-template-columns: 140px 60px 1fr;
  gap: 0 var(--space-md);
  align-items: start;
}

.fb-bio-step:nth-child(even) {
  grid-template-columns: 1fr 60px 140px;
}

.fb-bio-step:nth-child(even) .fb-bio-step__date {
  grid-column: 3;
  text-align: left;
}
.fb-bio-step:nth-child(even) .fb-bio-step__connector { grid-column: 2; }
.fb-bio-step:nth-child(even) .fb-bio-step__content { grid-column: 1; grid-row: 1; }

.fb-bio-step__date {
  text-align: right;
  padding-top: 0.25rem;
}

.fb-bio-step__date span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-grey-light);
  margin-bottom: 0.2rem;
}

.fb-bio-step__date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.fb-bio-step__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.fb-bio-step__connector span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream-dark);
  box-shadow: 0 0 0 2px var(--gold);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.fb-bio-step__connector::after {
  content: '';
  width: 2px;
  flex: 1;
  margin-top: 6px;
  background: linear-gradient(to bottom, var(--gold-light), rgba(196,151,58,0.2));
  min-height: 40px;
}

.fb-bio-step__content {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.fb-bio-step__content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.fb-bio-step__content p {
  font-size: 0.9375rem;
  margin-bottom: var(--space-sm);
}

.fb-bio-step__highlight {
  display: flex;
  gap: var(--space-sm);
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: var(--space-sm);
}

.fb-bio-step__highlight-icon { color: var(--gold); font-size: 0.7rem; margin-top: 0.2rem; flex-shrink: 0; }
.fb-bio-step__highlight p { font-size: 0.875rem; font-style: italic; color: var(--text-mid); margin-bottom: 0; }

/* Context blocks */
.fb-bio-context {
  padding-block: var(--space-3xl);
  background: var(--white);
}

.fb-context-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.fb-context-block {
  padding: var(--space-lg);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.fb-context-block:hover {
  border-color: var(--gold-pale);
  box-shadow: var(--shadow-sm);
}

.fb-context-block__icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.fb-context-block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
  .fb-bio-step,
  .fb-bio-step:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .fb-bio-step__date,
  .fb-bio-step:nth-child(even) .fb-bio-step__date { grid-column: 1; text-align: left; }
  .fb-bio-step__connector,
  .fb-bio-step:nth-child(even) .fb-bio-step__connector { display: none; }
  .fb-bio-step__content,
  .fb-bio-step:nth-child(even) .fb-bio-step__content { grid-column: 1; grid-row: auto; }
  .fb-context-blocks { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   20. DISTINCTIONS PAGE
───────────────────────────────────────────── */
.fb-dist-intro {
  padding-block: var(--space-2xl);
  background: var(--cream);
}

.fb-dist-intro__lead {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  color: var(--text-mid);
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 0;
}

/* Distinctions grid */
.fb-dist-timeline {
  padding-block: var(--space-2xl) var(--space-3xl);
  background: var(--parchment);
}

.fb-dist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) { .fb-dist-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .fb-dist-grid { grid-template-columns: 1fr; } }

.fb-dist-card {
  background: var(--dark-mid);
  border: 1px solid rgba(196,151,58,0.2);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: background .25s, border-color .25s;
}

.fb-dist-card:hover,
.fb-dist-card:focus-visible {
  background: var(--dark-light);
  border-color: rgba(196,151,58,.5);
  outline: none;
}

.fb-dist-card__year {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.fb-dist-card__title {
  font-family: var(--font-serif);
  font-size: .92rem;
  color: #F5F0E6;
  line-height: 1.5;
  margin: 0;
}

/* Distinction image modal */
.fb-dist-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.fb-dist-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: all;
}
.fb-dist-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.97);
}
.fb-dist-modal__box {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  max-width: 95vw;
  max-height: 95vh;
}
.fb-dist-modal__img {
  display: block;
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
}
.fb-dist-modal__caption {
  display: none;
}
.fb-dist-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  opacity: .7;
}
.fb-dist-modal__close:hover { opacity: 1; }

.fb-dist-modal__slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Image wrapper for distinction modal */
.fb-dist-modal__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-dist-modal__prev,
.fb-dist-modal__next {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.fb-dist-modal__prev:hover,
.fb-dist-modal__next:hover { background: rgba(200,169,110,0.4); }
.fb-dist-modal__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  min-height: 12px;
}
.fb-dist-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.fb-dist-dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
}

/* Frise chronologique */
.fb-dist-visual-timeline {
  position: relative;
  padding-block: var(--space-3xl);
  background: var(--dark);
  overflow: hidden;
}

.fb-dist-visual-timeline__bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23C4973A' stroke-width='0.4' opacity='0.06'%3E%3Crect x='15' y='15' width='30' height='30' transform='rotate(45 30 30)'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.fb-frise {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-sm);
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.fb-frise::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  pointer-events: none;
}

.fb-frise__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 80px;
  max-width: 120px;
}

.fb-frise__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--dark);
  box-shadow: 0 0 0 3px var(--gold-dark);
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 3;
  transition: transform var(--transition), box-shadow var(--transition);
}

.fb-frise__item:hover .fb-frise__dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 4px var(--gold), 0 0 20px rgba(196,151,58,0.5);
}

.fb-frise__year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.fb-frise__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .fb-dist-grid { grid-template-columns: repeat(2, 1fr); }
  .fb-dist-card--featured { flex-direction: column; }
  .fb-dist-card--featured .fb-dist-card__medal { width: 100%; height: 100px; }
  .fb-frise::before { display: none; }
  .fb-frise { gap: var(--space-md); }
  .fb-frise__item { min-width: 60px; max-width: 100px; }
}

@media (max-width: 600px) {
  .fb-dist-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   21. MANUSCRIPTS PAGE
───────────────────────────────────────────── */
.fb-manu-intro {
  padding-block: var(--space-3xl);
  background: var(--cream);
}

.fb-manu-intro__subtitle {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1714;
  margin: 2rem 0 1rem;
  line-height: 1.35;
}

/* ── Book grid ── */
.fb-manu-books {
  padding-block: var(--space-2xl) var(--space-3xl);
  background: var(--parchment);
}

.fb-manu-book-grid {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  gap: 28px;
  justify-content: center;
}

@media (max-width: 680px) {
  .fb-manu-book-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.fb-manu-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #888;
  padding: 4rem 0;
}

.fb-book-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.fb-book-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.fb-book-card__link {
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  height: 100%;
  color: inherit;
}

.fb-book-card__cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #1a1714;
  flex-shrink: 0;
}

.fb-book-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.fb-book-card:hover .fb-book-card__cover img {
  transform: scale(1.04);
}

.fb-book-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(160deg, #1a1714 0%, #2d2520 100%);
}

.fb-book-card__placeholder svg {
  width: 55%;
  max-width: 130px;
}

.fb-book-card__num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(196,151,58,.35);
  pointer-events: none;
}

.fb-book-card__body {
  padding: 12px 14px 16px;
  background: #fff;
  flex: 1;
}

.fb-book-card__year {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.fb-book-card__title {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: #1a1714;
  line-height: 1.45;
  margin: 0;
  font-weight: 500;
}

.fb-book-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 14, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 6px;
}

.fb-book-card:hover .fb-book-card__overlay {
  opacity: 1;
}

.fb-book-card__overlay-cta {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.14em;
  border: 1px solid rgba(196, 151, 58, 0.65);
  padding: 0.5em 1.5em;
}

.fb-book-card:hover .fb-book-card__eye,
.fb-book-card:focus-within .fb-book-card__eye {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(0,0,0,.5);
}

/* ── Single manuscript detail ── */
.fb-manu-single-main {
  background: var(--parchment);
  min-height: 80vh;
}

.fb-manu-single__breadcrumb-bar {
  padding: 20px 0 0;
}

.fb-manu-single__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-serif);
  font-size: .9rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: gap .2s;
}

.fb-manu-single__back:hover { gap: 10px; }

.fb-manu-single__back svg {
  width: 14px;
  height: 14px;
}

.fb-manu-single-hero {
  padding-block: var(--space-xl) var(--space-3xl);
}

.fb-manu-single__layout {
  display: grid;
  grid-template-columns: min(55vw, 700px) 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 720px) {
  .fb-manu-single__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Sticky cover: desktop only — on mobile the layout is single-column so sticky causes the image to follow scrolling */
@media (min-width: 721px) {
  .fb-manu-single__cover-col { position: sticky; top: 100px; }
}

.fb-manu-single__cover-img {
  width: 100%;
  height: auto;
  min-height: 50vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  display: block;
}

.fb-manu-single__cover-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a1714 0%, #2d2520 100%);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.fb-manu-single__cover-placeholder svg { width: 70%; }

.fb-manu-single__year {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fb-manu-single__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #1a1714;
  line-height: 1.3;
  margin: 0 0 28px;
  font-weight: 600;
}

.fb-manu-single__desc {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #3a3228;
  line-height: 1.85;
  margin-bottom: 36px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

.fb-manu-single__desc p {
  margin: 0 0 1em;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.fb-manu-single__read-btn { margin-top: 0; }

.fb-manu-full-grid {
  padding-block: var(--space-2xl) var(--space-3xl);
  background: var(--cream-dark);
}

.fb-manu-full-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.fb-manu-full-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.fb-manu-full-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.fb-manu-full-item__number {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: var(--space-lg) var(--space-sm);
}

.fb-manu-full-item__number span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.fb-manu-full-item__body {
  padding: var(--space-lg);
}

.fb-manu-full-item__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.fb-manu-full-item__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
  flex: 1;
  min-width: 200px;
}

.fb-manu-full-item__desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.fb-manu-full-item__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  border-top: 1px solid var(--cream-dark);
  padding-top: var(--space-sm);
}

.fb-manu-full-item__meta-icon { color: var(--gold); font-size: 0.5rem; }

/* Tag color variants */
.fb-manu-card__tag--technique  { background: rgba(196,151,58,0.12); color: var(--gold-dark); border-color: rgba(196,151,58,0.3); }
.fb-manu-card__tag--histoire   { background: rgba(60,100,180,0.08); color: #4A5FA0; border-color: rgba(60,100,180,0.2); }
.fb-manu-card__tag--manuel     { background: rgba(80,140,80,0.08);  color: #3A7A3A; border-color: rgba(80,140,80,0.2); }
.fb-manu-card__tag--regional   { background: rgba(160,82,45,0.1);   color: #8B4513; border-color: rgba(160,82,45,0.3); }
.fb-manu-card__tag--pedagogie  { background: rgba(120,80,160,0.08); color: #7850A0; border-color: rgba(120,80,160,0.2); }
.fb-manu-card__tag--inventaire { background: rgba(40,120,120,0.08); color: #2A7878; border-color: rgba(40,120,120,0.2); }
.fb-manu-card__tag--socio      { background: rgba(180,60,60,0.08);  color: #A03030; border-color: rgba(180,60,60,0.2); }
.fb-manu-card__tag--synthese   { background: rgba(196,151,58,0.15); color: var(--gold); border-color: rgba(196,151,58,0.4); }

@media (max-width: 600px) {
  .fb-manu-full-item { grid-template-columns: 90px 1fr; gap: var(--space-md); }
  .fb-manu-full-item__number span { font-size: 1.2rem; }
  .fb-manu-full-item__cover { width: 80px; height: 105px; }
}

/* ─────────────────────────────────────────────
   22. PAGE NAVIGATION
───────────────────────────────────────────── */
.fb-page-nav {
  padding-block: var(--space-2xl);
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

.fb-page-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.fb-page-nav__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: opacity var(--transition);
}

.fb-page-nav__item:hover { opacity: 0.7; }

.fb-page-nav__arrow {
  font-size: 1.5rem;
  color: var(--gold);
}

.fb-page-nav__info {
  display: flex;
  flex-direction: column;
}

.fb-page-nav__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.fb-page-nav__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
}

.fb-page-nav__divider {
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ─────────────────────────────────────────────
   23. FOOTER
───────────────────────────────────────────── */
.fb-footer {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.fb-footer__body {
  padding: var(--space-3xl) 0 var(--space-xl);
  position: relative;
  z-index: 2;
}

.fb-footer__inner {
  padding-inline: clamp(3rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--space-2xl);
}

.fb-footer__monogram {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.fb-footer__name {
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.fb-footer__name-first {
  font-family: var(--font-display);
  font-size: 2.85rem;
  font-weight: 700;
  font-style: normal;
  color: rgba(240, 240, 240, 0.88);
  letter-spacing: 0.01em;
  line-height: 1;
}

.fb-footer__name-last {
  font-family: var(--font-display);
  font-size: 2.85rem;
  font-weight: 700;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.fb-footer__tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}

.fb-footer__dates {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
  text-align: center;
}

.fb-footer__nav-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.fb-footer__nav ul,
.fb-footer__heritage ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fb-footer__nav a,
.fb-footer__heritage li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.fb-footer__nav a:hover { color: var(--gold); }

.fb-footer__heritage li {
  position: relative;
  padding-left: 1rem;
}

.fb-footer__heritage li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-size: 0.5rem;
  top: 0.3rem;
}

/* Bottom bar */
.fb-footer__bottom {
  padding: var(--space-lg) var(--space-md) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: var(--space-xl);
  text-align: center;
}

.fb-footer__ornament {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-md);
  color: rgba(196,151,58,0.4);
}

.fb-footer__ornament-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: rgba(196,151,58,0.2);
}

.fb-footer__copy {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0;
  text-align: center;
}

.fb-footer__credit-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.fb-footer__credit-link:hover {
  text-decoration: underline;
}

.fb-footer__credits {
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(255,255,255,0.2);
  margin-bottom: 0;
}

.fb-footer__brand {
  grid-column: 1 / -1;
  text-align: center;
}

@media (max-width: 900px) {
  .fb-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .fb-footer__inner { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   24. SELECTION STYLES
───────────────────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--dark);
}

/* ─────────────────────────────────────────────
   25. SCROLLBAR
───────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─────────────────────────────────────────────
   26. RESPONSIVE ADJUSTMENTS
───────────────────────────────────────────── */
@media (max-width: 600px) {
  .fb-container { padding-inline: clamp(3rem, 8vw, 8rem); }
  .fb-hero__cta { flex-direction: column; align-items: center; }
  .fb-final-cta__buttons { flex-direction: column; align-items: center; }
  .fb-page-nav__inner { flex-direction: column; text-align: center; }
  .fb-page-nav__item--prev { flex-direction: row-reverse; }
}

/* ─────────────────────────────────────────────
   27. PRINT STYLES
───────────────────────────────────────────── */
@media print {
  .fb-header, .fb-hero__scroll, .fb-page-nav, .fb-mobile-nav { display: none; }
  body { background: white; color: black; padding-top: 0; }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────────
   28. IMAGE PLACEHOLDERS
───────────────────────────────────────────── */
.fb-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px;
  border: 1.5px dashed var(--gold-dark);
  border-radius: 6px;
  background: rgba(196,151,58,.04);
  color: var(--text-light);
  text-align: center;
}
.fb-img-placeholder svg {
  width: 52px;
  height: auto;
  color: var(--gold-dark);
  opacity: .6;
}
.fb-img-placeholder p {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--text-mid);
  margin: 0;
}
.fb-img-placeholder small {
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--text-light);
  line-height: 1.5;
}
.fb-img-placeholder--portrait {
  width: 200px;
  min-height: 260px;
}
.fb-img-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.fb-img-placeholder-grid .fb-img-placeholder {
  min-height: 200px;
}
.fb-img-placeholder-grid .fb-img-placeholder svg { width: 60px; }
@media (max-width: 640px) {
  .fb-img-placeholder-grid { grid-template-columns: 1fr; }
  .fb-img-placeholder--portrait { width: 160px; min-height: 210px; }
}

/* ─────────────────────────────────────────────
   PORTRAIT FIGURE
───────────────────────────────────────────── */
.fb-editorial__portrait {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.fb-portrait-figure {
  margin: 0;
  text-align: center;
}
.fb-portrait-figure__img {
  width: 240px;
  max-width: 100%;
  border-radius: 6px;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  display: block;
}
.fb-portrait-figure__caption {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: .85rem;
  color: var(--text-light);
  font-style: italic;
}

/* Biographie portrait block */
.fb-bio-portrait {
  float: right;
  margin: 0 0 24px 40px;
  max-width: 260px;
}
.fb-bio-portrait figure { margin: 0; text-align: center; }
.fb-bio-portrait img {
  width: 100%;
  border-radius: 6px;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.fb-bio-portrait figcaption {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: .82rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}
@media (max-width: 640px) {
  .fb-bio-portrait { float: none; max-width: 100%; margin: 0 0 24px 0; }
  .fb-bio-portrait img { max-width: 200px; margin: 0 auto; display: block; }
}

/* Gallery grid */
.fb-bio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.fb-bio-gallery__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--gold-dark);
}
.fb-bio-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .4s ease;
}
.fb-bio-gallery__item:hover img { transform: scale(1.04); }

/* ─────────────────────────────────────────────
   MANUSCRIPT COVER IMAGE
───────────────────────────────────────────── */
.fb-manu-full-item__cover {
  width: 110px;
  height: 140px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.fb-manu-full-item__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ─────────────────────────────────────────────
   29. READ BUTTON
───────────────────────────────────────────── */
.fb-manu-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 28px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background .25s, color .25s, transform .2s;
}
.fb-manu-read-btn:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.fb-manu-read-btn__icon { font-size: 1.1rem; }

/* ─────────────────────────────────────────────
   30. PDF VIEWER MODAL
───────────────────────────────────────────── */
.fb-pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-pdf-modal[hidden] { display: none; }

.fb-pdf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, .88);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.fb-pdf-modal__shell {
  position: relative;
  z-index: 1;
  width: min(96vw, 900px);
  height: min(92vh, 900px);
  background: var(--dark);
  border: 1px solid var(--gold-dark);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(196,151,58,.15);
}

/* Header */
.fb-pdf-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(196,151,58,.2);
  flex-shrink: 0;
}
.fb-pdf-modal__title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.fb-pdf-modal__ornament { color: var(--gold); font-size: .9rem; flex-shrink: 0; }
.fb-pdf-modal__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fb-pdf-modal__controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: 16px;
}
.fb-pdf-ctrl {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(196,151,58,.2);
  border-radius: 4px;
  color: var(--warm-grey-light);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.fb-pdf-ctrl:hover { background: rgba(196,151,58,.18); color: var(--gold); }
.fb-pdf-ctrl--close { color: #e88; }
.fb-pdf-ctrl--close:hover { background: rgba(200, 60, 60, .2); color: #ff8888; }
.fb-pdf-zoom-label {
  font-family: var(--font-body);
  font-size: .78rem;
  color: var(--warm-grey);
  min-width: 38px;
  text-align: center;
}
.fb-pdf-ctrl-divider {
  width: 1px;
  height: 20px;
  background: rgba(196,151,58,.2);
  margin: 0 4px;
}

/* Stage */
.fb-pdf-modal__stage {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 20px;
  background: #141210;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) transparent;
}
.fb-pdf-modal__loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--warm-grey);
  font-family: var(--font-body);
  font-size: .9rem;
}
.fb-pdf-modal__loading[hidden] { display: none; }
.fb-pdf-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(196,151,58,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: fb-spin .8s linear infinite;
}
@keyframes fb-spin { to { transform: rotate(360deg); } }

.fb-pdf-canvas {
  display: block;
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
}

/* Footer */
.fb-pdf-modal__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 20px;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(196,151,58,.2);
  flex-shrink: 0;
}
.fb-pdf-nav-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(196,151,58,.25);
  border-radius: 4px;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.fb-pdf-nav-btn:hover { background: rgba(196,151,58,.2); }
.fb-pdf-nav-btn:disabled { opacity: .35; cursor: default; }
.fb-pdf-page-info {
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--warm-grey);
  letter-spacing: .04em;
}
.fb-pdf-page-info strong { color: var(--gold-light); }

@media (max-width: 600px) {
  .fb-pdf-modal__shell { width: 100vw; height: 100dvh; border-radius: 0; border: none; }
  .fb-pdf-modal__title { font-size: .85rem; }
}

/* ─────────────────────────────────────────────
   31. ACTEUR OMNIPRÉSENT SECTION (Homepage)
───────────────────────────────────────────── */
.fb-acteur {
  background: var(--dark);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}
.fb-acteur__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='18' y='1' width='4' height='4' transform='rotate(45 18 1)' fill='%23C4973A' opacity='0.06'/%3E%3Crect x='18' y='35' width='4' height='4' transform='rotate(45 18 35)' fill='%23C4973A' opacity='0.06'/%3E%3Crect x='1' y='18' width='4' height='4' transform='rotate(45 1 18)' fill='%23C4973A' opacity='0.06'/%3E%3Crect x='35' y='18' width='4' height='4' transform='rotate(45 35 18)' fill='%23C4973A' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.fb-section-header--light .fb-section-header__label { color: var(--gold); }
.fb-section-header--light .fb-section-header__title { color: var(--cream); }
.fb-section-header--light .fb-section-header__title em { color: var(--gold-light); }
.fb-section-header__intro {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--warm-grey-light);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.75;
  text-align: center;
}
.fb-divider--gold .fb-divider__line { background: var(--gold); }
.fb-divider--gold .fb-divider__gem { color: var(--gold); }

.fb-acteur__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  margin-top: var(--space-2xl);
  border: 1px solid rgba(196,151,58,.12);
  border-radius: 8px;
  overflow: hidden;
}
.fb-acteur__item {
  display: flex;
  gap: 20px;
  padding: 28px 28px;
  background: rgba(255,255,255,.02);
  border-right: 1px solid rgba(196,151,58,.1);
  border-bottom: 1px solid rgba(196,151,58,.1);
  transition: background .25s;
}
.fb-acteur__item:hover { background: rgba(196,151,58,.05); }
.fb-acteur__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  opacity: .5;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
  min-width: 28px;
}
.fb-acteur__body h3 {
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 8px;
  line-height: 1.35;
}
.fb-acteur__body p {
  font-family: var(--font-serif);
  font-size: .92rem;
  color: var(--warm-grey);
  margin: 0;
  line-height: 1.7;
}
@media (max-width: 640px) {
  .fb-acteur__grid { grid-template-columns: 1fr; }
  .fb-acteur__item { padding: 20px; }
}

/* ─────────────────────────────────────────────
   32. BIO DARK SECTION (Œuvre & Atelier)
───────────────────────────────────────────── */
.fb-bio-section--dark {
  background: var(--dark);
  padding: var(--space-3xl) 0;
}
.fb-bio-oeuvre-text {
  max-width: 680px;
  margin: 32px auto 0;
  text-align: center;
}
.fb-bio-oeuvre-text p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--warm-grey-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ─────────────────────────────────────────────
   33. REFERENCES LIST
───────────────────────────────────────────── */
.fb-bio-references { background: var(--parchment); }
.fb-references-list {
  list-style: decimal;
  padding-left: 1.6em;
  margin: 0;
}
.fb-references-list li {
  font-family: var(--font-serif);
  font-size: .92rem;
  color: #111;
  line-height: 1.75;
  margin-bottom: .5em;
}
.fb-references-list li em { font-style: italic; color: #111; }
.fb-ref-link { color: #1a5fb4; text-decoration: underline; text-underline-offset: 2px; }
.fb-ref-link:hover { color: #0d3d7a; }

/* ─────────────────────────────────────────────
   34. MANUSCRIPT COVER PLACEHOLDER
───────────────────────────────────────────── */
.fb-manu-full-item__cover-placeholder {
  flex-shrink: 0;
}
.fb-manu-cover-placeholder {
  width: 110px;
  height: 140px;
  border: 1.5px dashed rgba(196,151,58,.35);
  border-radius: 5px;
  background: rgba(196,151,58,.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--warm-grey);
  text-align: center;
  padding: 10px;
}
.fb-manu-cover-placeholder__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold-dark);
  opacity: .6;
  line-height: 1;
}
.fb-manu-cover-placeholder svg {
  width: 30px;
  height: auto;
  color: var(--gold-dark);
  opacity: .4;
}
.fb-manu-cover-placeholder small {
  font-family: var(--font-body);
  font-size: .62rem;
  color: var(--warm-grey);
  line-height: 1.4;
  opacity: .7;
}

/* ─────────────────────────────────────────────
   35. READ BUTTON — SVG icon fix
───────────────────────────────────────────── */
.fb-manu-read-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   Bio epigraph — inscription block between banner and content
───────────────────────────────────────────── */
.fb-bio-epigraph {
  background: var(--parchment);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
}

.fb-bio-epigraph__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.fb-bio-epigraph__rule {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
}

.fb-bio-epigraph__rule::before,
.fb-bio-epigraph__rule::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.fb-bio-epigraph__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.fb-bio-epigraph__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  font-style: normal;
  color: var(--dark);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.fb-bio-epigraph__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   36. BIOGRAPHY PAGE — rich sections
───────────────────────────────────────────── */
.fb-bio-rich-section {
  background: var(--parchment);
  padding: 32px 0;
}
.fb-bio-rich-section--cream {
  background: var(--cream);
}
.fb-bio-rich-section--dark {
  background: var(--dark);
  color: #e8dcc8;
}
.fb-bio-intro-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .fb-bio-intro-wrap { grid-template-columns: 1fr; }
}
.fb-bio-intro-text > * + * { margin-top: 1em; }
.fb-bio-intro-text p { font-size: 1rem; line-height: 1.65; color: var(--dark); text-align: justify; }
/* Sticky portrait: desktop only */
@media (min-width: 769px) {
  .fb-bio-portrait-wrap { position: sticky; top: 80px; }
}

/* Subsections */
.fb-bio-subsection { margin-top: 12px; }
.fb-bio-subsection + .fb-bio-subsection { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(196,151,58,.15); }
.fb-bio-subsection__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-style: italic;
}

/* h3 inside bio subsections (e.g. "1. Une stratégie...") — smaller than .fb-bio-section-title */
.fb-bio-subsection h3,
.fb-bio-rich-section h3 {
  font-size: 1.4rem !important;
  font-weight: 600;
  color: #8D6C2B;
  margin-bottom: 8px;
}

/* Figures */
.fb-bio-figure {
  margin: 6px 0;
}
.fb-bio-figure img {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.fb-bio-figure figcaption {
  font-size: .78rem;
  color: var(--warm-grey);
  font-style: italic;
  margin-top: 8px;
  line-height: 1.5;
  text-align: center;
}
.fb-bio-figure--portrait {
  max-width: 400px;
}
.fb-bio-figure--portrait img {
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

/* Side-by-side figure pair */
.fb-bio-figure-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 14px 0;
}
@media (max-width: 600px) {
  .fb-bio-figure-pair { grid-template-columns: 1fr; }
}
.fb-bio-figure-pair .fb-bio-figure { margin: 0; }

/* ── Editorial diagonal collage ──────────────────────────────────────────
   Image 1 (z:1): top:0,   left:0    — upper-left, 54% wide, 240px tall
   Image 2 (z:2): top:190px, left:34% — top-left corner INSIDE image 1,
                  extends to 34%+58%=92% right, 190+240=430px down
   Caption: sits in the left gap (below image 1, left of image 2)
   ─────────────────────────────────────────────────────────────────────── */
.fb-bio-figure-full {
  margin: 6px 0;
  width: 100%;
}

.fb-bio-figure-full .fb-bio-figure {
  margin: 0;
  width: 100%;
}

.fb-bio-figure-full .fb-bio-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.fb-bio-figure-full .fb-bio-figure--placeholder {
  width: 100%;
}

.fb-bio-figure-full .fb-img-placeholder {
  width: 100%;
  height: 480px;
}

.fb-bio-figure-pair--diagonal {
  position: relative;
  height: 500px;
  margin: 60px 0 80px;
}

.fb-bio-figure-pair--diagonal .fb-bio-figure {
  position: absolute;
  margin: 0;
}

/* Image 1 — upper-left */
.fb-bio-figure-pair--diagonal .fb-bio-figure:nth-child(1) {
  top: 0;
  left: 0;
  width: 54%;
  z-index: 1;
}

/* Image 2 — nth-child(2) now (no span between them)
   top-left corner sits INSIDE image 1: left 34% < 54%, top 190px < 240px */
.fb-bio-figure-pair--diagonal .fb-bio-figure:nth-child(2) {
  top: 190px;
  left: 34%;
  width: 58%;
  z-index: 2;
}

.fb-bio-figure-pair--diagonal .fb-bio-figure img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  border-radius: 2px;
  display: block;
  transition: transform 0.7s ease;
}
.fb-bio-figure-pair--diagonal .fb-bio-figure:hover img {
  transform: scale(1.025);
}

/* Hide both figcaptions — caption is rendered separately in the gap */
.fb-bio-figure-pair--diagonal figcaption {
  display: none;
}

/* Caption in the left gap: below image 1 (240px tall), left of image 2 (starts at 34%) */
.fb-diagonal-caption {
  position: absolute;
  top: 262px;
  left: 0;
  width: 32%;
  text-align: center;
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .04em;
  color: #222;
  line-height: 1.8;
  z-index: 3;
  pointer-events: none;
}

/* Mobile — stack vertically with slight right-indent on image 2 */
@media (max-width: 700px) {
  .fb-bio-figure-pair--diagonal {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 40px 0 48px;
  }
  .fb-bio-figure-pair--diagonal .fb-bio-figure {
    position: static;
    width: 100% !important;
  }
  .fb-bio-figure-pair--diagonal .fb-bio-figure:nth-child(2) {
    margin-top: -36px;
    padding-left: 20px;
    width: calc(100% - 20px) !important;
  }
  .fb-bio-figure-pair--diagonal .fb-bio-figure img { height: auto; }
  .fb-diagonal-caption {
    position: static;
    width: 100%;
    text-align: center;
    margin: 12px 0 4px;
  }
}

/* Equal-size side-by-side pair */
.fb-bio-figure-pair--equal .fb-bio-figure img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 4px;
}
.fb-bio-figure-pair--equal .fb-bio-figure figcaption {
  display: block;
  font-size: .78rem;
  color: #444;
  font-style: italic;
  margin-top: 10px;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .fb-bio-figure-pair--equal .fb-bio-figure img { height: 280px; }
}

/* Placeholder for bio image slots */
.fb-bio-figure--placeholder .fb-img-placeholder {
  background: #f3ede4;
  border: 1.5px dashed #c4973a55;
  border-radius: 4px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #bba070;
  font-size: .78rem;
  text-align: center;
  padding: 20px;
}
.fb-bio-figure--placeholder .fb-img-placeholder svg {
  width: 32px;
  height: auto;
  opacity: .5;
}

/* ─────────────────────────────────────────────
   37. LOGO IMAGES
───────────────────────────────────────────── */

/* Header text logo */
.fb-header__logo-text {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.18em;
  line-height: 1;
}

.fb-header__logo-first {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 1;
}

.fb-header__logo-last {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

@media (max-width: 768px) {
  .fb-header__logo-first { font-size: 1.45rem; }
  .fb-header__logo-last  { font-size: 1.45rem; letter-spacing: 0.04em; }
}

/* Hero title logo (full white version) */
.fb-hero__title .fb-hero__logo-img {
  height: clamp(80px, 18vw, 200px);
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ─────────────────────────────────────────────
   38. GALLERY LIGHTBOX TRIGGER
───────────────────────────────────────────── */
.fb-lightbox-trigger {
  cursor: zoom-in;
  position: relative;
}
.fb-gallery-zoom-hint {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background .2s;
  pointer-events: none;
}
.fb-gallery-zoom-hint svg {
  width: 28px;
  height: 28px;
  color: #fff;
  opacity: 0;
  transition: opacity .2s;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.5));
}
.fb-lightbox-trigger:hover .fb-gallery-zoom-hint {
  background: rgba(26,23,20,.35);
}
.fb-lightbox-trigger:hover .fb-gallery-zoom-hint svg {
  opacity: 1;
}

/* ─────────────────────────────────────────────
   39. LIGHTBOX MODAL
───────────────────────────────────────────── */
.fb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-lightbox[hidden] { display: none; }
.fb-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,.92);
  cursor: pointer;
}
.fb-lightbox__shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 1100px);
  max-height: 95vh;
  gap: 12px;
}
.fb-lightbox__img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-lightbox__img {
  max-width: min(86vw, 1040px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  transition: opacity .25s;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}
.fb-lightbox__spinner {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(196,151,58,.3);
  border-top-color: #c4973a;
  border-radius: 50%;
  animation: fb-spin .7s linear infinite;
  display: none;
}
@keyframes fb-spin { to { transform: rotate(360deg); } }
.fb-lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.fb-lightbox__close:hover { background: rgba(196,151,58,.5); }
.fb-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.fb-lightbox__nav:hover { background: rgba(196,151,58,.4); }
.fb-lightbox__nav--prev { left: 16px; }
.fb-lightbox__nav--next { right: 16px; }
.fb-lightbox__caption {
  color: #d4c4a8;
  font-size: .82rem;
  font-style: italic;
  text-align: center;
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}
.fb-lightbox__counter {
  color: #7a6a55;
  font-size: .75rem;
  margin: 0;
}
@media (max-width: 600px) {
  .fb-lightbox__nav--prev { left: 6px; }
  .fb-lightbox__nav--next { right: 6px; }
  .fb-lightbox__nav { width: 38px; height: 38px; font-size: 20px; }
}

/* ─────────────────────────────────────────────
   37. REMOVE ALL STAR / GEM DECORATORS
───────────────────────────────────────────── */
.fb-divider__gem,
.fb-dist-card__medal-star,
.fb-bio-step__highlight-icon,
.fb-manu-full-item__meta-icon,
.fb-pdf-modal__ornament,
.fb-page-nav__divider,
.fb-footer__ornament {
  display: none !important;
}

/* ─────────────────────────────────────────────
   38. DISTINCTION CARD MEDAL SVG ICONS
───────────────────────────────────────────── */
.fb-dist-card__medal-inner {
  color: var(--gold);
}
.fb-dist-card__medal--bronze .fb-dist-card__medal-inner {
  color: #cd7f32;
}
.fb-dist-card__medal--republic .fb-dist-card__medal-inner {
  color: #f0d080;
}
.fb-dist-card__medal-inner svg {
  width: 32px;
  height: 32px;
  color: inherit;
  display: block;
  filter: drop-shadow(0 0 6px rgba(196,151,58,0.5));
}

/* ─────────────────────────────────────────────
   39. HOMEPAGE — Header overrides + editorial portrait
───────────────────────────────────────────── */
.home .fb-editorial__portrait { display: none; }
.home .fb-editorial__motif    { display: none; }
.home .fb-editorial__inner    { justify-content: center; }
body.home.fb-site {
  padding-top: 0;
}

.home .fb-header {
  background: rgba(245, 240, 230, 0.96);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(196, 151, 58, 0.2);
}

.home .fb-header .fb-nav__link {
  color: var(--gold);
}

.home .fb-header .fb-nav__link:hover,
.home .fb-header .fb-nav__link.is-active {
  color: var(--gold);
}

.home .fb-header .fb-header__logo-first { color: #111111; }
.home .fb-header .fb-header__logo-last  { color: var(--gold); }

.home .fb-header .fb-hamburger span {
  background: var(--dark);
}

.home .fb-header.is-scrolled {
  background: rgba(20, 17, 14, 1);
  border-bottom-color: rgba(196, 151, 58, 0.3);
}

.home .fb-header.is-scrolled .fb-nav__link {
  color: var(--gold);
}

.home .fb-header.is-scrolled .fb-nav__link:hover,
.home .fb-header.is-scrolled .fb-nav__link.is-active {
  color: var(--gold);
}

.home .fb-header.is-scrolled .fb-header__logo-first { color: #F5F0E6; }
.home .fb-header.is-scrolled .fb-header__logo-last  { color: var(--gold); }

.home .fb-header.is-scrolled .fb-hamburger span {
  background: var(--white);
}

/* ─────────────────────────────────────────────
   40. ONE-PAGE SECTIONS — Editorial, prose, lists
───────────────────────────────────────────── */

/* Section wrapper: cream background for editorial */
.fb-onepage-editorial {
  background: var(--cream);
  padding: var(--space-xl) 0 var(--space-3xl);
}

.fb-onepage-subsection:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Prose text container */
.fb-onepage-prose {
  font-family: var(--font-serif);
  font-size: inherit;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: var(--space-lg);
}

.fb-onepage-prose p + p {
  margin-top: var(--space-sm);
}

/* Subsection block */
.fb-onepage-subsection {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(196, 151, 58, 0.2);
}

.fb-onepage-subsection p {
  color: var(--dark);
  font-size: inherit;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
  text-align: justify;
}

/* h3-level subheading within editorial prose */
.fb-onepage-subheading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  margin-bottom: var(--space-md);
  line-height: 1.25;
}

/* Main editorial title — roman (non-italic), keeps its larger inline size */
.fb-editorial-main-heading {
  font-style: normal;
}

/* Conclusion 2-column: text left, image right */
.fb-editorial-conclusion {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-xl);
  align-items: center;
}

.fb-editorial-conclusion__img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .fb-editorial-conclusion {
    grid-template-columns: 1fr;
  }
}

/* Ordered list with elegant spacing */
.fb-onepage-list {
  font-family: var(--font-body);
  font-size: inherit;
  line-height: 1.75;
  color: var(--text-mid);
  padding-left: 1.25rem;
  margin: var(--space-md) 0 0;
}

.fb-onepage-list li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.fb-onepage-list li strong {
  color: var(--dark);
}

.fb-onepage-list--check {
  list-style: none;
  padding-left: 0;
}

.fb-onepage-list--check li {
  position: relative;
  padding-left: 1.8em;
}

.fb-onepage-list--check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95em;
}

/* Dark section wrapper (used as anchor target before dark sections) */
.fb-onepage-section-dark {
  background: var(--dark);
}

/* Full-height section banners */
.fb-page-hero--compact {
  min-height: 100vh !important;
  max-height: none;
}

@media (max-width: 768px) {
  .fb-page-hero--compact {
    min-height: 100vh !important;
    max-height: none;
  }
}

/* ─────────────────────────────────────────────
   41. MANUSCRIPT FULL LIST — single-page layout
───────────────────────────────────────────── */

.fb-manu-full-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
}

@media (max-width: 640px) {
  .fb-manu-full-list {
    gap: var(--space-lg);
  }
}

/* ─────────────────────────────────────────────
   42. HOMEPAGE — Split-screen hero
───────────────────────────────────────────── */
.fb-split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 125vh;
  min-height: 700px;
}

/* ── Left: portrait panel ── */
.fb-split-hero__portrait {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-top: var(--header-height);
}

.fb-split-hero__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.fb-split-hero__portrait-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-mid);
  position: relative;
}

.fb-split-hero__portrait-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23C4973A' stroke-width='0.5' opacity='0.12'%3E%3Crect x='20' y='20' width='40' height='40' transform='rotate(45 40 40)'/%3E%3Crect x='30' y='30' width='20' height='20' transform='rotate(45 40 40)'/%3E%3Ccircle cx='40' cy='40' r='3' fill='%23C4973A'/%3E%3Cline x1='0' y1='40' x2='20' y2='40'/%3E%3Cline x1='60' y1='40' x2='80' y2='40'/%3E%3Cline x1='40' y1='0' x2='40' y2='20'/%3E%3Cline x1='40' y1='60' x2='40' y2='80'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 80px 80px;
}

.fb-split-hero__quote-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(to top, rgba(26,23,20,0.94) 0%, rgba(26,23,20,0.7) 55%, transparent 100%);
}

.fb-split-hero__quote-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(240, 240, 240, 0.88);
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.fb-split-hero__quote-cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Right: content panel ── */
.fb-split-hero__content {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--header-height) var(--space-xl) var(--space-xl);
}

.fb-split-hero__content-inner {
  max-width: 500px;
  width: 100%;
}

.fb-split-hero__location {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.fb-split-hero__name {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.18em;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.fb-split-hero__name-first {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 700;
  font-style: normal;
  color: #111111;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.fb-split-hero__name-last {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 700;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.fb-split-hero__subtitle {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 0;
  line-height: 1.5;
}

.fb-split-hero__rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-md) 0;
  border: none;
}

.fb-split-hero__desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: var(--space-lg);
}

.fb-split-hero__cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.fb-split-hero__wiki-btn {
  font-size: 0.72rem;
  padding: 0.6rem 1.25rem;
  gap: 0.5rem;
  color: var(--dark);
  border-color: var(--dark);
}
.fb-split-hero__wiki-btn::before {
  display: none; /* skip slide animation; use direct bg transition instead */
}
.fb-split-hero__wiki-btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* Mobile: stack vertically */
@media (max-width: 900px) {
  /* Push entire hero below the fixed header — body.home has padding-top:0,
     so without this the portrait overlaps the header. The hero wrapper has
     no dark background, so no visible gap shows above the portrait. */
  .fb-split-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    min-height: auto;
    padding-top: var(--header-height);
  }

  .fb-split-hero__content {
    padding: var(--space-xl) var(--space-md) var(--space-xl);
  }

  .fb-split-hero__name-first { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .fb-split-hero__name-last  { font-size: clamp(2.2rem, 8vw, 3.5rem); letter-spacing: 0.04em; }

  .fb-split-hero__quote-overlay {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .fb-split-hero__quote-text {
    font-size: 0.88rem;
  }

  /* Reset portrait's own padding — offset is handled by the parent above */
  .fb-split-hero__portrait {
    padding-top: 0;
  }
  .fb-split-hero__portrait-img {
    width: 100%;
    height: auto;
    object-fit: fill;
  }
}

@media (max-width: 480px) {
  .fb-split-hero__content {
    padding: var(--space-lg) var(--space-sm) var(--space-lg);
  }

  .fb-split-hero__cta {
    flex-direction: column;
  }
  .fb-split-hero__cta .fb-btn {
    text-align: center;
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────
   41. DÉDICACE
───────────────────────────────────────────── */
.fb-dedicace {
  background: var(--dark);
  padding-block: var(--space-3xl);
  text-align: center;
}

.fb-dedicace__inner {
  max-width: 700px;
  margin: 0 auto;
}

.fb-dedicace__heading {
  font-family: var(--font-cinzel);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.fb-dedicace__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2.2rem;
  opacity: 0.45;
}

.fb-dedicace__text {
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-style: normal;
  color: rgba(245, 240, 230, 0.88);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  text-align: center;
}

.fb-dedicace__author {
  font-family: var(--font-script);
  font-size: 1.35rem;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.02em;
}

@media (max-width: 680px) {
  .fb-dedicace__text   { font-size: 1.25rem; }
  .fb-dedicace__author { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE OVERHAUL
   Note: html base font-size is 22px, so 1rem = 22px.
   We use px values where precision matters on mobile.
   Breakpoints: 1024 · 900 · 768 · 600 · 480 · 380
═══════════════════════════════════════════════════════════════ */

/* ── LARGE TABLETS (769px – 1024px) ──────────────────────────── */
@media (max-width: 1024px) {
  /* Facts: tighten card padding, keep 3 columns */
  .fb-fact { padding: 28px 20px; }

  /* Split hero name: prevent overflow on mid tablets */
  .fb-split-hero__name-first,
  .fb-split-hero__name-last { font-size: clamp(42px, 5.5vw, 104px); }
}

/* ── TABLETS (601px – 768px) ──────────────────────────────────── */
@media (min-width: 601px) and (max-width: 768px) {
  /* Preview cards: 2 columns instead of sudden 1-column */
  .fb-preview-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Manuscripts teaser: 2 columns */
  .fb-manu-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Facts: keep 3 columns but tighten */
  .fb-facts__grid { grid-template-columns: repeat(3, 1fr) !important; }
  .fb-fact { padding: 24px 14px; }
  .fb-fact__number { font-size: clamp(32px, 6vw, 48px) !important; }

  /* Context: stack earlier than 900px */
  .fb-context__inner { grid-template-columns: 1fr; }
}

/* ── PHONES + SMALL TABLETS (≤ 768px) ────────────────────────── */
@media (max-width: 768px) {
  /* Container: reduce aggressive 66px-per-side padding */
  .fb-container { padding-inline: clamp(20px, 5vw, 44px); }

  /* Header inner: match container */
  .fb-header__inner {
    padding-inline-start: clamp(20px, 5vw, 44px);
    padding-inline-end:   clamp(16px, 3vw, 24px);
  }

  /* Editorial main title: prevent 48px font on narrow screens */
  .fb-editorial-main-heading { font-size: 1.5em !important; }

  /* Quote mark: scale down from fixed 8rem (176px at 22px base) */
  .fb-blockquote__mark { font-size: clamp(48px, 12vw, 88px); }

  /* Facts grid: 1 column; already set but add sizing fix */
  .fb-fact__number { font-size: clamp(36px, 10vw, 60px) !important; }
  .fb-fact { padding: 28px 24px; }

  /* Context: stack at 768px, not 900px */
  .fb-context__inner { grid-template-columns: 1fr; }

  /* Final CTA buttons: stack on mobile */
  .fb-final-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .fb-final-cta__buttons .fb-btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Bio intro wrap: ensure responsive */
  .fb-bio-intro-wrap { flex-direction: column; }

  /* Footer: scale name and reduce body padding */
  .fb-footer__name-first,
  .fb-footer__name-last { font-size: clamp(28px, 7vw, 46px) !important; }
  .fb-footer__body { padding: 60px 0 !important; }

  /* Page hero title */
  .fb-page-hero__title { font-size: clamp(28px, 7vw, 56px); }
}

/* ── PHONES (≤ 600px) ─────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Container: very tight padding for small phones */
  .fb-container { padding-inline: 16px; }

  /* Header: tight */
  .fb-header__inner { padding-inline-start: 16px; padding-inline-end: 14px; }

  /* Split-hero: height determined by image — no override needed */
  .fb-split-hero__content { padding: 36px 20px 32px !important; }
  .fb-split-hero__subtitle { font-size: 0.9rem; }
  .fb-split-hero__desc     { font-size: 0.85rem; line-height: 1.7; }
  .fb-split-hero__cta      { flex-direction: column; align-items: stretch; }
  .fb-split-hero__cta .fb-btn { text-align: center; justify-content: center; }

  /* Split-hero name: allow wrapping, prevent overflow */
  .fb-split-hero__name { flex-wrap: wrap; }
  .fb-split-hero__name-first,
  .fb-split-hero__name-last {
    font-size: clamp(36px, 10vw, 52px) !important;
    white-space: normal;
  }

  /* Facts: single column, comfortable cards */
  .fb-facts__grid { grid-template-columns: 1fr !important; }
  .fb-fact { padding: 28px 24px; }
  .fb-fact__number { font-size: clamp(40px, 12vw, 64px) !important; }

  /* Quote mark */
  .fb-blockquote__mark { font-size: 56px; }

  /* Preview grid: 1 column */
  .fb-preview-grid { grid-template-columns: 1fr !important; }
  .fb-preview-card__visual { height: 140px; }

  /* Manuscripts teaser: 1 column */
  .fb-manu-grid { grid-template-columns: 1fr !important; }
  .fb-manu-card__body { padding: 18px 16px; }
  .fb-manu-card__num  { font-size: 1.6rem; }

  /* Distinctions modal close: keep inside viewport */
  .fb-dist-modal__close { top: 10px; right: 10px; background: rgba(0,0,0,.5); border-radius: 50%; padding: 6px 10px; }

  /* Section hero */
  .fb-page-hero { min-height: 220px; }
  .fb-page-hero__title { font-size: clamp(24px, 8vw, 40px); }

  /* Footer */
  .fb-footer__name-first,
  .fb-footer__name-last { font-size: clamp(26px, 8vw, 38px) !important; }

  /* PDF modal: full screen already at 600px; tighten controls */
  .fb-pdf-modal__header { padding: 10px 14px; gap: 8px; }
  .fb-pdf-ctrl { width: 28px; height: 28px; font-size: 0.75rem; }

  /* Section headings */
  .fb-section-header .fb-section-title { font-size: clamp(22px, 6vw, 36px); }

  /* Bio page figures */
  .fb-bio-figure-pair { flex-direction: column; }
  .fb-bio-figure-pair img,
  .fb-bio-figure-pair figure { max-width: 100%; }

  /* Breadcrumb */
  .fb-breadcrumb { font-size: 0.7rem; gap: 0.4rem; }

  /* Onepage editorial subheadings (h2-h4) */
  .fb-onepage-subheading { font-size: clamp(18px, 5vw, 28px) !important; }
  .fb-editorial-main-heading { font-size: clamp(20px, 6vw, 32px) !important; }
}

/* ── SMALL PHONES (≤ 480px) ──────────────────────────────────── */
@media (max-width: 480px) {
  /* Container */
  .fb-container { padding-inline: 14px; }

  /* Split-hero: height determined by image — no override needed */
  .fb-split-hero__content { padding: 28px 16px 28px !important; }
  .fb-split-hero__name-first,
  .fb-split-hero__name-last { font-size: clamp(32px, 10vw, 46px) !important; }
  .fb-split-hero__rule { margin: 12px 0; }

  /* Manuscripts book grid: single column on very small phones */
  .fb-manu-book-grid { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* Facts */
  .fb-fact__number { font-size: clamp(38px, 12vw, 56px) !important; }

  /* Timeline */
  .fb-timeline__card { padding: 16px; }

  /* Quote */
  .fb-blockquote__mark { font-size: 44px; }
  .fb-blockquote blockquote p { font-size: clamp(18px, 5vw, 28px) !important; }

  /* Distinctions grid */
  .fb-dist-grid { grid-template-columns: 1fr !important; }

  /* Section headings */
  .fb-section-header .fb-section-title { font-size: clamp(20px, 6vw, 28px); }

  /* Page sections: reduce block padding */
  .fb-facts,
  .fb-timeline-preview,
  .fb-quote-section,
  .fb-sections-preview,
  .fb-manuscripts-teaser,
  .fb-context,
  .fb-final-cta { padding-block: 48px; }

  /* Footer */
  .fb-footer__body { padding: 40px 0 !important; }
  .fb-footer__name-first,
  .fb-footer__name-last { font-size: clamp(24px, 9vw, 36px) !important; }
  .fb-footer__dates { font-size: 0.6rem; letter-spacing: 0.12em; }
  .fb-footer__bottom { padding: 20px 16px 0; }

  /* Buttons: full width on tiny phones */
  .fb-split-hero__cta .fb-btn,
  .fb-final-cta__buttons .fb-btn { width: 100%; }
}

/* ── VERY SMALL PHONES (≤ 380px) ─────────────────────────────── */
@media (max-width: 380px) {
  html { font-size: 18px; }

  .fb-container { padding-inline: 12px; }
  .fb-header__inner { padding-inline-start: 12px; padding-inline-end: 12px; }

  /* Split-hero: height determined by image — no override needed */
  .fb-split-hero__content { padding: 20px 12px 24px !important; }
  .fb-split-hero__name-first,
  .fb-split-hero__name-last { font-size: clamp(28px, 10vw, 40px) !important; }

  /* Manuscrit single page */
  .fb-manu-single__layout { gap: 20px; }

  /* Section padding */
  .fb-facts,
  .fb-timeline-preview,
  .fb-quote-section,
  .fb-sections-preview,
  .fb-manuscripts-teaser,
  .fb-context,
  .fb-final-cta { padding-block: 36px; }
}
