/* ─── Variables ─────────────────────────────────────────── */

:root {
  --bg:         #F5F2ED;
  --dark:       #0D0D0D;
  --accent:     #C8FF00;
  --text:       #0D0D0D;
  --text-muted: #6B6B6B;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

/* ─── Reset ─────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

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

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

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: none;
  color: inherit;
  font: inherit;
}

::selection {
  background: var(--dark);
  color: var(--bg);
}

/* ─── Halftone Dot Overlay ─────────────────────────────── */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle cx='3' cy='3' r='1' fill='rgba(0,0,0,0.12)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 6px 6px;
}

.hero::after,
.about-strip::after,
.first-studio::after,
.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle cx='3' cy='3' r='1' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 6px 6px;
}

/* ─── Custom Cursor ────────────────────────────────────── */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: var(--accent);
  border: none;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease;
  mix-blend-mode: difference;
}

.cursor.is-hovering {
  width: 20px;
  height: 20px;
}

/* ─── Nav ───────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 64px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 100%);
  background-size: 100% 80px;
  background-repeat: no-repeat;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-bottom 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav__links a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%;
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── Hero ──────────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  pointer-events: none;
}

.hero__headlines {
  position: absolute;
  bottom: 4vh;
  left: 5vw;
  z-index: 1;
  text-align: left;
  max-width: 60vw;
}

.hero__marker {
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent);
  margin-bottom: 20px;
  border: none;
  outline: none;
  padding: 0;
}

.hero__descriptor {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9.5vw, 11rem);
  color: #fff;
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.hero__line {
  display: block;
}

.hero__dot {
  color: var(--accent);
}

.hero__stats {
  position: absolute;
  bottom: 4vh;
  right: 5vw;
  z-index: 1;
  display: flex;
  gap: 3rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: #fff;
  line-height: 1;
}

.hero__stat-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── About Strip ──────────────────────────────────────── */

.about-strip {
  position: relative;
  width: 100%;
  height: 160px;
  background-color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-strip p {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-align: center;
}

.about-strip__dot {
  color: var(--accent);
}

.about-strip::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, #0D0D0D, #F5F2ED);
  pointer-events: none;
  z-index: 1;
}

/* ─── Section ───────────────────────────────────────────── */

.section {
  position: relative;
  padding: 120px 5vw 0;
  padding-left: max(5vw, 80px);
  background-color: var(--bg);
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.04) 100%);
  pointer-events: none;
}

.section__header {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--dark);
  line-height: 1;
  letter-spacing: 0.02em;
}

span.section__date {
  all: unset;
  font-family: var(--font-body) !important;
  font-size: 0.7rem !important;
  font-weight: 400 !important;
  color: #0D0D0D !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-left: 16px !important;
  display: inline-block !important;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  border-width: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

/* ─── Section Transitions ──────────────────────────────── */

.section-transition {
  width: 100%;
  height: 120px;
  pointer-events: none;
}

.section-transition--dark-to-light {
  background: linear-gradient(to bottom, #0D0D0D, #F5F2ED);
}

.section-transition--light-to-dark {
  background: linear-gradient(to bottom, #F5F2ED, #0D0D0D);
}

/* ─── Grid ──────────────────────────────────────────────── */

.grid {
  position: relative;
  display: grid;
  gap: 6px;
}

.grid--work,
.grid--clients,
.grid--talents {
  grid-template-columns: repeat(4, 1fr);
}

/* ─── Cards ─────────────────────────────────────────────── */

.card {
  position: relative;
  overflow: hidden;
  background-color: #e8e4de;
  aspect-ratio: 3 / 4;
}

.card--wide {
  grid-column: span 2;
  aspect-ratio: 3 / 2;
}

.card--full {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 4;
}

.card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.card__hover {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}

.card__stat {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 0.4rem;
}

.card:hover .card__bg {
  transform: scale(1.03);
}

.card:hover .card__hover {
  opacity: 1;
}

/* ─── First Studio ─────────────────────────────────────── */

.first-studio {
  position: relative;
  background-color: var(--dark);
  padding: 8rem 5vw;
  padding-left: max(5vw, 80px);
  margin-top: 0;
}

.first-studio__inner {
  max-width: 1100px;
}

.first-studio__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8rem);
  color: #fff;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.first-studio__subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* ─── First Studio Athlete Cards ───────────────────────── */

.first-studio__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 5rem;
  max-width: 900px;
}

.athlete-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background-color: #111;
  cursor: none;
}

.athlete-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.athlete-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.athlete-card:hover .athlete-card__video {
  transform: scale(1.03);
}

.athlete-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  z-index: 1;
}

.athlete-card__placeholder-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
}

.athlete-card__placeholder-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.athlete-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.athlete-card__label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.athlete-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}

.athlete-card__meta {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.athlete-card:hover .athlete-card__bg {
  transform: scale(1.03);
}

.athlete-card:hover .athlete-card__overlay {
  opacity: 1;
}

/* Hide placeholder when cover image loads */
.athlete-card--has-image .athlete-card__placeholder {
  display: none;
}

/* ─── Athlete Gallery Modal ────────────────────────────── */

.athlete-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background-color: rgba(0,0,0,0.95);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.athlete-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.athlete-modal__close {
  position: fixed;
  top: 2rem;
  right: 2.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  z-index: 510;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.athlete-modal__close:hover {
  opacity: 0.6;
}

.athlete-modal__inner {
  padding: 6rem 6vw 6rem;
  max-width: 1000px;
  margin: 0 auto;
}

.athlete-modal__name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1rem;
}

.athlete-modal__video-wrap {
  grid-column: 1 / -1;
  margin-bottom: 1.5rem;
}

.athlete-modal__video-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.athlete-modal__video {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  border: none;
  border-radius: 0;
  display: block;
}

.athlete-modal__text {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: #999;
  line-height: 1.8;
  max-width: 680px;
  margin-top: 2rem;
}

.athlete-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.athlete-modal__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #111;
}

.athlete-modal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.athlete-modal__photo--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid #222;
}

.athlete-modal__photo-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.athlete-modal__photo-sub {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ─── Contact ──────────────────────────────────────────── */

.contact {
  width: 100%;
  min-height: 100dvh;
  background-color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 5vw;
  position: relative;
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  color: #fff;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.contact__dot {
  color: var(--accent);
  display: inline;
  font-family: var(--font-display);
  line-height: inherit;
}

.contact__email {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 3rem;
  transition: color 0.2s ease;
}

.contact__email:hover {
  color: var(--accent);
}

.contact__linkedin {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 1rem;
  transition: color 0.2s ease;
}

.contact__linkedin:hover {
  color: rgba(255,255,255,0.7);
}

.contact__availability {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─── Overlay ───────────────────────────────────────────── */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background-color: var(--bg);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.overlay__close {
  position: fixed;
  top: 2rem;
  right: 2.5rem;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-muted);
  z-index: 510;
  transition: color 0.2s ease;
  line-height: 1;
}

.overlay__close:hover {
  color: var(--dark);
}

.overlay__inner {
  padding: 6rem 6vw 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.overlay__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--dark);
  letter-spacing: 0.02em;
  line-height: 1;
}

.overlay__tag {
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.overlay__meta {
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.overlay__note {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
}

/* Overlay — stats */
.overlay__stats {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(13, 13, 13, 0.1);
}

.overlay__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.overlay__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--dark);
  line-height: 1;
}

.overlay__stat-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Overlay — photos */
.overlay__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 6px;
  margin-top: 3rem;
}

.overlay__photos--2col {
  grid-template-columns: repeat(2, 1fr);
}

.overlay__photo {
  background-color: #e8e4de;
  overflow: hidden;
}

.overlay__photo--landscape {
  grid-column: span 2;
}

.overlay__photos--2col .overlay__photo--landscape {
  grid-column: span 1;
}

.overlay__photo img {
  width: 100%;
  height: auto;
  display: block;
  cursor: none;
  transition: opacity 0.2s ease;
}

.overlay__photo img:hover {
  opacity: 0.85;
}

/* Stats-only overlay */
.stats-solo {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 5rem;
  margin-top: 3.5rem;
}

.stats-solo__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stats-solo__num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  color: var(--dark);
  line-height: 1;
}

.stats-solo__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.overlay__credit {
  margin-top: 4rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  opacity: 0.5;
}

/* ─── EFG Overlay ───────────────────────────────────────── */

.overlay--efg {
  background-color: var(--dark);
}

.overlay--efg .overlay__close {
  color: rgba(255,255,255,0.5);
}

.overlay--efg .overlay__close:hover {
  color: #fff;
}

.overlay--efg .overlay__name {
  color: #fff;
  font-size: clamp(3rem, 6vw, 6rem);
}

.overlay--efg .overlay__tag {
  color: #999;
}

.overlay--efg .overlay__note {
  color: #999;
}

.overlay--efg .overlay__stats {
  border-bottom: 1px solid #222;
}

.overlay--efg .overlay__stat-num {
  color: #fff;
}

.overlay--efg .overlay__stat-label {
  color: #666;
}

.efg-hero {
  margin-top: 3rem;
  padding: 2.5rem;
  background-color: #111;
  border: 1px solid #222;
}

.efg-hero__name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 6rem);
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1;
}

.efg-hero__meta {
  display: flex;
  gap: 2rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}

.efg-hero__meta span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.efg-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}

.efg-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.efg-stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.75vw, 4rem);
  color: #fff;
  line-height: 1;
}

.efg-stat__num--accent {
  color: var(--accent);
}

.efg-stat__label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.efg-stat--sm .efg-stat__num {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
}

.efg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 6px;
}

.efg-card {
  padding: 2rem;
  background-color: #111;
  border: 1px solid #222;
}

.efg-card--mention {
  background-color: transparent;
  border: 1px solid #222;
}

.efg-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}

.efg-card__meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.efg-card__meta span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.efg-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.25rem;
}

.efg-card__desc {
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.efg-card__combined {
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.efg-disclaimer {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #222;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.08em;
  line-height: 1.7;
  opacity: 0.5;
}

.overlay--efg .overlay__credit {
  color: #666;
}

/* ─── Lightbox ──────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
}

.lightbox__img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.lightbox__close {
  position: fixed;
  top: 1.75rem;
  right: 2.5rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  transition: color 0.2s ease;
}

.lightbox__close:hover { color: #fff; }

.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.5);
  padding: 1rem 1.25rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

.lightbox__prev:hover,
.lightbox__next:hover { color: #fff; }

.lightbox__prev.is-hidden,
.lightbox__next.is-hidden { display: none; }

/* ─── Scroll Animations ────────────────────────────────── */

.section__header,
.first-studio__title,
.first-studio__subtitle,
.first-studio__cards,
.contact__title {
  opacity: 0;
  transform: translateY(30px);
}

.section__header.is-visible,
.first-studio__title.is-visible,
.first-studio__subtitle.is-visible,
.first-studio__cards.is-visible,
.contact__title.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ─── Mobile ─────────────────────────────────────────────── */

@media (max-width: 768px) {

  body, a, button {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav__burger span {
    background-color: var(--accent);
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    display: block;
    width: 100%;
    padding: 1.1rem 5vw;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__links a::after {
    display: none;
  }

  .hero__headlines {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 90vw;
    padding: 0 5vw;
    margin-top: auto;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 4vh;
  }

  .hero__h1 {
    font-size: clamp(2.5rem, 16vw, 6rem);
  }

  .hero__stats {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    padding: 0 5vw;
    margin-top: 24px;
  }

  .hero__stat {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .hero__stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    line-height: 1;
  }

  .hero__stat-label {
    font-size: 0.6rem;
  }

  .section {
    padding: 80px 4vw 0;
    padding-left: 4vw;
  }

  .grid--work,
  .grid--clients,
  .grid--talents {
    grid-template-columns: 1fr;
  }

  .card,
  .card--wide,
  .card--full {
    grid-column: 1 !important;
    aspect-ratio: 4 / 3 !important;
  }

  .card__hover {
    opacity: 1;
  }

  .grid--talents .card {
    cursor: default;
    -webkit-tap-highlight-color: transparent;
  }

  .first-studio {
    padding: 5rem 5vw;
    margin-top: 0;
  }

  .overlay__photos {
    grid-template-columns: repeat(2, 1fr);
  }

  .overlay__stats {
    gap: 2rem;
  }

  .overlay__inner {
    padding: 5rem 5vw 4rem;
  }

  .stats-solo {
    gap: 2.5rem 3rem;
    margin-top: 2.5rem;
  }

  .stats-solo__num {
    font-size: clamp(3rem, 11vw, 5rem);
  }

  .efg-grid {
    grid-template-columns: 1fr;
  }

  .efg-hero__stats {
    gap: 1.5rem;
  }

  .efg-hero {
    padding: 1.5rem;
  }

  .efg-card {
    padding: 1.5rem;
  }

  .contact__dot {
    display: inline;
    width: auto;
    height: auto;
    font-family: var(--font-display);
    color: var(--accent);
    line-height: inherit;
  }

  .contact__availability {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 4rem;
    white-space: normal;
    text-align: center;
    color: rgba(255,255,255,0.45);
  }

  .first-studio__cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .athlete-card {
    aspect-ratio: 3 / 4;
  }

  .athlete-modal__grid {
    grid-template-columns: 1fr;
  }

  .athlete-modal__inner {
    padding: 5rem 5vw 4rem;
  }
}

@media (max-width: 480px) {
  .hero__h1 {
    font-size: 16vw;
  }

  .overlay__photos {
    grid-template-columns: 1fr;
  }
}
