/* ============================================================
   MFBW — Investment Sales | Stylesheet
   Inter (sans-serif) — clean, modern, Graphik-adjacent
   ============================================================ */

/* Inter is loaded from Google Fonts in <head> — no @font-face needed */

/* ---------- Design tokens ---------- */
:root {
  /* Typography — Inter everywhere with sensible system fallbacks */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Color — pulled from the RIPCO marketing graphics */
  --navy:        #0a1a2e;
  --navy-deep:   #060f1d;
  --navy-soft:   #1a2a44;
  /* Accent — silver (replaces former gold) */
  --gold:        #8995a8;
  --gold-soft:   #c4cad3;
  /* Surfaces — simplified to white + cool light gray (replaces former creams) */
  --cream:       #ffffff;
  --cream-warm:  #f4f5f7;
  --paper:       #ffffff;
  --ink:         #0e1722;
  --ink-soft:    #2a3548;
  --muted:       #6b7280;
  --rule:        rgba(10, 26, 46, 0.12);
  --rule-light:  rgba(10, 26, 46, 0.06);

  /* Spacing scale */
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --section-y: clamp(5rem, 10vw, 9rem);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

/* ---------- Typography utilities ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.25rem); }
h4 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
p  { margin: 0 0 1em; }

/* "Section eyebrow" — the spaced caps the capabilities book uses */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--gold);
  display: inline-block;
}
.eyebrow-rule {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow-rule::before {
  content: '';
  width: 2.25rem;
  height: 1px;
  background: var(--gold);
}
.eyebrow--lg {
  font-size: 2.4rem;
  letter-spacing: 0.26em;
}
.eyebrow--lg.eyebrow-rule { gap: 1.75rem; }
.eyebrow--lg.eyebrow-rule::before { width: 5.5rem; height: 2px; }

/* Section number, like the deck's "01 / 02 / 03" */
.section-number {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ---------- Layout helpers ---------- */
.wrap   { max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; position: relative; }
.section--dark { background: var(--navy); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }

/* Decorative thin rule */
.hairline {
  height: 1px;
  background: var(--rule);
  width: 100%;
  margin: 0;
  border: 0;
}
.section--dark .hairline { background: rgba(255,255,255,0.15); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(10, 26, 46, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding 0.3s ease;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.nav__brand img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.nav__brand:hover img { opacity: 0.85; }
.nav__links {
  display: flex;
  gap: 1.85rem;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cream);
}
.nav__links a {
  position: relative;
  padding: 0.4em 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.65em 1.4em;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav__cta:hover { background: var(--gold); color: var(--navy); }
.nav__toggle { display: none; color: var(--cream); padding: 0.4em; }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy-deep);
    padding: 1.5rem var(--gutter);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav__links.is-open a { padding: 0.85em 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav__links.is-open .nav__cta { margin-top: 0.5rem; align-self: flex-start; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(6,15,29,0.65) 0%, rgba(6,15,29,0.85) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(201,165,87,0.15), transparent 60%),
    var(--navy-deep);
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-top: 7rem;
}
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__eyebrow::before {
  content: '';
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.4vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin: 0 0 2rem;
  animation: rise 1.2s ease 0.1s both;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin: 0 0.05em;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 52ch;
  line-height: 1.6;
  color: rgba(247,243,236,0.78);
  margin: 0 0 3rem;
  animation: rise 1.2s ease 0.3s both;
}
.hero__cta-row {
  display: flex; flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  animation: rise 1.2s ease 0.5s both;
}
.btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 1.05em 2em;
  border: 1px solid var(--gold);
  color: var(--navy);
  background: var(--gold);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.btn:hover { background: transparent; color: var(--gold); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247,243,236,0.35);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Hero stats strip */
.hero__stats {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.85rem, 2.2vw, 2rem);
  padding-top: 2.5rem;
  border-top: 1px solid rgba(247,243,236,0.18);
  animation: rise 1.2s ease 0.7s both;
}
.hero__stat {
  display: flex; flex-direction: column;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat-num em {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}
.hero__stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(247,243,236,0.6);
  margin-top: 0.85rem;
}
@media (max-width: 1080px) { .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (max-width: 720px)  { .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; } }

/* ---------- Clients — logo carousel ---------- */
.clients {
  background: #ffffff;
  padding: clamp(2.25rem, 4vw, 3.25rem) 0;
  border-bottom: 1px solid var(--rule-light);
  position: relative;
  overflow: hidden;
}
.clients__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-align: center;
  margin: 0 0 clamp(1.5rem, 2.5vw, 2rem);
}
.clients__eyebrow em {
  font-style: normal;
  color: var(--ink);
  font-weight: 500;
}
.clients__marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* Soft fade on both edges so logos drift in and out */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.clients__track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 3.5vw, 3.25rem);
  width: max-content;
  animation: clientsScroll 28s linear infinite;
  will-change: transform;
}
.clients__track:hover { animation-play-state: paused; }
.clients__logo {
  flex: 0 0 auto;
  height: clamp(28px, 3vw, 38px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients__logo img {
  max-height: 100%;
  width: auto;
  max-width: clamp(96px, 9vw, 130px);
  object-fit: contain;
  display: block;
}
@keyframes clientsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   APPROACH — the four pillars (Pricing / Process / Execution / Relationship)
   ============================================================ */
.approach__head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.approach__head h2 {
  margin-top: 1.25rem;
}
.approach__head h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.approach__intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52ch;
}
@media (max-width: 880px) {
  .approach__head { grid-template-columns: 1fr; gap: 2rem; }
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pillar {
  background: var(--paper);
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s ease;
  position: relative;
}
.pillar:hover { background: var(--cream); }
.pillar__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.pillar__label {
  font-family: var(--font-body);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--muted);
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.9vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0.4rem 0 0.6rem;
}
.pillar__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.pillar__body {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: clamp(3rem, 5vw, 4.5rem);
}
.team-card {
  display: flex; flex-direction: column;
}
.team-card__photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 280px;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 1.75rem;
  position: relative;
}
.team-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(0.1);
}
.team-card:hover .team-card__photo img { transform: scale(1.03); filter: grayscale(0); }
.team-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.1;
  margin: 0 0 0.4rem;
}
.team-card__role {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.team-card__bio {
  font-family: var(--font-body);
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 48ch;
}
.team-card__contact {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.team-card__contact a:hover { color: var(--gold); }

@media (max-width: 720px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ---------- Associate row (smaller cards, ~half size) ---------- */
.team-grid-sm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--rule);
}
.team-card--sm .team-card__photo {
  aspect-ratio: 1 / 1;
  width: 110px;
  max-width: 110px;
  margin-bottom: 1.1rem;
}
.team-card--sm .team-card__name {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  margin: 0 0 0.3rem;
}
.team-card--sm .team-card__role {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  margin-bottom: 0.85rem;
}
.team-card--sm .team-card__bio {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 42ch;
}
.team-card--sm .team-card__contact {
  font-size: 0.82rem;
}
@media (max-width: 880px) {
  .team-grid-sm { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .team-grid-sm { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-card--sm .team-card__photo { width: 130px; max-width: 130px; }
}

/* ============================================================
   TRACK RECORD
   ============================================================ */
.track__head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.track__head h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.track__intro {
  font-family: var(--font-body);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 52ch;
  font-size: 1.05rem;
}
@media (max-width: 880px) { .track__head { grid-template-columns: 1fr; gap: 2rem; } }

.track-category {
  margin-top: clamp(3rem, 5vw, 4.5rem);
}
.track-category__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
}
.track-category__title {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}
.track-category__title h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.track-category__title h3 em { font-style: italic; font-weight: 400; color: var(--gold); }
.track-category__volume {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--gold);
  letter-spacing: -0.01em;
}
.track-category__volume small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-top: 0.4rem;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}
@media (max-width: 980px) { .track-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .track-grid { grid-template-columns: 1fr; } }

.deal {
  display: flex; flex-direction: column;
  background: var(--paper);
  transition: transform 0.3s ease;
}
.deal:hover { transform: translateY(-4px); }
.deal__photo {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--cream);
}
.deal__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.deal:hover .deal__photo img { transform: scale(1.04); }
/* Marketing-graphic crops — pull focus to the building, away from the text banner */
.deal__photo img[data-crop="bottom"] { object-position: center 100%; }
.deal__photo img[data-crop="top"]    { object-position: center 0%; }
.deal__body {
  padding: 1.5rem 0 0.5rem;
}
.deal__location {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.deal__addr {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  letter-spacing: -0.005em;
}
.deal__meta {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.deal__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}
.deal__sep { color: var(--muted); }

/* ============================================================
   FEATURED — recent closings (1509 Pacific + 346 Malcolm X)
   ============================================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.featured-card {
  background: var(--cream);
  overflow: hidden;
}
.featured-card img {
  width: 100%; height: auto;
  display: block;
}
@media (max-width: 880px) { .featured-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PODCAST — Broker Brunch
   ============================================================ */
.podcast {
  background: var(--navy-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.podcast::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,165,87,0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.04), transparent 50%);
  pointer-events: none;
}
.podcast__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.podcast__cover {
  aspect-ratio: 1 / 1;
  background: var(--navy);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  position: relative;
}
.podcast__cover img { width: 100%; height: 100%; object-fit: cover; }
/* Video embed variant — 16:9 instead of square */
.podcast__video {
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.podcast__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.podcast h2 { color: var(--cream); margin-bottom: 1.5rem; }
.podcast h2 em { font-style: italic; font-weight: 400; color: var(--gold); }
.podcast__lede {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(247,243,236,0.82);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.podcast__platforms {
  display: flex; flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.podcast__platform {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 0.85em 1.6em;
  border: 1px solid rgba(247,243,236,0.25);
  color: var(--cream);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.podcast__platform:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 880px) {
  .podcast__inner { grid-template-columns: 1fr; }
  .podcast__cover { max-width: 360px; margin: 0 auto; }
  .podcast__video { max-width: 100%; }
}

/* ============================================================
   NEWS / INSIGHTS preview on home page
   ============================================================ */
.news-preview {
  background: var(--cream);
}
.news-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.news-feature__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}
.news-feature__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.news-feature:hover .news-feature__img img { transform: scale(1.03); }
.news-feature__source {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.news-feature__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
}
.news-feature__excerpt {
  font-family: var(--font-body);
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 52ch;
}
.news-feature__meta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.link-arrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--gold);
  transition: color 0.25s ease, gap 0.25s ease;
}
.link-arrow:hover { color: var(--gold); gap: 1.1em; }
@media (max-width: 880px) { .news-feature { grid-template-columns: 1fr; } }

/* News preview — card grid on homepage */
.news-preview__head { margin-bottom: 0; }
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 760px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule-light);
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.news-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.news-card__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy); }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card__img img { transform: scale(1.04); }
.news-card__body {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.news-card__source {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0;
}
.news-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  font-weight: 600;
}
.news-card__excerpt {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.news-card .link-arrow { margin-top: auto; padding-top: 0.75rem; }
.news-preview__more { margin-top: clamp(2rem, 4vw, 3rem); text-align: center; }

/* ============================================================
   INVESTOR LIST — contact form
   ============================================================ */
.investor-list {
  background: var(--paper);
  border-top: 1px solid var(--rule-light);
}
.investor-list__head {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.investor-list__head h2 {
  margin: 0.5rem 0 1.25rem;
}
.investor-list__intro {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

.investor-form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}
.investor-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .investor-form__row { grid-template-columns: 1fr; }
}

.field {
  display: grid;
  gap: 0.5rem;
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0; /* prevents fieldset/grid blowout */
}
.field__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.field__label em {
  color: var(--gold);
  font-style: normal;
  margin-left: 0.15em;
}
.field__counter {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: none;
}
.field__counter.is-over { color: #b03030; }

.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  padding: 0.85em 1em;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  border-radius: 0;
  -webkit-appearance: none;
          appearance: none;
}
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 165, 87, 0.18);
}
.field textarea {
  resize: vertical;
  min-height: 8rem;
  font-family: var(--font-body);
}
.field.has-error input,
.field.has-error textarea {
  border-color: #b03030;
  box-shadow: 0 0 0 3px rgba(176, 48, 48, 0.12);
}

/* Radio group — buyer / seller / neither */
.field--radio { display: grid; gap: 0.75rem; }
.field--radio legend {
  padding: 0;
  /* style as a label */
}
.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 520px) {
  .radio-group { grid-template-columns: 1fr; }
}
.radio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.95em 1em;
  background: #fff;
  border: 1px solid var(--rule);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.radio:hover { border-color: var(--gold-soft); }
.radio:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
.radio:has(input:focus-visible) {
  box-shadow: 0 0 0 3px rgba(201, 165, 87, 0.25);
}
.field--radio.has-error .radio { border-color: #b03030; }

.investor-form__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.investor-form__note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

.investor-form__success,
.investor-form__error {
  margin: 0.5rem 0 0;
  padding: 1em 1.25em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-left: 3px solid var(--gold);
  background: rgba(201, 165, 87, 0.08);
  color: var(--ink);
}
.investor-form__error {
  border-left-color: #b03030;
  background: rgba(176, 48, 48, 0.06);
  color: #7a2020;
}

/* ============================================================
   RECOGNITION — accolades strip
   Sits between Team and Track Record. Editorial, restrained.
   ============================================================ */
.recognition {
  background: var(--cream);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}
.recognition__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-align: center;
  margin: 0 0 clamp(2rem, 3.5vw, 2.5rem);
}
.recognition__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 0;
}
.recognition__item {
  display: grid;
  gap: 0.4rem;
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--rule-light);
}
.recognition__item:nth-child(4n) { border-right: 0; }
.recognition__item:last-child { border-right: 0; }
.recognition__year {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
}
.recognition__title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  line-height: 1.25;
  color: var(--ink);
  font-weight: 400;
}
.recognition__publication {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 960px) {
  .recognition__list { grid-template-columns: repeat(3, 1fr); gap: 1.75rem 0; }
  .recognition__item:nth-child(4n) { border-right: 1px solid var(--rule-light); }
  .recognition__item:nth-child(3n) { border-right: 0; }
}
@media (max-width: 600px) {
  .recognition__list { grid-template-columns: repeat(2, 1fr); }
  .recognition__item { border-right: 0; }
  .recognition__item:nth-child(odd) { border-right: 1px solid var(--rule-light); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(247,243,236,0.15);
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.footer__brand em { font-style: italic; font-weight: 400; color: var(--gold); }
.footer__tagline {
  font-family: var(--font-body);
  color: rgba(247,243,236,0.7);
  line-height: 1.65;
  font-size: 0.95rem;
  max-width: 32ch;
}
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin: 0 0 1.25rem;
  font-weight: 400;
}
.footer__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 0.7rem;
}
.footer__col a {
  font-family: var(--font-body);
  color: rgba(247,243,236,0.78);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(247,243,236,0.5);
  letter-spacing: 0.08em;
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }

/* ============================================================
   NEWS PAGE specific
   ============================================================ */
.page-hero {
  padding-top: clamp(8rem, 14vw, 12rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero--compact {
  padding-top: clamp(7rem, 10vw, 9rem);
  padding-bottom: clamp(2rem, 3.5vw, 3rem);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,165,87,0.12), transparent 60%);
  pointer-events: none;
}
.page-hero__inner { position: relative; }
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--cream);
  margin: 1.5rem 0 1.5rem;
  max-width: 16ch;
}
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.page-hero__lede {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(247,243,236,0.78);
  max-width: 56ch;
}

.news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(3rem, 5vw, 4rem);
}
.news-item {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
}
.news-item:last-of-type { border-bottom: 0; }
.news-item__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}
.news-item__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.news-item:hover .news-item__img img { transform: scale(1.03); }
.news-item__source {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.news-item__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}
.news-item__excerpt {
  font-family: var(--font-body);
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1rem;
  margin: 0 0 1rem;
}
.news-item__meta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.news-item__featured-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--navy);
  background: var(--gold);
  padding: 0.45em 0.95em;
  margin-bottom: 1rem;
}
@media (max-width: 880px) {
  .news-item { grid-template-columns: 1fr; }
}

/* ============================================================
   SELECTION & accessibility
   ============================================================ */
::selection { background: var(--gold); color: var(--navy); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================================================
   REPORTS PAGE — selector cards + flipbook
   ============================================================ */
.report-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.report-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 1rem 1rem 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.report-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(10,26,46,0.08);
}
.report-card.is-active {
  border-color: var(--gold);
  background: var(--cream);
  box-shadow: 0 14px 40px rgba(10,26,46,0.10);
}
.report-card__cover {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 1.25rem;
  border: 1px solid var(--rule-light);
}
.report-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.report-card:hover .report-card__cover img { transform: scale(1.04); }
.report-card__meta {
  display: flex; flex-direction: column;
  gap: 0.5rem;
  padding: 0 0.4rem;
}
.report-card__tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 700;
}
.report-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.report-card__sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 880px) { .report-cards { grid-template-columns: 1fr; } }

/* ---------- Flipbook viewer ---------- */
.flipbook {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.flipbook__bar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--rule);
}
.flipbook__bar-left {
  display: flex; flex-direction: column;
  gap: 0.65rem;
}
.flipbook__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}

/* Stage = nav buttons + viewport */
.flipbook__stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
}
.flipbook__viewport {
  flex: 1 1 auto;
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10,26,46,0.20);
  /* Fixed aspect ratio that fits both letter (1.29:1) and 16:9 reports */
  aspect-ratio: 4 / 3;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flipbook__page {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--navy-deep);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.flipbook__page.is-leaving { opacity: 0; }
.flipbook__page.slide-left  { transform: translateX(-3%); }
.flipbook__page.slide-right { transform: translateX(3%); }
.flipbook__page.is-entering { opacity: 0; transform: translateX(0); }

/* Nav arrows */
.flipbook__nav {
  width: clamp(52px, 5.5vw, 68px);
  height: clamp(52px, 5.5vw, 68px);
  flex-shrink: 0;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--gold);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(10,26,46,0.18);
}
.flipbook__nav:hover:not(:disabled) {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,165,87,0.35);
}
.flipbook__nav:active:not(:disabled) { transform: translateY(0) scale(0.96); }
.flipbook__nav:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  box-shadow: none;
}

/* Footer: counter + thumbs */
.flipbook__footer {
  margin-top: 1.5rem;
  display: flex; flex-direction: column;
  gap: 1.25rem;
}
.flipbook__counter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  text-align: center;
}
.flipbook__counter-sep {
  color: var(--gold);
  margin: 0 0.35em;
  font-style: italic;
  font-weight: 400;
}
.flipbook__thumbs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.flipbook__thumbs::-webkit-scrollbar { height: 4px; }
.flipbook__thumbs::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 2px; }

.flip-thumb {
  flex-shrink: 0;
  position: relative;
  width: 86px;
  aspect-ratio: 4 / 3;
  background: var(--paper);
  border: 1.5px solid transparent;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.flip-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.flip-thumb:hover img { opacity: 0.85; }
.flip-thumb.is-active { border-color: var(--gold); }
.flip-thumb.is-active img { opacity: 1; }
.flip-thumb__num {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2em 0.45em;
}
.flip-thumb.is-active .flip-thumb__num { background: var(--gold); color: var(--navy); }

@media (max-width: 600px) {
  .flip-thumb { width: 70px; }
  .flipbook__bar { align-items: start; }
}

