:root {
  --b: gray;
  --b-dim: #663300;
  --b-glow: rgba(252, 127, 18, 0.35);
  --big-cite: #696969;
}

html, body { overflow-x: hidden; }

/* ── HERO ── */
.bb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 2rem) 2.5rem 5rem;
  overflow: hidden;
}

.bb-court {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bb-court svg {
  position: absolute;
  right: -8vw;
  top: 50%;
  transform: translateY(-50%);
  width: 70vw;
  max-width: 820px;
  opacity: 0.045;
}

.bb-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--b);
  margin-bottom: 1.25rem;
}

.bb-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--b);
}

.bb-hero-name {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.bb-hero-name em {
  font-style: italic;
  color: var(--b);
}

.bb-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.bb-hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bb-hero-meta i { color: var(--b); font-size: 0.75rem; }

.bb-number {
  position: absolute;
  right: 2.5rem;
  bottom: 3rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(252, 127, 18, 0.15);
  pointer-events: none;
  user-select: none;
}

/* ── STAT TICKER ── */
.stat-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.stat-cell:last-child { border-right: none; }

.stat-cell::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-cell:hover::before { transform: scaleX(1); }

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-num span {
  font-size: 0.45em;
  color: var(--b);
  font-weight: 600;
  vertical-align: super;
}

.stat-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-sub {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.2rem;
  opacity: 0.6;
}

/* ── SECTIONS ── */
.bb-section {
  padding: 5rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.bb-section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--b);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bb-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.bb-section-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 3rem;
  line-height: 1.15;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7.5rem;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}

.tl-item {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.tl-item:first-child { padding-top: 0; }

.tl-year {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding-top: 0.15rem;
  text-align: right;
  padding-right: 2rem;
}

.tl-dot {
  position: absolute;
  left: calc(7.5rem - 4px);
  top: 2.1rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
}

.tl-item:hover .tl-dot {
  background: var(--b);
  border-color: var(--b);
  box-shadow: 0 0 12px var(--b-glow);
}

.tl-item:first-child .tl-dot { top: 0.1rem; }

.tl-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.tl-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.tl-tag {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--b);
  border: 1px solid var(--b-dim);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  background: var(--b-dim);
}

/* ── ACHIEVEMENTS ── */
.achieve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.achieve-card {
  background: var(--bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
}

.achieve-card:hover { background: var(--surface); }

.achieve-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--b-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--b);
  font-size: 1rem;
}

.achieve-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.achieve-detail {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── LINKS ── */
.links-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.ext-link {
  background: var(--bg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
  gap: 1rem;
}

.ext-link:hover { background: var(--surface); }
.ext-link:hover .ext-arrow { color: var(--b); transform: translate(3px, -3px); }

.ext-link-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ext-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--b-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--b);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.ext-name {
  font-size: 0.95rem;
  font-weight: 500;
}

.ext-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.ext-arrow {
  color: var(--muted);
  font-size: 1rem;
  transition: transform 0.2s, color 0.2s;
}

/* ── QUOTE ── */
.bb-quote {
  border-left: 2px solid var(--b);
  padding: 2rem 2.5rem;
  margin: 0;
  background: var(--big-cite);
}

.bb-quote p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bb-quote cite {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--surface);
  font-style: normal;
  font-family: "Barlow Condensed", sans-serif;
}

/* ── DIVIDER ── */
.bb-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

@media (max-width: 700px) {
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .timeline::before { left: 4.5rem; }
  .tl-item { grid-template-columns: 4.5rem 1fr; }
  .tl-dot { left: calc(4.5rem - 4px); }
  .bb-section { padding: 3.5rem 1.25rem; }
  .bb-hero { padding-bottom: 3.5rem; }
  .bb-number { display: none; }
}
