:root {
  --ink: #090909;
  --bone: #f2f0e9;
  --muted: #999a96;
  --line: rgba(242, 240, 233, 0.14);
  --blue: #315cff;
  --pad: clamp(20px, 4vw, 68px);
}

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

.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 {
  font-weight: 800;
  font-size: 19px;
  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 180ms 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;
}

.menu-toggle {
  display: none;
  z-index: 31;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.5);
  color: var(--bone);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 15px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms 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;
  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 280ms 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 320ms 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; min-height: 100%; flex-direction: column; }
.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);
  font-size: 13px;
}

.eyebrow {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.photo-credit {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero > img { height: 100%; object-fit: cover; object-position: center; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.12) 58%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.4), transparent 48%);
}
.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);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.back:hover { border-color: rgba(255, 255, 255, 0.45); background: rgba(0, 0, 0, 0.3); }
.hero-content {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 38px;
  left: var(--pad);
}
.hero-kicker {
  margin-bottom: 18px;
  color: #d3d2cd;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(100px, 15vw, 230px);
  font-weight: 800;
  line-height: 0.76;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  color: #cac9c4;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-meta span + span::before { content: "·"; margin-right: 14px; color: #666; }

.section { padding: 116px var(--pad); border-top: 1px solid var(--line); }
.career-section { padding-top: 82px; padding-bottom: 82px; }
.section-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 72px; align-items: start; }
.section-title {
  margin: 10px 0 0;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.copy p {
  margin: 0;
  color: #c9c8c2;
  font-size: 17px;
  line-height: 1.76;
  text-align: justify;
  text-justify: inter-word;
}
.copy p + p { margin-top: 22px; }
.copy strong { color: var(--bone); }
.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;
}

.player-details { padding: 0 var(--pad) 116px; }
.social-links { display: flex; gap: 10px; margin: 0 0 30px; }
.social-btn {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.social-btn:hover { border-color: #777; background: #151515; transform: translateY(-1px); }
.social-btn svg { display: block; width: 17px; height: 17px; }
.social-btn.lq { width: 44px; min-width: 44px; padding: 0; }
.social-btn.lq img { width: 22px; height: 22px; object-fit: contain; }
.business-block { padding: 31px 0 34px; border-top: 1px solid var(--line); }
.business-email {
  display: inline-block;
  margin-top: 13px;
  font-size: clamp(18px, 2vw, 27px);
  letter-spacing: -0.02em;
}
.business-email:hover { color: var(--blue); }
.performance-block { padding-top: 38px; }
.performances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.performance {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 29px 24px 29px 0;
  transition: background 180ms ease;
}
.performance + .performance { padding-left: 24px; border-left: 1px solid var(--line); }
.performance:hover { background: rgba(255, 255, 255, 0.025); }
.performance strong { font-size: clamp(38px, 4.4vw, 66px); font-weight: 500; line-height: 0.9; letter-spacing: -0.06em; }
.performance .name {
  margin-top: 28px;
  color: var(--bone);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.performance small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.club-history { padding-top: 30px; }
.club-intro { max-width: 760px; margin: 9px 0 0; color: #a8a7a1; font-size: 12px; line-height: 1.5; }
.clubs-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.club-card {
  display: flex;
  min-width: 0;
  min-height: 162px;
  flex-direction: column;
  gap: 9px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.018);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.club-card:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.045); }
.club-top { display: flex; align-items: center; justify-content: space-between; gap: 5px; }
.club-order { color: #8f8e88; font-size: 7px; letter-spacing: 0.15em; text-transform: uppercase; }
.club-badge {
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #dddcd7;
  font-size: 7px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.club-media {
  display: grid;
  place-items: center;
  height: 86px;
  min-height: 86px;
  padding: 11px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 15px;
  background: linear-gradient(180deg, #f6f3ea, #ebe7dd);
}
.club-card img {
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 66px;
  object-fit: contain;
  transition: transform 220ms ease;
}
.club-card:hover img { transform: scale(1.035); }
.dignitas-card .club-media { border-color: #262626; background: #111; }
.dignitas-card .club-media img { max-width: 86%; max-height: 72px; }
.club-card:nth-child(2) .club-media { border-color: #303030; background: #232323; }
.club-card:nth-child(2) img { max-width: 84%; max-height: 64px; }
.club-card.club-solary .club-media { border-color: #262626; background: #090909; }
.club-card.club-solary img { max-width: 76%; max-height: 70px; }
.karmine-card .club-media { background: linear-gradient(180deg, #f7f4ec, #ece8de); }
.karmine-card .club-media img { max-width: 64%; max-height: 68px; }
.club-card:nth-child(5) .club-media,
.club-card:nth-child(7) .club-media { background: linear-gradient(180deg, #f7f4ec, #ece8de); }
.club-card:nth-child(5) img { max-width: 76%; max-height: 72px; }
.club-card:nth-child(7) img { max-width: 76%; max-height: 68px; }
.club-meta strong {
  display: block;
  overflow: hidden;
  color: var(--bone);
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.club-meta span { display: block; margin-top: 4px; color: var(--muted); font-size: 7.5px; letter-spacing: 0.12em; text-transform: uppercase; }

.story { padding: 8px; background: #efede5; color: #111; }
.story-wrap { display: grid; grid-template-columns: 1.18fr 0.82fr; align-items: start; }
.story-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(26px, 2.8vw, 42px); }
.story-copy .eyebrow { color: #6d6b67; }
.story-copy h2 {
  margin: 9px 0 20px;
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 0.88;
  letter-spacing: -0.064em;
  text-transform: uppercase;
}
.story-copy p { margin: 0; color: #3b3a36; font-size: 17px; line-height: 1.76; text-align: justify; text-justify: inter-word; }
.story-copy p + p { margin-top: 18px; }
.story-copy strong { color: #111; }
.story-link,
.story-hover-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(17, 17, 17, 0.45);
  transition: color 180ms ease, text-decoration-color 180ms ease;
}
.story-hover-link { font-weight: 700; }
.story-link:hover,
.story-hover-link:hover { color: var(--blue); text-decoration-color: var(--blue); }
.story-link:hover strong { color: var(--blue); }
.story-photo { position: relative; height: 500px; overflow: hidden; align-self: start; }
.story-photo img { height: 100%; object-fit: cover; object-position: center 10%; }
.story-photo .photo-credit { right: auto; left: 16px; color: rgba(255, 255, 255, 0.8); }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 27px var(--pad) 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.11em;
  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-tailors-link:hover { color: var(--bone); text-decoration-color: currentColor; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

@media (max-width: 1280px) {
  .clubs-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .navlinks { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: block; }
  .section-grid,
  .story-wrap { grid-template-columns: 1fr; }
  .story-photo { order: -1; height: 380px; }
  .clubs-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
  .hero { min-height: 620px; }
  .hero > img { object-position: 58% center; }
  .hero h1 { font-size: 24vw; }
  .hero-meta { gap: 10px; font-size: 9px; }
  .hero-meta span + span::before { margin-right: 10px; }
  .career-section { padding-top: 62px; padding-bottom: 62px; }
  .section { padding: 78px var(--pad) 82px; }
  .player-details { padding-bottom: 82px; }
  .performances,
  .clubs-row { grid-template-columns: 1fr; }
  .performance,
  .performance + .performance {
    min-height: 145px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .performance:first-child { border-top: 0; }
  .story { padding: 6px; }
  .story-photo { height: 300px; }
  .story-copy { padding: 30px 22px; }
  .story-copy p,
  .copy p { font-size: 16px; line-height: 1.72; }
  .photo-credit { right: 14px; bottom: 14px; }
  .footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .navlinks a,
  .menu-toggle span,
  .mobile-menu-backdrop,
  .mobile-menu-panel,
  .social-btn,
  .club-card,
  .club-card img,
  .story-link,
  .story-hover-link { transition: none; }
  .social-btn:hover,
  .club-card:hover { transform: none; }
}
