/* ════════════════════════════════════════════════════════
   BSC JOURNAL — Shared Stylesheet
   Editorial Luxury · Wes Anderson × Financial Times
   ════════════════════════════════════════════════════════ */

/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --navy: #0E1B3D;
  --navy-deep: #06102A;
  --navy-soft: #1B2851;
  --gold: #C9A961;
  --gold-deep: #9B7A2E;
  --gold-light: #E5D4A0;
  --cream: #F5F1E8;
  --cream-warm: #EDE6D3;
  --paper: #FAF7EF;
  --burgundy: #6B2737;
  --ink: #1A1A1A;
  --muted: #6B6B6B;
  --line: rgba(14, 27, 61, 0.15);
  --line-soft: rgba(14, 27, 61, 0.08);
  --shadow-soft: 0 30px 80px -30px rgba(14, 27, 61, 0.3);
  --shadow-paper: 0 2px 8px rgba(14, 27, 61, 0.06), 0 20px 60px -20px rgba(14, 27, 61, 0.18);
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; border: none; background: none; }

/* ─── Paper grain overlay ───────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Custom cursor ─────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--navy);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s,
              border 0.25s,
              mix-blend-mode 0.25s;
  mix-blend-mode: difference;
}
.cursor.hover {
  width: 48px; height: 48px;
  background: transparent;
  border: 1.5px solid var(--gold);
  mix-blend-mode: normal;
}
.cursor.dark {
  background: var(--cream);
}
@media (max-width: 1024px), (hover: none) {
  body, button, a { cursor: auto; }
  .cursor { display: none; }
}

/* ─── Page enter animation ──────────────────────────── */
.page-curtain {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9998;
  transform-origin: top;
  animation: curtainUp 0.9s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  pointer-events: none;
}
@keyframes curtainUp {
  0% { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}

/* ─── Typography ────────────────────────────────────── */
.display {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
}
.display em { font-style: italic; }
.grotesque {
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow.light { color: var(--gold); }
.smallcaps {
  font-variant: small-caps;
  letter-spacing: 0.08em;
}
.italic { font-style: italic; }
.ornament {
  font-family: 'Instrument Serif', serif;
  color: var(--gold);
  display: inline-block;
}
.ornament.spin {
  animation: spin 18s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Drop cap */
.drop-cap::first-letter {
  font-family: 'Instrument Serif', serif;
  font-size: 5.5rem;
  float: left;
  line-height: 0.85;
  padding: 0.4rem 0.7rem 0 0;
  color: var(--gold-deep);
  font-style: italic;
}

/* ─── MASTHEAD BAR (top of every page) ──────────────── */
.masthead {
  background: var(--navy);
  color: var(--cream);
  padding: 0.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  z-index: 99;
  border-bottom: 1px solid var(--gold);
}
.masthead-left, .masthead-right { flex: 1; display: flex; gap: 1.5rem; align-items: center; }
.masthead-right { justify-content: flex-end; }
.masthead-center {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  color: var(--gold-light);
}
.masthead-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ─── NAVIGATION ────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: padding 0.3s ease;
}
nav.scrolled { padding: 1rem 2.5rem; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--navy);
}
.nav-logo svg { width: 56px; height: 44px; }
.nav-logo-text {
  font-family: 'Fraunces', 'Instrument Serif', serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
}
.nav-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-top: 5px;
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links > a {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.nav-links > a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}
.nav-links > a:hover { color: var(--gold-deep); }
.nav-links > a:hover::after { width: 100%; left: 0; }
.nav-links > a.active { color: var(--gold-deep); }
.nav-links > a.active::after { width: 100%; left: 0; }

.nav-cta {
  background: var(--navy);
  color: var(--cream) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.85rem !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; padding: 0.5rem; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
  transition: all 0.3s;
}

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  padding: 1rem 2.2rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -14px rgba(14, 27, 61, 0.5);
}
.btn-ghost { color: var(--navy); border: 1.5px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-arrow { display: inline-block; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* ─── HERO (home) ───────────────────────────────────── */
.hero {
  position: relative;
  padding: 5rem 2.5rem 4rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-edition {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-edition-line { width: 60px; height: 1px; background: var(--gold); }
.hero-title {
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.92;
  margin-bottom: 2rem;
  color: var(--navy);
}
.hero-title em {
  color: var(--gold-deep);
  font-weight: 300;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: wordIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(1) { animation-delay: 0.3s; }
.hero-title .word:nth-child(2) { animation-delay: 0.45s; }
.hero-title .word:nth-child(3) { animation-delay: 0.6s; }
.hero-title .word:nth-child(4) { animation-delay: 0.75s; }
.hero-title .word:nth-child(5) { animation-delay: 0.9s; }
.hero-title .word:nth-child(6) { animation-delay: 1.05s; }
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-title .annotated {
  position: relative;
  display: inline-block;
}
.hero-title .annotated::after {
  content: '';
  position: absolute;
  left: -5%; bottom: 0.1em;
  width: 110%; height: 50%;
  background: var(--gold);
  opacity: 0.35;
  z-index: -1;
  border-radius: 100% 30% 100% 30% / 100% 80% 100% 80%;
  transform: rotate(-1deg);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual side */
.hero-art {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-chart {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  padding: 0 1rem;
}
.hero-bar {
  width: 52px;
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  animation: barRise 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  position: relative;
  cursor: none;
  transition: transform 0.3s;
}
.hero-bar:hover { transform: scaleY(1.05) translateY(-4px); }
.hero-bar:nth-child(1) { background: var(--navy); height: 35%; animation-delay: 1.2s; }
.hero-bar:nth-child(2) { background: var(--gold); height: 55%; animation-delay: 1.35s; }
.hero-bar:nth-child(3) { background: var(--navy); height: 78%; animation-delay: 1.5s; }
.hero-bar:nth-child(4) { background: var(--gold); height: 100%; animation-delay: 1.65s; }
@keyframes barRise {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}
.hero-arrow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-arrow path {
  stroke: var(--navy);
  stroke-width: 2.5;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawArrow 1.6s ease-out 2s forwards;
}
@keyframes drawArrow { to { stroke-dashoffset: 0; } }

/* Floating stickers around hero */
.sticker {
  position: absolute;
  background: var(--paper);
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  padding: 1rem 1.4rem;
  box-shadow: 6px 6px 0 var(--navy);
  opacity: 0;
  animation: stickerIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.sticker-1 {
  top: 6%; left: -2.5rem;
  transform: rotate(-6deg);
  animation-delay: 2.2s;
}
.sticker-2 {
  bottom: 14%; right: -2rem;
  transform: rotate(5deg);
  animation-delay: 2.45s;
}
.sticker-3 {
  top: 38%; right: -3.5rem;
  background: var(--gold);
  border-color: var(--navy);
  box-shadow: 6px 6px 0 var(--navy);
  transform: rotate(-3deg);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  animation-delay: 2.7s;
}
@keyframes stickerIn {
  from { opacity: 0; transform: translateY(20px) rotate(-15deg); }
}
.sticker-1, .sticker-2, .sticker-3 {
  animation-fill-mode: forwards;
}
.sticker .num {
  font-family: 'Instrument Serif', serif;
  font-size: 1.7rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1;
}
.sticker .label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.sticker-3 .num { color: var(--navy); font-size: 0.95rem; line-height: 1.1; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; letter-spacing: 0.05em; }

/* Vertical side text */
.hero-side {
  position: absolute;
  left: 0.5rem;
  bottom: 5rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.5s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

/* ─── TICKER (financial stock-ticker style) ─────────── */
.ticker {
  background: var(--navy);
  color: var(--cream);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: tickerScroll 35s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.ticker-item .label {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.ticker-item .value {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.4rem;
}
.ticker-divider {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* ─── SECTIONS (general) ───────────────────────────── */
section { padding: 7rem 2.5rem; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
  align-items: end;
}
.section-head h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--navy);
}
.section-head h2 em { color: var(--gold-deep); }
.section-head .lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.7;
}
.section-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-deep);
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.section-num .ornament { font-size: 1.2rem; }

/* Diagonal divider */
.diagonal-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
}
.diagonal-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* ─── PREVIEW TILES (services teaser on home) ──────── */
.preview {
  background: var(--paper);
  position: relative;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.preview-tile {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.4s ease, color 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.preview-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.preview-tile:hover::before { transform: scaleY(1); }
.preview-tile > * { position: relative; z-index: 1; transition: color 0.4s; }
.preview-tile:hover .preview-num,
.preview-tile:hover h3,
.preview-tile:hover p { color: var(--cream); }
.preview-tile:hover .preview-arrow { color: var(--gold); }
.preview-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}
.preview-tile h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}
.preview-tile p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.preview-arrow {
  margin-top: 1.5rem;
  display: inline-block;
  color: var(--navy);
  font-size: 1.3rem;
  transition: transform 0.3s, color 0.3s;
}
.preview-tile:hover .preview-arrow { transform: translateX(8px); }

/* ─── PULL QUOTE ────────────────────────────────────── */
.pull-quote-section {
  background: var(--cream);
  padding: 7rem 2.5rem;
  position: relative;
  text-align: center;
}
.pull-quote-section::before {
  content: '“';
  font-family: 'Instrument Serif', serif;
  font-size: 22rem;
  position: absolute;
  top: 1rem; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.15;
  line-height: 0.8;
  pointer-events: none;
  font-style: italic;
}
.pull-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  line-height: 1.25;
  color: var(--navy);
  max-width: 1100px;
  margin: 0 auto;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.pull-quote em {
  background: linear-gradient(180deg, transparent 60%, var(--gold) 60%, var(--gold) 90%, transparent 90%);
  font-style: normal;
  font-weight: 500;
  padding: 0 0.1em;
}
.pull-quote-attr {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.pull-quote-attr-line { width: 40px; height: 1px; background: var(--gold-deep); }

/* ─── CTA SECTION ───────────────────────────────────── */
.cta-final {
  background: var(--navy);
  color: var(--cream);
  padding: 6rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: 'BSC';
  position: absolute;
  bottom: -8rem;
  right: -3rem;
  font-family: 'Instrument Serif', serif;
  font-size: 28rem;
  font-weight: 600;
  color: rgba(201, 169, 97, 0.035);
  line-height: 1;
  letter-spacing: -0.03em;
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-final h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.cta-final h2 em { color: var(--gold); }
.cta-final p {
  color: rgba(245, 241, 232, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 480px;
}
.cta-final .btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.cta-final .btn-primary:hover {
  background: var(--cream);
}

/* ─── FOOTER (colophon) ────────────────────────────── */
footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 5rem 2.5rem 2rem;
  position: relative;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  margin-bottom: 3rem;
}
.footer-top h3 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  max-width: 600px;
}
.footer-top h3 em { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .nav-logo svg { filter: brightness(0) invert(1); }
.footer-brand .nav-logo-text { color: var(--cream); }
.footer-brand .nav-logo-sub { color: var(--gold); }
.footer-brand p {
  color: rgba(245, 241, 232, 0.6);
  margin-top: 1.5rem;
  max-width: 360px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.footer-col h5 {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a {
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.93rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
  font-size: 0.8rem;
  color: rgba(245, 241, 232, 0.5);
  letter-spacing: 0.05em;
}
.footer-bottom .ornament { color: var(--gold); margin: 0 0.5rem; }
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE specific
   ═══════════════════════════════════════════════════════ */
.about-hero {
  padding: 5rem 2.5rem 4rem;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.about-hero h1 em { color: var(--gold-deep); }
.about-hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}
.founder-card {
  background: var(--navy);
  border-radius: 6px;
  padding: 3rem 2.5rem;
  color: var(--cream);
  position: relative;
  box-shadow: var(--shadow-soft);
  transform: rotate(1.5deg);
  transition: transform 0.4s ease;
}
.founder-card:hover { transform: rotate(0deg); }
.founder-card::after {
  content: 'EST. 2015';
  position: absolute;
  top: -1.2rem; right: -1.2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transform: rotate(8deg);
}
.founder-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 3.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.founder-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.founder-card .role {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.founder-card .bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.8);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}
.founder-card .signature {
  margin-top: 1.5rem;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
}

/* About story */
.about-story {
  padding: 7rem 2.5rem;
  background: var(--cream);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.story-side {
  position: sticky;
  top: 8rem;
}
.story-side .ornament {
  font-size: 4rem;
  display: block;
  margin-bottom: 1.5rem;
}
.story-side h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
}
.story-side h2 em { color: var(--gold-deep); }
.story-content { font-size: 1.05rem; line-height: 1.85; color: #333; }
.story-content p { margin-bottom: 1.5rem; }
.story-content .pull {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  line-height: 1.35;
}

/* Values cards */
.values {
  padding: 7rem 2.5rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: 6px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card:nth-child(1) { transform: rotate(-1deg); }
.value-card:nth-child(2) { transform: translateY(20px); }
.value-card:nth-child(3) { transform: rotate(1deg); }
.value-card:hover {
  transform: translateY(-8px) rotate(0deg);
  box-shadow: var(--shadow-paper);
  border-color: var(--gold);
}
.value-card .roman {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.value-card h4 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
}
.value-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Timeline */
.timeline {
  padding: 7rem 2.5rem;
  background: var(--cream);
}
.timeline-track {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}
.timeline-item:nth-child(odd) .timeline-content { text-align: right; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; text-align: left; }
.timeline-item:nth-child(even) .timeline-year { grid-column: 1; text-align: right; }
.timeline-dot {
  width: 18px; height: 18px;
  background: var(--gold);
  border: 3px solid var(--cream);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 0 1px var(--gold);
}
.timeline-year {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold-deep);
}
.timeline-content h4 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.timeline-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Stats inline */
.stats-strip {
  background: var(--navy);
  color: var(--cream);
  padding: 5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-num-big {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num-big sup { font-size: 0.5em; }
.stat-block-mini { text-align: left; padding-right: 2rem; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-block-mini:last-child { border-right: none; }
.stat-block-mini .label {
  font-size: 0.9rem;
  color: rgba(245, 241, 232, 0.7);
  margin-top: 0.8rem;
  letter-spacing: 0.05em;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   SERVICES PAGE specific
   ═══════════════════════════════════════════════════════ */
.services-hero {
  padding: 5rem 2.5rem 4rem;
  background: var(--paper);
  position: relative;
}
.services-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--navy);
  max-width: 1100px;
}
.services-hero h1 em { color: var(--gold-deep); }
.services-hero .lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 640px;
  margin-top: 2rem;
  line-height: 1.7;
}

.services-list {
  padding: 4rem 2.5rem 7rem;
  background: var(--cream);
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 60px;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s ease;
  cursor: none;
  align-items: start;
}
.service-row:hover { padding-left: 2rem; }
.service-row:hover .service-row-num { color: var(--gold); }
.service-row:hover .service-row-arrow { transform: translateX(10px); color: var(--gold); }
.service-row-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold-deep);
  transition: color 0.3s;
}
.service-row-title {
  font-family: 'Instrument Serif', serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
}
.service-row-desc {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}
.service-row-desc ul {
  list-style: none;
  margin-top: 1rem;
}
.service-row-desc li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-size: 0.95rem;
}
.service-row-desc li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.service-row-arrow {
  font-size: 2rem;
  color: var(--navy);
  transition: all 0.3s;
  justify-self: end;
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE specific
   ═══════════════════════════════════════════════════════ */
.contact-hero {
  padding: 5rem 2.5rem 4rem;
  background: var(--paper);
}
.contact-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
}
.contact-hero h1 em { color: var(--gold-deep); }
.contact-hero p {
  font-size: 1.15rem;
  color: var(--muted);
  margin-top: 1.5rem;
  max-width: 560px;
  line-height: 1.7;
}

.contact-main {
  padding: 5rem 2.5rem 7rem;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}
.contact-info {
  display: grid;
  gap: 1.2rem;
}
.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.6rem;
  background: var(--paper);
  border-radius: 8px;
  border: 1px solid var(--line);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-info-item:hover {
  transform: translateX(6px);
  border-color: var(--gold);
  background: var(--cream-warm);
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-item .label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-info-item .value {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 500;
}
.contact-info-item a:hover { color: var(--gold-deep); }

/* Contact form */
.contact-form {
  background: var(--navy);
  color: var(--cream);
  padding: 3.5rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.contact-form h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  position: relative;
}
.contact-form h3 em { color: var(--gold); font-style: italic; }
.contact-form > p {
  color: rgba(245, 241, 232, 0.7);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  position: relative;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
.form-field { position: relative; }
.form-field.full { grid-column: span 2; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
  cursor: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 241, 232, 0.4);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}
.form-field textarea {
  resize: vertical;
  min-height: 130px;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A961' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}
.form-field select option { background: var(--navy); color: var(--cream); }
.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
.form-submit:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* FAQ */
.faq {
  padding: 7rem 2.5rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.faq-list {
  max-width: 900px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  cursor: none;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  transition: color 0.3s;
}
.faq-q .faq-icon {
  font-size: 1.5rem;
  color: var(--gold-deep);
  transition: transform 0.3s;
}
.faq-item.open .faq-q { color: var(--gold-deep); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 1rem;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .masthead { padding: 0.5rem 1.5rem; font-size: 0.62rem; gap: 0.5rem; }
  .masthead-center { font-size: 0.75rem; }
  nav, nav.scrolled { padding: 1rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 3rem; }
  .hero-grid, .about-hero-grid, .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-art { height: 380px; margin-top: 1rem; }
  .sticker-1, .sticker-2, .sticker-3 { display: none; }
  .hero-side { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .preview-grid, .values-grid, .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-grid { gap: 1rem; }
  .stat-block-mini { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1rem; }
  .cta-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-top { flex-direction: column; gap: 2rem; text-align: center; }
  .service-row { grid-template-columns: 60px 1fr 30px; gap: 1rem; }
  .service-row > .service-row-desc { grid-column: 1 / -1; padding-left: 60px; }
  section { padding: 5rem 1.5rem; }
  .timeline-item { grid-template-columns: 1fr 40px 1fr; gap: 1rem; }
  .timeline-year { font-size: 1.5rem; }
  .story-side { position: static; }
  .pull-quote-section::before { font-size: 14rem; }
  .nav-links { gap: 1.5rem; }
}

@media (max-width: 640px) {
  .masthead-left, .masthead-right { font-size: 0.55rem; }
  .nav-links > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 0.6rem 1rem !important; font-size: 0.78rem !important; }
  .hero-title { font-size: 3rem; }
  .preview-grid, .values-grid, .stats-strip-grid { grid-template-columns: 1fr; }
  .stats-strip-grid { gap: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .contact-form { padding: 2rem; }
  .timeline-item {
    grid-template-columns: 30px 1fr;
  }
  .timeline-item .timeline-year { font-size: 1.3rem; }
  .timeline-item .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
    text-align: left;
  }
  .timeline-item:nth-child(even) .timeline-year {
    grid-column: 2;
    text-align: left;
  }
  .timeline-track::before { left: 9px; }
  .timeline-dot { margin-left: 0; }
  .service-row { grid-template-columns: 50px 1fr; }
  .service-row > .service-row-arrow { display: none; }
  .service-row > .service-row-desc { padding-left: 50px; }
  .founder-card { padding: 2rem 1.5rem; }
  .pull-quote-section::before { font-size: 10rem; }
  .cta-final::before { font-size: 14rem; }
}

/* ═══════════════════════════════════════════════════════
   ANNUAL NUMBERS — magazine spread (home page)
   ═══════════════════════════════════════════════════════ */
.annual-numbers {
  background: var(--cream-warm);
  padding: 7rem 2.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.annual-numbers::before,
.annual-numbers::after {
  content: '✦';
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--gold);
  position: absolute;
  font-size: 2rem;
  opacity: 0.45;
}
.annual-numbers::before { top: 2rem; left: 2rem; }
.annual-numbers::after { bottom: 2rem; right: 2rem; }

.annual-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}
.annual-stamp {
  display: inline-block;
  border: 1.5px solid var(--gold-deep);
  color: var(--gold-deep);
  padding: 0.5rem 1.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  transform: rotate(-2deg);
  margin-bottom: 2rem;
  background: var(--cream);
}
.annual-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 400;
}
.annual-title em { color: var(--gold-deep); font-style: italic; }
.annual-sub {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.annual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.annual-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  transition: border 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.annual-card.reveal { opacity: 0; transform: translateY(30px); }
.annual-card.reveal.visible { opacity: 1; transform: translateY(0); }
.annual-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-paper);
}
.ac-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.ac-footer {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--navy);
  border-top: 1px dashed var(--line);
  padding-top: 1rem;
  margin-top: auto;
  line-height: 1.45;
}
.ac-body { flex: 1; }

/* ── Card 1: Big number + hand-drawn scribble */
.ac-1 .ac-body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 180px;
}
.ac-1 .ac-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(5rem, 12vw, 8rem);
  color: var(--navy);
  line-height: 1;
  position: relative;
  z-index: 2;
}
.ac-1 .ac-num sup {
  font-size: 0.32em;
  color: var(--gold-deep);
  vertical-align: top;
  margin-left: 4px;
}
.ac-1 svg.scribble {
  position: absolute;
  width: 140%; height: 140%;
  top: -20%; left: -20%;
  pointer-events: none;
  z-index: 1;
}
.ac-1 svg.scribble path {
  stroke: var(--gold);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 2s ease-out 0.4s;
}
.annual-card.ac-1.visible svg.scribble path { stroke-dashoffset: 0; }
.ac-1 .ac-arrow {
  position: absolute;
  bottom: 0; right: 5%;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--gold-deep);
  font-size: 0.92rem;
  transform: rotate(-8deg);
  opacity: 0;
  transition: opacity 0.5s ease 1.8s;
}
.annual-card.ac-1.visible .ac-arrow { opacity: 1; }

/* ── Card 2: Bar chart growth */
.ac-2 .ac-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.ac-2 .ac-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(4rem, 8vw, 5.5rem);
  color: var(--navy);
  line-height: 1;
}
.ac-2 .ac-num sup {
  font-size: 0.38em;
  color: var(--gold-deep);
  vertical-align: top;
}
.ac-2 .mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  margin-top: 1.2rem;
}
.ac-2 .mini-bar {
  flex: 1;
  background: var(--navy);
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.ac-2 .mini-bar:nth-child(even) { background: var(--gold); }
.annual-card.ac-2.visible .mini-bar { transform: scaleY(1); }
.ac-2 .mini-bar:nth-child(1) { transition-delay: 0.1s; }
.ac-2 .mini-bar:nth-child(2) { transition-delay: 0.2s; }
.ac-2 .mini-bar:nth-child(3) { transition-delay: 0.3s; }
.ac-2 .mini-bar:nth-child(4) { transition-delay: 0.4s; }
.ac-2 .mini-bar:nth-child(5) { transition-delay: 0.5s; }
.ac-2 .mini-bar:nth-child(6) { transition-delay: 0.6s; }
.ac-2 .mini-bar:nth-child(7) { transition-delay: 0.7s; }
.ac-2 .yr-labels {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.ac-2 .yr-labels span { flex: 1; text-align: center; }

/* ── Card 3: Timeline strip */
.ac-3 .ac-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}
.ac-3 .timeline-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.ac-3 .ts-year { transition: color 0.3s; }
.ac-3 .ts-year.current {
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 1.1rem;
}
.ac-3 .ts-arrow { color: var(--gold); font-size: 0.7rem; }
.ac-3 .ac-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(4.5rem, 9vw, 6rem);
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.ac-3 .ac-num .il {
  font-size: 0.32em;
  color: var(--gold-deep);
}

/* ── Card 4: SVG progress ring */
.ac-4 .ac-body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 200px;
}
.ac-4 svg.ring {
  width: 180px;
  height: 180px;
  transform: rotate(-90deg);
}
.ac-4 .ring-bg {
  fill: none;
  stroke: var(--line);
  stroke-width: 5;
}
.ac-4 .ring-fg {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 502;
  stroke-dashoffset: 502;
  transition: stroke-dashoffset 2s ease-out 0.3s;
}
.annual-card.ac-4.visible .ring-fg { stroke-dashoffset: 10; }
.ac-4 .ring-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.ac-4 .ring-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 3.2rem;
  color: var(--navy);
  line-height: 1;
}
.ac-4 .ring-num span {
  font-size: 0.4em;
  color: var(--gold-deep);
  vertical-align: top;
}

/* ── Card 5: Hexagon sectors */
.ac-5 .ac-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}
.ac-5 .ac-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(4rem, 8vw, 5.5rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.ac-5 .hex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.ac-5 .hex {
  width: 44px;
  height: 50px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 500;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform 0.3s, background 0.3s;
}
.ac-5 .hex:hover { transform: scale(1.12); }
.ac-5 .hex:nth-child(even) { background: var(--gold); color: var(--navy); }
.ac-5 .hex:nth-child(3n+1) { background: var(--burgundy); color: var(--gold-light); }

/* ── Card 6: Team avatars stack */
.ac-6 .ac-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}
.ac-6 .ac-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(4rem, 8vw, 5.5rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.ac-6 .ac-num sup {
  font-size: 0.35em;
  color: var(--gold-deep);
  vertical-align: top;
}
.ac-6 .avatars {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.ac-6 .av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border: 1.5px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Instrument Serif', serif;
  font-size: 0.78rem;
  font-style: italic;
  transition: transform 0.3s;
}
.ac-6 .av:hover { transform: scale(1.2); z-index: 2; }
.ac-6 .av:nth-child(3n) { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--navy); }
.ac-6 .av:nth-child(5n) { background: linear-gradient(135deg, var(--burgundy), #8B3848); color: var(--cream); }
.ac-6 .av:nth-child(7n) { background: var(--cream); color: var(--navy); border-color: var(--gold); }

/* Fun facts strip */
.fun-facts {
  margin: 4rem auto 0;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px dashed var(--gold-deep);
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
  position: relative;
}
.fun-fact {
  padding: 1.8rem 1rem;
  border-right: 1.5px dashed var(--line);
  text-align: center;
  transition: background 0.3s;
}
.fun-fact:last-child { border-right: none; }
.fun-fact:hover { background: var(--cream-warm); }
.fun-fact .ff-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.fun-fact .ff-num sup { font-size: 0.45em; }
.fun-fact .ff-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════
   LEDGER PAPER (about page) — accounting book style
   ═══════════════════════════════════════════════════════ */
.ledger-section {
  background: var(--cream);
  padding: 7rem 2.5rem;
  position: relative;
}
.ledger-paper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4rem 4rem 3rem;
  position: relative;
  box-shadow: var(--shadow-paper);
  transform: rotate(-0.4deg);
}
.ledger-paper::before {
  content: '';
  position: absolute;
  top: 1.5rem; left: 60px; bottom: 1.5rem;
  width: 1px;
  background: var(--gold);
  opacity: 0.3;
}
.ledger-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid var(--line);
  position: relative;
}
.ledger-eyebrow {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--gold-deep);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.ledger-eyebrow .ornament { color: var(--gold); margin: 0 0.6rem; }
.ledger-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--navy);
  line-height: 1.05;
  font-weight: 400;
}
.ledger-header h2 em { color: var(--gold-deep); font-style: italic; }

.ledger-body { margin-bottom: 2rem; }
.ledger-row {
  display: flex;
  align-items: baseline;
  padding: 1rem 0;
  font-family: 'Instrument Serif', serif;
}
.ledger-row + .ledger-row { border-top: 1px dotted var(--line-soft); }
.lr-key {
  font-size: 1.1rem;
  color: var(--navy);
  font-style: italic;
}
.lr-dots {
  flex: 1;
  border-bottom: 1px dotted var(--gold-deep);
  margin: 0 1rem;
  position: relative;
  top: -4px;
  opacity: 0.5;
}
.lr-val {
  font-size: 1.7rem;
  color: var(--navy);
  font-weight: 500;
  white-space: nowrap;
}
.lr-val sup, .lr-val .pct {
  font-size: 0.5em;
  color: var(--gold-deep);
  vertical-align: top;
}
.ledger-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1.5rem;
  border-top: 3px double var(--navy) !important;
  margin-top: 1rem;
  font-family: 'Instrument Serif', serif;
}
.ledger-total .lr-key {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ledger-total .lr-val {
  font-size: 2rem;
  color: var(--gold-deep);
  font-style: italic;
}
.ledger-stamp {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 100px;
  height: 100px;
  border: 3px double var(--gold-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(14deg);
  color: var(--gold-deep);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.2;
  opacity: 0.9;
  background: rgba(245, 241, 232, 0.5);
}
.ledger-sig {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.ledger-sig .sig-line {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 4px;
  min-width: 140px;
}
.ledger-sig .sig-cap {
  text-transform: uppercase;
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
  .annual-grid { grid-template-columns: repeat(2, 1fr); }
  .fun-facts { grid-template-columns: repeat(2, 1fr); }
  .fun-fact:nth-child(2) { border-right: none; }
  .fun-fact:nth-child(1), .fun-fact:nth-child(2) { border-bottom: 1.5px dashed var(--line); }
}
@media (max-width: 640px) {
  .annual-grid { grid-template-columns: 1fr; }
  .annual-card { min-height: 280px; }
  .fun-facts { grid-template-columns: 1fr; }
  .fun-fact { border-right: none; border-bottom: 1.5px dashed var(--line); }
  .fun-fact:last-child { border-bottom: none; }
  .annual-numbers::before, .annual-numbers::after { display: none; }
  .ledger-paper { padding: 2.5rem 1.5rem; }
  .ledger-paper::before { display: none; }
  .ledger-stamp { width: 75px; height: 75px; font-size: 0.65rem; top: 0.8rem; right: 0.8rem; }
  .lr-key { font-size: 0.95rem; }
  .lr-val { font-size: 1.3rem; }
  .ledger-row { padding: 0.7rem 0; }
  .ledger-sig { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════
   LANGUAGE SWITCHER (masthead)
   ═══════════════════════════════════════════════════════ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
}
.lang-switch a {
  color: rgba(245, 241, 232, 0.55);
  padding: 0 0.15rem;
  transition: color 0.2s;
  letter-spacing: 0.2em;
}
.lang-switch a.active { color: var(--gold); }
.lang-switch a:hover { color: var(--gold-light); }
.lang-switch span { color: rgba(245, 241, 232, 0.3); }

/* Mobile: logo size adjustments */
@media (max-width: 1024px) {
  .nav-logo svg { width: 48px; height: 38px; }
  .nav-logo-text { font-size: 1.95rem; }
}
@media (max-width: 640px) {
  .nav-logo { gap: 0.7rem; }
  .nav-logo svg { width: 42px; height: 34px; }
  .nav-logo-text { font-size: 1.7rem; }
  .nav-logo-sub { font-size: 0.55rem; margin-top: 3px; }
}
