/* ===== About page — Hall of Fames horizontal scroller ===== */
.site .hof-section { margin-top: 60px; padding-top: 46px; position: relative; border-top: 1px solid var(--rail-line); }
.site .hof-section::before { content: ''; position: absolute; top: -1px; left: 0; width: 70px; height: 2px; background: var(--accent); }
.site .hof-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.site .hof-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--ink); letter-spacing: -.4px; }
.site .hof-sub { color: var(--muted); font-weight: 500; font-size: 15px; margin-top: 6px; }

/* prev / next arrow buttons — theme-coloured squares */
.site .hof-nav { display: flex; gap: 8px; }
.site .hof-arrow {
  width: 36px; height: 36px; border-radius: 0; border: none; cursor: pointer;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  transition: filter .15s ease, transform .12s ease;
}
/* hover: lift + subtle glow (no rotating beam) */
.site .hof-arrow:hover { filter: brightness(1.12); transform: translateY(-3px); box-shadow: 0 10px 20px -8px var(--accent); }
.site .hof-arrow:active { transform: translateY(-1px) scale(.9); filter: brightness(.95); }

.site .hof-scroll {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 14px;
  scroll-snap-type: x proximity; scroll-behavior: smooth;
  cursor: grab; user-select: none;
  scrollbar-width: none; -ms-overflow-style: none;       /* hide scrollbar (Firefox/IE) */
}
.site .hof-scroll::-webkit-scrollbar { display: none; }   /* hide scrollbar (WebKit) */
.site .hof-scroll.grabbing { cursor: grabbing; scroll-behavior: auto; }

/* small, sharp-cornered image cards (≈7 fit on one screen) */
.site .hof-card { flex: 0 0 130px; scroll-snap-align: start; }
.site .hof-card.linked { cursor: pointer; }
.site .hof-img {
  width: 100%; aspect-ratio: 4 / 3; border-radius: 0; display: grid; place-items: center; overflow: hidden;
  background: var(--accent) center/cover no-repeat;
  border: 1px solid var(--rail-line);
  transition: transform .22s cubic-bezier(.2,.7,.2,1);
}
.site .hof-img.logo { padding: 10px; background-color: var(--surface); }
.site .hof-ph { font-size: 19px; font-weight: 800; color: #fff; opacity: .92; }
.site .hof-card:hover .hof-img { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 18px 34px -22px var(--accent); }
.site .hof-label {
  margin-top: 8px; font-size: 12px; font-weight: 700; color: var(--ink); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.site .hof-loading, .site .hof-empty { color: var(--muted); font-weight: 600; padding: 10px 0; }

/* Awards — list on the left, single image + caption on the right */
.site .awards-section { margin-top: 54px; padding-top: 46px; position: relative; border-top: 1px solid var(--rail-line); }
.site .awards-section::before { content: ''; position: absolute; top: -1px; left: 0; width: 70px; height: 2px; background: var(--accent); }
.site .awards-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; margin-top: 20px; }
.site .award-media { position: sticky; top: 90px; margin-top: -58px; }
.site .award-img {
  width: 100%; aspect-ratio: 4 / 3; border-radius: 0; overflow: hidden; position: relative;
  background: var(--surface) center/cover no-repeat; border: 1px solid var(--rail-line);
  box-shadow: 0 28px 56px -30px var(--shadow);
}
.site .award-img::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--accent); }
.site .award-cap { margin-top: 13px; font-size: 14px; font-weight: 600; color: var(--muted); line-height: 1.55; }
.site .awards-list { list-style: none; margin: 0; padding: 0; }
.site .award-item {
  display: flex; align-items: center; gap: 13px; padding: 10px 2px;
  font-size: 16px; font-weight: 600; color: var(--ink);
}
.site .award-item::before {
  content: ''; width: 9px; height: 9px; border-radius: 50%; flex: 0 0 9px;
  background: var(--accent);
}
.site .award-item a, .site .award-item span { color: var(--ink); }
.site .award-item a:hover { color: var(--accent); }

@media (max-width: 780px) {
  .site .about-head { margin-bottom: 38px; }
  .site .about-grid { grid-template-columns: 1fr; gap: 26px; }
  .site .about-photo { max-width: 300px; margin: 0 auto; }
  .site .about-text { text-align: left; }
  .site .about-text h3 { font-size: 23px; }
  .site .about-text p, .site .about-foot { font-size: 15px; }
  .site .hof-card { flex: 0 0 118px; }
  .site .hof-section { margin-top: 44px; padding-top: 40px; }
  .site .hof-head { flex-wrap: wrap; gap: 12px; }
  .site .hof-title { font-size: 23px; }
  .site .awards-section { margin-top: 44px; padding-top: 40px; }
  .site .awards-grid { grid-template-columns: 1fr; gap: 22px; }
  .site .award-media { position: static; max-width: 100%; margin-top: 0; }
}
@media (max-width: 560px) {
  .site .hof-section, .site .awards-section { margin-top: 40px; padding-top: 34px; }
  .site .hof-head { gap: 10px; margin-bottom: 16px; }
  .site .hof-title { font-size: 21px; }
  .site .hof-sub { font-size: 14px; }
  .site .hof-card { flex: 0 0 108px; }
  .site .award-item { font-size: 15px; gap: 11px; padding: 9px 2px; }
  .site .award-cap { font-size: 13px; }
}

/* ===== Resume page — elegant timeline ===== */
.site .resume { padding: 92px 60px 80px; }
.site .resume-wrap { max-width: 1000px; margin: 0 auto; }
.site .resume .sec-eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase; color: var(--accent); margin-bottom: 9px; }
.site .rz-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 22px; flex-wrap: wrap; margin-bottom: 50px; }
.site .rz-title { font-size: clamp(34px, 5vw, 52px); font-weight: 800; letter-spacing: -1px; color: var(--ink); line-height: 1.04; }
.site .rz-sub { color: var(--muted); font-weight: 500; font-size: 16px; line-height: 1.6; margin-top: 12px; max-width: 560px; }
.site .rz-dl { display: inline-flex; align-items: center; gap: 9px; padding: 13px 24px; border-radius: 0; background: var(--accent); color: #fff; font-weight: 800; font-size: 14px; text-decoration: none; box-shadow: 0 12px 28px -14px var(--accent); transition: filter .15s, transform .12s; }
.site .rz-dl svg { width: 17px; height: 17px; }
.site .rz-dl:hover { filter: brightness(1.07); transform: translateY(-1px); }
.site .rz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.site .rz-h2 { font-size: 12.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 26px; }
.site .rz-timeline { position: relative; padding-left: 26px; }
.site .rz-timeline::before { content: ''; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: var(--rail-line); }
.site .rz-item { position: relative; padding-bottom: 28px; }
.site .rz-item:last-child { padding-bottom: 0; }
.site .rz-dot { position: absolute; left: -26px; top: 3px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.site .rz-date { font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 5px; }
.site .rz-role { font-size: 17px; font-weight: 800; color: var(--ink); line-height: 1.35; }
.site .rz-empty { color: var(--muted); font-weight: 600; padding: 4px 0; }
@media (max-width: 780px) {
  .site .resume { padding: 60px 20px 56px; }
  .site .rz-head { margin-bottom: 36px; }
  .site .rz-grid { grid-template-columns: 1fr; gap: 38px; }
}

/* ===== Legal pages (Privacy / Terms) ===== */
.site .legal { padding: 92px 60px 90px; }
.site .legal-wrap { max-width: 760px; margin: 0 auto; }
.site .legal .sec-eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase; color: var(--accent); margin-bottom: 9px; }
.site .legal-title { font-size: clamp(30px, 5vw, 46px); font-weight: 800; letter-spacing: -1px; color: var(--ink); line-height: 1.05; }
.site .legal-updated { color: var(--faint); font-weight: 600; font-size: 13.5px; margin: 12px 0 34px; }
.site .legal-body { color: var(--muted); font-size: 16px; line-height: 1.8; }
.site .legal-body h2 { font-size: 20px; font-weight: 800; color: var(--ink); margin: 30px 0 12px; }
.site .legal-body p { margin: 0 0 18px; }
.site .legal-body a { color: var(--accent); text-decoration: underline; }
/* small "Questions about…? [Contact]" row at the foot of legal pages */
.site .legal-contact { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--rail-line); }
.site .legal-contact span { color: var(--muted); font-size: 15px; font-weight: 600; }
.site .legal-contact-btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 18px; border-radius: 0;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .2px;
  text-decoration: none; box-shadow: 0 10px 22px -14px var(--accent); transition: filter .15s ease, transform .12s ease;
}
.site .legal-contact-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ===== Footer — sticks to viewport bottom on short pages, flows below on long ===== */
.site-footer { flex: 0 0 auto; display: flex; justify-content: flex-end; align-items: center; gap: 9px; padding: 20px 36px 22px; font-size: 12.5px; font-weight: 500; color: var(--faint); background: none; }
.site-footer a { color: var(--faint); text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: var(--accent); }
.site-footer .foot-dot { opacity: .6; }
.site-footer .foot-copy { color: var(--faint); }
@media (max-width: 780px) {
  .site .legal { padding: 60px 20px 80px; }
  .site-footer { position: static; justify-content: center; flex-wrap: wrap; padding: 26px 16px 30px; }
}
