: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;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--bone);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--blue);
  color: #fff;
}

/* Navigation */
.nav {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  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;
  gap: 28px;
  align-items: center;
  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 !important;
}

/* Shared typography */
.eyebrow {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.org-link {
  text-decoration: underline;
  text-decoration-color: rgba(242, 240, 233, 0.24);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.org-link:hover {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.08) 58%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 50%);
  pointer-events: none;
}

.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: background 0.18s ease, border-color 0.18s ease;
}

.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;
}

.photo-credit {
  position: absolute;
  z-index: 4;
  right: var(--pad);
  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.55);
  pointer-events: none;
}

/* Career */
.section {
  padding: 116px var(--pad);
  border-top: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 5vw, 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;
}

.org-mini {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.org-mini > span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.org-mini-main {
  display: flex;
  gap: 12px;
  align-items: center;
}

.org-mini-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.org-mini-main strong {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(242, 240, 233, 0.5);
  text-underline-offset: 4px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.org-mini-main:hover strong {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

/* Links and performances */
.player-details {
  padding: 0 var(--pad) 116px;
}

.social-links {
  display: flex;
  gap: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.social-btn {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #c7c7c4;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
  border-color: rgba(242, 240, 233, 0.38);
  color: var(--bone);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-lp img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.performance-block {
  padding-top: 34px;
}

.performance-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.performance-stat {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 27px 0;
}

.performance-stat + .performance-stat {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.performance-stat strong {
  margin-bottom: 27px;
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.performance-stat span {
  color: var(--bone);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.performance-stat small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.performance-link {
  transition: background 0.2s ease;
}

.performance-link:hover {
  background: rgba(255, 255, 255, 0.025);
}

.performance-link:hover span,
.performance-link:hover small,
.perf-inline-link:hover {
  color: var(--bone);
}

/* Story */
.story {
  padding: 12px;
  border-top: 0;
  background: #efede5;
  color: #111;
}

.story-wrap {
  min-height: 740px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.story-photo {
  position: relative;
  overflow: hidden;
  min-height: 740px;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
}

.story-photo .photo-credit {
  right: 18px;
  bottom: 18px;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 7vw, 105px);
}

.story-copy .eyebrow {
  color: #6d6b67;
}

.story-copy h2 {
  margin: 12px 0 38px;
  font-size: clamp(58px, 7vw, 106px);
  line-height: 0.87;
  letter-spacing: -0.07em;
  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: 22px;
}

.story-copy strong {
  color: #111;
}

.story-copy .org-link {
  text-decoration-color: rgba(17, 17, 17, 0.3);
}

.testimonial-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.testimonial-slot {
  min-height: 128px;
  padding-right: 18px;
}

.testimonial-slot + .testimonial-slot {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.13);
}

.testimonial-label {
  display: block;
  margin-bottom: 14px;
  color: #7d7b75;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial-placeholder {
  color: #8a8882;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

/* Footer */
.footer {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  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-color: rgba(153, 154, 150, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-tailors-link:hover,
.footer a:hover {
  color: var(--bone);
  text-decoration-color: currentColor;
}

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

/* Tablet */
@media (max-width: 900px) {
  .navlinks a:not(.nav-cta) {
    display: none;
  }

  .section-grid,
  .story-wrap {
    grid-template-columns: 1fr;
  }

  .story-photo {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 780px) {
  .performance-stats {
    grid-template-columns: 1fr;
  }

  .performance-stat,
  .performance-stat + .performance-stat {
    min-height: 142px;
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .performance-stat:first-child {
    border-top: 0;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .nav {
    height: 64px;
  }

  .navlinks {
    gap: 10px;
  }

  .nav-cta {
    padding: 10px 12px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-image {
    object-position: 35% center;
  }

  .back {
    top: 82px;
  }

  .hero-content {
    bottom: 54px;
  }

  .hero h1 {
    font-size: min(24vw, 128px);
  }

  .hero-meta {
    row-gap: 8px;
    margin-top: 20px;
  }

  .photo-credit {
    right: 20px;
    bottom: 17px;
  }

  .section {
    padding: 78px var(--pad) 82px;
  }

  .copy p,
  .story-copy p {
    text-align: left;
  }

  .player-details {
    padding-bottom: 82px;
  }

  .org-mini {
    align-items: flex-start;
    flex-direction: column;
  }

  .org-mini-main {
    width: 100%;
    justify-content: flex-start;
  }

  .story {
    padding: 8px;
  }

  .story-photo {
    aspect-ratio: 4 / 5;
  }

  .story-photo img {
    object-position: 32% center;
  }

  .story-photo .photo-credit {
    right: 14px;
    bottom: 14px;
  }

  .story-copy {
    padding: 58px 28px;
  }

  .testimonial-slots {
    grid-template-columns: 1fr;
  }

  .testimonial-slot + .testimonial-slot {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.13);
    border-left: 0;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .brand {
    font-size: 17px;
  }

  .nav-cta {
    padding: 9px 10px;
    font-size: 11px;
  }

  .hero-meta span + span::before {
    margin-right: 8px;
  }

  .hero-meta {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .navlinks a,
  .back,
  .social-btn,
  .org-link,
  .org-mini-main strong,
  .performance-link {
    transition: none;
  }

  .social-btn:hover {
    transform: none;
  }
}
