:root {
  --bg: #090909;
  --bone: #f2f0e9;
  --muted: #8f8e89;
  --line: #252525;
  --blue: #315cff;
  --pad: clamp(24px, 5vw, 76px);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--bone);
  font-family: Arial, Helvetica, sans-serif;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Navigation ------------------------------------------------------------ */
.nav {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: linear-gradient(to bottom, rgba(9, 9, 9, 0.92), transparent);
}
.brand {
  color: var(--bone);
  font-size: 19px;
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.045em;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
}
.navlinks a { opacity: 0.72; transition: opacity 0.18s ease; }
.navlinks a:hover { opacity: 1; }
.nav-cta {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  opacity: 1;
}
.back {
  position: absolute;
  z-index: 5;
  top: 96px;
  left: var(--pad);
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--bone);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.back:hover { border-color: rgba(255, 255, 255, 0.45); background: rgba(0, 0, 0, 0.3); }

.menu-toggle {
  display: none;
  z-index: 31;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.46);
  color: var(--bone);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span { width: 15px; height: 1px; background: currentColor; transition: transform 0.22s ease, opacity 0.18s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 29;
  overflow: hidden;
  pointer-events: none;
}
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  backdrop-filter: blur(3px);
  transition: opacity 0.28s ease;
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 380px);
  height: 100%;
  padding: 96px 28px 32px;
  overflow: auto;
  border-left: 1px solid var(--line);
  background: #0b0b0b;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 0.72, 0.18, 1);
}
.mobile-menu.open { pointer-events: auto; }
.mobile-menu.open .mobile-menu-backdrop { opacity: 1; }
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-inner { display: flex; flex-direction: column; min-height: 100%; }
.mobile-menu-inner > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
  font-size: clamp(25px, 7vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.mobile-menu-inner > a::after { content: "↗︎"; font-size: 13px; opacity: 0.5; }
.mobile-menu-inner .nav-cta {
  justify-content: center;
  margin-top: 24px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
}

/* Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #101010;
}
.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 38%;
  filter: saturate(0.94) contrast(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.05) 58%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 55%);
}
.hero-content {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 38px;
  left: var(--pad);
}
.hero-kicker,
.eyebrow {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-kicker { margin-bottom: 18px; color: #d3d2cd; }
.hero h1 {
  margin: 0;
  font-size: clamp(92px, 14.8vw, 224px);
  font-weight: 800;
  line-height: 0.76;
  letter-spacing: -0.082em;
  text-transform: uppercase;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  color: #cac9c4;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-meta span + span::before { content: "·"; margin-right: 14px; color: #666; }
.org-link {
  text-decoration: underline;
  text-decoration-color: rgba(242, 240, 233, 0.48);
  text-underline-offset: 3px;
}
.org-link:hover,
.org-link:focus-visible { color: var(--blue); text-decoration-color: currentColor; }

.photo-credit {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 16px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: rgba(255, 255, 255, 0.78);
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

/* Career ---------------------------------------------------------------- */
.section { padding: clamp(90px, 10vw, 150px) var(--pad); }
.career-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(48px, 8vw, 130px);
}
.career-heading { align-self: start; }
.section-title {
  max-width: 700px;
  margin: 15px 0 0;
  font-size: clamp(55px, 7.5vw, 112px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.career-copy p {
  margin: 0;
  color: #b8b7b1;
  font-size: 17px;
  line-height: 1.78;
  text-align: justify;
  text-justify: inter-word;
}
.career-copy p + p { margin-top: 22px; }
.career-copy strong { color: var(--bone); }
.text-link { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(242, 240, 233, 0.35); }
.text-link:hover,
.text-link:focus-visible { color: var(--blue); text-decoration-color: currentColor; }
.text-link:hover strong,
.text-link:focus-visible strong { color: var(--blue); }

.profile-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.profile-socials > a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--bone);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.profile-socials > a:hover,
.profile-socials > a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
}
.profile-socials svg { width: 17px; height: 17px; }
.profile-socials img { width: 19px; height: 19px; object-fit: contain; }

.represented-since {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.org-mini {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.org-mini > span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.org-mini-main {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--bone);
}
.org-mini-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.org-mini-main strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}
.org-mini-main:hover strong,
.org-mini-main:focus-visible strong { color: var(--blue); }
.business-email {
  display: inline-block;
  margin-top: 28px;
  font-size: clamp(18px, 2vw, 27px);
  letter-spacing: -0.02em;
}
.business-email:hover { color: var(--blue); }

/* Best performances ----------------------------------------------------- */
.player-details {
  padding: 0 var(--pad) clamp(88px, 9vw, 132px);
}
.performance-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.performance-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  border-bottom: 1px solid var(--line);
}
.performance-stat {
  min-height: 158px;
  padding: 22px 22px 20px 0;
  display: flex;
  flex-direction: column;
}
.performance-stat + .performance-stat {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.performance-stat strong {
  font-size: clamp(29px, 3.3vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.performance-stat span {
  max-width: 290px;
  margin-top: 19px;
  color: #d0cfca;
  font-size: 12px;
  line-height: 1.35;
}
.performance-stat small {
  margin-top: auto;
  padding-top: 12px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.performance-link { transition: background 0.18s ease; }
.performance-link:hover,
.performance-link:focus-visible { background: #111; }

/* Story ----------------------------------------------------------------- */
.story { padding: 12px; background: #efede5; color: #111; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; }
.story-photo { position: relative; overflow: hidden; background: #d7d4cb; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-photo .photo-two { object-position: 66% center; }
.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 105px);
}
.story-copy .eyebrow { color: #6d6b67; }
.story-title {
  margin: 12px 0 38px;
  font-size: clamp(55px, 6.8vw, 102px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.068em;
  text-transform: uppercase;
}
.story-copy p { margin: 0; color: #3b3a36; font-size: 16px; line-height: 1.75; text-align: justify; text-justify: inter-word; }
.story-copy p + p { margin-top: 20px; }
.story-copy strong { color: #111; }
.story-link { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(17, 17, 17, 0.35); }
.story-link:hover,
.story-link:focus-visible { color: var(--blue); text-decoration-color: currentColor; }
.story-link:hover strong,
.story-link:focus-visible strong { color: var(--blue); }


.quote-placeholder {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
}
.quote-placeholder .label {
  display: block;
  margin-bottom: 10px;
  color: #77746d;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.quote-placeholder p {
  color: #77746d;
  font-style: italic;
}
.story-photo .photo-credit {
  right: 16px;
  bottom: 16px;
}

/* Footer ---------------------------------------------------------------- */
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px var(--pad);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-tailors-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(153, 154, 150, 0.55);
}
.footer a:hover { color: var(--bone); }

/* Accessibility -------------------------------------------------------- */
a:focus-visible,
button:focus-visible { outline: 2px solid var(--bone); outline-offset: 4px; }

/* Responsive ------------------------------------------------------------ */
@media (max-width: 900px) {
  .navlinks { display: none; }
  .menu-toggle { display: flex; order: 2; }
  .brand { order: 1; }
  .mobile-menu { display: block; }
  .career-grid,
  .story-grid { grid-template-columns: 1fr; }
  .career-grid { gap: 48px; }
  .performance-stats { grid-template-columns: 1fr; }
  .performance-stat + .performance-stat { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .story-photo { min-height: 600px; }
}

@media (max-width: 650px) {
  .hero { min-height: 620px; }
  .hero > img { object-position: 61% 36%; }
  .hero h1 { font-size: 22vw; }
  .hero-meta { gap: 10px; font-size: 9px; }
  .hero-meta span + span::before { margin-right: 10px; }
  .section { padding: 78px var(--pad) 82px; }
  .section-title { font-size: clamp(46px, 15vw, 72px); }
  .career-copy p { font-size: 16px; line-height: 1.72; }
  .player-details { padding-bottom: 82px; }
  .performance-stat { min-height: 145px; padding: 20px 0; }
  .photo-credit { right: 12px; bottom: 12px; font-size: 7px; }
  .story { padding: 8px; }
  .story-photo { min-height: 500px; }
  .story-copy { padding: 58px 28px; }
  .story-title { font-size: clamp(48px, 15vw, 76px); }
  .story-copy p { font-size: 16px; line-height: 1.72; }
  .footer { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .menu-toggle span,
  .mobile-menu-backdrop,
  .mobile-menu-panel,
  .profile-socials > a,
  .performance-link { transition: none; }
  .profile-socials > a:hover,
  .profile-socials > a:focus-visible,

}
